blob: d73f5018193ffa158ee9c88cb470eae823d73d0d [file] [log] [blame]
Tom Rixe63e5902009-10-17 12:41:06 -05001/*
2 * (C) Copyright 2004-2009
3 * Texas Instruments Incorporated, <www.ti.com>
4 * Richard Woodruff <r-woodruff2@ti.com>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24#include <common.h>
Nishanth Menona1725992009-10-16 00:06:36 -050025#include <netdev.h>
Tom Rixe63e5902009-10-17 12:41:06 -050026#include <twl4030.h>
27#include <asm/io.h>
Tom Rini7cc862b2011-09-03 21:52:21 -040028#include <asm/arch/mmc_host_def.h>
Tom Rixe63e5902009-10-17 12:41:06 -050029#include <asm/arch/mux.h>
30#include <asm/arch/mem.h>
31#include <asm/arch/sys_proto.h>
32#include <asm/mach-types.h>
33#include "sdp.h"
34
John Rigby29565322010-12-20 18:27:51 -070035DECLARE_GLOBAL_DATA_PTR;
36
Tom Rixe63e5902009-10-17 12:41:06 -050037const omap3_sysinfo sysinfo = {
38 DDR_DISCRETE,
39 "OMAP3 SDP3430 board",
40#if defined(CONFIG_ENV_IS_IN_ONENAND)
41 "OneNAND",
42#elif defined(CONFIG_ENV_IS_IN_NAND)
43 "NAND",
44#else
45 "NOR",
46#endif
47};
48
49/* Timing definitions for GPMC controller for Sibley NOR */
50static const u32 gpmc_sdp_nor[] = {
51 SDP3430_NOR_GPMC_CONF1,
52 SDP3430_NOR_GPMC_CONF2,
53 SDP3430_NOR_GPMC_CONF3,
54 SDP3430_NOR_GPMC_CONF4,
55 SDP3430_NOR_GPMC_CONF5,
56 SDP3430_NOR_GPMC_CONF6,
57 /*CONF7- computed as params */
58};
59
60/*
61 * Timing definitions for GPMC controller for Debug Board
62 * Debug board contains access to ethernet and DIP Switch setting
63 * information etc.
64 */
65static const u32 gpmc_sdp_debug[] = {
66 SDP3430_DEBUG_GPMC_CONF1,
67 SDP3430_DEBUG_GPMC_CONF2,
68 SDP3430_DEBUG_GPMC_CONF3,
69 SDP3430_DEBUG_GPMC_CONF4,
70 SDP3430_DEBUG_GPMC_CONF5,
71 SDP3430_DEBUG_GPMC_CONF6,
72 /*CONF7- computed as params */
73};
74
75/* Timing defintions for GPMC OneNAND */
76static const u32 gpmc_sdp_onenand[] = {
77 SDP3430_ONENAND_GPMC_CONF1,
78 SDP3430_ONENAND_GPMC_CONF2,
79 SDP3430_ONENAND_GPMC_CONF3,
80 SDP3430_ONENAND_GPMC_CONF4,
81 SDP3430_ONENAND_GPMC_CONF5,
82 SDP3430_ONENAND_GPMC_CONF6,
83 /*CONF7- computed as params */
84};
85
86/* GPMC definitions for GPMC NAND */
87static const u32 gpmc_sdp_nand[] = {
88 SDP3430_NAND_GPMC_CONF1,
89 SDP3430_NAND_GPMC_CONF2,
90 SDP3430_NAND_GPMC_CONF3,
91 SDP3430_NAND_GPMC_CONF4,
92 SDP3430_NAND_GPMC_CONF5,
93 SDP3430_NAND_GPMC_CONF6,
94 /*CONF7- computed as params */
95};
96
97/* gpmc_cfg is initialized by gpmc_init and we use it here */
98extern struct gpmc *gpmc_cfg;
99
100/**
101 * @brief board_init - gpmc and basic setup as phase1 of boot sequence
102 *
103 * @return 0
104 */
105int board_init(void)
106{
Tom Rixe63e5902009-10-17 12:41:06 -0500107 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
108 /* TODO: Dynamically pop out CS mapping and program accordingly */
109 /* Configure devices for default ON ON ON settings */
110 enable_gpmc_cs_config(gpmc_sdp_nor, &gpmc_cfg->cs[0],
111 CONFIG_SYS_FLASH_BASE, GPMC_SIZE_128M);
112 enable_gpmc_cs_config(gpmc_sdp_nand, &gpmc_cfg->cs[1], 0x28000000,
113 GPMC_SIZE_16M);
114 enable_gpmc_cs_config(gpmc_sdp_onenand, &gpmc_cfg->cs[2], 0x20000000,
115 GPMC_SIZE_16M);
116 enable_gpmc_cs_config(gpmc_sdp_debug, &gpmc_cfg->cs[3], DEBUG_BASE,
117 GPMC_SIZE_16M);
118 /* board id for Linux */
119 gd->bd->bi_arch_number = MACH_TYPE_OMAP_3430SDP;
120 /* boot param addr */
121 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
122
123 return 0;
124}
125
126#define LAN_RESET_REGISTER (CONFIG_LAN91C96_BASE + 0x01c)
127#define ETH_CONTROL_REG (CONFIG_LAN91C96_BASE + 0x30b)
128
129/**
Nishanth Menona1725992009-10-16 00:06:36 -0500130 * @brief board_eth_init Take the Ethernet controller out of reset and wait
Tom Rixe63e5902009-10-17 12:41:06 -0500131 * for the EEPROM load to complete.
132 */
Nishanth Menona1725992009-10-16 00:06:36 -0500133int board_eth_init(bd_t *bis)
Tom Rixe63e5902009-10-17 12:41:06 -0500134{
Nishanth Menona1725992009-10-16 00:06:36 -0500135 int rc = 0;
136#ifdef CONFIG_LAN91C96
Tom Rixe63e5902009-10-17 12:41:06 -0500137 int cnt = 20;
138
139 writew(0x0, LAN_RESET_REGISTER);
140 do {
141 writew(0x1, LAN_RESET_REGISTER);
142 udelay(100);
143 if (cnt == 0)
144 goto reset_err_out;
145 --cnt;
146 } while (readw(LAN_RESET_REGISTER) != 0x1);
147
148 cnt = 20;
149
150 do {
151 writew(0x0, LAN_RESET_REGISTER);
152 udelay(100);
153 if (cnt == 0)
154 goto reset_err_out;
155 --cnt;
156 } while (readw(LAN_RESET_REGISTER) != 0x0000);
157 udelay(1000);
158
159 writeb(readb(ETH_CONTROL_REG) & ~0x1, ETH_CONTROL_REG);
160 udelay(1000);
Nishanth Menona1725992009-10-16 00:06:36 -0500161 rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);
Tom Rixe63e5902009-10-17 12:41:06 -0500162reset_err_out:
Tom Rixe63e5902009-10-17 12:41:06 -0500163
164#endif
Nishanth Menona1725992009-10-16 00:06:36 -0500165 return rc;
Tom Rixe63e5902009-10-17 12:41:06 -0500166}
167
168/**
169 * @brief misc_init_r - Configure SDP board specific configurations
170 * such as power configurations, ethernet initialization as phase2 of
171 * boot sequence
172 *
173 * @return 0
174 */
175int misc_init_r(void)
176{
177 /* Partial setup:
178 * VAUX3 - 2.8V for DVI
179 * VPLL1 - 1.8V
180 * VDAC - 1.8V
181 * and turns on LEDA/LEDB (not needed ... NOP?)
182 */
183 twl4030_power_init();
184
185 /* FIXME finish setup:
186 * VAUX1 - 2.8V for mainboard I/O
187 * VAUX2 - 2.8V for camera
188 * VAUX4 - 1.8V for OMAP3 CSI
189 * VMMC1 - 3.15V (init, variable) for MMC1
190 * VMMC2 - 1.85V for MMC2
191 * VSIM - off (init, variable) for MMC1.DAT[3..7], SIM
192 * VPLL2 - 1.8V
193 */
Tom Rixe63e5902009-10-17 12:41:06 -0500194
195 return 0;
196}
197
198/**
199 * @brief set_muxconf_regs Setting up the configuration Mux registers
200 * specific to the hardware. Many pins need to be moved from protect
201 * to primary mode.
202 */
203void set_muxconf_regs(void)
204{
205 /* platform specific muxes */
206 MUX_SDP3430();
207}
Tom Rini7cc862b2011-09-03 21:52:21 -0400208
209#ifdef CONFIG_GENERIC_MMC
210int board_mmc_init(bd_t *bis)
211{
212 omap_mmc_init(0);
213 return 0;
214}
215#endif