GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-mx3 / mach-pcm037.c
blob3081fca09d3d394893856cee7b4b3e98f3097e04
1 /*
2 * Copyright (C) 2008 Sascha Hauer, Pengutronix
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/types.h>
16 #include <linux/init.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/platform_device.h>
19 #include <linux/mtd/physmap.h>
20 #include <linux/mtd/plat-ram.h>
21 #include <linux/memory.h>
22 #include <linux/gpio.h>
23 #include <linux/smsc911x.h>
24 #include <linux/interrupt.h>
25 #include <linux/i2c.h>
26 #include <linux/i2c/at24.h>
27 #include <linux/delay.h>
28 #include <linux/spi/spi.h>
29 #include <linux/irq.h>
30 #include <linux/fsl_devices.h>
31 #include <linux/can/platform/sja1000.h>
32 #include <linux/usb/otg.h>
33 #include <linux/usb/ulpi.h>
34 #include <linux/gfp.h>
36 #include <media/soc_camera.h>
38 #include <asm/mach-types.h>
39 #include <asm/mach/arch.h>
40 #include <asm/mach/time.h>
41 #include <asm/mach/map.h>
42 #include <mach/common.h>
43 #include <mach/hardware.h>
44 #include <mach/iomux-mx3.h>
45 #include <mach/ipu.h>
46 #include <mach/mmc.h>
47 #include <mach/mx3_camera.h>
48 #include <mach/mx3fb.h>
49 #include <mach/mxc_ehci.h>
50 #include <mach/ulpi.h>
52 #include "devices-imx31.h"
53 #include "devices.h"
54 #include "pcm037.h"
56 static enum pcm037_board_variant pcm037_instance = PCM037_PCM970;
58 static int __init pcm037_variant_setup(char *str)
60 if (!strcmp("eet", str))
61 pcm037_instance = PCM037_EET;
62 else if (strcmp("pcm970", str))
63 pr_warning("Unknown pcm037 baseboard variant %s\n", str);
65 return 1;
68 /* Supported values: "pcm970" (default) and "eet" */
69 __setup("pcm037_variant=", pcm037_variant_setup);
71 enum pcm037_board_variant pcm037_variant(void)
73 return pcm037_instance;
76 /* UART1 with RTS/CTS handshake signals */
77 static unsigned int pcm037_uart1_handshake_pins[] = {
78 MX31_PIN_CTS1__CTS1,
79 MX31_PIN_RTS1__RTS1,
80 MX31_PIN_TXD1__TXD1,
81 MX31_PIN_RXD1__RXD1,
84 /* UART1 without RTS/CTS handshake signals */
85 static unsigned int pcm037_uart1_pins[] = {
86 MX31_PIN_TXD1__TXD1,
87 MX31_PIN_RXD1__RXD1,
90 static unsigned int pcm037_pins[] = {
91 /* I2C */
92 MX31_PIN_CSPI2_MOSI__SCL,
93 MX31_PIN_CSPI2_MISO__SDA,
94 MX31_PIN_CSPI2_SS2__I2C3_SDA,
95 MX31_PIN_CSPI2_SCLK__I2C3_SCL,
96 /* SDHC1 */
97 MX31_PIN_SD1_DATA3__SD1_DATA3,
98 MX31_PIN_SD1_DATA2__SD1_DATA2,
99 MX31_PIN_SD1_DATA1__SD1_DATA1,
100 MX31_PIN_SD1_DATA0__SD1_DATA0,
101 MX31_PIN_SD1_CLK__SD1_CLK,
102 MX31_PIN_SD1_CMD__SD1_CMD,
103 IOMUX_MODE(MX31_PIN_SCK6, IOMUX_CONFIG_GPIO), /* card detect */
104 IOMUX_MODE(MX31_PIN_SFS6, IOMUX_CONFIG_GPIO), /* write protect */
105 /* SPI1 */
106 MX31_PIN_CSPI1_MOSI__MOSI,
107 MX31_PIN_CSPI1_MISO__MISO,
108 MX31_PIN_CSPI1_SCLK__SCLK,
109 MX31_PIN_CSPI1_SPI_RDY__SPI_RDY,
110 MX31_PIN_CSPI1_SS0__SS0,
111 MX31_PIN_CSPI1_SS1__SS1,
112 MX31_PIN_CSPI1_SS2__SS2,
113 /* UART2 */
114 MX31_PIN_TXD2__TXD2,
115 MX31_PIN_RXD2__RXD2,
116 MX31_PIN_CTS2__CTS2,
117 MX31_PIN_RTS2__RTS2,
118 /* UART3 */
119 MX31_PIN_CSPI3_MOSI__RXD3,
120 MX31_PIN_CSPI3_MISO__TXD3,
121 MX31_PIN_CSPI3_SCLK__RTS3,
122 MX31_PIN_CSPI3_SPI_RDY__CTS3,
123 /* LAN9217 irq pin */
124 IOMUX_MODE(MX31_PIN_GPIO3_1, IOMUX_CONFIG_GPIO),
125 /* Onewire */
126 MX31_PIN_BATT_LINE__OWIRE,
127 /* Framebuffer */
128 MX31_PIN_LD0__LD0,
129 MX31_PIN_LD1__LD1,
130 MX31_PIN_LD2__LD2,
131 MX31_PIN_LD3__LD3,
132 MX31_PIN_LD4__LD4,
133 MX31_PIN_LD5__LD5,
134 MX31_PIN_LD6__LD6,
135 MX31_PIN_LD7__LD7,
136 MX31_PIN_LD8__LD8,
137 MX31_PIN_LD9__LD9,
138 MX31_PIN_LD10__LD10,
139 MX31_PIN_LD11__LD11,
140 MX31_PIN_LD12__LD12,
141 MX31_PIN_LD13__LD13,
142 MX31_PIN_LD14__LD14,
143 MX31_PIN_LD15__LD15,
144 MX31_PIN_LD16__LD16,
145 MX31_PIN_LD17__LD17,
146 MX31_PIN_VSYNC3__VSYNC3,
147 MX31_PIN_HSYNC__HSYNC,
148 MX31_PIN_FPSHIFT__FPSHIFT,
149 MX31_PIN_DRDY0__DRDY0,
150 MX31_PIN_D3_REV__D3_REV,
151 MX31_PIN_CONTRAST__CONTRAST,
152 MX31_PIN_D3_SPL__D3_SPL,
153 MX31_PIN_D3_CLS__D3_CLS,
154 MX31_PIN_LCS0__GPI03_23,
155 /* CSI */
156 IOMUX_MODE(MX31_PIN_CSI_D5, IOMUX_CONFIG_GPIO),
157 MX31_PIN_CSI_D6__CSI_D6,
158 MX31_PIN_CSI_D7__CSI_D7,
159 MX31_PIN_CSI_D8__CSI_D8,
160 MX31_PIN_CSI_D9__CSI_D9,
161 MX31_PIN_CSI_D10__CSI_D10,
162 MX31_PIN_CSI_D11__CSI_D11,
163 MX31_PIN_CSI_D12__CSI_D12,
164 MX31_PIN_CSI_D13__CSI_D13,
165 MX31_PIN_CSI_D14__CSI_D14,
166 MX31_PIN_CSI_D15__CSI_D15,
167 MX31_PIN_CSI_HSYNC__CSI_HSYNC,
168 MX31_PIN_CSI_MCLK__CSI_MCLK,
169 MX31_PIN_CSI_PIXCLK__CSI_PIXCLK,
170 MX31_PIN_CSI_VSYNC__CSI_VSYNC,
171 /* GPIO */
172 IOMUX_MODE(MX31_PIN_ATA_DMACK, IOMUX_CONFIG_GPIO),
173 /* OTG */
174 MX31_PIN_USBOTG_DATA0__USBOTG_DATA0,
175 MX31_PIN_USBOTG_DATA1__USBOTG_DATA1,
176 MX31_PIN_USBOTG_DATA2__USBOTG_DATA2,
177 MX31_PIN_USBOTG_DATA3__USBOTG_DATA3,
178 MX31_PIN_USBOTG_DATA4__USBOTG_DATA4,
179 MX31_PIN_USBOTG_DATA5__USBOTG_DATA5,
180 MX31_PIN_USBOTG_DATA6__USBOTG_DATA6,
181 MX31_PIN_USBOTG_DATA7__USBOTG_DATA7,
182 MX31_PIN_USBOTG_CLK__USBOTG_CLK,
183 MX31_PIN_USBOTG_DIR__USBOTG_DIR,
184 MX31_PIN_USBOTG_NXT__USBOTG_NXT,
185 MX31_PIN_USBOTG_STP__USBOTG_STP,
186 /* USB host 2 */
187 IOMUX_MODE(MX31_PIN_USBH2_CLK, IOMUX_CONFIG_FUNC),
188 IOMUX_MODE(MX31_PIN_USBH2_DIR, IOMUX_CONFIG_FUNC),
189 IOMUX_MODE(MX31_PIN_USBH2_NXT, IOMUX_CONFIG_FUNC),
190 IOMUX_MODE(MX31_PIN_USBH2_STP, IOMUX_CONFIG_FUNC),
191 IOMUX_MODE(MX31_PIN_USBH2_DATA0, IOMUX_CONFIG_FUNC),
192 IOMUX_MODE(MX31_PIN_USBH2_DATA1, IOMUX_CONFIG_FUNC),
193 IOMUX_MODE(MX31_PIN_STXD3, IOMUX_CONFIG_FUNC),
194 IOMUX_MODE(MX31_PIN_SRXD3, IOMUX_CONFIG_FUNC),
195 IOMUX_MODE(MX31_PIN_SCK3, IOMUX_CONFIG_FUNC),
196 IOMUX_MODE(MX31_PIN_SFS3, IOMUX_CONFIG_FUNC),
197 IOMUX_MODE(MX31_PIN_STXD6, IOMUX_CONFIG_FUNC),
198 IOMUX_MODE(MX31_PIN_SRXD6, IOMUX_CONFIG_FUNC),
201 static struct physmap_flash_data pcm037_flash_data = {
202 .width = 2,
205 static struct resource pcm037_flash_resource = {
206 .start = 0xa0000000,
207 .end = 0xa1ffffff,
208 .flags = IORESOURCE_MEM,
211 static struct platform_device pcm037_flash = {
212 .name = "physmap-flash",
213 .id = 0,
214 .dev = {
215 .platform_data = &pcm037_flash_data,
217 .resource = &pcm037_flash_resource,
218 .num_resources = 1,
221 static const struct imxuart_platform_data uart_pdata __initconst = {
222 .flags = IMXUART_HAVE_RTSCTS,
225 static struct resource smsc911x_resources[] = {
227 .start = MX31_CS1_BASE_ADDR + 0x300,
228 .end = MX31_CS1_BASE_ADDR + 0x300 + SZ_64K - 1,
229 .flags = IORESOURCE_MEM,
230 }, {
231 .start = IOMUX_TO_IRQ(MX31_PIN_GPIO3_1),
232 .end = IOMUX_TO_IRQ(MX31_PIN_GPIO3_1),
233 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
237 static struct smsc911x_platform_config smsc911x_info = {
238 .flags = SMSC911X_USE_32BIT | SMSC911X_FORCE_INTERNAL_PHY |
239 SMSC911X_SAVE_MAC_ADDRESS,
240 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
241 .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
242 .phy_interface = PHY_INTERFACE_MODE_MII,
245 static struct platform_device pcm037_eth = {
246 .name = "smsc911x",
247 .id = -1,
248 .num_resources = ARRAY_SIZE(smsc911x_resources),
249 .resource = smsc911x_resources,
250 .dev = {
251 .platform_data = &smsc911x_info,
255 static struct platdata_mtd_ram pcm038_sram_data = {
256 .bankwidth = 2,
259 static struct resource pcm038_sram_resource = {
260 .start = MX31_CS4_BASE_ADDR,
261 .end = MX31_CS4_BASE_ADDR + 512 * 1024 - 1,
262 .flags = IORESOURCE_MEM,
265 static struct platform_device pcm037_sram_device = {
266 .name = "mtd-ram",
267 .id = 0,
268 .dev = {
269 .platform_data = &pcm038_sram_data,
271 .num_resources = 1,
272 .resource = &pcm038_sram_resource,
275 static const struct mxc_nand_platform_data
276 pcm037_nand_board_info __initconst = {
277 .width = 1,
278 .hw_ecc = 1,
281 static const struct imxi2c_platform_data pcm037_i2c1_data __initconst = {
282 .bitrate = 100000,
285 static const struct imxi2c_platform_data pcm037_i2c2_data __initconst = {
286 .bitrate = 20000,
289 static struct at24_platform_data board_eeprom = {
290 .byte_len = 4096,
291 .page_size = 32,
292 .flags = AT24_FLAG_ADDR16,
295 static int pcm037_camera_power(struct device *dev, int on)
297 /* disable or enable the camera in X7 or X8 PCM970 connector */
298 gpio_set_value(IOMUX_TO_GPIO(MX31_PIN_CSI_D5), !on);
299 return 0;
302 static struct i2c_board_info pcm037_i2c_camera[] = {
304 I2C_BOARD_INFO("mt9t031", 0x5d),
305 }, {
306 I2C_BOARD_INFO("mt9v022", 0x48),
310 static struct soc_camera_link iclink_mt9v022 = {
311 .bus_id = 0, /* Must match with the camera ID */
312 .board_info = &pcm037_i2c_camera[1],
313 .i2c_adapter_id = 2,
314 .module_name = "mt9v022",
317 static struct soc_camera_link iclink_mt9t031 = {
318 .bus_id = 0, /* Must match with the camera ID */
319 .power = pcm037_camera_power,
320 .board_info = &pcm037_i2c_camera[0],
321 .i2c_adapter_id = 2,
322 .module_name = "mt9t031",
325 static struct i2c_board_info pcm037_i2c_devices[] = {
327 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
328 .platform_data = &board_eeprom,
329 }, {
330 I2C_BOARD_INFO("pcf8563", 0x51),
334 static struct platform_device pcm037_mt9t031 = {
335 .name = "soc-camera-pdrv",
336 .id = 0,
337 .dev = {
338 .platform_data = &iclink_mt9t031,
342 static struct platform_device pcm037_mt9v022 = {
343 .name = "soc-camera-pdrv",
344 .id = 1,
345 .dev = {
346 .platform_data = &iclink_mt9v022,
350 /* Not connected by default */
351 #ifdef PCM970_SDHC_RW_SWITCH
352 static int pcm970_sdhc1_get_ro(struct device *dev)
354 return gpio_get_value(IOMUX_TO_GPIO(MX31_PIN_SFS6));
356 #endif
358 #define SDHC1_GPIO_WP IOMUX_TO_GPIO(MX31_PIN_SFS6)
359 #define SDHC1_GPIO_DET IOMUX_TO_GPIO(MX31_PIN_SCK6)
361 static int pcm970_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
362 void *data)
364 int ret;
366 ret = gpio_request(SDHC1_GPIO_DET, "sdhc-detect");
367 if (ret)
368 return ret;
370 gpio_direction_input(SDHC1_GPIO_DET);
372 #ifdef PCM970_SDHC_RW_SWITCH
373 ret = gpio_request(SDHC1_GPIO_WP, "sdhc-wp");
374 if (ret)
375 goto err_gpio_free;
376 gpio_direction_input(SDHC1_GPIO_WP);
377 #endif
379 ret = request_irq(IOMUX_TO_IRQ(MX31_PIN_SCK6), detect_irq,
380 IRQF_DISABLED | IRQF_TRIGGER_FALLING,
381 "sdhc-detect", data);
382 if (ret)
383 goto err_gpio_free_2;
385 return 0;
387 err_gpio_free_2:
388 #ifdef PCM970_SDHC_RW_SWITCH
389 gpio_free(SDHC1_GPIO_WP);
390 err_gpio_free:
391 #endif
392 gpio_free(SDHC1_GPIO_DET);
394 return ret;
397 static void pcm970_sdhc1_exit(struct device *dev, void *data)
399 free_irq(IOMUX_TO_IRQ(MX31_PIN_SCK6), data);
400 gpio_free(SDHC1_GPIO_DET);
401 gpio_free(SDHC1_GPIO_WP);
404 static struct imxmmc_platform_data sdhc_pdata = {
405 #ifdef PCM970_SDHC_RW_SWITCH
406 .get_ro = pcm970_sdhc1_get_ro,
407 #endif
408 .init = pcm970_sdhc1_init,
409 .exit = pcm970_sdhc1_exit,
412 struct mx3_camera_pdata camera_pdata = {
413 .dma_dev = &mx3_ipu.dev,
414 .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10,
415 .mclk_10khz = 2000,
418 static int __init pcm037_camera_alloc_dma(const size_t buf_size)
420 dma_addr_t dma_handle;
421 void *buf;
422 int dma;
424 if (buf_size < 2 * 1024 * 1024)
425 return -EINVAL;
427 buf = dma_alloc_coherent(NULL, buf_size, &dma_handle, GFP_KERNEL);
428 if (!buf) {
429 pr_err("%s: cannot allocate camera buffer-memory\n", __func__);
430 return -ENOMEM;
433 memset(buf, 0, buf_size);
435 dma = dma_declare_coherent_memory(&mx3_camera.dev,
436 dma_handle, dma_handle, buf_size,
437 DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE);
439 /* The way we call dma_declare_coherent_memory only a malloc can fail */
440 return dma & DMA_MEMORY_MAP ? 0 : -ENOMEM;
443 static struct platform_device *devices[] __initdata = {
444 &pcm037_flash,
445 &pcm037_sram_device,
446 &imx_wdt_device0,
447 &pcm037_mt9t031,
448 &pcm037_mt9v022,
451 static struct ipu_platform_data mx3_ipu_data = {
452 .irq_base = MXC_IPU_IRQ_START,
455 static const struct fb_videomode fb_modedb[] = {
457 /* 240x320 @ 60 Hz Sharp */
458 .name = "Sharp-LQ035Q7DH06-QVGA",
459 .refresh = 60,
460 .xres = 240,
461 .yres = 320,
462 .pixclock = 185925,
463 .left_margin = 9,
464 .right_margin = 16,
465 .upper_margin = 7,
466 .lower_margin = 9,
467 .hsync_len = 1,
468 .vsync_len = 1,
469 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_SHARP_MODE |
470 FB_SYNC_CLK_INVERT | FB_SYNC_CLK_IDLE_EN,
471 .vmode = FB_VMODE_NONINTERLACED,
472 .flag = 0,
473 }, {
474 /* 240x320 @ 60 Hz */
475 .name = "TX090",
476 .refresh = 60,
477 .xres = 240,
478 .yres = 320,
479 .pixclock = 38255,
480 .left_margin = 144,
481 .right_margin = 0,
482 .upper_margin = 7,
483 .lower_margin = 40,
484 .hsync_len = 96,
485 .vsync_len = 1,
486 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_OE_ACT_HIGH,
487 .vmode = FB_VMODE_NONINTERLACED,
488 .flag = 0,
489 }, {
490 /* 240x320 @ 60 Hz */
491 .name = "CMEL-OLED",
492 .refresh = 60,
493 .xres = 240,
494 .yres = 320,
495 .pixclock = 185925,
496 .left_margin = 9,
497 .right_margin = 16,
498 .upper_margin = 7,
499 .lower_margin = 9,
500 .hsync_len = 1,
501 .vsync_len = 1,
502 .sync = FB_SYNC_OE_ACT_HIGH | FB_SYNC_CLK_INVERT,
503 .vmode = FB_VMODE_NONINTERLACED,
504 .flag = 0,
508 static struct mx3fb_platform_data mx3fb_pdata = {
509 .dma_dev = &mx3_ipu.dev,
510 .name = "Sharp-LQ035Q7DH06-QVGA",
511 .mode = fb_modedb,
512 .num_modes = ARRAY_SIZE(fb_modedb),
515 static struct resource pcm970_sja1000_resources[] = {
517 .start = MX31_CS5_BASE_ADDR,
518 .end = MX31_CS5_BASE_ADDR + 0x100 - 1,
519 .flags = IORESOURCE_MEM,
520 }, {
521 .start = IOMUX_TO_IRQ(IOMUX_PIN(48, 105)),
522 .end = IOMUX_TO_IRQ(IOMUX_PIN(48, 105)),
523 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE,
527 struct sja1000_platform_data pcm970_sja1000_platform_data = {
528 .osc_freq = 16000000,
529 .ocr = OCR_TX1_PULLDOWN | OCR_TX0_PUSHPULL,
530 .cdr = CDR_CBP,
533 static struct platform_device pcm970_sja1000 = {
534 .name = "sja1000_platform",
535 .dev = {
536 .platform_data = &pcm970_sja1000_platform_data,
538 .resource = pcm970_sja1000_resources,
539 .num_resources = ARRAY_SIZE(pcm970_sja1000_resources),
542 #if defined(CONFIG_USB_ULPI)
543 static struct mxc_usbh_platform_data otg_pdata = {
544 .portsc = MXC_EHCI_MODE_ULPI,
545 .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
548 static struct mxc_usbh_platform_data usbh2_pdata = {
549 .portsc = MXC_EHCI_MODE_ULPI,
550 .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
552 #endif
554 static struct fsl_usb2_platform_data otg_device_pdata = {
555 .operating_mode = FSL_USB2_DR_DEVICE,
556 .phy_mode = FSL_USB2_PHY_ULPI,
559 static int otg_mode_host;
561 static int __init pcm037_otg_mode(char *options)
563 if (!strcmp(options, "host"))
564 otg_mode_host = 1;
565 else if (!strcmp(options, "device"))
566 otg_mode_host = 0;
567 else
568 pr_info("otg_mode neither \"host\" nor \"device\". "
569 "Defaulting to device\n");
570 return 0;
572 __setup("otg_mode=", pcm037_otg_mode);
575 * Board specific initialization.
577 static void __init mxc_board_init(void)
579 int ret;
581 mxc_iomux_set_gpr(MUX_PGP_UH2, 1);
583 mxc_iomux_setup_multiple_pins(pcm037_pins, ARRAY_SIZE(pcm037_pins),
584 "pcm037");
586 #define H2_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS \
587 | PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
589 mxc_iomux_set_pad(MX31_PIN_USBH2_CLK, H2_PAD_CFG);
590 mxc_iomux_set_pad(MX31_PIN_USBH2_DIR, H2_PAD_CFG);
591 mxc_iomux_set_pad(MX31_PIN_USBH2_NXT, H2_PAD_CFG);
592 mxc_iomux_set_pad(MX31_PIN_USBH2_STP, H2_PAD_CFG);
593 mxc_iomux_set_pad(MX31_PIN_USBH2_DATA0, H2_PAD_CFG); /* USBH2_DATA0 */
594 mxc_iomux_set_pad(MX31_PIN_USBH2_DATA1, H2_PAD_CFG); /* USBH2_DATA1 */
595 mxc_iomux_set_pad(MX31_PIN_SRXD6, H2_PAD_CFG); /* USBH2_DATA2 */
596 mxc_iomux_set_pad(MX31_PIN_STXD6, H2_PAD_CFG); /* USBH2_DATA3 */
597 mxc_iomux_set_pad(MX31_PIN_SFS3, H2_PAD_CFG); /* USBH2_DATA4 */
598 mxc_iomux_set_pad(MX31_PIN_SCK3, H2_PAD_CFG); /* USBH2_DATA5 */
599 mxc_iomux_set_pad(MX31_PIN_SRXD3, H2_PAD_CFG); /* USBH2_DATA6 */
600 mxc_iomux_set_pad(MX31_PIN_STXD3, H2_PAD_CFG); /* USBH2_DATA7 */
602 if (pcm037_variant() == PCM037_EET)
603 mxc_iomux_setup_multiple_pins(pcm037_uart1_pins,
604 ARRAY_SIZE(pcm037_uart1_pins), "pcm037_uart1");
605 else
606 mxc_iomux_setup_multiple_pins(pcm037_uart1_handshake_pins,
607 ARRAY_SIZE(pcm037_uart1_handshake_pins),
608 "pcm037_uart1");
610 platform_add_devices(devices, ARRAY_SIZE(devices));
612 imx31_add_imx_uart0(&uart_pdata);
613 imx31_add_imx_uart1(&uart_pdata);
614 imx31_add_imx_uart2(&uart_pdata);
616 mxc_register_device(&mxc_w1_master_device, NULL);
618 /* LAN9217 IRQ pin */
619 ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO3_1), "lan9217-irq");
620 if (ret)
621 pr_warning("could not get LAN irq gpio\n");
622 else {
623 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO3_1));
624 platform_device_register(&pcm037_eth);
628 /* I2C adapters and devices */
629 i2c_register_board_info(1, pcm037_i2c_devices,
630 ARRAY_SIZE(pcm037_i2c_devices));
632 imx31_add_imx_i2c1(&pcm037_i2c1_data);
633 imx31_add_imx_i2c2(&pcm037_i2c2_data);
635 imx31_add_mxc_nand(&pcm037_nand_board_info);
636 mxc_register_device(&mxcsdhc_device0, &sdhc_pdata);
637 mxc_register_device(&mx3_ipu, &mx3_ipu_data);
638 mxc_register_device(&mx3_fb, &mx3fb_pdata);
640 /* CSI */
641 /* Camera power: default - off */
642 ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_CSI_D5), "mt9t031-power");
643 if (!ret)
644 gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_CSI_D5), 1);
645 else
646 iclink_mt9t031.power = NULL;
648 if (!pcm037_camera_alloc_dma(4 * 1024 * 1024))
649 mxc_register_device(&mx3_camera, &camera_pdata);
651 platform_device_register(&pcm970_sja1000);
653 #if defined(CONFIG_USB_ULPI)
654 if (otg_mode_host) {
655 otg_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
656 ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
658 mxc_register_device(&mxc_otg_host, &otg_pdata);
661 usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
662 ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
664 mxc_register_device(&mxc_usbh2, &usbh2_pdata);
665 #endif
666 if (!otg_mode_host)
667 mxc_register_device(&mxc_otg_udc_device, &otg_device_pdata);
671 static void __init pcm037_timer_init(void)
673 mx31_clocks_init(26000000);
676 struct sys_timer pcm037_timer = {
677 .init = pcm037_timer_init,
680 MACHINE_START(PCM037, "Phytec Phycore pcm037")
681 /* Maintainer: Pengutronix */
682 .phys_io = MX31_AIPS1_BASE_ADDR,
683 .io_pg_offst = (MX31_AIPS1_BASE_ADDR_VIRT >> 18) & 0xfffc,
684 .boot_params = MX3x_PHYS_OFFSET + 0x100,
685 .map_io = mx31_map_io,
686 .init_irq = mx31_init_irq,
687 .init_machine = mxc_board_init,
688 .timer = &pcm037_timer,
689 MACHINE_END