2 * Maintainer : Steve Sakoman <steve@sakoman.com>
4 * Derived from Beagle Board, 3430 SDP, and OMAP3EVM code by
5 * Richard Woodruff <r-woodruff2@ti.com>
6 * Syed Mohammed Khasim <khasim@ti.com>
7 * Sunil Kumar <sunilsaini05@gmail.com>
8 * Shashi Ranjan <shashiranjanmca05@gmail.com>
10 * (C) Copyright 2004-2008
11 * Texas Instruments, <www.ti.com>
13 * SPDX-License-Identifier: GPL-2.0+
18 #include <linux/mtd/nand.h>
20 #include <asm/arch/mmc_host_def.h>
21 #include <asm/arch/mux.h>
22 #include <asm/arch/mem.h>
23 #include <asm/arch/sys_proto.h>
25 #include <asm/mach-types.h>
28 DECLARE_GLOBAL_DATA_PTR;
30 #define TWL4030_I2C_BUS 0
31 #define EXPANSION_EEPROM_I2C_BUS 2
32 #define EXPANSION_EEPROM_I2C_ADDRESS 0x51
34 #define GUMSTIX_EMPTY_EEPROM 0x0
36 #define GUMSTIX_SUMMIT 0x01000200
37 #define GUMSTIX_TOBI 0x02000200
38 #define GUMSTIX_TOBI_DUO 0x03000200
39 #define GUMSTIX_PALO35 0x04000200
40 #define GUMSTIX_PALO43 0x05000200
41 #define GUMSTIX_CHESTNUT43 0x06000200
42 #define GUMSTIX_PINTO 0x07000200
43 #define GUMSTIX_GALLOP43 0x08000200
44 #define GUMSTIX_ALTO35 0x09000200
45 #define GUMSTIX_STAGECOACH 0x0A000200
46 #define GUMSTIX_THUMBO 0x0B000200
47 #define GUMSTIX_TURTLECORE 0x0C000200
48 #define GUMSTIX_ARBOR43C 0x0D000200
50 #define ETTUS_USRP_E 0x01000300
52 #define GUMSTIX_NO_EEPROM 0xffffffff
55 unsigned int device_vendor;
56 unsigned char revision;
57 unsigned char content;
61 } expansion_config = {0x0};
65 * Description: Early hardware init.
69 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
70 /* board id for Linux */
71 gd->bd->bi_arch_number = MACH_TYPE_OVERO;
73 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
79 * Routine: get_board_revision
80 * Description: Returns the board revision
82 int get_board_revision(void)
86 #ifdef CONFIG_SYS_I2C_OMAP34XX
89 /* board revisions <= R2410 connect 4030 irq_1 to gpio112 */
90 /* these boards should return a revision number of 0 */
91 /* the code below forces a 4030 RTC irq to ensure that gpio112 is low */
92 i2c_set_bus_num(TWL4030_I2C_BUS);
94 i2c_write(0x4B, 0x29, 1, &data, 1);
96 i2c_write(0x4B, 0x2b, 1, &data, 1);
97 i2c_read(0x4B, 0x2a, 1, &data, 1);
100 if (!gpio_request(112, "") &&
101 !gpio_request(113, "") &&
102 !gpio_request(115, "")) {
104 gpio_direction_input(112);
105 gpio_direction_input(113);
106 gpio_direction_input(115);
108 revision = gpio_get_value(115) << 2 |
109 gpio_get_value(113) << 1 |
112 puts("Error: unable to acquire board revision GPIOs\n");
119 #ifdef CONFIG_SPL_BUILD
121 * Routine: get_board_mem_timings
122 * Description: If we use SPL then there is no x-loader nor config header
123 * so we have to setup the DDR timings ourself on both banks.
125 void get_board_mem_timings(struct board_sdrc_timings *timings)
127 timings->mr = MICRON_V_MR_165;
128 switch (get_board_revision()) {
129 case REVISION_0: /* Micron 1286MB/256MB, 1/2 banks of 128MB */
130 timings->mcfg = MICRON_V_MCFG_165(128 << 20);
131 timings->ctrla = MICRON_V_ACTIMA_165;
132 timings->ctrlb = MICRON_V_ACTIMB_165;
133 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
135 case REVISION_1: /* Micron 256MB/512MB, 1/2 banks of 256MB */
137 timings->mcfg = MICRON_V_MCFG_200(256 << 20);
138 timings->ctrla = MICRON_V_ACTIMA_200;
139 timings->ctrlb = MICRON_V_ACTIMB_200;
140 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
142 case REVISION_2: /* Hynix 256MB/512MB, 1/2 banks of 256MB */
143 timings->mcfg = HYNIX_V_MCFG_200(256 << 20);
144 timings->ctrla = HYNIX_V_ACTIMA_200;
145 timings->ctrlb = HYNIX_V_ACTIMB_200;
146 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
148 case REVISION_3: /* Micron 512MB/1024MB, 1/2 banks of 512MB */
149 timings->mcfg = MCFG(512 << 20, 15);
150 timings->ctrla = MICRON_V_ACTIMA_200;
151 timings->ctrlb = MICRON_V_ACTIMB_200;
152 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
155 timings->mcfg = MICRON_V_MCFG_165(128 << 20);
156 timings->ctrla = MICRON_V_ACTIMA_165;
157 timings->ctrlb = MICRON_V_ACTIMB_165;
158 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
164 * Routine: get_sdio2_config
165 * Description: Return information about the wifi module connection
166 * Returns 0 if the module connects though a level translator
167 * Returns 1 if the module connects directly
169 int get_sdio2_config(void)
173 if (!gpio_request(130, "") && !gpio_request(139, "")) {
175 gpio_direction_output(130, 0);
176 gpio_direction_input(139);
179 gpio_set_value(130, 0);
180 if (gpio_get_value(139) == 0) {
181 gpio_set_value(130, 1);
182 if (gpio_get_value(139) == 1)
186 gpio_direction_input(130);
188 puts("Error: unable to acquire sdio2 clk GPIOs\n");
196 * Routine: get_expansion_id
197 * Description: This function checks for expansion board by checking I2C
198 * bus 2 for the availability of an AT24C01B serial EEPROM.
199 * returns the device_vendor field from the EEPROM
201 unsigned int get_expansion_id(void)
203 if (expansion_config.device_vendor != 0x0)
204 return expansion_config.device_vendor;
206 i2c_set_bus_num(EXPANSION_EEPROM_I2C_BUS);
208 /* return GUMSTIX_NO_EEPROM if eeprom doesn't respond */
209 if (i2c_probe(EXPANSION_EEPROM_I2C_ADDRESS) == 1) {
210 i2c_set_bus_num(TWL4030_I2C_BUS);
211 return GUMSTIX_NO_EEPROM;
214 /* read configuration data */
215 i2c_read(EXPANSION_EEPROM_I2C_ADDRESS, 0, 1, (u8 *)&expansion_config,
216 sizeof(expansion_config));
218 i2c_set_bus_num(TWL4030_I2C_BUS);
220 return expansion_config.device_vendor;
224 * Routine: misc_init_r
225 * Description: Configure board specific parts
227 int misc_init_r(void)
229 unsigned int expansion_id;
231 twl4030_power_init();
232 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
234 printf("Board revision: %d\n", get_board_revision());
236 switch (get_sdio2_config()) {
238 puts("Tranceiver detected on mmc2\n");
239 MUX_OVERO_SDIO2_TRANSCEIVER();
242 puts("Direct connection on mmc2\n");
243 MUX_OVERO_SDIO2_DIRECT();
246 puts("Unable to detect mmc2 connection type\n");
249 expansion_id = get_expansion_id();
250 switch (expansion_id) {
252 printf("Recognized Summit expansion board (rev %d %s)\n",
253 expansion_config.revision,
254 expansion_config.fab_revision);
256 setenv("defaultdisplay", "dvi");
257 setenv("expansionname", "summit");
260 printf("Recognized Tobi expansion board (rev %d %s)\n",
261 expansion_config.revision,
262 expansion_config.fab_revision);
264 setenv("defaultdisplay", "dvi");
265 setenv("expansionname", "tobi");
267 case GUMSTIX_TOBI_DUO:
268 printf("Recognized Tobi Duo expansion board (rev %d %s)\n",
269 expansion_config.revision,
270 expansion_config.fab_revision);
274 printf("Recognized Palo35 expansion board (rev %d %s)\n",
275 expansion_config.revision,
276 expansion_config.fab_revision);
278 setenv("defaultdisplay", "lcd35");
281 printf("Recognized Palo43 expansion board (rev %d %s)\n",
282 expansion_config.revision,
283 expansion_config.fab_revision);
285 setenv("defaultdisplay", "lcd43");
286 setenv("expansionname", "palo43");
288 case GUMSTIX_CHESTNUT43:
289 printf("Recognized Chestnut43 expansion board (rev %d %s)\n",
290 expansion_config.revision,
291 expansion_config.fab_revision);
293 setenv("defaultdisplay", "lcd43");
294 setenv("expansionname", "chestnut43");
297 printf("Recognized Pinto expansion board (rev %d %s)\n",
298 expansion_config.revision,
299 expansion_config.fab_revision);
302 case GUMSTIX_GALLOP43:
303 printf("Recognized Gallop43 expansion board (rev %d %s)\n",
304 expansion_config.revision,
305 expansion_config.fab_revision);
307 setenv("defaultdisplay", "lcd43");
308 setenv("expansionname", "gallop43");
311 printf("Recognized Alto35 expansion board (rev %d %s)\n",
312 expansion_config.revision,
313 expansion_config.fab_revision);
316 setenv("defaultdisplay", "lcd35");
317 setenv("expansionname", "alto35");
319 case GUMSTIX_STAGECOACH:
320 printf("Recognized Stagecoach expansion board (rev %d %s)\n",
321 expansion_config.revision,
322 expansion_config.fab_revision);
326 printf("Recognized Thumbo expansion board (rev %d %s)\n",
327 expansion_config.revision,
328 expansion_config.fab_revision);
331 case GUMSTIX_TURTLECORE:
332 printf("Recognized Turtlecore expansion board (rev %d %s)\n",
333 expansion_config.revision,
334 expansion_config.fab_revision);
337 case GUMSTIX_ARBOR43C:
338 printf("Recognized Arbor43C expansion board (rev %d %s)\n",
339 expansion_config.revision,
340 expansion_config.fab_revision);
343 setenv("defaultdisplay", "lcd43");
346 printf("Recognized Ettus Research USRP-E (rev %d %s)\n",
347 expansion_config.revision,
348 expansion_config.fab_revision);
351 setenv("defaultdisplay", "dvi");
353 case GUMSTIX_NO_EEPROM:
354 case GUMSTIX_EMPTY_EEPROM:
355 puts("No or empty EEPROM on expansion board\n");
357 setenv("expansionname", "tobi");
360 printf("Unrecognized expansion board 0x%08x\n", expansion_id);
364 if (expansion_config.content == 1)
365 setenv(expansion_config.env_var, expansion_config.env_setting);
369 if (get_cpu_family() == CPU_OMAP34XX)
370 setenv("boardname", "overo");
372 setenv("boardname", "overo-storm");
378 * Routine: set_muxconf_regs
379 * Description: Setting up the configuration Mux registers specific to the
380 * hardware. Many pins need to be moved from protect to primary
383 void set_muxconf_regs(void)
388 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_SPL_BUILD)
389 /* GPMC definitions for LAN9221 chips on Tobi expansion boards */
390 static const u32 gpmc_lan_config[] = {
391 NET_LAN9221_GPMC_CONFIG1,
392 NET_LAN9221_GPMC_CONFIG2,
393 NET_LAN9221_GPMC_CONFIG3,
394 NET_LAN9221_GPMC_CONFIG4,
395 NET_LAN9221_GPMC_CONFIG5,
396 NET_LAN9221_GPMC_CONFIG6,
397 /*CONFIG7- computed as params */
401 * Routine: setup_net_chip
402 * Description: Setting up the configuration GPMC registers specific to the
405 static void setup_net_chip(void)
407 struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
409 /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
410 writew(readw(&ctrl_base ->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
411 /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
412 writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
413 /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
414 writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
415 &ctrl_base->gpmc_nadv_ale);
419 * Routine: reset_net_chip
420 * Description: Reset the Ethernet hardware.
422 static void reset_net_chip(void)
424 /* Make GPIO 64 as output pin and send a magic pulse through it */
425 if (!gpio_request(64, "")) {
426 gpio_direction_output(64, 0);
427 gpio_set_value(64, 1);
429 gpio_set_value(64, 0);
431 gpio_set_value(64, 1);
435 int board_eth_init(bd_t *bis)
437 unsigned int expansion_id;
440 #ifdef CONFIG_SMC911X
441 expansion_id = get_expansion_id();
442 switch (expansion_id) {
443 case GUMSTIX_TOBI_DUO:
444 /* second lan chip */
445 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[4],
446 0x2B000000, GPMC_SIZE_16M);
449 case GUMSTIX_CHESTNUT43:
450 case GUMSTIX_STAGECOACH:
451 case GUMSTIX_NO_EEPROM:
452 case GUMSTIX_EMPTY_EEPROM:
454 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5],
455 0x2C000000, GPMC_SIZE_16M);
460 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
471 #if defined(CONFIG_GENERIC_MMC) && !defined(CONFIG_SPL_BUILD)
472 int board_mmc_init(bd_t *bis)
474 return omap_mmc_init(0, 0, 0, -1, -1);