summaryrefslogtreecommitdiff
path: root/src/mainboard/emulation/qemu-armv7/mmio.c
blob: 0f07e7f1ef109c30dcc0125faea0fd38ca21c87c (plain)
1
2
3
4
5
6
7
8
9
10
/* SPDX-License-Identifier: GPL-2.0-only */

#include <console/uart.h>

#define VEXPRESS_UART0_IO_ADDRESS      (0x10009000)

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