]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/nvidia/common/board.c
Merge branch 'master' of git://git.denx.de/u-boot-mmc
[karo-tx-uboot.git] / board / nvidia / common / board.c
1 /*
2  *  (C) Copyright 2010,2011
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 <ns16550.h>
26 #include <asm/io.h>
27 #include <asm/arch/tegra2.h>
28 #include <asm/arch/sys_proto.h>
29
30 #include <asm/arch/clk_rst.h>
31 #include <asm/arch/clock.h>
32 #include <asm/arch/pinmux.h>
33 #include <asm/arch/uart.h>
34 #include "board.h"
35
36 #ifdef CONFIG_TEGRA2_MMC
37 #include <mmc.h>
38 #endif
39
40 DECLARE_GLOBAL_DATA_PTR;
41
42 const struct tegra2_sysinfo sysinfo = {
43         CONFIG_TEGRA2_BOARD_STRING
44 };
45
46 /*
47  * Routine: timer_init
48  * Description: init the timestamp and lastinc value
49  */
50 int timer_init(void)
51 {
52         return 0;
53 }
54
55 static void enable_uart(enum periph_id pid)
56 {
57         /* Assert UART reset and enable clock */
58         reset_set_enable(pid, 1);
59         clock_enable(pid);
60         clock_ll_set_source(pid, 0);    /* UARTx_CLK_SRC = 00, PLLP_OUT0 */
61
62         /* wait for 2us */
63         udelay(2);
64
65         /* De-assert reset to UART */
66         reset_set_enable(pid, 0);
67 }
68
69 /*
70  * Routine: clock_init_uart
71  * Description: init the PLL and clock for the UART(s)
72  */
73 static void clock_init_uart(void)
74 {
75 #if defined(CONFIG_TEGRA2_ENABLE_UARTA)
76         enable_uart(PERIPH_ID_UART1);
77 #endif  /* CONFIG_TEGRA2_ENABLE_UARTA */
78 #if defined(CONFIG_TEGRA2_ENABLE_UARTD)
79         enable_uart(PERIPH_ID_UART4);
80 #endif  /* CONFIG_TEGRA2_ENABLE_UARTD */
81 }
82
83 /*
84  * Routine: pin_mux_uart
85  * Description: setup the pin muxes/tristate values for the UART(s)
86  */
87 static void pin_mux_uart(void)
88 {
89 #if defined(CONFIG_TEGRA2_ENABLE_UARTA)
90         pinmux_set_func(PINGRP_IRRX, PMUX_FUNC_UARTA);
91         pinmux_set_func(PINGRP_IRTX, PMUX_FUNC_UARTA);
92
93         pinmux_tristate_disable(PINGRP_IRRX);
94         pinmux_tristate_disable(PINGRP_IRTX);
95 #endif  /* CONFIG_TEGRA2_ENABLE_UARTA */
96 #if defined(CONFIG_TEGRA2_ENABLE_UARTD)
97         pinmux_set_func(PINGRP_GMC, PMUX_FUNC_UARTD);
98
99         pinmux_tristate_disable(PINGRP_GMC);
100 #endif  /* CONFIG_TEGRA2_ENABLE_UARTD */
101 }
102
103 #ifdef CONFIG_TEGRA2_MMC
104 /*
105  * Routine: pin_mux_mmc
106  * Description: setup the pin muxes/tristate values for the SDMMC(s)
107  */
108 static void pin_mux_mmc(void)
109 {
110         /* SDMMC4: config 3, x8 on 2nd set of pins */
111         pinmux_set_func(PINGRP_ATB, PMUX_FUNC_SDIO4);
112         pinmux_set_func(PINGRP_GMA, PMUX_FUNC_SDIO4);
113         pinmux_set_func(PINGRP_GME, PMUX_FUNC_SDIO4);
114
115         pinmux_tristate_disable(PINGRP_ATB);
116         pinmux_tristate_disable(PINGRP_GMA);
117         pinmux_tristate_disable(PINGRP_GME);
118
119         /* SDMMC3: SDIO3_CLK, SDIO3_CMD, SDIO3_DAT[3:0] */
120         pinmux_set_func(PINGRP_SDB, PMUX_FUNC_SDIO3);
121         pinmux_set_func(PINGRP_SDC, PMUX_FUNC_SDIO3);
122         pinmux_set_func(PINGRP_SDD, PMUX_FUNC_SDIO3);
123
124         pinmux_tristate_disable(PINGRP_SDC);
125         pinmux_tristate_disable(PINGRP_SDD);
126         pinmux_tristate_disable(PINGRP_SDB);
127 }
128 #endif
129
130 /*
131  * Routine: board_init
132  * Description: Early hardware init.
133  */
134 int board_init(void)
135 {
136         clock_init();
137         clock_verify();
138
139         /* boot param addr */
140         gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
141
142         return 0;
143 }
144
145 #ifdef CONFIG_TEGRA2_MMC
146 /* this is a weak define that we are overriding */
147 int board_mmc_init(bd_t *bd)
148 {
149         debug("board_mmc_init called\n");
150         /* Enable muxes, etc. for SDMMC controllers */
151         pin_mux_mmc();
152         gpio_config_mmc();
153
154         debug("board_mmc_init: init eMMC\n");
155         /* init dev 0, eMMC chip, with 4-bit bus */
156         tegra2_mmc_init(0, 4);
157
158         debug("board_mmc_init: init SD slot\n");
159         /* init dev 1, SD slot, with 4-bit bus */
160         tegra2_mmc_init(1, 4);
161
162         return 0;
163 }
164 #endif
165
166 #ifdef CONFIG_BOARD_EARLY_INIT_F
167 int board_early_init_f(void)
168 {
169         /* Initialize essential common plls */
170         clock_early_init();
171
172         /* Initialize UART clocks */
173         clock_init_uart();
174
175         /* Initialize periph pinmuxes */
176         pin_mux_uart();
177
178         /* Initialize periph GPIOs */
179         gpio_config_uart();
180
181         /* Init UART, scratch regs, and start CPU */
182         tegra2_start();
183         return 0;
184 }
185 #endif  /* EARLY_INIT */