DaVinci: move IDE platform device to its proper place
[linux-2.6/x86.git] / arch / arm / mach-davinci / board-dm644x-evm.c
blob73c0b04a75fff85541308ca9d454d9eeeeffbae8
1 /*
2 * TI DaVinci EVM board support
4 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
6 * 2007 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/platform_device.h>
15 #include <linux/gpio.h>
16 #include <linux/i2c.h>
17 #include <linux/i2c/pcf857x.h>
18 #include <linux/i2c/at24.h>
19 #include <linux/mtd/mtd.h>
20 #include <linux/mtd/nand.h>
21 #include <linux/mtd/partitions.h>
22 #include <linux/mtd/physmap.h>
23 #include <linux/phy.h>
24 #include <linux/clk.h>
25 #include <linux/videodev2.h>
27 #include <media/tvp514x.h>
29 #include <asm/mach-types.h>
30 #include <asm/mach/arch.h>
32 #include <mach/dm644x.h>
33 #include <mach/common.h>
34 #include <mach/i2c.h>
35 #include <mach/serial.h>
36 #include <mach/mux.h>
37 #include <mach/nand.h>
38 #include <mach/mmc.h>
39 #include <mach/usb.h>
41 #define DM644X_EVM_PHY_MASK (0x2)
42 #define DM644X_EVM_MDIO_FREQUENCY (2200000) /* PHY bus frequency */
44 #define LXT971_PHY_ID (0x001378e2)
45 #define LXT971_PHY_MASK (0xfffffff0)
47 static struct mtd_partition davinci_evm_norflash_partitions[] = {
48 /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
50 .name = "bootloader",
51 .offset = 0,
52 .size = 5 * SZ_64K,
53 .mask_flags = MTD_WRITEABLE, /* force read-only */
55 /* bootloader params in the next 1 sectors */
57 .name = "params",
58 .offset = MTDPART_OFS_APPEND,
59 .size = SZ_64K,
60 .mask_flags = 0,
62 /* kernel */
64 .name = "kernel",
65 .offset = MTDPART_OFS_APPEND,
66 .size = SZ_2M,
67 .mask_flags = 0
69 /* file system */
71 .name = "filesystem",
72 .offset = MTDPART_OFS_APPEND,
73 .size = MTDPART_SIZ_FULL,
74 .mask_flags = 0
78 static struct physmap_flash_data davinci_evm_norflash_data = {
79 .width = 2,
80 .parts = davinci_evm_norflash_partitions,
81 .nr_parts = ARRAY_SIZE(davinci_evm_norflash_partitions),
84 /* NOTE: CFI probe will correctly detect flash part as 32M, but EMIF
85 * limits addresses to 16M, so using addresses past 16M will wrap */
86 static struct resource davinci_evm_norflash_resource = {
87 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
88 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
89 .flags = IORESOURCE_MEM,
92 static struct platform_device davinci_evm_norflash_device = {
93 .name = "physmap-flash",
94 .id = 0,
95 .dev = {
96 .platform_data = &davinci_evm_norflash_data,
98 .num_resources = 1,
99 .resource = &davinci_evm_norflash_resource,
102 /* DM644x EVM includes a 64 MByte small-page NAND flash (16K blocks).
103 * It may used instead of the (default) NOR chip to boot, using TI's
104 * tools to install the secondary boot loader (UBL) and U-Boot.
106 static struct mtd_partition davinci_evm_nandflash_partition[] = {
107 /* Bootloader layout depends on whose u-boot is installed, but we
108 * can hide all the details.
109 * - block 0 for u-boot environment ... in mainline u-boot
110 * - block 1 for UBL (plus up to four backup copies in blocks 2..5)
111 * - blocks 6...? for u-boot
112 * - blocks 16..23 for u-boot environment ... in TI's u-boot
115 .name = "bootloader",
116 .offset = 0,
117 .size = SZ_256K + SZ_128K,
118 .mask_flags = MTD_WRITEABLE, /* force read-only */
120 /* Kernel */
122 .name = "kernel",
123 .offset = MTDPART_OFS_APPEND,
124 .size = SZ_4M,
125 .mask_flags = 0,
127 /* File system (older GIT kernels started this on the 5MB mark) */
129 .name = "filesystem",
130 .offset = MTDPART_OFS_APPEND,
131 .size = MTDPART_SIZ_FULL,
132 .mask_flags = 0,
134 /* A few blocks at end hold a flash BBT ... created by TI's CCS
135 * using flashwriter_nand.out, but ignored by TI's versions of
136 * Linux and u-boot. We boot faster by using them.
140 static struct davinci_nand_pdata davinci_evm_nandflash_data = {
141 .parts = davinci_evm_nandflash_partition,
142 .nr_parts = ARRAY_SIZE(davinci_evm_nandflash_partition),
143 .ecc_mode = NAND_ECC_HW,
144 .options = NAND_USE_FLASH_BBT,
147 static struct resource davinci_evm_nandflash_resource[] = {
149 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
150 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
151 .flags = IORESOURCE_MEM,
152 }, {
153 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
154 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
155 .flags = IORESOURCE_MEM,
159 static struct platform_device davinci_evm_nandflash_device = {
160 .name = "davinci_nand",
161 .id = 0,
162 .dev = {
163 .platform_data = &davinci_evm_nandflash_data,
165 .num_resources = ARRAY_SIZE(davinci_evm_nandflash_resource),
166 .resource = davinci_evm_nandflash_resource,
169 static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
171 static struct platform_device davinci_fb_device = {
172 .name = "davincifb",
173 .id = -1,
174 .dev = {
175 .dma_mask = &davinci_fb_dma_mask,
176 .coherent_dma_mask = DMA_BIT_MASK(32),
178 .num_resources = 0,
181 static struct tvp514x_platform_data tvp5146_pdata = {
182 .clk_polarity = 0,
183 .hs_polarity = 1,
184 .vs_polarity = 1
187 #define TVP514X_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL)
188 /* Inputs available at the TVP5146 */
189 static struct v4l2_input tvp5146_inputs[] = {
191 .index = 0,
192 .name = "Composite",
193 .type = V4L2_INPUT_TYPE_CAMERA,
194 .std = TVP514X_STD_ALL,
197 .index = 1,
198 .name = "S-Video",
199 .type = V4L2_INPUT_TYPE_CAMERA,
200 .std = TVP514X_STD_ALL,
205 * this is the route info for connecting each input to decoder
206 * ouput that goes to vpfe. There is a one to one correspondence
207 * with tvp5146_inputs
209 static struct vpfe_route tvp5146_routes[] = {
211 .input = INPUT_CVBS_VI2B,
212 .output = OUTPUT_10BIT_422_EMBEDDED_SYNC,
215 .input = INPUT_SVIDEO_VI2C_VI1C,
216 .output = OUTPUT_10BIT_422_EMBEDDED_SYNC,
220 static struct vpfe_subdev_info vpfe_sub_devs[] = {
222 .name = "tvp5146",
223 .grp_id = 0,
224 .num_inputs = ARRAY_SIZE(tvp5146_inputs),
225 .inputs = tvp5146_inputs,
226 .routes = tvp5146_routes,
227 .can_route = 1,
228 .ccdc_if_params = {
229 .if_type = VPFE_BT656,
230 .hdpol = VPFE_PINPOL_POSITIVE,
231 .vdpol = VPFE_PINPOL_POSITIVE,
233 .board_info = {
234 I2C_BOARD_INFO("tvp5146", 0x5d),
235 .platform_data = &tvp5146_pdata,
240 static struct vpfe_config vpfe_cfg = {
241 .num_subdevs = ARRAY_SIZE(vpfe_sub_devs),
242 .i2c_adapter_id = 1,
243 .sub_devs = vpfe_sub_devs,
244 .card_name = "DM6446 EVM",
245 .ccdc = "DM6446 CCDC",
248 static struct platform_device rtc_dev = {
249 .name = "rtc_davinci_evm",
250 .id = -1,
253 static struct snd_platform_data dm644x_evm_snd_data;
255 /*----------------------------------------------------------------------*/
258 * I2C GPIO expanders
261 #define PCF_Uxx_BASE(x) (DAVINCI_N_GPIO + ((x) * 8))
264 /* U2 -- LEDs */
266 static struct gpio_led evm_leds[] = {
267 { .name = "DS8", .active_low = 1,
268 .default_trigger = "heartbeat", },
269 { .name = "DS7", .active_low = 1, },
270 { .name = "DS6", .active_low = 1, },
271 { .name = "DS5", .active_low = 1, },
272 { .name = "DS4", .active_low = 1, },
273 { .name = "DS3", .active_low = 1, },
274 { .name = "DS2", .active_low = 1,
275 .default_trigger = "mmc0", },
276 { .name = "DS1", .active_low = 1,
277 .default_trigger = "ide-disk", },
280 static const struct gpio_led_platform_data evm_led_data = {
281 .num_leds = ARRAY_SIZE(evm_leds),
282 .leds = evm_leds,
285 static struct platform_device *evm_led_dev;
287 static int
288 evm_led_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
290 struct gpio_led *leds = evm_leds;
291 int status;
293 while (ngpio--) {
294 leds->gpio = gpio++;
295 leds++;
298 /* what an extremely annoying way to be forced to handle
299 * device unregistration ...
301 evm_led_dev = platform_device_alloc("leds-gpio", 0);
302 platform_device_add_data(evm_led_dev,
303 &evm_led_data, sizeof evm_led_data);
305 evm_led_dev->dev.parent = &client->dev;
306 status = platform_device_add(evm_led_dev);
307 if (status < 0) {
308 platform_device_put(evm_led_dev);
309 evm_led_dev = NULL;
311 return status;
314 static int
315 evm_led_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
317 if (evm_led_dev) {
318 platform_device_unregister(evm_led_dev);
319 evm_led_dev = NULL;
321 return 0;
324 static struct pcf857x_platform_data pcf_data_u2 = {
325 .gpio_base = PCF_Uxx_BASE(0),
326 .setup = evm_led_setup,
327 .teardown = evm_led_teardown,
331 /* U18 - A/V clock generator and user switch */
333 static int sw_gpio;
335 static ssize_t
336 sw_show(struct device *d, struct device_attribute *a, char *buf)
338 char *s = gpio_get_value_cansleep(sw_gpio) ? "on\n" : "off\n";
340 strcpy(buf, s);
341 return strlen(s);
344 static DEVICE_ATTR(user_sw, S_IRUGO, sw_show, NULL);
346 static int
347 evm_u18_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
349 int status;
351 /* export dip switch option */
352 sw_gpio = gpio + 7;
353 status = gpio_request(sw_gpio, "user_sw");
354 if (status == 0)
355 status = gpio_direction_input(sw_gpio);
356 if (status == 0)
357 status = device_create_file(&client->dev, &dev_attr_user_sw);
358 else
359 gpio_free(sw_gpio);
360 if (status != 0)
361 sw_gpio = -EINVAL;
363 /* audio PLL: 48 kHz (vs 44.1 or 32), single rate (vs double) */
364 gpio_request(gpio + 3, "pll_fs2");
365 gpio_direction_output(gpio + 3, 0);
367 gpio_request(gpio + 2, "pll_fs1");
368 gpio_direction_output(gpio + 2, 0);
370 gpio_request(gpio + 1, "pll_sr");
371 gpio_direction_output(gpio + 1, 0);
373 return 0;
376 static int
377 evm_u18_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
379 gpio_free(gpio + 1);
380 gpio_free(gpio + 2);
381 gpio_free(gpio + 3);
383 if (sw_gpio > 0) {
384 device_remove_file(&client->dev, &dev_attr_user_sw);
385 gpio_free(sw_gpio);
387 return 0;
390 static struct pcf857x_platform_data pcf_data_u18 = {
391 .gpio_base = PCF_Uxx_BASE(1),
392 .n_latch = (1 << 3) | (1 << 2) | (1 << 1),
393 .setup = evm_u18_setup,
394 .teardown = evm_u18_teardown,
398 /* U35 - various I/O signals used to manage USB, CF, ATA, etc */
400 static int
401 evm_u35_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
403 /* p0 = nDRV_VBUS (initial: don't supply it) */
404 gpio_request(gpio + 0, "nDRV_VBUS");
405 gpio_direction_output(gpio + 0, 1);
407 /* p1 = VDDIMX_EN */
408 gpio_request(gpio + 1, "VDDIMX_EN");
409 gpio_direction_output(gpio + 1, 1);
411 /* p2 = VLYNQ_EN */
412 gpio_request(gpio + 2, "VLYNQ_EN");
413 gpio_direction_output(gpio + 2, 1);
415 /* p3 = n3V3_CF_RESET (initial: stay in reset) */
416 gpio_request(gpio + 3, "nCF_RESET");
417 gpio_direction_output(gpio + 3, 0);
419 /* (p4 unused) */
421 /* p5 = 1V8_WLAN_RESET (initial: stay in reset) */
422 gpio_request(gpio + 5, "WLAN_RESET");
423 gpio_direction_output(gpio + 5, 1);
425 /* p6 = nATA_SEL (initial: select) */
426 gpio_request(gpio + 6, "nATA_SEL");
427 gpio_direction_output(gpio + 6, 0);
429 /* p7 = nCF_SEL (initial: deselect) */
430 gpio_request(gpio + 7, "nCF_SEL");
431 gpio_direction_output(gpio + 7, 1);
433 /* irlml6401 switches over 1A, in under 8 msec;
434 * now it can be managed by nDRV_VBUS ...
436 davinci_setup_usb(1000, 8);
438 return 0;
441 static int
442 evm_u35_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
444 gpio_free(gpio + 7);
445 gpio_free(gpio + 6);
446 gpio_free(gpio + 5);
447 gpio_free(gpio + 3);
448 gpio_free(gpio + 2);
449 gpio_free(gpio + 1);
450 gpio_free(gpio + 0);
451 return 0;
454 static struct pcf857x_platform_data pcf_data_u35 = {
455 .gpio_base = PCF_Uxx_BASE(2),
456 .setup = evm_u35_setup,
457 .teardown = evm_u35_teardown,
460 /*----------------------------------------------------------------------*/
462 /* Most of this EEPROM is unused, but U-Boot uses some data:
463 * - 0x7f00, 6 bytes Ethernet Address
464 * - 0x0039, 1 byte NTSC vs PAL (bit 0x80 == PAL)
465 * - ... newer boards may have more
468 static struct at24_platform_data eeprom_info = {
469 .byte_len = (256*1024) / 8,
470 .page_size = 64,
471 .flags = AT24_FLAG_ADDR16,
472 .setup = davinci_get_mac_addr,
473 .context = (void *)0x7f00,
477 * MSP430 supports RTC, card detection, input from IR remote, and
478 * a bit more. It triggers interrupts on GPIO(7) from pressing
479 * buttons on the IR remote, and for card detect switches.
481 static struct i2c_client *dm6446evm_msp;
483 static int dm6446evm_msp_probe(struct i2c_client *client,
484 const struct i2c_device_id *id)
486 dm6446evm_msp = client;
487 return 0;
490 static int dm6446evm_msp_remove(struct i2c_client *client)
492 dm6446evm_msp = NULL;
493 return 0;
496 static const struct i2c_device_id dm6446evm_msp_ids[] = {
497 { "dm6446evm_msp", 0, },
498 { /* end of list */ },
501 static struct i2c_driver dm6446evm_msp_driver = {
502 .driver.name = "dm6446evm_msp",
503 .id_table = dm6446evm_msp_ids,
504 .probe = dm6446evm_msp_probe,
505 .remove = dm6446evm_msp_remove,
508 static int dm6444evm_msp430_get_pins(void)
510 static const char txbuf[2] = { 2, 4, };
511 char buf[4];
512 struct i2c_msg msg[2] = {
514 .addr = dm6446evm_msp->addr,
515 .flags = 0,
516 .len = 2,
517 .buf = (void __force *)txbuf,
520 .addr = dm6446evm_msp->addr,
521 .flags = I2C_M_RD,
522 .len = 4,
523 .buf = buf,
526 int status;
528 if (!dm6446evm_msp)
529 return -ENXIO;
531 /* Command 4 == get input state, returns port 2 and port3 data
532 * S Addr W [A] len=2 [A] cmd=4 [A]
533 * RS Addr R [A] [len=4] A [cmd=4] A [port2] A [port3] N P
535 status = i2c_transfer(dm6446evm_msp->adapter, msg, 2);
536 if (status < 0)
537 return status;
539 dev_dbg(&dm6446evm_msp->dev,
540 "PINS: %02x %02x %02x %02x\n",
541 buf[0], buf[1], buf[2], buf[3]);
543 return (buf[3] << 8) | buf[2];
546 static int dm6444evm_mmc_get_cd(int module)
548 int status = dm6444evm_msp430_get_pins();
550 return (status < 0) ? status : !(status & BIT(1));
553 static int dm6444evm_mmc_get_ro(int module)
555 int status = dm6444evm_msp430_get_pins();
557 return (status < 0) ? status : status & BIT(6 + 8);
560 static struct davinci_mmc_config dm6446evm_mmc_config = {
561 .get_cd = dm6444evm_mmc_get_cd,
562 .get_ro = dm6444evm_mmc_get_ro,
563 .wires = 4,
564 .version = MMC_CTLR_VERSION_1
567 static struct i2c_board_info __initdata i2c_info[] = {
569 I2C_BOARD_INFO("dm6446evm_msp", 0x23),
572 I2C_BOARD_INFO("pcf8574", 0x38),
573 .platform_data = &pcf_data_u2,
576 I2C_BOARD_INFO("pcf8574", 0x39),
577 .platform_data = &pcf_data_u18,
580 I2C_BOARD_INFO("pcf8574", 0x3a),
581 .platform_data = &pcf_data_u35,
584 I2C_BOARD_INFO("24c256", 0x50),
585 .platform_data = &eeprom_info,
588 I2C_BOARD_INFO("tlv320aic33", 0x1b),
592 /* The msp430 uses a slow bitbanged I2C implementation (ergo 20 KHz),
593 * which requires 100 usec of idle bus after i2c writes sent to it.
595 static struct davinci_i2c_platform_data i2c_pdata = {
596 .bus_freq = 20 /* kHz */,
597 .bus_delay = 100 /* usec */,
598 .sda_pin = 44,
599 .scl_pin = 43,
602 static void __init evm_init_i2c(void)
604 davinci_init_i2c(&i2c_pdata);
605 i2c_add_driver(&dm6446evm_msp_driver);
606 i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
609 static struct platform_device *davinci_evm_devices[] __initdata = {
610 &davinci_fb_device,
611 &rtc_dev,
614 static struct davinci_uart_config uart_config __initdata = {
615 .enabled_uarts = (1 << 0),
618 static void __init
619 davinci_evm_map_io(void)
621 /* setup input configuration for VPFE input devices */
622 dm644x_set_vpfe_config(&vpfe_cfg);
623 dm644x_init();
626 static int davinci_phy_fixup(struct phy_device *phydev)
628 unsigned int control;
629 /* CRITICAL: Fix for increasing PHY signal drive strength for
630 * TX lockup issue. On DaVinci EVM, the Intel LXT971 PHY
631 * signal strength was low causing TX to fail randomly. The
632 * fix is to Set bit 11 (Increased MII drive strength) of PHY
633 * register 26 (Digital Config register) on this phy. */
634 control = phy_read(phydev, 26);
635 phy_write(phydev, 26, (control | 0x800));
636 return 0;
639 #if defined(CONFIG_BLK_DEV_PALMCHIP_BK3710) || \
640 defined(CONFIG_BLK_DEV_PALMCHIP_BK3710_MODULE)
641 #define HAS_ATA 1
642 #else
643 #define HAS_ATA 0
644 #endif
646 #if defined(CONFIG_MTD_PHYSMAP) || \
647 defined(CONFIG_MTD_PHYSMAP_MODULE)
648 #define HAS_NOR 1
649 #else
650 #define HAS_NOR 0
651 #endif
653 #if defined(CONFIG_MTD_NAND_DAVINCI) || \
654 defined(CONFIG_MTD_NAND_DAVINCI_MODULE)
655 #define HAS_NAND 1
656 #else
657 #define HAS_NAND 0
658 #endif
660 static __init void davinci_evm_init(void)
662 struct clk *aemif_clk;
663 struct davinci_soc_info *soc_info = &davinci_soc_info;
665 aemif_clk = clk_get(NULL, "aemif");
666 clk_enable(aemif_clk);
668 if (HAS_ATA) {
669 if (HAS_NAND || HAS_NOR)
670 pr_warning("WARNING: both IDE and Flash are "
671 "enabled, but they share AEMIF pins.\n"
672 "\tDisable IDE for NAND/NOR support.\n");
673 davinci_init_ide();
674 } else if (HAS_NAND || HAS_NOR) {
675 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
676 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
678 /* only one device will be jumpered and detected */
679 if (HAS_NAND) {
680 platform_device_register(&davinci_evm_nandflash_device);
681 evm_leds[7].default_trigger = "nand-disk";
682 if (HAS_NOR)
683 pr_warning("WARNING: both NAND and NOR flash "
684 "are enabled; disable one of them.\n");
685 } else if (HAS_NOR)
686 platform_device_register(&davinci_evm_norflash_device);
689 platform_add_devices(davinci_evm_devices,
690 ARRAY_SIZE(davinci_evm_devices));
691 evm_init_i2c();
693 davinci_setup_mmc(0, &dm6446evm_mmc_config);
695 davinci_serial_init(&uart_config);
696 dm644x_init_asp(&dm644x_evm_snd_data);
698 soc_info->emac_pdata->phy_mask = DM644X_EVM_PHY_MASK;
699 soc_info->emac_pdata->mdio_max_freq = DM644X_EVM_MDIO_FREQUENCY;
701 /* Register the fixup for PHY on DaVinci */
702 phy_register_fixup_for_uid(LXT971_PHY_ID, LXT971_PHY_MASK,
703 davinci_phy_fixup);
707 static __init void davinci_evm_irq_init(void)
709 davinci_irq_init();
712 MACHINE_START(DAVINCI_EVM, "DaVinci DM644x EVM")
713 /* Maintainer: MontaVista Software <source@mvista.com> */
714 .phys_io = IO_PHYS,
715 .io_pg_offst = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
716 .boot_params = (DAVINCI_DDR_BASE + 0x100),
717 .map_io = davinci_evm_map_io,
718 .init_irq = davinci_evm_irq_init,
719 .timer = &davinci_timer,
720 .init_machine = davinci_evm_init,
721 MACHINE_END