1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */ 2150c2493STom Warren /* 3150c2493STom Warren * (C) Copyright 2010,2011 4150c2493STom Warren * NVIDIA Corporation <www.nvidia.com> 5150c2493STom Warren */ 6150c2493STom Warren 7150c2493STom Warren #ifndef _TEGRA_BOARD_H_ 8150c2493STom Warren #define _TEGRA_BOARD_H_ 9150c2493STom Warren 10516f00b3SLucas Stach /* Set up pinmux to make UART usable */ 119000652dSAllen Martin void gpio_early_init_uart(void); 12516f00b3SLucas Stach 13516f00b3SLucas Stach /* Set up early UART output */ 14150c2493STom Warren void board_init_uart_f(void); 15150c2493STom Warren 16516f00b3SLucas Stach /* Set up any early GPIOs the board might need for proper operation */ 17516f00b3SLucas Stach void gpio_early_init(void); /* overrideable GPIO config */ 18516f00b3SLucas Stach 19516f00b3SLucas Stach /* 20516f00b3SLucas Stach * Hooks to allow boards to set up the pinmux for a specific function. 21516f00b3SLucas Stach * Has to be implemented in the board files as we don't yet support pinmux 2262a3b7ddSRobert P. J. Day * setup from FDT. If a board file does not implement one of those functions 23516f00b3SLucas Stach * an empty stub function will be called. 24516f00b3SLucas Stach */ 25516f00b3SLucas Stach 267b8119ddSJeroen Hofstee void pinmux_init(void); /* overridable general pinmux setup */ 277b8119ddSJeroen Hofstee void pin_mux_usb(void); /* overridable USB pinmux setup */ 287b8119ddSJeroen Hofstee void pin_mux_spi(void); /* overridable SPI pinmux setup */ 297b8119ddSJeroen Hofstee void pin_mux_nand(void); /* overridable NAND pinmux setup */ 307b8119ddSJeroen Hofstee void pin_mux_mmc(void); /* overridable mmc pinmux setup */ 317b8119ddSJeroen Hofstee void pin_mux_display(void); /* overridable DISPLAY pinmux setup */ 32516f00b3SLucas Stach 33150c2493STom Warren #endif 34