diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-2430sdp.c')
-rw-r--r-- | arch/arm/mach-omap2/board-2430sdp.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-2430sdp.c b/arch/arm/mach-omap2/board-2430sdp.c index 01d113ff9fcf..a11a575745e4 100644 --- a/arch/arm/mach-omap2/board-2430sdp.c +++ b/arch/arm/mach-omap2/board-2430sdp.c | |||
@@ -174,9 +174,18 @@ static struct i2c_board_info __initdata sdp2430_i2c_boardinfo[] = { | |||
174 | }, | 174 | }, |
175 | }; | 175 | }; |
176 | 176 | ||
177 | static struct i2c_board_info __initdata sdp2430_i2c1_boardinfo[] = { | ||
178 | { | ||
179 | I2C_BOARD_INFO("isp1301_omap", 0x2D), | ||
180 | .flags = I2C_CLIENT_WAKE, | ||
181 | .irq = OMAP_GPIO_IRQ(78), | ||
182 | }, | ||
183 | }; | ||
184 | |||
177 | static int __init omap2430_i2c_init(void) | 185 | static int __init omap2430_i2c_init(void) |
178 | { | 186 | { |
179 | omap_register_i2c_bus(1, 400, NULL, 0); | 187 | omap_register_i2c_bus(1, 100, sdp2430_i2c1_boardinfo, |
188 | ARRAY_SIZE(sdp2430_i2c1_boardinfo)); | ||
180 | omap_register_i2c_bus(2, 2600, sdp2430_i2c_boardinfo, | 189 | omap_register_i2c_bus(2, 2600, sdp2430_i2c_boardinfo, |
181 | ARRAY_SIZE(sdp2430_i2c_boardinfo)); | 190 | ARRAY_SIZE(sdp2430_i2c_boardinfo)); |
182 | return 0; | 191 | return 0; |
@@ -198,6 +207,15 @@ static struct omap_musb_board_data musb_board_data = { | |||
198 | .mode = MUSB_OTG, | 207 | .mode = MUSB_OTG, |
199 | .power = 100, | 208 | .power = 100, |
200 | }; | 209 | }; |
210 | static struct omap_usb_config sdp2430_usb_config __initdata = { | ||
211 | .otg = 1, | ||
212 | #ifdef CONFIG_USB_GADGET_OMAP | ||
213 | .hmc_mode = 0x0, | ||
214 | #elif defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) | ||
215 | .hmc_mode = 0x1, | ||
216 | #endif | ||
217 | .pins[0] = 3, | ||
218 | }; | ||
201 | 219 | ||
202 | static void __init omap_2430sdp_init(void) | 220 | static void __init omap_2430sdp_init(void) |
203 | { | 221 | { |
@@ -208,6 +226,7 @@ static void __init omap_2430sdp_init(void) | |||
208 | platform_add_devices(sdp2430_devices, ARRAY_SIZE(sdp2430_devices)); | 226 | platform_add_devices(sdp2430_devices, ARRAY_SIZE(sdp2430_devices)); |
209 | omap_serial_init(); | 227 | omap_serial_init(); |
210 | omap2_hsmmc_init(mmc); | 228 | omap2_hsmmc_init(mmc); |
229 | omap_usb_init(&sdp2430_usb_config); | ||
211 | usb_musb_init(&musb_board_data); | 230 | usb_musb_init(&musb_board_data); |
212 | board_smc91x_init(); | 231 | board_smc91x_init(); |
213 | 232 | ||