These patch modifies .h files to match the coreboot API. A few more significant changes are: - UART specific fields removed from common board structure in cdp.h. These fields are set at compile time in u-boot (where this structure comes from), they will be set in a different structure in the UART driver in an upcoming patch. - an inline wrapper is added in gpio.h to provide GPIO API the UART driver expects. - the ipq_configure_gpio() is passed the descriptor placed in ro data. BUG=chrome-os-partner:27784 TEST=none Change-Id: Id49507fb0c72ef993a89b538cd417b6c86ae3786 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/196661 Reviewed-by: Stefan Reinauer <reinauer@chromium.org>
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/* madness. Uarts are a mess. If you include this file, it
|
|
* includes ALL uart implementations which may be needed.
|
|
* No need to include them separately, and include this file FIRST.
|
|
* At least one (but at most one) of the files needs to define
|
|
* uart_init().
|
|
*/
|
|
#ifndef UART_H
|
|
#define UART_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM
|
|
#include <uart8250.h>
|
|
#endif
|
|
|
|
#if CONFIG_CONSOLE_SERIAL_UART
|
|
unsigned char uart_rx_byte(void);
|
|
void uart_tx_byte(unsigned char data);
|
|
void uart_tx_flush(void);
|
|
void uart_init(void);
|
|
int uart_can_rx_byte(void);
|
|
#endif
|
|
|
|
#if CONFIG_HAVE_UART_MEMORY_MAPPED
|
|
uint32_t uartmem_getbaseaddr(void);
|
|
#endif
|
|
|
|
#endif /* UART_H */
|