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: pin_mux_mmc |
| 106 | * Description: setup the pin muxes/tristate values for the SDMMC(s) |
| 107 | */ |
| 108 | static void pin_mux_mmc(void) |
| 109 | { |
Simon Glass | 20e18e0 | 2011-09-21 12:40:06 +0000 | [diff] [blame] | 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); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 114 | |
Simon Glass | c3cf49d | 2011-09-21 12:40:05 +0000 | [diff] [blame] | 115 | pinmux_tristate_disable(PINGRP_ATB); |
| 116 | pinmux_tristate_disable(PINGRP_GMA); |
| 117 | pinmux_tristate_disable(PINGRP_GME); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 118 | |
Simon Glass | 20e18e0 | 2011-09-21 12:40:06 +0000 | [diff] [blame] | 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); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 123 | |
Simon Glass | c3cf49d | 2011-09-21 12:40:05 +0000 | [diff] [blame] | 124 | pinmux_tristate_disable(PINGRP_SDC); |
| 125 | pinmux_tristate_disable(PINGRP_SDD); |
| 126 | pinmux_tristate_disable(PINGRP_SDB); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 127 | } |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 128 | #endif |
Tom Warren | f4ef666 | 2011-04-14 12:09:41 +0000 | [diff] [blame] | 129 | |
| 130 | /* |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 131 | * Routine: board_init |
| 132 | * Description: Early hardware init. |
| 133 | */ |
| 134 | int board_init(void) |
| 135 | { |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 136 | clock_init(); |
| 137 | clock_verify(); |
| 138 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 139 | /* boot param addr */ |
| 140 | gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 141 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 142 | return 0; |
| 143 | } |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 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"); |
Stephen Warren | de71fbe | 2011-10-31 06:51:34 +0000 | [diff] [blame] | 150 | /* Enable muxes, etc. for SDMMC controllers */ |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 151 | pin_mux_mmc(); |
Tom Warren | ccf7988 | 2011-09-21 12:40:07 +0000 | [diff] [blame] | 152 | gpio_config_mmc(); |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 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 | } |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 164 | #endif |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 165 | |
| 166 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 167 | int board_early_init_f(void) |
| 168 | { |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 169 | /* Initialize essential common plls */ |
| 170 | clock_early_init(); |
| 171 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 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 */ |