omap3: overo: Add DTS support for TobiDuo expansion
[platform/kernel/u-boot.git] / board / overo / overo.c
1 /*
2  * Maintainer : Steve Sakoman <steve@sakoman.com>
3  *
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>
9  *
10  * (C) Copyright 2004-2008
11  * Texas Instruments, <www.ti.com>
12  *
13  * SPDX-License-Identifier:     GPL-2.0+
14  */
15 #include <common.h>
16 #include <dm.h>
17 #include <ns16550.h>
18 #include <netdev.h>
19 #include <twl4030.h>
20 #include <linux/mtd/nand.h>
21 #include <asm/io.h>
22 #include <asm/arch/mmc_host_def.h>
23 #include <asm/arch/mux.h>
24 #include <asm/arch/mem.h>
25 #include <asm/arch/sys_proto.h>
26 #include <asm/gpio.h>
27 #include <asm/mach-types.h>
28 #include "overo.h"
29
30 #ifdef CONFIG_USB_EHCI
31 #include <usb.h>
32 #include <asm/ehci-omap.h>
33 #endif
34
35 DECLARE_GLOBAL_DATA_PTR;
36
37 #define TWL4030_I2C_BUS                 0
38 #define EXPANSION_EEPROM_I2C_BUS        2
39 #define EXPANSION_EEPROM_I2C_ADDRESS    0x51
40
41 #define GUMSTIX_EMPTY_EEPROM            0x0
42
43 #define GUMSTIX_SUMMIT                  0x01000200
44 #define GUMSTIX_TOBI                    0x02000200
45 #define GUMSTIX_TOBI_DUO                0x03000200
46 #define GUMSTIX_PALO35                  0x04000200
47 #define GUMSTIX_PALO43                  0x05000200
48 #define GUMSTIX_CHESTNUT43              0x06000200
49 #define GUMSTIX_PINTO                   0x07000200
50 #define GUMSTIX_GALLOP43                0x08000200
51 #define GUMSTIX_ALTO35                  0x09000200
52 #define GUMSTIX_STAGECOACH              0x0A000200
53 #define GUMSTIX_THUMBO                  0x0B000200
54 #define GUMSTIX_TURTLECORE              0x0C000200
55 #define GUMSTIX_ARBOR43C                0x0D000200
56
57 #define ETTUS_USRP_E                    0x01000300
58
59 #define GUMSTIX_NO_EEPROM               0xffffffff
60
61 static struct {
62         unsigned int device_vendor;
63         unsigned char revision;
64         unsigned char content;
65         char fab_revision[8];
66         char env_var[16];
67         char env_setting[64];
68 } expansion_config = {0x0};
69
70 static const struct ns16550_platdata overo_serial = {
71         OMAP34XX_UART3,
72         2,
73         V_NS16550_CLK
74 };
75
76 U_BOOT_DEVICE(overo_uart) = {
77         "serial_omap",
78         &overo_serial
79 };
80
81 /*
82  * Routine: board_init
83  * Description: Early hardware init.
84  */
85 int board_init(void)
86 {
87         gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
88         /* board id for Linux */
89         gd->bd->bi_arch_number = MACH_TYPE_OVERO;
90         /* boot param addr */
91         gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
92
93         return 0;
94 }
95
96 /*
97  * Routine: get_board_revision
98  * Description: Returns the board revision
99  */
100 int get_board_revision(void)
101 {
102         int revision;
103
104 #ifdef CONFIG_SYS_I2C_OMAP34XX
105         unsigned char data;
106
107         /* board revisions <= R2410 connect 4030 irq_1 to gpio112             */
108         /* these boards should return a revision number of 0                  */
109         /* the code below forces a 4030 RTC irq to ensure that gpio112 is low */
110         i2c_set_bus_num(TWL4030_I2C_BUS);
111         data = 0x01;
112         i2c_write(0x4B, 0x29, 1, &data, 1);
113         data = 0x0c;
114         i2c_write(0x4B, 0x2b, 1, &data, 1);
115         i2c_read(0x4B, 0x2a, 1, &data, 1);
116 #endif
117
118         if (!gpio_request(112, "") &&
119             !gpio_request(113, "") &&
120             !gpio_request(115, "")) {
121
122                 gpio_direction_input(112);
123                 gpio_direction_input(113);
124                 gpio_direction_input(115);
125
126                 revision = gpio_get_value(115) << 2 |
127                            gpio_get_value(113) << 1 |
128                            gpio_get_value(112);
129         } else {
130                 puts("Error: unable to acquire board revision GPIOs\n");
131                 revision = -1;
132         }
133
134         return revision;
135 }
136
137 #ifdef CONFIG_SPL_BUILD
138 /*
139  * Routine: get_board_mem_timings
140  * Description: If we use SPL then there is no x-loader nor config header
141  * so we have to setup the DDR timings ourself on both banks.
142  */
143 void get_board_mem_timings(struct board_sdrc_timings *timings)
144 {
145         timings->mr = MICRON_V_MR_165;
146         switch (get_board_revision()) {
147         case REVISION_0: /* Micron 1286MB/256MB, 1/2 banks of 128MB */
148                 timings->mcfg = MICRON_V_MCFG_165(128 << 20);
149                 timings->ctrla = MICRON_V_ACTIMA_165;
150                 timings->ctrlb = MICRON_V_ACTIMB_165;
151                 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
152                 break;
153         case REVISION_1: /* Micron 256MB/512MB, 1/2 banks of 256MB */
154         case REVISION_4:
155                 timings->mcfg = MICRON_V_MCFG_200(256 << 20);
156                 timings->ctrla = MICRON_V_ACTIMA_200;
157                 timings->ctrlb = MICRON_V_ACTIMB_200;
158                 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
159                 break;
160         case REVISION_2: /* Hynix 256MB/512MB, 1/2 banks of 256MB */
161                 timings->mcfg = HYNIX_V_MCFG_200(256 << 20);
162                 timings->ctrla = HYNIX_V_ACTIMA_200;
163                 timings->ctrlb = HYNIX_V_ACTIMB_200;
164                 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
165                 break;
166         case REVISION_3: /* Micron 512MB/1024MB, 1/2 banks of 512MB */
167                 timings->mcfg = MCFG(512 << 20, 15);
168                 timings->ctrla = MICRON_V_ACTIMA_200;
169                 timings->ctrlb = MICRON_V_ACTIMB_200;
170                 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
171                 break;
172         default:
173                 timings->mcfg = MICRON_V_MCFG_165(128 << 20);
174                 timings->ctrla = MICRON_V_ACTIMA_165;
175                 timings->ctrlb = MICRON_V_ACTIMB_165;
176                 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
177         }
178 }
179 #endif
180
181 /*
182  * Routine: get_sdio2_config
183  * Description: Return information about the wifi module connection
184  *              Returns 0 if the module connects though a level translator
185  *              Returns 1 if the module connects directly
186  */
187 int get_sdio2_config(void)
188 {
189         int sdio_direct;
190
191         if (!gpio_request(130, "") && !gpio_request(139, "")) {
192
193                 gpio_direction_output(130, 0);
194                 gpio_direction_input(139);
195
196                 sdio_direct = 1;
197                 gpio_set_value(130, 0);
198                 if (gpio_get_value(139) == 0) {
199                         gpio_set_value(130, 1);
200                         if (gpio_get_value(139) == 1)
201                                 sdio_direct = 0;
202                 }
203
204                 gpio_direction_input(130);
205         } else {
206                 puts("Error: unable to acquire sdio2 clk GPIOs\n");
207                 sdio_direct = -1;
208         }
209
210         return sdio_direct;
211 }
212
213 /*
214  * Routine: get_expansion_id
215  * Description: This function checks for expansion board by checking I2C
216  *              bus 2 for the availability of an AT24C01B serial EEPROM.
217  *              returns the device_vendor field from the EEPROM
218  */
219 unsigned int get_expansion_id(void)
220 {
221         if (expansion_config.device_vendor != 0x0)
222                 return expansion_config.device_vendor;
223
224         i2c_set_bus_num(EXPANSION_EEPROM_I2C_BUS);
225
226         /* return GUMSTIX_NO_EEPROM if eeprom doesn't respond */
227         if (i2c_probe(EXPANSION_EEPROM_I2C_ADDRESS) == 1) {
228                 i2c_set_bus_num(TWL4030_I2C_BUS);
229                 return GUMSTIX_NO_EEPROM;
230         }
231
232         /* read configuration data */
233         i2c_read(EXPANSION_EEPROM_I2C_ADDRESS, 0, 1, (u8 *)&expansion_config,
234                  sizeof(expansion_config));
235
236         i2c_set_bus_num(TWL4030_I2C_BUS);
237
238         return expansion_config.device_vendor;
239 }
240
241 /*
242  * Routine: misc_init_r
243  * Description: Configure board specific parts
244  */
245 int misc_init_r(void)
246 {
247         unsigned int expansion_id;
248
249         twl4030_power_init();
250         twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
251
252         printf("Board revision: %d\n", get_board_revision());
253
254         switch (get_sdio2_config()) {
255         case 0:
256                 puts("Tranceiver detected on mmc2\n");
257                 MUX_OVERO_SDIO2_TRANSCEIVER();
258                 break;
259         case 1:
260                 puts("Direct connection on mmc2\n");
261                 MUX_OVERO_SDIO2_DIRECT();
262                 break;
263         default:
264                 puts("Unable to detect mmc2 connection type\n");
265         }
266
267         expansion_id = get_expansion_id();
268         switch (expansion_id) {
269         case GUMSTIX_SUMMIT:
270                 printf("Recognized Summit expansion board (rev %d %s)\n",
271                         expansion_config.revision,
272                         expansion_config.fab_revision);
273                 MUX_GUMSTIX();
274                 setenv("defaultdisplay", "dvi");
275                 setenv("expansionname", "summit");
276                 break;
277         case GUMSTIX_TOBI:
278                 printf("Recognized Tobi expansion board (rev %d %s)\n",
279                         expansion_config.revision,
280                         expansion_config.fab_revision);
281                 MUX_GUMSTIX();
282                 setenv("defaultdisplay", "dvi");
283                 setenv("expansionname", "tobi");
284                 break;
285         case GUMSTIX_TOBI_DUO:
286                 printf("Recognized Tobi Duo expansion board (rev %d %s)\n",
287                         expansion_config.revision,
288                         expansion_config.fab_revision);
289                 MUX_GUMSTIX();
290                 setenv("expansionname", "tobiduo");
291                 break;
292         case GUMSTIX_PALO35:
293                 printf("Recognized Palo35 expansion board (rev %d %s)\n",
294                         expansion_config.revision,
295                         expansion_config.fab_revision);
296                 MUX_GUMSTIX();
297                 setenv("defaultdisplay", "lcd35");
298                 break;
299         case GUMSTIX_PALO43:
300                 printf("Recognized Palo43 expansion board (rev %d %s)\n",
301                         expansion_config.revision,
302                         expansion_config.fab_revision);
303                 MUX_GUMSTIX();
304                 setenv("defaultdisplay", "lcd43");
305                 setenv("expansionname", "palo43");
306                 break;
307         case GUMSTIX_CHESTNUT43:
308                 printf("Recognized Chestnut43 expansion board (rev %d %s)\n",
309                         expansion_config.revision,
310                         expansion_config.fab_revision);
311                 MUX_GUMSTIX();
312                 setenv("defaultdisplay", "lcd43");
313                 setenv("expansionname", "chestnut43");
314                 break;
315         case GUMSTIX_PINTO:
316                 printf("Recognized Pinto expansion board (rev %d %s)\n",
317                         expansion_config.revision,
318                         expansion_config.fab_revision);
319                 MUX_GUMSTIX();
320                 break;
321         case GUMSTIX_GALLOP43:
322                 printf("Recognized Gallop43 expansion board (rev %d %s)\n",
323                         expansion_config.revision,
324                         expansion_config.fab_revision);
325                 MUX_GUMSTIX();
326                 setenv("defaultdisplay", "lcd43");
327                 setenv("expansionname", "gallop43");
328                 break;
329         case GUMSTIX_ALTO35:
330                 printf("Recognized Alto35 expansion board (rev %d %s)\n",
331                         expansion_config.revision,
332                         expansion_config.fab_revision);
333                 MUX_GUMSTIX();
334                 MUX_ALTO35();
335                 setenv("defaultdisplay", "lcd35");
336                 setenv("expansionname", "alto35");
337                 break;
338         case GUMSTIX_STAGECOACH:
339                 printf("Recognized Stagecoach expansion board (rev %d %s)\n",
340                         expansion_config.revision,
341                         expansion_config.fab_revision);
342                 MUX_GUMSTIX();
343                 break;
344         case GUMSTIX_THUMBO:
345                 printf("Recognized Thumbo expansion board (rev %d %s)\n",
346                         expansion_config.revision,
347                         expansion_config.fab_revision);
348                 MUX_GUMSTIX();
349                 break;
350         case GUMSTIX_TURTLECORE:
351                 printf("Recognized Turtlecore expansion board (rev %d %s)\n",
352                         expansion_config.revision,
353                         expansion_config.fab_revision);
354                 MUX_GUMSTIX();
355                 break;
356         case GUMSTIX_ARBOR43C:
357                 printf("Recognized Arbor43C expansion board (rev %d %s)\n",
358                         expansion_config.revision,
359                         expansion_config.fab_revision);
360                 MUX_GUMSTIX();
361                 MUX_ARBOR43C();
362                 setenv("defaultdisplay", "lcd43");
363                 setenv("expansionname", "arbor43c");
364                 break;
365         case ETTUS_USRP_E:
366                 printf("Recognized Ettus Research USRP-E (rev %d %s)\n",
367                         expansion_config.revision,
368                         expansion_config.fab_revision);
369                 MUX_GUMSTIX();
370                 MUX_USRP_E();
371                 setenv("defaultdisplay", "dvi");
372                 break;
373         case GUMSTIX_NO_EEPROM:
374         case GUMSTIX_EMPTY_EEPROM:
375                 puts("No or empty EEPROM on expansion board\n");
376                 MUX_GUMSTIX();
377                 setenv("expansionname", "tobi");
378                 break;
379         default:
380                 printf("Unrecognized expansion board 0x%08x\n", expansion_id);
381                 break;
382         }
383
384         if (expansion_config.content == 1)
385                 setenv(expansion_config.env_var, expansion_config.env_setting);
386
387         dieid_num_r();
388
389         if (get_cpu_family() == CPU_OMAP34XX)
390                 setenv("boardname", "overo");
391         else
392                 setenv("boardname", "overo-storm");
393
394         return 0;
395 }
396
397 /*
398  * Routine: set_muxconf_regs
399  * Description: Setting up the configuration Mux registers specific to the
400  *              hardware. Many pins need to be moved from protect to primary
401  *              mode.
402  */
403 void set_muxconf_regs(void)
404 {
405         MUX_OVERO();
406 }
407
408 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_SPL_BUILD)
409 /* GPMC definitions for LAN9221 chips on Tobi expansion boards */
410 static const u32 gpmc_lan_config[] = {
411         NET_LAN9221_GPMC_CONFIG1,
412         NET_LAN9221_GPMC_CONFIG2,
413         NET_LAN9221_GPMC_CONFIG3,
414         NET_LAN9221_GPMC_CONFIG4,
415         NET_LAN9221_GPMC_CONFIG5,
416         NET_LAN9221_GPMC_CONFIG6,
417         /*CONFIG7- computed as params */
418 };
419
420 /*
421  * Routine: setup_net_chip
422  * Description: Setting up the configuration GPMC registers specific to the
423  *            Ethernet hardware.
424  */
425 static void setup_net_chip(void)
426 {
427         struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
428
429         /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
430         writew(readw(&ctrl_base ->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
431         /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
432         writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
433         /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
434         writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
435                 &ctrl_base->gpmc_nadv_ale);
436 }
437
438 /*
439  * Routine: reset_net_chip
440  * Description: Reset the Ethernet hardware.
441  */
442 static void reset_net_chip(void)
443 {
444         /* Make GPIO 64 as output pin and send a magic pulse through it */
445         if (!gpio_request(64, "")) {
446                 gpio_direction_output(64, 0);
447                 gpio_set_value(64, 1);
448                 udelay(1);
449                 gpio_set_value(64, 0);
450                 udelay(1);
451                 gpio_set_value(64, 1);
452         }
453 }
454
455 int board_eth_init(bd_t *bis)
456 {
457         unsigned int expansion_id;
458         int rc = 0;
459
460 #ifdef CONFIG_SMC911X
461         expansion_id = get_expansion_id();
462         switch (expansion_id) {
463         case GUMSTIX_TOBI_DUO:
464                 /* second lan chip */
465                 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[4],
466                                       0x2B000000, GPMC_SIZE_16M);
467                 /* no break */
468         case GUMSTIX_TOBI:
469         case GUMSTIX_CHESTNUT43:
470         case GUMSTIX_STAGECOACH:
471         case GUMSTIX_NO_EEPROM:
472         case GUMSTIX_EMPTY_EEPROM:
473                 /* first lan chip */
474                 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5],
475                                       0x2C000000, GPMC_SIZE_16M);
476
477                 setup_net_chip();
478                 reset_net_chip();
479
480                 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
481                 break;
482         default:
483                 break;
484         }
485 #endif
486
487         return rc;
488 }
489 #endif
490
491 #if defined(CONFIG_GENERIC_MMC) && !defined(CONFIG_SPL_BUILD)
492 int board_mmc_init(bd_t *bis)
493 {
494         return omap_mmc_init(0, 0, 0, -1, -1);
495 }
496 #endif
497
498 #if defined(CONFIG_GENERIC_MMC)
499 void board_mmc_power_init(void)
500 {
501         twl4030_power_mmc_init(0);
502 }
503 #endif
504
505 #if defined(CONFIG_USB_EHCI) &&  !defined(CONFIG_SPL_BUILD)
506 static struct omap_usbhs_board_data usbhs_bdata = {
507         .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
508         .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
509         .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED
510 };
511
512 #define GUMSTIX_GPIO_USBH_CPEN          168
513 int ehci_hcd_init(int index, enum usb_init_type init,
514                   struct ehci_hccr **hccr, struct ehci_hcor **hcor)
515 {
516         /* Enable USB power */
517         if (!gpio_request(GUMSTIX_GPIO_USBH_CPEN, "usbh_cpen"))
518                 gpio_direction_output(GUMSTIX_GPIO_USBH_CPEN, 1);
519
520         return omap_ehci_hcd_init(index, &usbhs_bdata, hccr, hcor);
521 }
522
523 int ehci_hcd_stop(void)
524 {
525         /* Disable USB power */
526         gpio_set_value(GUMSTIX_GPIO_USBH_CPEN, 0);
527         gpio_free(GUMSTIX_GPIO_USBH_CPEN);
528
529         return omap_ehci_hcd_stop();
530 }
531
532 #endif /* CONFIG_USB_EHCI */