aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/uart/uart_console.c
blob: 9f37190d2402b355bf36e42392a48bddf4c100ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */

#include <amdblocks/uart.h>
#include <console/uart.h>

/*
 * uart_platform_base and uart_platform_refclk are used by the console UART driver and need to
 * be provided exactly once and only by the UART that is used for console.
 */

uintptr_t uart_platform_base(unsigned int idx)
{
	return get_uart_base(idx);
}

unsigned int uart_platform_refclk(void)
{
	return 48000000;
}