blob: 4bbe1b87beae41d8b846949300ae6806f8a65da0 [file] [log] [blame]
Dirk Behme9d0fc812009-01-28 21:39:57 +01001/*
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 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
30 */
31#include <common.h>
Olof Johanssondf382622009-09-29 10:22:45 -040032#include <netdev.h>
Tom Rix2c155132009-06-28 12:52:30 -050033#include <twl4030.h>
Dirk Behme9d0fc812009-01-28 21:39:57 +010034#include <asm/io.h>
Steve Sakomancd7c5722010-09-19 21:21:07 -070035#include <asm/arch/mmc_host_def.h>
Dirk Behme9d0fc812009-01-28 21:39:57 +010036#include <asm/arch/mux.h>
Olof Johanssondf382622009-09-29 10:22:45 -040037#include <asm/arch/mem.h>
Dirk Behme9d0fc812009-01-28 21:39:57 +010038#include <asm/arch/sys_proto.h>
Sanjeev Premi84c3b632011-09-08 10:51:01 -040039#include <asm/gpio.h>
Dirk Behme9d0fc812009-01-28 21:39:57 +010040#include <asm/mach-types.h>
41#include "overo.h"
42
John Rigby29565322010-12-20 18:27:51 -070043DECLARE_GLOBAL_DATA_PTR;
44
Steve Sakomand64b5b82010-09-20 08:05:14 -070045#define TWL4030_I2C_BUS 0
46#define EXPANSION_EEPROM_I2C_BUS 2
47#define EXPANSION_EEPROM_I2C_ADDRESS 0x51
48
49#define GUMSTIX_SUMMIT 0x01000200
50#define GUMSTIX_TOBI 0x02000200
51#define GUMSTIX_TOBI_DUO 0x03000200
52#define GUMSTIX_PALO35 0x04000200
53#define GUMSTIX_PALO43 0x05000200
54#define GUMSTIX_CHESTNUT43 0x06000200
55#define GUMSTIX_PINTO 0x07000200
56#define GUMSTIX_GALLOP43 0x08000200
57
58#define ETTUS_USRP_E 0x01000300
59
60#define GUMSTIX_NO_EEPROM 0xffffffff
61
62static struct {
63 unsigned int device_vendor;
64 unsigned char revision;
65 unsigned char content;
66 char fab_revision[8];
67 char env_var[16];
68 char env_setting[64];
69} expansion_config;
70
Olof Johanssondf382622009-09-29 10:22:45 -040071#if defined(CONFIG_CMD_NET)
72static void setup_net_chip(void);
73#endif
74
Steve Sakomanba9a11e2010-08-12 21:07:02 -070075/* GPMC definitions for LAN9221 chips on Tobi expansion boards */
76static const u32 gpmc_lan_config[] = {
77 NET_LAN9221_GPMC_CONFIG1,
78 NET_LAN9221_GPMC_CONFIG2,
79 NET_LAN9221_GPMC_CONFIG3,
80 NET_LAN9221_GPMC_CONFIG4,
81 NET_LAN9221_GPMC_CONFIG5,
82 NET_LAN9221_GPMC_CONFIG6,
83 /*CONFIG7- computed as params */
84};
85
Tom Rix58911512009-04-01 22:02:20 -050086/*
Dirk Behme9d0fc812009-01-28 21:39:57 +010087 * Routine: board_init
88 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050089 */
Dirk Behme9d0fc812009-01-28 21:39:57 +010090int board_init(void)
91{
Dirk Behme9d0fc812009-01-28 21:39:57 +010092 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
93 /* board id for Linux */
94 gd->bd->bi_arch_number = MACH_TYPE_OVERO;
95 /* boot param addr */
96 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
97
98 return 0;
99}
100
Tom Rix58911512009-04-01 22:02:20 -0500101/*
Steve Sakomanc2d5b342010-08-12 15:13:02 -0700102 * Routine: get_board_revision
103 * Description: Returns the board revision
104 */
105int get_board_revision(void)
106{
107 int revision;
108
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400109 if (!gpio_request(112, "") &&
110 !gpio_request(113, "") &&
111 !gpio_request(115, "")) {
Steve Sakomanc2d5b342010-08-12 15:13:02 -0700112
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400113 gpio_direction_input(112);
114 gpio_direction_input(113);
115 gpio_direction_input(115);
Steve Sakomanc2d5b342010-08-12 15:13:02 -0700116
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400117 revision = gpio_get_value(115) << 2 |
118 gpio_get_value(113) << 1 |
119 gpio_get_value(112);
Steve Sakomanc2d5b342010-08-12 15:13:02 -0700120
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400121 gpio_free(112);
122 gpio_free(113);
123 gpio_free(115);
Steve Sakomanc2d5b342010-08-12 15:13:02 -0700124 } else {
125 printf("Error: unable to acquire board revision GPIOs\n");
126 revision = -1;
127 }
128
129 return revision;
130}
131
132/*
Steve Sakomana06e1622010-08-24 10:37:29 -0700133 * Routine: get_sdio2_config
134 * Description: Return information about the wifi module connection
135 * Returns 0 if the module connects though a level translator
136 * Returns 1 if the module connects directly
137 */
138int get_sdio2_config(void)
139{
140 int sdio_direct;
141
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400142 if (!gpio_request(130, "") && !gpio_request(139, "")) {
Steve Sakomana06e1622010-08-24 10:37:29 -0700143
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400144 gpio_direction_output(130, 0);
145 gpio_direction_input(139);
Steve Sakomana06e1622010-08-24 10:37:29 -0700146
147 sdio_direct = 1;
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400148 gpio_set_value(130, 0);
149 if (gpio_get_value(139) == 0) {
150 gpio_set_value(130, 1);
151 if (gpio_get_value(139) == 1)
Steve Sakomana06e1622010-08-24 10:37:29 -0700152 sdio_direct = 0;
153 }
154
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400155 gpio_free(130);
156 gpio_free(139);
Steve Sakomana06e1622010-08-24 10:37:29 -0700157 } else {
158 printf("Error: unable to acquire sdio2 clk GPIOs\n");
159 sdio_direct = -1;
160 }
161
162 return sdio_direct;
163}
164
165/*
Steve Sakomand64b5b82010-09-20 08:05:14 -0700166 * Routine: get_expansion_id
167 * Description: This function checks for expansion board by checking I2C
168 * bus 2 for the availability of an AT24C01B serial EEPROM.
169 * returns the device_vendor field from the EEPROM
170 */
171unsigned int get_expansion_id(void)
172{
173 i2c_set_bus_num(EXPANSION_EEPROM_I2C_BUS);
174
175 /* return GUMSTIX_NO_EEPROM if eeprom doesn't respond */
176 if (i2c_probe(EXPANSION_EEPROM_I2C_ADDRESS) == 1) {
177 i2c_set_bus_num(TWL4030_I2C_BUS);
178 return GUMSTIX_NO_EEPROM;
179 }
180
181 /* read configuration data */
182 i2c_read(EXPANSION_EEPROM_I2C_ADDRESS, 0, 1, (u8 *)&expansion_config,
183 sizeof(expansion_config));
184
185 i2c_set_bus_num(TWL4030_I2C_BUS);
186
187 return expansion_config.device_vendor;
188}
189
190/*
Dirk Behme9d0fc812009-01-28 21:39:57 +0100191 * Routine: misc_init_r
192 * Description: Configure board specific parts
Tom Rix58911512009-04-01 22:02:20 -0500193 */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100194int misc_init_r(void)
195{
Tom Rix2c155132009-06-28 12:52:30 -0500196 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +0200197 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Dirk Behme9d0fc812009-01-28 21:39:57 +0100198
Olof Johanssondf382622009-09-29 10:22:45 -0400199#if defined(CONFIG_CMD_NET)
200 setup_net_chip();
201#endif
202
Steve Sakomanc2d5b342010-08-12 15:13:02 -0700203 printf("Board revision: %d\n", get_board_revision());
Steve Sakomana06e1622010-08-24 10:37:29 -0700204
205 switch (get_sdio2_config()) {
206 case 0:
207 printf("Tranceiver detected on mmc2\n");
208 MUX_OVERO_SDIO2_TRANSCEIVER();
209 break;
210 case 1:
211 printf("Direct connection on mmc2\n");
212 MUX_OVERO_SDIO2_DIRECT();
213 break;
214 default:
215 printf("Unable to detect mmc2 connection type\n");
216 }
217
Steve Sakomand64b5b82010-09-20 08:05:14 -0700218 switch (get_expansion_id()) {
219 case GUMSTIX_SUMMIT:
220 printf("Recognized Summit expansion board (rev %d %s)\n",
221 expansion_config.revision,
222 expansion_config.fab_revision);
223 setenv("defaultdisplay", "dvi");
224 break;
225 case GUMSTIX_TOBI:
226 printf("Recognized Tobi expansion board (rev %d %s)\n",
227 expansion_config.revision,
228 expansion_config.fab_revision);
229 setenv("defaultdisplay", "dvi");
230 break;
231 case GUMSTIX_TOBI_DUO:
232 printf("Recognized Tobi Duo expansion board (rev %d %s)\n",
233 expansion_config.revision,
234 expansion_config.fab_revision);
235 break;
236 case GUMSTIX_PALO35:
237 printf("Recognized Palo35 expansion board (rev %d %s)\n",
238 expansion_config.revision,
239 expansion_config.fab_revision);
240 setenv("defaultdisplay", "lcd35");
241 break;
242 case GUMSTIX_PALO43:
243 printf("Recognized Palo43 expansion board (rev %d %s)\n",
244 expansion_config.revision,
245 expansion_config.fab_revision);
246 setenv("defaultdisplay", "lcd43");
247 break;
248 case GUMSTIX_CHESTNUT43:
249 printf("Recognized Chestnut43 expansion board (rev %d %s)\n",
250 expansion_config.revision,
251 expansion_config.fab_revision);
252 setenv("defaultdisplay", "lcd43");
253 break;
254 case GUMSTIX_PINTO:
255 printf("Recognized Pinto expansion board (rev %d %s)\n",
256 expansion_config.revision,
257 expansion_config.fab_revision);
258 break;
259 case GUMSTIX_GALLOP43:
260 printf("Recognized Gallop43 expansion board (rev %d %s)\n",
261 expansion_config.revision,
262 expansion_config.fab_revision);
263 setenv("defaultdisplay", "lcd43");
264 break;
265 case ETTUS_USRP_E:
266 printf("Recognized Ettus Research USRP-E (rev %d %s)\n",
267 expansion_config.revision,
268 expansion_config.fab_revision);
269 MUX_USRP_E();
270 setenv("defaultdisplay", "dvi");
271 break;
272 case GUMSTIX_NO_EEPROM:
273 printf("No EEPROM on expansion board\n");
274 break;
275 default:
276 printf("Unrecognized expansion board\n");
277 }
278
279 if (expansion_config.content == 1)
280 setenv(expansion_config.env_var, expansion_config.env_setting);
281
Dirk Behmee6a6a702009-03-12 19:30:50 +0100282 dieid_num_r();
283
Dirk Behme9d0fc812009-01-28 21:39:57 +0100284 return 0;
285}
286
Tom Rix58911512009-04-01 22:02:20 -0500287/*
Dirk Behme9d0fc812009-01-28 21:39:57 +0100288 * Routine: set_muxconf_regs
289 * Description: Setting up the configuration Mux registers specific to the
290 * hardware. Many pins need to be moved from protect to primary
291 * mode.
Tom Rix58911512009-04-01 22:02:20 -0500292 */
Dirk Behme9d0fc812009-01-28 21:39:57 +0100293void set_muxconf_regs(void)
294{
295 MUX_OVERO();
296}
Olof Johanssondf382622009-09-29 10:22:45 -0400297
298#if defined(CONFIG_CMD_NET)
299/*
300 * Routine: setup_net_chip
301 * Description: Setting up the configuration GPMC registers specific to the
302 * Ethernet hardware.
303 */
304static void setup_net_chip(void)
305{
306 struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
307
Steve Sakomanba9a11e2010-08-12 21:07:02 -0700308 /* first lan chip */
309 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5], 0x2C000000,
310 GPMC_SIZE_16M);
311
312 /* second lan chip */
313 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[4], 0x2B000000,
314 GPMC_SIZE_16M);
Olof Johanssondf382622009-09-29 10:22:45 -0400315
316 /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
317 writew(readw(&ctrl_base ->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
318 /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
319 writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
320 /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
321 writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
322 &ctrl_base->gpmc_nadv_ale);
323
324 /* Make GPIO 64 as output pin and send a magic pulse through it */
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400325 if (!gpio_request(64, "")) {
326 gpio_direction_output(64, 0);
327 gpio_set_value(64, 1);
Olof Johanssondf382622009-09-29 10:22:45 -0400328 udelay(1);
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400329 gpio_set_value(64, 0);
Olof Johanssondf382622009-09-29 10:22:45 -0400330 udelay(1);
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400331 gpio_set_value(64, 1);
Olof Johanssondf382622009-09-29 10:22:45 -0400332 }
333}
334#endif
335
336int board_eth_init(bd_t *bis)
337{
338 int rc = 0;
339#ifdef CONFIG_SMC911X
340 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
341#endif
342 return rc;
343}
Steve Sakomancd7c5722010-09-19 21:21:07 -0700344
345#ifdef CONFIG_GENERIC_MMC
346int board_mmc_init(bd_t *bis)
347{
348 omap_mmc_init(0);
349 return 0;
350}
351#endif