2011-11-28 15:04:39 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010,2011
|
|
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-11-28 15:04:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TEGRA_BOARD_H_
|
|
|
|
#define _TEGRA_BOARD_H_
|
|
|
|
|
2012-09-29 10:02:08 +00:00
|
|
|
/* Set up pinmux to make UART usable */
|
2013-03-16 18:58:02 +00:00
|
|
|
void gpio_early_init_uart(void);
|
2012-09-29 10:02:08 +00:00
|
|
|
|
|
|
|
/* Set up early UART output */
|
2011-11-28 15:04:39 +00:00
|
|
|
void board_init_uart_f(void);
|
|
|
|
|
2012-09-29 10:02:08 +00:00
|
|
|
/* Set up any early GPIOs the board might need for proper operation */
|
|
|
|
void gpio_early_init(void); /* overrideable GPIO config */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hooks to allow boards to set up the pinmux for a specific function.
|
|
|
|
* Has to be implemented in the board files as we don't yet support pinmux
|
|
|
|
* setup from FTD. If a board file does not implement one of those functions
|
|
|
|
* an empty stub function will be called.
|
|
|
|
*/
|
|
|
|
|
2012-11-25 11:26:11 +00:00
|
|
|
void pin_mux_usb(void); /* overrideable USB pinmux setup */
|
|
|
|
void pin_mux_spi(void); /* overrideable SPI pinmux setup */
|
|
|
|
void pin_mux_nand(void); /* overrideable NAND pinmux setup */
|
|
|
|
void pin_mux_display(void); /* overrideable DISPLAY pinmux setup */
|
2012-09-29 10:02:08 +00:00
|
|
|
|
2011-11-28 15:04:39 +00:00
|
|
|
#endif
|