blob: a9585457766b8b59b2e13e5e10ff457139f8e913 [file] [log] [blame]
Dirk Behmef904cdb2009-01-27 18:19:12 +01001/*
2 * (C) Copyright 2004-2008
3 * Texas Instruments, <www.ti.com>
4 *
5 * Author :
6 * Sunil Kumar <sunilsaini05@gmail.com>
7 * Shashi Ranjan <shashiranjanmca05@gmail.com>
8 *
9 * Derived from Beagle Board and 3430 SDP code by
10 * Richard Woodruff <r-woodruff2@ti.com>
11 * Syed Mohammed Khasim <khasim@ti.com>
12 *
13 *
14 * See file CREDITS for list of people who contributed to this
15 * project.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 */
32#include <common.h>
Jason Kridner70d8c942011-04-18 17:23:35 -040033#ifdef CONFIG_STATUS_LED
34#include <status_led.h>
35#endif
Tom Rix2c155132009-06-28 12:52:30 -050036#include <twl4030.h>
Dirk Behmef904cdb2009-01-27 18:19:12 +010037#include <asm/io.h>
Steve Sakoman0cd31142010-09-19 21:19:48 -070038#include <asm/arch/mmc_host_def.h>
Dirk Behmef904cdb2009-01-27 18:19:12 +010039#include <asm/arch/mux.h>
40#include <asm/arch/sys_proto.h>
Tom Rix718763c2009-06-03 01:53:57 -050041#include <asm/arch/gpio.h>
Dirk Behmef904cdb2009-01-27 18:19:12 +010042#include <asm/mach-types.h>
Alexander Hollerd90859a2011-04-19 09:30:35 -040043#ifdef CONFIG_USB_EHCI
44#include <usb.h>
45#include <asm/arch/clocks.h>
46#include <asm/arch/clocks_omap3.h>
47#include <asm/arch/ehci_omap3.h>
48/* from drivers/usb/host/ehci-core.h */
49extern struct ehci_hccr *hccr;
50extern volatile struct ehci_hcor *hcor;
51#endif
Dirk Behmef904cdb2009-01-27 18:19:12 +010052#include "beagle.h"
53
Alexander Hollerd90859a2011-04-19 09:30:35 -040054#define pr_debug(fmt, args...) debug(fmt, ##args)
55
Koen Kooica5f80a2010-09-20 10:21:33 -070056#define TWL4030_I2C_BUS 0
57#define EXPANSION_EEPROM_I2C_BUS 1
58#define EXPANSION_EEPROM_I2C_ADDRESS 0x50
59
60#define TINCANTOOLS_ZIPPY 0x01000100
61#define TINCANTOOLS_ZIPPY2 0x02000100
62#define TINCANTOOLS_TRAINER 0x04000100
63#define TINCANTOOLS_SHOWDOG 0x03000100
64#define KBADC_BEAGLEFPGA 0x01000600
Koen Kooiee8485f2011-04-18 17:29:35 -040065#define LW_BEAGLETOUCH 0x01000700
66#define BRAINMUX_LCDOG 0x01000800
67#define BRAINMUX_LCDOGTOUCH 0x02000800
68#define BBTOYS_WIFI 0x01000B00
69#define BBTOYS_VGA 0x02000B00
70#define BBTOYS_LCD 0x03000B00
Koen Kooica5f80a2010-09-20 10:21:33 -070071#define BEAGLE_NO_EEPROM 0xffffffff
72
John Rigby29565322010-12-20 18:27:51 -070073DECLARE_GLOBAL_DATA_PTR;
74
Koen Kooica5f80a2010-09-20 10:21:33 -070075static struct {
76 unsigned int device_vendor;
77 unsigned char revision;
78 unsigned char content;
79 char fab_revision[8];
80 char env_var[16];
81 char env_setting[64];
82} expansion_config;
83
Tom Rix58911512009-04-01 22:02:20 -050084/*
Dirk Behmef904cdb2009-01-27 18:19:12 +010085 * Routine: board_init
86 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050087 */
Dirk Behmef904cdb2009-01-27 18:19:12 +010088int board_init(void)
89{
Dirk Behmef904cdb2009-01-27 18:19:12 +010090 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
91 /* board id for Linux */
92 gd->bd->bi_arch_number = MACH_TYPE_OMAP3_BEAGLE;
93 /* boot param addr */
94 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
95
Jason Kridner70d8c942011-04-18 17:23:35 -040096#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
97 status_led_set (STATUS_LED_BOOT, STATUS_LED_ON);
98#endif
99
Dirk Behmef904cdb2009-01-27 18:19:12 +0100100 return 0;
101}
102
Tom Rix58911512009-04-01 22:02:20 -0500103/*
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700104 * Routine: get_board_revision
105 * Description: Detect if we are running on a Beagle revision Ax/Bx,
Steve Sakoman08cbba2ab2010-08-19 20:56:11 -0700106 * C1/2/3, C4 or xM. This can be done by reading
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700107 * the level of GPIO173, GPIO172 and GPIO171. This should
108 * result in
109 * GPIO173, GPIO172, GPIO171: 1 1 1 => Ax/Bx
110 * GPIO173, GPIO172, GPIO171: 1 1 0 => C1/2/3
111 * GPIO173, GPIO172, GPIO171: 1 0 1 => C4
Steve Sakoman08cbba2ab2010-08-19 20:56:11 -0700112 * GPIO173, GPIO172, GPIO171: 0 0 0 => xM
Tom Rix58911512009-04-01 22:02:20 -0500113 */
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700114int get_board_revision(void)
Dirk Behmef956fd02009-02-12 18:55:41 +0100115{
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700116 int revision;
Dirk Behmef956fd02009-02-12 18:55:41 +0100117
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700118 if (!omap_request_gpio(171) &&
119 !omap_request_gpio(172) &&
120 !omap_request_gpio(173)) {
Dirk Behmef956fd02009-02-12 18:55:41 +0100121
Tom Rix718763c2009-06-03 01:53:57 -0500122 omap_set_gpio_direction(171, 1);
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700123 omap_set_gpio_direction(172, 1);
124 omap_set_gpio_direction(173, 1);
Dirk Behmef956fd02009-02-12 18:55:41 +0100125
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700126 revision = omap_get_gpio_datain(173) << 2 |
127 omap_get_gpio_datain(172) << 1 |
128 omap_get_gpio_datain(171);
129
130 omap_free_gpio(171);
131 omap_free_gpio(172);
132 omap_free_gpio(173);
133 } else {
134 printf("Error: unable to acquire board revision GPIOs\n");
135 revision = -1;
Tom Rix718763c2009-06-03 01:53:57 -0500136 }
Dirk Behmef956fd02009-02-12 18:55:41 +0100137
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700138 return revision;
Dirk Behmef956fd02009-02-12 18:55:41 +0100139}
140
Tom Rix58911512009-04-01 22:02:20 -0500141/*
Koen Kooica5f80a2010-09-20 10:21:33 -0700142 * Routine: get_expansion_id
143 * Description: This function checks for expansion board by checking I2C
144 * bus 1 for the availability of an AT24C01B serial EEPROM.
145 * returns the device_vendor field from the EEPROM
146 */
147unsigned int get_expansion_id(void)
148{
149 i2c_set_bus_num(EXPANSION_EEPROM_I2C_BUS);
150
151 /* return BEAGLE_NO_EEPROM if eeprom doesn't respond */
152 if (i2c_probe(EXPANSION_EEPROM_I2C_ADDRESS) == 1) {
153 i2c_set_bus_num(TWL4030_I2C_BUS);
154 return BEAGLE_NO_EEPROM;
155 }
156
157 /* read configuration data */
158 i2c_read(EXPANSION_EEPROM_I2C_ADDRESS, 0, 1, (u8 *)&expansion_config,
159 sizeof(expansion_config));
160
161 i2c_set_bus_num(TWL4030_I2C_BUS);
162
163 return expansion_config.device_vendor;
164}
165
166/*
Dirk Behmef904cdb2009-01-27 18:19:12 +0100167 * Routine: misc_init_r
168 * Description: Configure board specific parts
Tom Rix58911512009-04-01 22:02:20 -0500169 */
Dirk Behmef904cdb2009-01-27 18:19:12 +0100170int misc_init_r(void)
171{
Dirk Behme97a099e2009-08-08 09:30:21 +0200172 struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE;
173 struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE;
Jason Kridnerf14a5222011-04-20 13:52:26 +0000174 struct control_prog_io *prog_io_base = (struct control_prog_io *)OMAP34XX_CTRL_BASE;
Steve Kipiszd4e53f02011-04-18 17:27:00 -0400175
176 /* Enable i2c2 pullup resisters */
177 writel(~(PRG_I2C2_PULLUPRESX), &prog_io_base->io1);
Dirk Behmef904cdb2009-01-27 18:19:12 +0100178
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700179 switch (get_board_revision()) {
180 case REVISION_AXBX:
181 printf("Beagle Rev Ax/Bx\n");
182 setenv("beaglerev", "AxBx");
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700183 break;
184 case REVISION_CX:
185 printf("Beagle Rev C1/C2/C3\n");
186 setenv("beaglerev", "Cx");
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700187 MUX_BEAGLE_C();
188 break;
189 case REVISION_C4:
190 printf("Beagle Rev C4\n");
Steve Sakoman08cbba2ab2010-08-19 20:56:11 -0700191 setenv("beaglerev", "C4");
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700192 MUX_BEAGLE_C();
193 /* Set VAUX2 to 1.8V for EHCI PHY */
194 twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
195 TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
196 TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
197 TWL4030_PM_RECEIVER_DEV_GRP_P1);
198 break;
Koen Kooif6e593b2011-04-18 17:28:32 -0400199 case REVISION_XM_A:
Steve Sakoman08cbba2ab2010-08-19 20:56:11 -0700200 printf("Beagle xM Rev A\n");
201 setenv("beaglerev", "xMA");
Koen Kooif6e593b2011-04-18 17:28:32 -0400202 MUX_BEAGLE_XM();
203 /* Set VAUX2 to 1.8V for EHCI PHY */
204 twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
205 TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
206 TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
207 TWL4030_PM_RECEIVER_DEV_GRP_P1);
208 break;
209 case REVISION_XM_B:
210 printf("Beagle xM Rev B\n");
211 setenv("beaglerev", "xMB");
Steve Sakoman08cbba2ab2010-08-19 20:56:11 -0700212 MUX_BEAGLE_XM();
213 /* Set VAUX2 to 1.8V for EHCI PHY */
214 twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
215 TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
216 TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
217 TWL4030_PM_RECEIVER_DEV_GRP_P1);
218 break;
Koen Kooi1ffcb342011-06-17 09:37:37 +0200219 case REVISION_XM_C:
220 printf("Beagle xM Rev C\n");
221 setenv("beaglerev", "xMC");
222 MUX_BEAGLE_XM();
223 /* Set VAUX2 to 1.8V for EHCI PHY */
224 twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
225 TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
226 TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
227 TWL4030_PM_RECEIVER_DEV_GRP_P1);
228 break;
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700229 default:
230 printf("Beagle unknown 0x%02x\n", get_board_revision());
Koen Kooif6e593b2011-04-18 17:28:32 -0400231 MUX_BEAGLE_XM();
232 /* Set VAUX2 to 1.8V for EHCI PHY */
233 twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
234 TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
235 TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
236 TWL4030_PM_RECEIVER_DEV_GRP_P1);
Steve Sakoman06b95bd2010-08-12 15:17:37 -0700237 }
238
Koen Kooica5f80a2010-09-20 10:21:33 -0700239 switch (get_expansion_id()) {
240 case TINCANTOOLS_ZIPPY:
241 printf("Recognized Tincantools Zippy board (rev %d %s)\n",
242 expansion_config.revision,
243 expansion_config.fab_revision);
244 MUX_TINCANTOOLS_ZIPPY();
245 setenv("buddy", "zippy");
246 break;
247 case TINCANTOOLS_ZIPPY2:
248 printf("Recognized Tincantools Zippy2 board (rev %d %s)\n",
249 expansion_config.revision,
250 expansion_config.fab_revision);
251 MUX_TINCANTOOLS_ZIPPY();
252 setenv("buddy", "zippy2");
253 break;
254 case TINCANTOOLS_TRAINER:
255 printf("Recognized Tincantools Trainer board (rev %d %s)\n",
256 expansion_config.revision,
257 expansion_config.fab_revision);
258 MUX_TINCANTOOLS_ZIPPY();
259 MUX_TINCANTOOLS_TRAINER();
260 setenv("buddy", "trainer");
261 break;
262 case TINCANTOOLS_SHOWDOG:
263 printf("Recognized Tincantools Showdow board (rev %d %s)\n",
264 expansion_config.revision,
265 expansion_config.fab_revision);
266 /* Place holder for DSS2 definition for showdog lcd */
267 setenv("defaultdisplay", "showdoglcd");
268 setenv("buddy", "showdog");
269 break;
270 case KBADC_BEAGLEFPGA:
271 printf("Recognized KBADC Beagle FPGA board\n");
272 MUX_KBADC_BEAGLEFPGA();
273 setenv("buddy", "beaglefpga");
274 break;
Koen Kooiee8485f2011-04-18 17:29:35 -0400275 case LW_BEAGLETOUCH:
276 printf("Recognized Liquidware BeagleTouch board\n");
277 setenv("buddy", "beagletouch");
278 break;
279 case BRAINMUX_LCDOG:
280 printf("Recognized Brainmux LCDog board\n");
281 setenv("buddy", "lcdog");
282 break;
283 case BRAINMUX_LCDOGTOUCH:
284 printf("Recognized Brainmux LCDog Touch board\n");
285 setenv("buddy", "lcdogtouch");
286 break;
287 case BBTOYS_WIFI:
288 printf("Recognized BeagleBoardToys WiFi board\n");
289 MUX_BBTOYS_WIFI()
290 setenv("buddy", "bbtoys-wifi");
291 break;;
292 case BBTOYS_VGA:
293 printf("Recognized BeagleBoardToys VGA board\n");
294 break;;
295 case BBTOYS_LCD:
296 printf("Recognized BeagleBoardToys LCD board\n");
297 break;;
Koen Kooica5f80a2010-09-20 10:21:33 -0700298 case BEAGLE_NO_EEPROM:
299 printf("No EEPROM on expansion board\n");
300 setenv("buddy", "none");
301 break;
302 default:
303 printf("Unrecognized expansion board: %x\n",
304 expansion_config.device_vendor);
305 setenv("buddy", "unknown");
306 }
307
308 if (expansion_config.content == 1)
309 setenv(expansion_config.env_var, expansion_config.env_setting);
310
Tom Rix2c155132009-06-28 12:52:30 -0500311 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +0200312 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Dirk Behmef904cdb2009-01-27 18:19:12 +0100313
Bob Feretich52d82e42011-02-24 13:16:44 +0000314 /* Set GPIO states before they are made outputs */
Dirk Behmef904cdb2009-01-27 18:19:12 +0100315 writel(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1,
316 &gpio6_base->setdataout);
317 writel(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
318 GPIO15 | GPIO14 | GPIO13 | GPIO12, &gpio5_base->setdataout);
319
Bob Feretich52d82e42011-02-24 13:16:44 +0000320 /* Configure GPIOs to output */
321 writel(~(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1), &gpio6_base->oe);
322 writel(~(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
323 GPIO15 | GPIO14 | GPIO13 | GPIO12), &gpio5_base->oe);
324
Dirk Behmee6a6a702009-03-12 19:30:50 +0100325 dieid_num_r();
326
Dirk Behmef904cdb2009-01-27 18:19:12 +0100327 return 0;
328}
329
Tom Rix58911512009-04-01 22:02:20 -0500330/*
Dirk Behmef904cdb2009-01-27 18:19:12 +0100331 * Routine: set_muxconf_regs
332 * Description: Setting up the configuration Mux registers specific to the
333 * hardware. Many pins need to be moved from protect to primary
334 * mode.
Tom Rix58911512009-04-01 22:02:20 -0500335 */
Dirk Behmef904cdb2009-01-27 18:19:12 +0100336void set_muxconf_regs(void)
337{
338 MUX_BEAGLE();
Dirk Behmef904cdb2009-01-27 18:19:12 +0100339}
Steve Sakoman0cd31142010-09-19 21:19:48 -0700340
341#ifdef CONFIG_GENERIC_MMC
342int board_mmc_init(bd_t *bis)
343{
344 omap_mmc_init(0);
345 return 0;
346}
347#endif
Alexander Hollerd90859a2011-04-19 09:30:35 -0400348
349#ifdef CONFIG_USB_EHCI
350
351#define GPIO_PHY_RESET 147
352
353/* Reset is needed otherwise the kernel-driver will throw an error. */
354int ehci_hcd_stop(void)
355{
356 pr_debug("Resetting OMAP3 EHCI\n");
357 omap_set_gpio_dataout(GPIO_PHY_RESET, 0);
358 writel(OMAP_UHH_SYSCONFIG_SOFTRESET, OMAP3_UHH_BASE + OMAP_UHH_SYSCONFIG);
Koen Kooif44047d2011-06-17 09:26:17 +0200359 /* disable USB clocks */
360 struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
361 sr32(&prcm_base->iclken_usbhost, 0, 1, 0);
362 sr32(&prcm_base->fclken_usbhost, 0, 2, 0);
363 sr32(&prcm_base->iclken3_core, 2, 1, 0);
364 sr32(&prcm_base->fclken3_core, 2, 1, 0);
Alexander Hollerd90859a2011-04-19 09:30:35 -0400365 return 0;
366}
367
368/* Call usb_stop() before starting the kernel */
369void show_boot_progress(int val)
370{
371 if(val == 15)
372 usb_stop();
373}
374
375/*
376 * Initialize the OMAP3 EHCI controller and PHY on the BeagleBoard.
377 * Based on "drivers/usb/host/ehci-omap.c" from Linux 2.6.37.
378 * See there for additional Copyrights.
379 */
380int ehci_hcd_init(void)
381{
382 pr_debug("Initializing OMAP3 ECHI\n");
383
384 /* Put the PHY in RESET */
385 omap_request_gpio(GPIO_PHY_RESET);
386 omap_set_gpio_direction(GPIO_PHY_RESET, 0);
387 omap_set_gpio_dataout(GPIO_PHY_RESET, 0);
388
389 /* Hold the PHY in RESET for enough time till DIR is high */
390 /* Refer: ISSUE1 */
391 udelay(10);
392
393 struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
394 /* Enable USBHOST_L3_ICLK (USBHOST_MICLK) */
395 sr32(&prcm_base->iclken_usbhost, 0, 1, 1);
396 /*
397 * Enable USBHOST_48M_FCLK (USBHOST_FCLK1)
398 * and USBHOST_120M_FCLK (USBHOST_FCLK2)
399 */
400 sr32(&prcm_base->fclken_usbhost, 0, 2, 3);
401 /* Enable USBTTL_ICLK */
402 sr32(&prcm_base->iclken3_core, 2, 1, 1);
403 /* Enable USBTTL_FCLK */
404 sr32(&prcm_base->fclken3_core, 2, 1, 1);
405 pr_debug("USB clocks enabled\n");
406
407 /* perform TLL soft reset, and wait until reset is complete */
408 writel(OMAP_USBTLL_SYSCONFIG_SOFTRESET,
409 OMAP3_USBTLL_BASE + OMAP_USBTLL_SYSCONFIG);
410 /* Wait for TLL reset to complete */
411 while (!(readl(OMAP3_USBTLL_BASE + OMAP_USBTLL_SYSSTATUS)
412 & OMAP_USBTLL_SYSSTATUS_RESETDONE));
413 pr_debug("TLL reset done\n");
414
415 writel(OMAP_USBTLL_SYSCONFIG_ENAWAKEUP |
416 OMAP_USBTLL_SYSCONFIG_SIDLEMODE |
417 OMAP_USBTLL_SYSCONFIG_CACTIVITY,
418 OMAP3_USBTLL_BASE + OMAP_USBTLL_SYSCONFIG);
419
420 /* Put UHH in NoIdle/NoStandby mode */
421 writel(OMAP_UHH_SYSCONFIG_ENAWAKEUP
422 | OMAP_UHH_SYSCONFIG_SIDLEMODE
423 | OMAP_UHH_SYSCONFIG_CACTIVITY
424 | OMAP_UHH_SYSCONFIG_MIDLEMODE,
425 OMAP3_UHH_BASE + OMAP_UHH_SYSCONFIG);
426
427 /* setup burst configurations */
428 writel(OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
429 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
430 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN,
431 OMAP3_UHH_BASE + OMAP_UHH_HOSTCONFIG);
432
433 /*
434 * Refer ISSUE1:
435 * Hold the PHY in RESET for enough time till
436 * PHY is settled and ready
437 */
438 udelay(10);
439 omap_set_gpio_dataout(GPIO_PHY_RESET, 1);
440
441 hccr = (struct ehci_hccr *)(OMAP3_EHCI_BASE);
442 hcor = (struct ehci_hcor *)(OMAP3_EHCI_BASE + 0x10);
443
444 pr_debug("OMAP3 EHCI init done\n");
445 return 0;
446}
447
448#endif /* CONFIG_USB_EHCI */