Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mach-pcm037.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008 Sascha Hauer, Pengutronix
3  *
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.
8  *
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.
13  */
14 
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>
31 #include <linux/usb/otg.h>
32 #include <linux/usb/ulpi.h>
33 #include <linux/gfp.h>
34 #include <linux/memblock.h>
36 #include <linux/regulator/fixed.h>
37 
38 #include <media/soc_camera.h>
39 
40 #include <asm/mach-types.h>
41 #include <asm/mach/arch.h>
42 #include <asm/mach/time.h>
43 #include <asm/mach/map.h>
44 #include <asm/memblock.h>
45 #include <mach/common.h>
46 #include <mach/hardware.h>
47 #include <mach/iomux-mx3.h>
48 #include <mach/ulpi.h>
49 
50 #include "devices-imx31.h"
51 #include "pcm037.h"
52 
53 static enum pcm037_board_variant pcm037_instance = PCM037_PCM970;
54 
55 static int __init pcm037_variant_setup(char *str)
56 {
57  if (!strcmp("eet", str))
58  pcm037_instance = PCM037_EET;
59  else if (strcmp("pcm970", str))
60  pr_warning("Unknown pcm037 baseboard variant %s\n", str);
61 
62  return 1;
63 }
64 
65 /* Supported values: "pcm970" (default) and "eet" */
66 __setup("pcm037_variant=", pcm037_variant_setup);
67 
69 {
70  return pcm037_instance;
71 }
72 
73 /* UART1 with RTS/CTS handshake signals */
74 static unsigned int pcm037_uart1_handshake_pins[] = {
79 };
80 
81 /* UART1 without RTS/CTS handshake signals */
82 static unsigned int pcm037_uart1_pins[] = {
85 };
86 
87 static unsigned int pcm037_pins[] = {
88  /* I2C */
93  /* SDHC1 */
100  IOMUX_MODE(MX31_PIN_SCK6, IOMUX_CONFIG_GPIO), /* card detect */
101  IOMUX_MODE(MX31_PIN_SFS6, IOMUX_CONFIG_GPIO), /* write protect */
102  /* SPI1 */
110  /* UART2 */
115  /* UART3 */
120  /* LAN9217 irq pin */
122  /* Onewire */
124  /* Framebuffer */
152  /* CSI */
168  /* GPIO */
170  /* OTG */
183  /* USB host 2 */
196 };
197 
198 static struct physmap_flash_data pcm037_flash_data = {
199  .width = 2,
200 };
201 
202 static struct resource pcm037_flash_resource = {
203  .start = 0xa0000000,
204  .end = 0xa1ffffff,
205  .flags = IORESOURCE_MEM,
206 };
207 
208 static struct platform_device pcm037_flash = {
209  .name = "physmap-flash",
210  .id = 0,
211  .dev = {
212  .platform_data = &pcm037_flash_data,
213  },
214  .resource = &pcm037_flash_resource,
215  .num_resources = 1,
216 };
217 
218 static const struct imxuart_platform_data uart_pdata __initconst = {
219  .flags = IMXUART_HAVE_RTSCTS,
220 };
221 
222 static struct resource smsc911x_resources[] = {
223  {
224  .start = MX31_CS1_BASE_ADDR + 0x300,
225  .end = MX31_CS1_BASE_ADDR + 0x300 + SZ_64K - 1,
226  .flags = IORESOURCE_MEM,
227  }, {
228  /* irq number is run-time assigned */
230  },
231 };
232 
233 static struct smsc911x_platform_config smsc911x_info = {
236  .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
237  .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
238  .phy_interface = PHY_INTERFACE_MODE_MII,
239 };
240 
241 static struct platform_device pcm037_eth = {
242  .name = "smsc911x",
243  .id = -1,
244  .num_resources = ARRAY_SIZE(smsc911x_resources),
245  .resource = smsc911x_resources,
246  .dev = {
247  .platform_data = &smsc911x_info,
248  },
249 };
250 
251 static struct platdata_mtd_ram pcm038_sram_data = {
252  .bankwidth = 2,
253 };
254 
255 static struct resource pcm038_sram_resource = {
256  .start = MX31_CS4_BASE_ADDR,
257  .end = MX31_CS4_BASE_ADDR + 512 * 1024 - 1,
258  .flags = IORESOURCE_MEM,
259 };
260 
261 static struct platform_device pcm037_sram_device = {
262  .name = "mtd-ram",
263  .id = 0,
264  .dev = {
265  .platform_data = &pcm038_sram_data,
266  },
267  .num_resources = 1,
268  .resource = &pcm038_sram_resource,
269 };
270 
271 static const struct mxc_nand_platform_data
272 pcm037_nand_board_info __initconst = {
273  .width = 1,
274  .hw_ecc = 1,
275 };
276 
277 static const struct imxi2c_platform_data pcm037_i2c1_data __initconst = {
278  .bitrate = 100000,
279 };
280 
281 static const struct imxi2c_platform_data pcm037_i2c2_data __initconst = {
282  .bitrate = 20000,
283 };
284 
285 static struct at24_platform_data board_eeprom = {
286  .byte_len = 4096,
287  .page_size = 32,
288  .flags = AT24_FLAG_ADDR16,
289 };
290 
291 static int pcm037_camera_power(struct device *dev, int on)
292 {
293  /* disable or enable the camera in X7 or X8 PCM970 connector */
295  return 0;
296 }
297 
298 static struct i2c_board_info pcm037_i2c_camera[] = {
299  {
300  I2C_BOARD_INFO("mt9t031", 0x5d),
301  }, {
302  I2C_BOARD_INFO("mt9v022", 0x48),
303  },
304 };
305 
306 static struct soc_camera_link iclink_mt9v022 = {
307  .bus_id = 0, /* Must match with the camera ID */
308  .board_info = &pcm037_i2c_camera[1],
309  .i2c_adapter_id = 2,
310 };
311 
312 static struct soc_camera_link iclink_mt9t031 = {
313  .bus_id = 0, /* Must match with the camera ID */
314  .power = pcm037_camera_power,
315  .board_info = &pcm037_i2c_camera[0],
316  .i2c_adapter_id = 2,
317 };
318 
319 static struct i2c_board_info pcm037_i2c_devices[] = {
320  {
321  I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
322  .platform_data = &board_eeprom,
323  }, {
324  I2C_BOARD_INFO("pcf8563", 0x51),
325  }
326 };
327 
328 static struct platform_device pcm037_mt9t031 = {
329  .name = "soc-camera-pdrv",
330  .id = 0,
331  .dev = {
332  .platform_data = &iclink_mt9t031,
333  },
334 };
335 
336 static struct platform_device pcm037_mt9v022 = {
337  .name = "soc-camera-pdrv",
338  .id = 1,
339  .dev = {
340  .platform_data = &iclink_mt9v022,
341  },
342 };
343 
344 /* Not connected by default */
345 #ifdef PCM970_SDHC_RW_SWITCH
346 static int pcm970_sdhc1_get_ro(struct device *dev)
347 {
349 }
350 #endif
351 
352 #define SDHC1_GPIO_WP IOMUX_TO_GPIO(MX31_PIN_SFS6)
353 #define SDHC1_GPIO_DET IOMUX_TO_GPIO(MX31_PIN_SCK6)
354 
355 static int pcm970_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
356  void *data)
357 {
358  int ret;
359 
360  ret = gpio_request(SDHC1_GPIO_DET, "sdhc-detect");
361  if (ret)
362  return ret;
363 
365 
366 #ifdef PCM970_SDHC_RW_SWITCH
367  ret = gpio_request(SDHC1_GPIO_WP, "sdhc-wp");
368  if (ret)
369  goto err_gpio_free;
371 #endif
372 
375  "sdhc-detect", data);
376  if (ret)
377  goto err_gpio_free_2;
378 
379  return 0;
380 
381 err_gpio_free_2:
382 #ifdef PCM970_SDHC_RW_SWITCH
384 err_gpio_free:
385 #endif
387 
388  return ret;
389 }
390 
391 static void pcm970_sdhc1_exit(struct device *dev, void *data)
392 {
396 }
397 
398 static const struct imxmmc_platform_data sdhc_pdata __initconst = {
399 #ifdef PCM970_SDHC_RW_SWITCH
400  .get_ro = pcm970_sdhc1_get_ro,
401 #endif
402  .init = pcm970_sdhc1_init,
403  .exit = pcm970_sdhc1_exit,
404 };
405 
406 struct mx3_camera_pdata camera_pdata __initdata = {
408  .mclk_10khz = 2000,
409 };
410 
411 static phys_addr_t mx3_camera_base __initdata;
412 #define MX3_CAMERA_BUF_SIZE SZ_4M
413 
414 static int __init pcm037_init_camera(void)
415 {
416  int dma, ret = -ENOMEM;
417  struct platform_device *pdev = imx31_alloc_mx3_camera(&camera_pdata);
418 
419  if (IS_ERR(pdev))
420  return PTR_ERR(pdev);
421 
422  dma = dma_declare_coherent_memory(&pdev->dev,
423  mx3_camera_base, mx3_camera_base,
426  if (!(dma & DMA_MEMORY_MAP))
427  goto err;
428 
429  ret = platform_device_add(pdev);
430  if (ret)
431 err:
432  platform_device_put(pdev);
433 
434  return ret;
435 }
436 
437 static struct platform_device *devices[] __initdata = {
438  &pcm037_flash,
439  &pcm037_sram_device,
440  &pcm037_mt9t031,
441  &pcm037_mt9v022,
442 };
443 
444 static const struct fb_videomode fb_modedb[] = {
445  {
446  /* 240x320 @ 60 Hz Sharp */
447  .name = "Sharp-LQ035Q7DH06-QVGA",
448  .refresh = 60,
449  .xres = 240,
450  .yres = 320,
451  .pixclock = 185925,
452  .left_margin = 9,
453  .right_margin = 16,
454  .upper_margin = 7,
455  .lower_margin = 9,
456  .hsync_len = 1,
457  .vsync_len = 1,
460  .vmode = FB_VMODE_NONINTERLACED,
461  .flag = 0,
462  }, {
463  /* 240x320 @ 60 Hz */
464  .name = "TX090",
465  .refresh = 60,
466  .xres = 240,
467  .yres = 320,
468  .pixclock = 38255,
469  .left_margin = 144,
470  .right_margin = 0,
471  .upper_margin = 7,
472  .lower_margin = 40,
473  .hsync_len = 96,
474  .vsync_len = 1,
476  .vmode = FB_VMODE_NONINTERLACED,
477  .flag = 0,
478  }, {
479  /* 240x320 @ 60 Hz */
480  .name = "CMEL-OLED",
481  .refresh = 60,
482  .xres = 240,
483  .yres = 320,
484  .pixclock = 185925,
485  .left_margin = 9,
486  .right_margin = 16,
487  .upper_margin = 7,
488  .lower_margin = 9,
489  .hsync_len = 1,
490  .vsync_len = 1,
492  .vmode = FB_VMODE_NONINTERLACED,
493  .flag = 0,
494  },
495 };
496 
497 static struct mx3fb_platform_data mx3fb_pdata = {
498  .name = "Sharp-LQ035Q7DH06-QVGA",
499  .mode = fb_modedb,
500  .num_modes = ARRAY_SIZE(fb_modedb),
501 };
502 
503 static struct resource pcm970_sja1000_resources[] = {
504  {
505  .start = MX31_CS5_BASE_ADDR,
506  .end = MX31_CS5_BASE_ADDR + 0x100 - 1,
507  .flags = IORESOURCE_MEM,
508  }, {
509  /* irq number is run-time assigned */
511  },
512 };
513 
515  .osc_freq = 16000000,
517  .cdr = CDR_CBP,
518 };
519 
520 static struct platform_device pcm970_sja1000 = {
521  .name = "sja1000_platform",
522  .dev = {
523  .platform_data = &pcm970_sja1000_platform_data,
524  },
525  .resource = pcm970_sja1000_resources,
526  .num_resources = ARRAY_SIZE(pcm970_sja1000_resources),
527 };
528 
529 static int pcm037_otg_init(struct platform_device *pdev)
530 {
532 }
533 
534 static struct mxc_usbh_platform_data otg_pdata __initdata = {
535  .init = pcm037_otg_init,
536  .portsc = MXC_EHCI_MODE_ULPI,
537 };
538 
539 static int pcm037_usbh2_init(struct platform_device *pdev)
540 {
542 }
543 
544 static struct mxc_usbh_platform_data usbh2_pdata __initdata = {
545  .init = pcm037_usbh2_init,
546  .portsc = MXC_EHCI_MODE_ULPI,
547 };
548 
549 static const struct fsl_usb2_platform_data otg_device_pdata __initconst = {
550  .operating_mode = FSL_USB2_DR_DEVICE,
551  .phy_mode = FSL_USB2_PHY_ULPI,
552 };
553 
554 static bool otg_mode_host __initdata;
555 
556 static int __init pcm037_otg_mode(char *options)
557 {
558  if (!strcmp(options, "host"))
559  otg_mode_host = true;
560  else if (!strcmp(options, "device"))
561  otg_mode_host = false;
562  else
563  pr_info("otg_mode neither \"host\" nor \"device\". "
564  "Defaulting to device\n");
565  return 1;
566 }
567 __setup("otg_mode=", pcm037_otg_mode);
568 
569 static struct regulator_consumer_supply dummy_supplies[] = {
570  REGULATOR_SUPPLY("vdd33a", "smsc911x"),
571  REGULATOR_SUPPLY("vddvario", "smsc911x"),
572 };
573 
574 /*
575  * Board specific initialization.
576  */
577 static void __init pcm037_init(void)
578 {
579  int ret;
580 
581  imx31_soc_init();
582 
583  regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));
584 
586 
587  mxc_iomux_setup_multiple_pins(pcm037_pins, ARRAY_SIZE(pcm037_pins),
588  "pcm037");
589 
590 #define H2_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS \
591  | PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
592 
597  mxc_iomux_set_pad(MX31_PIN_USBH2_DATA0, H2_PAD_CFG); /* USBH2_DATA0 */
598  mxc_iomux_set_pad(MX31_PIN_USBH2_DATA1, H2_PAD_CFG); /* USBH2_DATA1 */
599  mxc_iomux_set_pad(MX31_PIN_SRXD6, H2_PAD_CFG); /* USBH2_DATA2 */
600  mxc_iomux_set_pad(MX31_PIN_STXD6, H2_PAD_CFG); /* USBH2_DATA3 */
601  mxc_iomux_set_pad(MX31_PIN_SFS3, H2_PAD_CFG); /* USBH2_DATA4 */
602  mxc_iomux_set_pad(MX31_PIN_SCK3, H2_PAD_CFG); /* USBH2_DATA5 */
603  mxc_iomux_set_pad(MX31_PIN_SRXD3, H2_PAD_CFG); /* USBH2_DATA6 */
604  mxc_iomux_set_pad(MX31_PIN_STXD3, H2_PAD_CFG); /* USBH2_DATA7 */
605 
606  if (pcm037_variant() == PCM037_EET)
607  mxc_iomux_setup_multiple_pins(pcm037_uart1_pins,
608  ARRAY_SIZE(pcm037_uart1_pins), "pcm037_uart1");
609  else
610  mxc_iomux_setup_multiple_pins(pcm037_uart1_handshake_pins,
611  ARRAY_SIZE(pcm037_uart1_handshake_pins),
612  "pcm037_uart1");
613 
614  platform_add_devices(devices, ARRAY_SIZE(devices));
615 
617  imx31_add_imx_uart0(&uart_pdata);
618  /* XXX: should't this have .flags = 0 (i.e. no RTSCTS) on PCM037_EET? */
619  imx31_add_imx_uart1(&uart_pdata);
620  imx31_add_imx_uart2(&uart_pdata);
621 
623 
624  /* LAN9217 IRQ pin */
625  ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO3_1), "lan9217-irq");
626  if (ret)
627  pr_warning("could not get LAN irq gpio\n");
628  else {
630  smsc911x_resources[1].start =
632  smsc911x_resources[1].end =
634  platform_device_register(&pcm037_eth);
635  }
636 
637 
638  /* I2C adapters and devices */
639  i2c_register_board_info(1, pcm037_i2c_devices,
640  ARRAY_SIZE(pcm037_i2c_devices));
641 
642  imx31_add_imx_i2c1(&pcm037_i2c1_data);
643  imx31_add_imx_i2c2(&pcm037_i2c2_data);
644 
645  imx31_add_mxc_nand(&pcm037_nand_board_info);
646  imx31_add_mxc_mmc(0, &sdhc_pdata);
648  imx31_add_mx3_sdc_fb(&mx3fb_pdata);
649 
650  /* CSI */
651  /* Camera power: default - off */
652  ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_CSI_D5), "mt9t031-power");
653  if (!ret)
655  else
656  iclink_mt9t031.power = NULL;
657 
658  pcm037_init_camera();
659 
660  pcm970_sja1000_resources[1].start =
662  pcm970_sja1000_resources[1].end =
664  platform_device_register(&pcm970_sja1000);
665 
666  if (otg_mode_host) {
667  otg_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS |
669  if (otg_pdata.otg)
670  imx31_add_mxc_ehci_otg(&otg_pdata);
671  }
672 
673  usbh2_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS |
675  if (usbh2_pdata.otg)
676  imx31_add_mxc_ehci_hs(2, &usbh2_pdata);
677 
678  if (!otg_mode_host)
679  imx31_add_fsl_usb2_udc(&otg_device_pdata);
680 
681 }
682 
683 static void __init pcm037_timer_init(void)
684 {
685  mx31_clocks_init(26000000);
686 }
687 
688 static struct sys_timer pcm037_timer = {
689  .init = pcm037_timer_init,
690 };
691 
692 static void __init pcm037_reserve(void)
693 {
694  /* reserve 4 MiB for mx3-camera */
695  mx3_camera_base = arm_memblock_steal(MX3_CAMERA_BUF_SIZE,
697 }
698 
699 static void __init pcm037_init_late(void)
700 {
702 }
703 
704 MACHINE_START(PCM037, "Phytec Phycore pcm037")
705  /* Maintainer: Pengutronix */
706  .atag_offset = 0x100,
707  .reserve = pcm037_reserve,
708  .map_io = mx31_map_io,
709  .init_early = imx31_init_early,
710  .init_irq = mx31_init_irq,
711  .handle_irq = imx31_handle_irq,
712  .timer = &pcm037_timer,
713  .init_machine = pcm037_init,
714  .init_late = pcm037_init_late,
715  .restart = mxc_restart,