summaryrefslogtreecommitdiffstats
path: root/src/southbridge/amd/pi/hudson/uart.c
blob: b48af69678b8f19dc4fb5c3558d4acb900950cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <console/uart.h>

uintptr_t uart_platform_base(int idx)
{
	return (uintptr_t)(0xFEDC6000 + 0x2000 * (idx & 1));
}

unsigned int uart_platform_refclk(void)
{
	return 48000000;
}