blob: 61fe34890c6a9fef9f3d498e6f1aad624edf6fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <console/uart.h>
#include <soc/iomap.h>
unsigned int uart_platform_refclk(void)
{
return 44236800;
}
uintptr_t uart_platform_base(int idx)
{
return UART_BASE_ADDRESS;
}
|