blob: 717d8581d20a1d0bcf8610c9aad5d5b8cc954a9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2019 Asami Doi <d0iasm.pub@gmail.com>.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <console/uart.h>
#include <mainboard/addressmap.h>
uintptr_t uart_platform_base(int idx)
{
return VIRT_UART_BASE;
}
|