]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/include/asm/arch-tegra/board.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / include / asm / arch-tegra / board.h
CommitLineData
bb6997f8
SG
1/*
2 * (C) Copyright 2010,2011
3 * NVIDIA Corporation <www.nvidia.com>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
bb6997f8
SG
6 */
7
8#ifndef _TEGRA_BOARD_H_
9#define _TEGRA_BOARD_H_
10
516f00b3 11/* Set up pinmux to make UART usable */
9000652d 12void gpio_early_init_uart(void);
516f00b3
LS
13
14/* Set up early UART output */
bb6997f8
SG
15void board_init_uart_f(void);
16
516f00b3
LS
17/* Set up any early GPIOs the board might need for proper operation */
18void gpio_early_init(void); /* overrideable GPIO config */
19
20/*
21 * Hooks to allow boards to set up the pinmux for a specific function.
22 * Has to be implemented in the board files as we don't yet support pinmux
23 * setup from FTD. If a board file does not implement one of those functions
24 * an empty stub function will be called.
25 */
26
716d9439
MD
27void pin_mux_usb(void); /* overrideable USB pinmux setup */
28void pin_mux_spi(void); /* overrideable SPI pinmux setup */
29void pin_mux_nand(void); /* overrideable NAND pinmux setup */
30void pin_mux_display(void); /* overrideable DISPLAY pinmux setup */
516f00b3 31
bb6997f8 32#endif