blob: 5e28b4cd84349dac2694eb63d2c58f2e73b8fc74 [file] [log] [blame]
Tom Warren3f82b1d2011-01-27 10:58:05 +00001/*
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>
Simon Glassb4ba2be2011-08-30 06:23:13 +000031#include <asm/arch/clock.h>
Tom Warren3f82b1d2011-01-27 10:58:05 +000032#include <asm/arch/pinmux.h>
33#include <asm/arch/uart.h>
Tom Warren74652cf2011-04-14 12:18:06 +000034#include "board.h"
Tom Warren3f82b1d2011-01-27 10:58:05 +000035
Tom Warren21ef6a12011-05-31 10:30:37 +000036#ifdef CONFIG_TEGRA2_MMC
37#include <mmc.h>
38#endif
39
Tom Warren3f82b1d2011-01-27 10:58:05 +000040DECLARE_GLOBAL_DATA_PTR;
41
42const 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 */
50int timer_init(void)
51{
Tom Warren3f82b1d2011-01-27 10:58:05 +000052 return 0;
53}
54
55/*
56 * Routine: clock_init_uart
57 * Description: init the PLL and clock for the UART(s)
58 */
59static void clock_init_uart(void)
60{
61 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
Simon Glass03c609f2011-09-21 12:40:02 +000062 struct clk_pll *pll = &clkrst->crc_pll[CLOCK_ID_PERIPH];
Tom Warren3f82b1d2011-01-27 10:58:05 +000063 u32 reg;
64
Simon Glassb4ba2be2011-08-30 06:23:13 +000065 reg = readl(&pll->pll_base);
Simon Glassd07dc492011-08-30 06:23:15 +000066 if (!(reg & PLL_BASE_OVRRIDE_MASK)) {
Tom Warren3f82b1d2011-01-27 10:58:05 +000067 /* Override pllp setup for 216MHz operation. */
Simon Glassd07dc492011-08-30 06:23:15 +000068 reg = PLL_BYPASS_MASK | PLL_BASE_OVRRIDE_MASK |
69 (1 << PLL_DIVP_SHIFT) | (0xc << PLL_DIVM_SHIFT);
70 reg |= (NVRM_PLLP_FIXED_FREQ_KHZ / 500) << PLL_DIVN_SHIFT;
Simon Glassb4ba2be2011-08-30 06:23:13 +000071 writel(reg, &pll->pll_base);
Tom Warren3f82b1d2011-01-27 10:58:05 +000072
Simon Glassd07dc492011-08-30 06:23:15 +000073 reg |= PLL_ENABLE_MASK;
Simon Glassb4ba2be2011-08-30 06:23:13 +000074 writel(reg, &pll->pll_base);
Tom Warren3f82b1d2011-01-27 10:58:05 +000075
Simon Glassd07dc492011-08-30 06:23:15 +000076 reg &= ~PLL_BYPASS_MASK;
Simon Glassb4ba2be2011-08-30 06:23:13 +000077 writel(reg, &pll->pll_base);
Tom Warren3f82b1d2011-01-27 10:58:05 +000078 }
79
Tom Warren3f82b1d2011-01-27 10:58:05 +000080#if defined(CONFIG_TEGRA2_ENABLE_UARTA)
Simon Glassb4ba2be2011-08-30 06:23:13 +000081 /* Assert UART reset and enable clock */
82 reset_set_enable(PERIPH_ID_UART1, 1);
83 clock_enable(PERIPH_ID_UART1);
Tom Warren3f82b1d2011-01-27 10:58:05 +000084
85 /* Enable pllp_out0 to UART */
86 reg = readl(&clkrst->crc_clk_src_uarta);
87 reg &= 0x3FFFFFFF; /* UARTA_CLK_SRC = 00, PLLP_OUT0 */
88 writel(reg, &clkrst->crc_clk_src_uarta);
89
90 /* wait for 2us */
91 udelay(2);
92
93 /* De-assert reset to UART */
Simon Glassb4ba2be2011-08-30 06:23:13 +000094 reset_set_enable(PERIPH_ID_UART1, 0);
Tom Warren3f82b1d2011-01-27 10:58:05 +000095#endif /* CONFIG_TEGRA2_ENABLE_UARTA */
96#if defined(CONFIG_TEGRA2_ENABLE_UARTD)
Simon Glassb4ba2be2011-08-30 06:23:13 +000097 /* Assert UART reset and enable clock */
98 reset_set_enable(PERIPH_ID_UART4, 1);
99 clock_enable(PERIPH_ID_UART4);
Tom Warren3f82b1d2011-01-27 10:58:05 +0000100
101 /* Enable pllp_out0 to UART */
102 reg = readl(&clkrst->crc_clk_src_uartd);
103 reg &= 0x3FFFFFFF; /* UARTD_CLK_SRC = 00, PLLP_OUT0 */
104 writel(reg, &clkrst->crc_clk_src_uartd);
105
106 /* wait for 2us */
107 udelay(2);
108
109 /* De-assert reset to UART */
Simon Glassb4ba2be2011-08-30 06:23:13 +0000110 reset_set_enable(PERIPH_ID_UART4, 0);
Tom Warren3f82b1d2011-01-27 10:58:05 +0000111#endif /* CONFIG_TEGRA2_ENABLE_UARTD */
112}
113
114/*
115 * Routine: pin_mux_uart
116 * Description: setup the pin muxes/tristate values for the UART(s)
117 */
118static void pin_mux_uart(void)
119{
120 struct pmux_tri_ctlr *pmt = (struct pmux_tri_ctlr *)NV_PA_APB_MISC_BASE;
121 u32 reg;
122
123#if defined(CONFIG_TEGRA2_ENABLE_UARTA)
124 reg = readl(&pmt->pmt_ctl_c);
125 reg &= 0xFFF0FFFF; /* IRRX_/IRTX_SEL [19:16] = 00 UARTA */
126 writel(reg, &pmt->pmt_ctl_c);
127
Simon Glass858bd092011-08-30 06:23:14 +0000128 pinmux_tristate_disable(PIN_IRRX);
129 pinmux_tristate_disable(PIN_IRTX);
Tom Warren3f82b1d2011-01-27 10:58:05 +0000130#endif /* CONFIG_TEGRA2_ENABLE_UARTA */
131#if defined(CONFIG_TEGRA2_ENABLE_UARTD)
132 reg = readl(&pmt->pmt_ctl_b);
133 reg &= 0xFFFFFFF3; /* GMC_SEL [3:2] = 00, UARTD */
134 writel(reg, &pmt->pmt_ctl_b);
135
Simon Glass858bd092011-08-30 06:23:14 +0000136 pinmux_tristate_disable(PIN_GMC);
Tom Warren3f82b1d2011-01-27 10:58:05 +0000137#endif /* CONFIG_TEGRA2_ENABLE_UARTD */
138}
139
Simon Glass3e00dbd2011-09-21 12:40:03 +0000140#ifdef CONFIG_TEGRA2_MMC
Tom Warren3f82b1d2011-01-27 10:58:05 +0000141/*
Tom Warren21ef6a12011-05-31 10:30:37 +0000142 * Routine: clock_init_mmc
143 * Description: init the PLL and clocks for the SDMMC controllers
144 */
145static void clock_init_mmc(void)
146{
147 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
148 u32 reg;
149
150 /* Do the SDMMC resets/clock enables */
Simon Glassb4ba2be2011-08-30 06:23:13 +0000151 reset_set_enable(PERIPH_ID_SDMMC4, 1);
152 clock_enable(PERIPH_ID_SDMMC4);
Tom Warren21ef6a12011-05-31 10:30:37 +0000153
154 /* Enable pllp_out0 to SDMMC4 */
155 reg = readl(&clkrst->crc_clk_src_sdmmc4);
156 reg &= 0x3FFFFF00; /* SDMMC4_CLK_SRC = 00, PLLP_OUT0 */
157 reg |= (10 << 1); /* n-1, 11-1 shl 1 */
158 writel(reg, &clkrst->crc_clk_src_sdmmc4);
159
160 /*
161 * As per the Tegra2 TRM, section 5.3.4:
162 * 'Wait 2 us for the clock to flush through the pipe/logic'
163 */
164 udelay(2);
165
Simon Glassb4ba2be2011-08-30 06:23:13 +0000166 reset_set_enable(PERIPH_ID_SDMMC4, 1);
Tom Warren21ef6a12011-05-31 10:30:37 +0000167
Simon Glassb4ba2be2011-08-30 06:23:13 +0000168 reset_set_enable(PERIPH_ID_SDMMC3, 1);
169 clock_enable(PERIPH_ID_SDMMC3);
Tom Warren21ef6a12011-05-31 10:30:37 +0000170
171 /* Enable pllp_out0 to SDMMC4, set divisor to 11 for 20MHz */
172 reg = readl(&clkrst->crc_clk_src_sdmmc3);
173 reg &= 0x3FFFFF00; /* SDMMC3_CLK_SRC = 00, PLLP_OUT0 */
174 reg |= (10 << 1); /* n-1, 11-1 shl 1 */
175 writel(reg, &clkrst->crc_clk_src_sdmmc3);
176
177 /* wait for 2us */
178 udelay(2);
179
Simon Glassb4ba2be2011-08-30 06:23:13 +0000180 reset_set_enable(PERIPH_ID_SDMMC3, 0);
Tom Warren21ef6a12011-05-31 10:30:37 +0000181}
182
183/*
184 * Routine: pin_mux_mmc
185 * Description: setup the pin muxes/tristate values for the SDMMC(s)
186 */
187static void pin_mux_mmc(void)
188{
189 struct pmux_tri_ctlr *pmt = (struct pmux_tri_ctlr *)NV_PA_APB_MISC_BASE;
190 u32 reg;
191
192 /* SDMMC4 */
193 /* config 2, x8 on 2nd set of pins */
194 reg = readl(&pmt->pmt_ctl_a);
195 reg |= (3 << 16); /* ATB_SEL [17:16] = 11 SDIO4 */
196 writel(reg, &pmt->pmt_ctl_a);
197 reg = readl(&pmt->pmt_ctl_b);
198 reg |= (3 << 0); /* GMA_SEL [1:0] = 11 SDIO4 */
199 writel(reg, &pmt->pmt_ctl_b);
200 reg = readl(&pmt->pmt_ctl_d);
201 reg |= (3 << 0); /* GME_SEL [1:0] = 11 SDIO4 */
202 writel(reg, &pmt->pmt_ctl_d);
203
Simon Glass858bd092011-08-30 06:23:14 +0000204 pinmux_tristate_disable(PIN_ATB);
205 pinmux_tristate_disable(PIN_GMA);
206 pinmux_tristate_disable(PIN_GME);
Tom Warren21ef6a12011-05-31 10:30:37 +0000207
208 /* SDMMC3 */
209 /* SDIO3_CLK, SDIO3_CMD, SDIO3_DAT[3:0] */
210 reg = readl(&pmt->pmt_ctl_d);
211 reg &= 0xFFFF03FF;
212 reg |= (2 << 10); /* SDB_SEL [11:10] = 01 SDIO3 */
213 reg |= (2 << 12); /* SDC_SEL [13:12] = 01 SDIO3 */
214 reg |= (2 << 14); /* SDD_SEL [15:14] = 01 SDIO3 */
215 writel(reg, &pmt->pmt_ctl_d);
216
Simon Glass858bd092011-08-30 06:23:14 +0000217 pinmux_tristate_disable(PIN_SDC);
218 pinmux_tristate_disable(PIN_SDD);
219 pinmux_tristate_disable(PIN_SDB);
Tom Warren21ef6a12011-05-31 10:30:37 +0000220}
Simon Glass3e00dbd2011-09-21 12:40:03 +0000221#endif
Tom Warrenf4ef6662011-04-14 12:09:41 +0000222
223/*
Tom Warren3f82b1d2011-01-27 10:58:05 +0000224 * Routine: board_init
225 * Description: Early hardware init.
226 */
227int board_init(void)
228{
229 /* boot param addr */
230 gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
Tom Warren3f82b1d2011-01-27 10:58:05 +0000231
Tom Warren3f82b1d2011-01-27 10:58:05 +0000232 return 0;
233}
Tom Warren21ef6a12011-05-31 10:30:37 +0000234
235#ifdef CONFIG_TEGRA2_MMC
236/* this is a weak define that we are overriding */
237int board_mmc_init(bd_t *bd)
238{
239 debug("board_mmc_init called\n");
240 /* Enable clocks, muxes, etc. for SDMMC controllers */
241 clock_init_mmc();
242 pin_mux_mmc();
243
244 debug("board_mmc_init: init eMMC\n");
245 /* init dev 0, eMMC chip, with 4-bit bus */
246 tegra2_mmc_init(0, 4);
247
248 debug("board_mmc_init: init SD slot\n");
249 /* init dev 1, SD slot, with 4-bit bus */
250 tegra2_mmc_init(1, 4);
251
252 return 0;
253}
254
255/* this is a weak define that we are overriding */
256int board_mmc_getcd(u8 *cd, struct mmc *mmc)
257{
258 debug("board_mmc_getcd called\n");
259 /*
260 * Hard-code CD presence for now. Need to add GPIO inputs
261 * for Seaboard & Harmony (& Kaen/Aebl/Wario?)
262 */
263 *cd = 1;
264 return 0;
265}
266#endif
Simon Glass3e00dbd2011-09-21 12:40:03 +0000267
268#ifdef CONFIG_BOARD_EARLY_INIT_F
269int board_early_init_f(void)
270{
271 /* Initialize UART clocks */
272 clock_init_uart();
273
274 /* Initialize periph pinmuxes */
275 pin_mux_uart();
276
277 /* Initialize periph GPIOs */
278 gpio_config_uart();
279
280 /* Init UART, scratch regs, and start CPU */
281 tegra2_start();
282 return 0;
283}
284#endif /* EARLY_INIT */