2 * (C) Copyright 2010-2012
3 * NVIDIA Corporation <www.nvidia.com>
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #include <asm/arch/tegra2.h>
28 #include <asm/arch/clock.h>
29 #include <asm/arch/funcmux.h>
30 #include <asm/arch/pinmux.h>
31 #include <asm/arch/mmc.h>
33 #ifdef CONFIG_TEGRA2_MMC
38 * Routine: gpio_config_uart
39 * Description: Does nothing on Whistler - no UART-related GPIOs.
41 void gpio_config_uart(void)
46 * Routine: pin_mux_mmc
47 * Description: setup the pin muxes/tristate values for the SDMMC(s)
49 static void pin_mux_mmc(void)
51 funcmux_select(PERIPH_ID_SDMMC3, FUNCMUX_SDMMC3_SDB_SLXA_8BIT);
52 funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATC_ATD_8BIT);
55 /* this is a weak define that we are overriding */
56 int board_mmc_init(bd_t *bd)
61 debug("board_mmc_init called\n");
63 /* Turn on MAX8907B LDO12 to 2.8V for J40 power */
64 ret = i2c_set_bus_num(0);
66 printf("i2c_set_bus_num failed: %d\n", ret);
68 ret = i2c_write(0x3c, 0x46, 1, &val, 1);
70 printf("i2c_write 0 0x3c 0x46 failed: %d\n", ret);
72 ret = i2c_write(0x3c, 0x45, 1, &val, 1);
74 printf("i2c_write 0 0x3c 0x45 failed: %d\n", ret);
76 ret = i2c_write(0x3c, 0x44, 1, &val, 1);
78 printf("i2c_write 0 0x3c 0x44 failed: %d\n", ret);
80 /* Enable muxes, etc. for SDMMC controllers */
83 /* init dev 0 (SDMMC4), (J29 "HSMMC") with 8-bit bus */
84 tegra2_mmc_init(0, 8, -1, -1);
86 /* init dev 1 (SDMMC3), (J40 "SDIO3") with 8-bit bus */
87 tegra2_mmc_init(1, 8, -1, -1);
92 /* this is a weak define that we are overriding */
93 void pin_mux_usb(void)
99 * This is a hack. This should be represented in DT using the
100 * vbus-gpio property. However, U-Boot's DT support doesn't
101 * support any GPIO controller other than the Tegra's yet.
104 /* Turn on TAC6416's GPIO 0+1 for USB1/3's VBUS */
105 ret = i2c_set_bus_num(0);
107 printf("i2c_set_bus_num failed: %d\n", ret);
109 ret = i2c_write(0x20, 2, 1, &val, 1);
111 printf("i2c_write 0 0x20 2 failed: %d\n", ret);
113 ret = i2c_write(0x20, 6, 1, &val, 1);
115 printf("i2c_write 0 0x20 6 failed: %d\n", ret);