Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2010,2011 |
| 4 | * NVIDIA Corporation <www.nvidia.com> |
Thierry Reding | ed900c5 | 2012-06-04 20:02:24 +0000 | [diff] [blame] | 5 | * (C) Copyright 2011-2012 |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 6 | * Avionic Design GmbH <www.avionic-design.de> |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <ns16550.h> |
| 11 | #include <asm/io.h> |
| 12 | #include <asm/gpio.h> |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 13 | #include <asm/arch/clock.h> |
Simon Glass | f448302 | 2012-01-11 12:42:26 +0000 | [diff] [blame] | 14 | #include <asm/arch/funcmux.h> |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 15 | #include <asm/arch/pinmux.h> |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 16 | #include <asm/arch/tegra.h> |
| 17 | #include <asm/arch-tegra/board.h> |
| 18 | #include <asm/arch-tegra/clk_rst.h> |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 19 | #include <asm/arch-tegra/sys_proto.h> |
| 20 | #include <asm/arch-tegra/uart.h> |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 21 | |
Thierry Reding | 22d5850 | 2012-06-04 20:02:28 +0000 | [diff] [blame] | 22 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 23 | void gpio_early_init(void) |
| 24 | { |
Stephen Warren | 01a97a1 | 2016-05-12 12:07:39 -0600 | [diff] [blame] | 25 | gpio_request(TEGRA_GPIO(I, 4), NULL); |
| 26 | gpio_direction_output(TEGRA_GPIO(I, 4), 1); |
Thierry Reding | 22d5850 | 2012-06-04 20:02:28 +0000 | [diff] [blame] | 27 | } |
| 28 | #endif |
| 29 | |
Masahiro Yamada | 1d2c050 | 2017-01-10 13:32:07 +0900 | [diff] [blame] | 30 | #ifdef CONFIG_MMC_SDHCI_TEGRA |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 31 | /* |
| 32 | * Routine: pin_mux_mmc |
| 33 | * Description: setup the pin muxes/tristate values for the SDMMC(s) |
| 34 | */ |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 35 | void pin_mux_mmc(void) |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 36 | { |
Simon Glass | f448302 | 2012-01-11 12:42:26 +0000 | [diff] [blame] | 37 | funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATB_GMA_GME_8_BIT); |
Thierry Reding | 7925454 | 2012-06-04 20:02:29 +0000 | [diff] [blame] | 38 | /* for write-protect GPIO PI6 */ |
Stephen Warren | 70ad375 | 2014-03-21 12:28:58 -0600 | [diff] [blame] | 39 | pinmux_tristate_disable(PMUX_PINGRP_ATA); |
Thierry Reding | ed900c5 | 2012-06-04 20:02:24 +0000 | [diff] [blame] | 40 | /* for CD GPIO PH2 */ |
Stephen Warren | 70ad375 | 2014-03-21 12:28:58 -0600 | [diff] [blame] | 41 | pinmux_tristate_disable(PMUX_PINGRP_ATD); |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 42 | } |
Thierry Reding | b1c0c73 | 2011-11-17 00:10:24 +0000 | [diff] [blame] | 43 | #endif |