2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-11-28 15:04:39 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010,2011
|
|
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
2016-07-15 17:44:45 +00:00
|
|
|
* setup from FDT. If a board file does not implement one of those functions
|
2012-09-29 10:02:08 +00:00
|
|
|
* an empty stub function will be called.
|
|
|
|
*/
|
|
|
|
|
2014-10-08 20:58:08 +00:00
|
|
|
void pinmux_init(void); /* overridable general pinmux setup */
|
|
|
|
void pin_mux_usb(void); /* overridable USB pinmux setup */
|
|
|
|
void pin_mux_spi(void); /* overridable SPI pinmux setup */
|
|
|
|
void pin_mux_nand(void); /* overridable NAND pinmux setup */
|
|
|
|
void pin_mux_mmc(void); /* overridable mmc pinmux setup */
|
|
|
|
void pin_mux_display(void); /* overridable DISPLAY pinmux setup */
|
2012-09-29 10:02:08 +00:00
|
|
|
|
2011-11-28 15:04:39 +00:00
|
|
|
#endif
|