Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 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> |
Simon Glass | b4ba2be | 2011-08-30 06:23:13 +0000 | [diff] [blame] | 31 | #include <asm/arch/clock.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 32 | #include <asm/arch/pinmux.h> |
| 33 | #include <asm/arch/uart.h> |
Tom Warren | 74652cf | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 34 | #include "board.h" |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 35 | |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 36 | #ifdef CONFIG_TEGRA2_MMC |
| 37 | #include <mmc.h> |
| 38 | #endif |
| 39 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 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 | { |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 52 | return 0; |
| 53 | } |
| 54 | |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 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 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 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 | { |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 75 | #if defined(CONFIG_TEGRA2_ENABLE_UARTA) |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 76 | enable_uart(PERIPH_ID_UART1); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 77 | #endif /* CONFIG_TEGRA2_ENABLE_UARTA */ |
| 78 | #if defined(CONFIG_TEGRA2_ENABLE_UARTD) |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 79 | enable_uart(PERIPH_ID_UART4); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 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 | { |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 89 | #if defined(CONFIG_TEGRA2_ENABLE_UARTA) |
Simon Glass | 20e18e0 | 2011-09-21 12:40:06 +0000 | [diff] [blame^] | 90 | pinmux_set_func(PINGRP_IRRX, PMUX_FUNC_UARTA); |
| 91 | pinmux_set_func(PINGRP_IRTX, PMUX_FUNC_UARTA); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 92 | |
Simon Glass | c3cf49d | 2011-09-21 12:40:05 +0000 | [diff] [blame] | 93 | pinmux_tristate_disable(PINGRP_IRRX); |
| 94 | pinmux_tristate_disable(PINGRP_IRTX); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 95 | #endif /* CONFIG_TEGRA2_ENABLE_UARTA */ |
| 96 | #if defined(CONFIG_TEGRA2_ENABLE_UARTD) |
Simon Glass | 20e18e0 | 2011-09-21 12:40:06 +0000 | [diff] [blame^] | 97 | pinmux_set_func(PINGRP_GMC, PMUX_FUNC_UARTD); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 98 | |
Simon Glass | c3cf49d | 2011-09-21 12:40:05 +0000 | [diff] [blame] | 99 | pinmux_tristate_disable(PINGRP_GMC); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 100 | #endif /* CONFIG_TEGRA2_ENABLE_UARTD */ |
| 101 | } |
| 102 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 103 | #ifdef CONFIG_TEGRA2_MMC |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 104 | /* |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 105 | * Routine: clock_init_mmc |
| 106 | * Description: init the PLL and clocks for the SDMMC controllers |
| 107 | */ |
| 108 | static void clock_init_mmc(void) |
| 109 | { |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 110 | clock_start_periph_pll(PERIPH_ID_SDMMC4, CLOCK_ID_PERIPH, 20000000); |
| 111 | clock_start_periph_pll(PERIPH_ID_SDMMC3, CLOCK_ID_PERIPH, 20000000); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /* |
| 115 | * Routine: pin_mux_mmc |
| 116 | * Description: setup the pin muxes/tristate values for the SDMMC(s) |
| 117 | */ |
| 118 | static void pin_mux_mmc(void) |
| 119 | { |
Simon Glass | 20e18e0 | 2011-09-21 12:40:06 +0000 | [diff] [blame^] | 120 | /* SDMMC4: config 3, x8 on 2nd set of pins */ |
| 121 | pinmux_set_func(PINGRP_ATB, PMUX_FUNC_SDIO4); |
| 122 | pinmux_set_func(PINGRP_GMA, PMUX_FUNC_SDIO4); |
| 123 | pinmux_set_func(PINGRP_GME, PMUX_FUNC_SDIO4); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 124 | |
Simon Glass | c3cf49d | 2011-09-21 12:40:05 +0000 | [diff] [blame] | 125 | pinmux_tristate_disable(PINGRP_ATB); |
| 126 | pinmux_tristate_disable(PINGRP_GMA); |
| 127 | pinmux_tristate_disable(PINGRP_GME); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 128 | |
Simon Glass | 20e18e0 | 2011-09-21 12:40:06 +0000 | [diff] [blame^] | 129 | /* SDMMC3: SDIO3_CLK, SDIO3_CMD, SDIO3_DAT[3:0] */ |
| 130 | pinmux_set_func(PINGRP_SDB, PMUX_FUNC_SDIO3); |
| 131 | pinmux_set_func(PINGRP_SDC, PMUX_FUNC_SDIO3); |
| 132 | pinmux_set_func(PINGRP_SDD, PMUX_FUNC_SDIO3); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 133 | |
Simon Glass | c3cf49d | 2011-09-21 12:40:05 +0000 | [diff] [blame] | 134 | pinmux_tristate_disable(PINGRP_SDC); |
| 135 | pinmux_tristate_disable(PINGRP_SDD); |
| 136 | pinmux_tristate_disable(PINGRP_SDB); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 137 | } |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 138 | #endif |
Tom Warren | f4ef666 | 2011-04-14 12:09:41 +0000 | [diff] [blame] | 139 | |
| 140 | /* |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 141 | * Routine: board_init |
| 142 | * Description: Early hardware init. |
| 143 | */ |
| 144 | int board_init(void) |
| 145 | { |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 146 | clock_init(); |
| 147 | clock_verify(); |
| 148 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 149 | /* boot param addr */ |
| 150 | gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 151 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 152 | return 0; |
| 153 | } |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 154 | |
| 155 | #ifdef CONFIG_TEGRA2_MMC |
| 156 | /* this is a weak define that we are overriding */ |
| 157 | int board_mmc_init(bd_t *bd) |
| 158 | { |
| 159 | debug("board_mmc_init called\n"); |
| 160 | /* Enable clocks, muxes, etc. for SDMMC controllers */ |
| 161 | clock_init_mmc(); |
| 162 | pin_mux_mmc(); |
| 163 | |
| 164 | debug("board_mmc_init: init eMMC\n"); |
| 165 | /* init dev 0, eMMC chip, with 4-bit bus */ |
| 166 | tegra2_mmc_init(0, 4); |
| 167 | |
| 168 | debug("board_mmc_init: init SD slot\n"); |
| 169 | /* init dev 1, SD slot, with 4-bit bus */ |
| 170 | tegra2_mmc_init(1, 4); |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | /* this is a weak define that we are overriding */ |
| 176 | int board_mmc_getcd(u8 *cd, struct mmc *mmc) |
| 177 | { |
| 178 | debug("board_mmc_getcd called\n"); |
| 179 | /* |
| 180 | * Hard-code CD presence for now. Need to add GPIO inputs |
| 181 | * for Seaboard & Harmony (& Kaen/Aebl/Wario?) |
| 182 | */ |
| 183 | *cd = 1; |
| 184 | return 0; |
| 185 | } |
| 186 | #endif |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 187 | |
| 188 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 189 | int board_early_init_f(void) |
| 190 | { |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 191 | /* Initialize essential common plls */ |
| 192 | clock_early_init(); |
| 193 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 194 | /* Initialize UART clocks */ |
| 195 | clock_init_uart(); |
| 196 | |
| 197 | /* Initialize periph pinmuxes */ |
| 198 | pin_mux_uart(); |
| 199 | |
| 200 | /* Initialize periph GPIOs */ |
| 201 | gpio_config_uart(); |
| 202 | |
| 203 | /* Init UART, scratch regs, and start CPU */ |
| 204 | tegra2_start(); |
| 205 | return 0; |
| 206 | } |
| 207 | #endif /* EARLY_INIT */ |