blob: 996215de344dd1dde94b97913b636e7deae263de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/uart.h>
uintptr_t uart_platform_base(unsigned int idx)
{
return (uintptr_t)(0xFEDC6000 + 0x2000 * (idx & 1));
}
unsigned int uart_platform_refclk(void)
{
return 48000000;
}
|