]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/nvidia/whistler/whistler.c
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / board / nvidia / whistler / whistler.c
1 /*
2  *  (C) Copyright 2010-2012
3  *  NVIDIA Corporation <www.nvidia.com>
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
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.
12  *
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.
17  *
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,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25 #include <asm/io.h>
26 #include <asm/arch/tegra.h>
27 #include <asm/arch/clock.h>
28 #include <asm/arch/funcmux.h>
29 #include <asm/arch/pinmux.h>
30 #include <asm/arch-tegra/mmc.h>
31 #include <asm/gpio.h>
32 #include <i2c.h>
33 #ifdef CONFIG_TEGRA_MMC
34 #include <mmc.h>
35 #endif
36
37
38 /*
39  * Routine: pin_mux_mmc
40  * Description: setup the pin muxes/tristate values for the SDMMC(s)
41  */
42 static void pin_mux_mmc(void)
43 {
44         funcmux_select(PERIPH_ID_SDMMC3, FUNCMUX_SDMMC3_SDB_SLXA_8BIT);
45         funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATC_ATD_8BIT);
46 }
47
48 /* this is a weak define that we are overriding */
49 int board_mmc_init(bd_t *bd)
50 {
51         uchar val;
52         int ret;
53
54         debug("board_mmc_init called\n");
55
56         /* Turn on MAX8907B LDO12 to 2.8V for J40 power */
57         ret = i2c_set_bus_num(0);
58         if (ret)
59                 printf("i2c_set_bus_num failed: %d\n", ret);
60         val = 0x29;
61         ret = i2c_write(0x3c, 0x46, 1, &val, 1);
62         if (ret)
63                 printf("i2c_write 0 0x3c 0x46 failed: %d\n", ret);
64         val = 0x00;
65         ret = i2c_write(0x3c, 0x45, 1, &val, 1);
66         if (ret)
67                 printf("i2c_write 0 0x3c 0x45 failed: %d\n", ret);
68         val = 0x1f;
69         ret = i2c_write(0x3c, 0x44, 1, &val, 1);
70         if (ret)
71                 printf("i2c_write 0 0x3c 0x44 failed: %d\n", ret);
72
73         /* Enable muxes, etc. for SDMMC controllers */
74         pin_mux_mmc();
75
76         /* init dev 0 (SDMMC4), (J29 "HSMMC") with 8-bit bus */
77         tegra_mmc_init(0, 8, -1, -1);
78
79         /* init dev 1 (SDMMC3), (J40 "SDIO3") with 8-bit bus */
80         tegra_mmc_init(1, 8, -1, -1);
81
82         return 0;
83 }
84
85 /* this is a weak define that we are overriding */
86 void pin_mux_usb(void)
87 {
88         uchar val;
89         int ret;
90
91         /*
92          * This is a hack. This should be represented in DT using the
93          * vbus-gpio property. However, U-Boot's DT support doesn't
94          * support any GPIO controller other than the Tegra's yet.
95          */
96
97         /* Turn on TAC6416's GPIO 0+1 for USB1/3's VBUS */
98         ret = i2c_set_bus_num(0);
99         if (ret)
100                 printf("i2c_set_bus_num failed: %d\n", ret);
101         val = 0x03;
102         ret = i2c_write(0x20, 2, 1, &val, 1);
103         if (ret)
104                 printf("i2c_write 0 0x20 2 failed: %d\n", ret);
105         val = 0xfc;
106         ret = i2c_write(0x20, 6, 1, &val, 1);
107         if (ret)
108                 printf("i2c_write 0 0x20 6 failed: %d\n", ret);
109 }