blob: f3d576b3aa705670ab031f6131a57649130a03e2 [file] [log] [blame]
Aaron Durbine33a1722015-07-30 16:52:56 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbine33a1722015-07-30 16:52:56 -050014 */
15
16#include <stddef.h>
17#include <console/uart.h>
18#include <soc/iomap.h>
19#include <soc/serialio.h>
20
Aaron Durbine33a1722015-07-30 16:52:56 -050021uintptr_t uart_platform_base(int idx)
22{
23 /* Same base address for all debug port usage. In reality UART2
24 * is currently only supported. */
25 return UART_DEBUG_BASE_ADDRESS;
26}