treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / arm / mach-davinci / board-dm644x-evm.c
blob040c949414faeec8591acb715307c8bff6e5a00f
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/gpio/machine.h>
17 #include <linux/i2c.h>
18 #include <linux/platform_data/pcf857x.h>
19 #include <linux/platform_data/gpio-davinci.h>
20 #include <linux/property.h>
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/rawnand.h>
23 #include <linux/mtd/partitions.h>
24 #include <linux/mtd/physmap.h>
25 #include <linux/nvmem-provider.h>
26 #include <linux/phy.h>
27 #include <linux/clk.h>
28 #include <linux/videodev2.h>
29 #include <linux/v4l2-dv-timings.h>
30 #include <linux/export.h>
31 #include <linux/leds.h>
33 #include <media/i2c/tvp514x.h>
35 #include <asm/mach-types.h>
36 #include <asm/mach/arch.h>
38 #include <mach/common.h>
39 #include <mach/mux.h>
40 #include <mach/serial.h>
42 #include <linux/platform_data/i2c-davinci.h>
43 #include <linux/platform_data/mtd-davinci.h>
44 #include <linux/platform_data/mmc-davinci.h>
45 #include <linux/platform_data/usb-davinci.h>
46 #include <linux/platform_data/mtd-davinci-aemif.h>
47 #include <linux/platform_data/ti-aemif.h>
49 #include "davinci.h"
50 #include "irqs.h"
52 #define DM644X_EVM_PHY_ID "davinci_mdio-0:01"
53 #define LXT971_PHY_ID (0x001378e2)
54 #define LXT971_PHY_MASK (0xfffffff0)
56 static struct mtd_partition davinci_evm_norflash_partitions[] = {
57 /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
59 .name = "bootloader",
60 .offset = 0,
61 .size = 5 * SZ_64K,
62 .mask_flags = MTD_WRITEABLE, /* force read-only */
64 /* bootloader params in the next 1 sectors */
66 .name = "params",
67 .offset = MTDPART_OFS_APPEND,
68 .size = SZ_64K,
69 .mask_flags = 0,
71 /* kernel */
73 .name = "kernel",
74 .offset = MTDPART_OFS_APPEND,
75 .size = SZ_2M,
76 .mask_flags = 0
78 /* file system */
80 .name = "filesystem",
81 .offset = MTDPART_OFS_APPEND,
82 .size = MTDPART_SIZ_FULL,
83 .mask_flags = 0
87 static struct physmap_flash_data davinci_evm_norflash_data = {
88 .width = 2,
89 .parts = davinci_evm_norflash_partitions,
90 .nr_parts = ARRAY_SIZE(davinci_evm_norflash_partitions),
93 /* NOTE: CFI probe will correctly detect flash part as 32M, but EMIF
94 * limits addresses to 16M, so using addresses past 16M will wrap */
95 static struct resource davinci_evm_norflash_resource = {
96 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
97 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
98 .flags = IORESOURCE_MEM,
101 static struct platform_device davinci_evm_norflash_device = {
102 .name = "physmap-flash",
103 .id = 0,
104 .dev = {
105 .platform_data = &davinci_evm_norflash_data,
107 .num_resources = 1,
108 .resource = &davinci_evm_norflash_resource,
111 /* DM644x EVM includes a 64 MByte small-page NAND flash (16K blocks).
112 * It may used instead of the (default) NOR chip to boot, using TI's
113 * tools to install the secondary boot loader (UBL) and U-Boot.
115 static struct mtd_partition davinci_evm_nandflash_partition[] = {
116 /* Bootloader layout depends on whose u-boot is installed, but we
117 * can hide all the details.
118 * - block 0 for u-boot environment ... in mainline u-boot
119 * - block 1 for UBL (plus up to four backup copies in blocks 2..5)
120 * - blocks 6...? for u-boot
121 * - blocks 16..23 for u-boot environment ... in TI's u-boot
124 .name = "bootloader",
125 .offset = 0,
126 .size = SZ_256K + SZ_128K,
127 .mask_flags = MTD_WRITEABLE, /* force read-only */
129 /* Kernel */
131 .name = "kernel",
132 .offset = MTDPART_OFS_APPEND,
133 .size = SZ_4M,
134 .mask_flags = 0,
136 /* File system (older GIT kernels started this on the 5MB mark) */
138 .name = "filesystem",
139 .offset = MTDPART_OFS_APPEND,
140 .size = MTDPART_SIZ_FULL,
141 .mask_flags = 0,
143 /* A few blocks at end hold a flash BBT ... created by TI's CCS
144 * using flashwriter_nand.out, but ignored by TI's versions of
145 * Linux and u-boot. We boot faster by using them.
149 static struct davinci_aemif_timing davinci_evm_nandflash_timing = {
150 .wsetup = 20,
151 .wstrobe = 40,
152 .whold = 20,
153 .rsetup = 10,
154 .rstrobe = 40,
155 .rhold = 10,
156 .ta = 40,
159 static struct davinci_nand_pdata davinci_evm_nandflash_data = {
160 .core_chipsel = 0,
161 .parts = davinci_evm_nandflash_partition,
162 .nr_parts = ARRAY_SIZE(davinci_evm_nandflash_partition),
163 .ecc_mode = NAND_ECC_HW,
164 .ecc_bits = 1,
165 .bbt_options = NAND_BBT_USE_FLASH,
166 .timing = &davinci_evm_nandflash_timing,
169 static struct resource davinci_evm_nandflash_resource[] = {
171 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
172 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
173 .flags = IORESOURCE_MEM,
174 }, {
175 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
176 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
177 .flags = IORESOURCE_MEM,
181 static struct resource davinci_evm_aemif_resource[] = {
183 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
184 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
185 .flags = IORESOURCE_MEM,
189 static struct aemif_abus_data davinci_evm_aemif_abus_data[] = {
191 .cs = 1,
195 static struct platform_device davinci_evm_nandflash_devices[] = {
197 .name = "davinci_nand",
198 .id = 0,
199 .dev = {
200 .platform_data = &davinci_evm_nandflash_data,
202 .num_resources = ARRAY_SIZE(davinci_evm_nandflash_resource),
203 .resource = davinci_evm_nandflash_resource,
207 static struct aemif_platform_data davinci_evm_aemif_pdata = {
208 .abus_data = davinci_evm_aemif_abus_data,
209 .num_abus_data = ARRAY_SIZE(davinci_evm_aemif_abus_data),
210 .sub_devices = davinci_evm_nandflash_devices,
211 .num_sub_devices = ARRAY_SIZE(davinci_evm_nandflash_devices),
214 static struct platform_device davinci_evm_aemif_device = {
215 .name = "ti-aemif",
216 .id = -1,
217 .dev = {
218 .platform_data = &davinci_evm_aemif_pdata,
220 .resource = davinci_evm_aemif_resource,
221 .num_resources = ARRAY_SIZE(davinci_evm_aemif_resource),
224 static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
226 static struct platform_device davinci_fb_device = {
227 .name = "davincifb",
228 .id = -1,
229 .dev = {
230 .dma_mask = &davinci_fb_dma_mask,
231 .coherent_dma_mask = DMA_BIT_MASK(32),
233 .num_resources = 0,
236 static struct tvp514x_platform_data dm644xevm_tvp5146_pdata = {
237 .clk_polarity = 0,
238 .hs_polarity = 1,
239 .vs_polarity = 1
242 #define TVP514X_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL)
243 /* Inputs available at the TVP5146 */
244 static struct v4l2_input dm644xevm_tvp5146_inputs[] = {
246 .index = 0,
247 .name = "Composite",
248 .type = V4L2_INPUT_TYPE_CAMERA,
249 .std = TVP514X_STD_ALL,
252 .index = 1,
253 .name = "S-Video",
254 .type = V4L2_INPUT_TYPE_CAMERA,
255 .std = TVP514X_STD_ALL,
260 * this is the route info for connecting each input to decoder
261 * ouput that goes to vpfe. There is a one to one correspondence
262 * with tvp5146_inputs
264 static struct vpfe_route dm644xevm_tvp5146_routes[] = {
266 .input = INPUT_CVBS_VI2B,
267 .output = OUTPUT_10BIT_422_EMBEDDED_SYNC,
270 .input = INPUT_SVIDEO_VI2C_VI1C,
271 .output = OUTPUT_10BIT_422_EMBEDDED_SYNC,
275 static struct vpfe_subdev_info dm644xevm_vpfe_sub_devs[] = {
277 .name = "tvp5146",
278 .grp_id = 0,
279 .num_inputs = ARRAY_SIZE(dm644xevm_tvp5146_inputs),
280 .inputs = dm644xevm_tvp5146_inputs,
281 .routes = dm644xevm_tvp5146_routes,
282 .can_route = 1,
283 .ccdc_if_params = {
284 .if_type = VPFE_BT656,
285 .hdpol = VPFE_PINPOL_POSITIVE,
286 .vdpol = VPFE_PINPOL_POSITIVE,
288 .board_info = {
289 I2C_BOARD_INFO("tvp5146", 0x5d),
290 .platform_data = &dm644xevm_tvp5146_pdata,
295 static struct vpfe_config dm644xevm_capture_cfg = {
296 .num_subdevs = ARRAY_SIZE(dm644xevm_vpfe_sub_devs),
297 .i2c_adapter_id = 1,
298 .sub_devs = dm644xevm_vpfe_sub_devs,
299 .card_name = "DM6446 EVM",
300 .ccdc = "DM6446 CCDC",
303 static struct platform_device rtc_dev = {
304 .name = "rtc_davinci_evm",
305 .id = -1,
308 /*----------------------------------------------------------------------*/
309 #ifdef CONFIG_I2C
311 * I2C GPIO expanders
314 #define PCF_Uxx_BASE(x) (DAVINCI_N_GPIO + ((x) * 8))
317 /* U2 -- LEDs */
319 static struct gpio_led evm_leds[] = {
320 { .name = "DS8", .active_low = 1,
321 .default_trigger = "heartbeat", },
322 { .name = "DS7", .active_low = 1, },
323 { .name = "DS6", .active_low = 1, },
324 { .name = "DS5", .active_low = 1, },
325 { .name = "DS4", .active_low = 1, },
326 { .name = "DS3", .active_low = 1, },
327 { .name = "DS2", .active_low = 1,
328 .default_trigger = "mmc0", },
329 { .name = "DS1", .active_low = 1,
330 .default_trigger = "disk-activity", },
333 static const struct gpio_led_platform_data evm_led_data = {
334 .num_leds = ARRAY_SIZE(evm_leds),
335 .leds = evm_leds,
338 static struct platform_device *evm_led_dev;
340 static int
341 evm_led_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
343 struct gpio_led *leds = evm_leds;
344 int status;
346 while (ngpio--) {
347 leds->gpio = gpio++;
348 leds++;
351 /* what an extremely annoying way to be forced to handle
352 * device unregistration ...
354 evm_led_dev = platform_device_alloc("leds-gpio", 0);
355 platform_device_add_data(evm_led_dev,
356 &evm_led_data, sizeof evm_led_data);
358 evm_led_dev->dev.parent = &client->dev;
359 status = platform_device_add(evm_led_dev);
360 if (status < 0) {
361 platform_device_put(evm_led_dev);
362 evm_led_dev = NULL;
364 return status;
367 static int
368 evm_led_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
370 if (evm_led_dev) {
371 platform_device_unregister(evm_led_dev);
372 evm_led_dev = NULL;
374 return 0;
377 static struct pcf857x_platform_data pcf_data_u2 = {
378 .gpio_base = PCF_Uxx_BASE(0),
379 .setup = evm_led_setup,
380 .teardown = evm_led_teardown,
384 /* U18 - A/V clock generator and user switch */
386 static int sw_gpio;
388 static ssize_t
389 sw_show(struct device *d, struct device_attribute *a, char *buf)
391 char *s = gpio_get_value_cansleep(sw_gpio) ? "on\n" : "off\n";
393 strcpy(buf, s);
394 return strlen(s);
397 static DEVICE_ATTR(user_sw, S_IRUGO, sw_show, NULL);
399 static int
400 evm_u18_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
402 int status;
404 /* export dip switch option */
405 sw_gpio = gpio + 7;
406 status = gpio_request(sw_gpio, "user_sw");
407 if (status == 0)
408 status = gpio_direction_input(sw_gpio);
409 if (status == 0)
410 status = device_create_file(&client->dev, &dev_attr_user_sw);
411 else
412 gpio_free(sw_gpio);
413 if (status != 0)
414 sw_gpio = -EINVAL;
416 /* audio PLL: 48 kHz (vs 44.1 or 32), single rate (vs double) */
417 gpio_request(gpio + 3, "pll_fs2");
418 gpio_direction_output(gpio + 3, 0);
420 gpio_request(gpio + 2, "pll_fs1");
421 gpio_direction_output(gpio + 2, 0);
423 gpio_request(gpio + 1, "pll_sr");
424 gpio_direction_output(gpio + 1, 0);
426 return 0;
429 static int
430 evm_u18_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
432 gpio_free(gpio + 1);
433 gpio_free(gpio + 2);
434 gpio_free(gpio + 3);
436 if (sw_gpio > 0) {
437 device_remove_file(&client->dev, &dev_attr_user_sw);
438 gpio_free(sw_gpio);
440 return 0;
443 static struct pcf857x_platform_data pcf_data_u18 = {
444 .gpio_base = PCF_Uxx_BASE(1),
445 .n_latch = (1 << 3) | (1 << 2) | (1 << 1),
446 .setup = evm_u18_setup,
447 .teardown = evm_u18_teardown,
451 /* U35 - various I/O signals used to manage USB, CF, ATA, etc */
453 static int
454 evm_u35_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
456 /* p0 = nDRV_VBUS (initial: don't supply it) */
457 gpio_request(gpio + 0, "nDRV_VBUS");
458 gpio_direction_output(gpio + 0, 1);
460 /* p1 = VDDIMX_EN */
461 gpio_request(gpio + 1, "VDDIMX_EN");
462 gpio_direction_output(gpio + 1, 1);
464 /* p2 = VLYNQ_EN */
465 gpio_request(gpio + 2, "VLYNQ_EN");
466 gpio_direction_output(gpio + 2, 1);
468 /* p3 = n3V3_CF_RESET (initial: stay in reset) */
469 gpio_request(gpio + 3, "nCF_RESET");
470 gpio_direction_output(gpio + 3, 0);
472 /* (p4 unused) */
474 /* p5 = 1V8_WLAN_RESET (initial: stay in reset) */
475 gpio_request(gpio + 5, "WLAN_RESET");
476 gpio_direction_output(gpio + 5, 1);
478 /* p6 = nATA_SEL (initial: select) */
479 gpio_request(gpio + 6, "nATA_SEL");
480 gpio_direction_output(gpio + 6, 0);
482 /* p7 = nCF_SEL (initial: deselect) */
483 gpio_request(gpio + 7, "nCF_SEL");
484 gpio_direction_output(gpio + 7, 1);
486 return 0;
489 static int
490 evm_u35_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
492 gpio_free(gpio + 7);
493 gpio_free(gpio + 6);
494 gpio_free(gpio + 5);
495 gpio_free(gpio + 3);
496 gpio_free(gpio + 2);
497 gpio_free(gpio + 1);
498 gpio_free(gpio + 0);
499 return 0;
502 static struct pcf857x_platform_data pcf_data_u35 = {
503 .gpio_base = PCF_Uxx_BASE(2),
504 .setup = evm_u35_setup,
505 .teardown = evm_u35_teardown,
508 /*----------------------------------------------------------------------*/
510 /* Most of this EEPROM is unused, but U-Boot uses some data:
511 * - 0x7f00, 6 bytes Ethernet Address
512 * - 0x0039, 1 byte NTSC vs PAL (bit 0x80 == PAL)
513 * - ... newer boards may have more
516 static struct nvmem_cell_info dm644evm_nvmem_cells[] = {
518 .name = "macaddr",
519 .offset = 0x7f00,
520 .bytes = ETH_ALEN,
524 static struct nvmem_cell_table dm644evm_nvmem_cell_table = {
525 .nvmem_name = "1-00500",
526 .cells = dm644evm_nvmem_cells,
527 .ncells = ARRAY_SIZE(dm644evm_nvmem_cells),
530 static struct nvmem_cell_lookup dm644evm_nvmem_cell_lookup = {
531 .nvmem_name = "1-00500",
532 .cell_name = "macaddr",
533 .dev_id = "davinci_emac.1",
534 .con_id = "mac-address",
537 static const struct property_entry eeprom_properties[] = {
538 PROPERTY_ENTRY_U32("pagesize", 64),
543 * MSP430 supports RTC, card detection, input from IR remote, and
544 * a bit more. It triggers interrupts on GPIO(7) from pressing
545 * buttons on the IR remote, and for card detect switches.
547 static struct i2c_client *dm6446evm_msp;
549 static int dm6446evm_msp_probe(struct i2c_client *client,
550 const struct i2c_device_id *id)
552 dm6446evm_msp = client;
553 return 0;
556 static int dm6446evm_msp_remove(struct i2c_client *client)
558 dm6446evm_msp = NULL;
559 return 0;
562 static const struct i2c_device_id dm6446evm_msp_ids[] = {
563 { "dm6446evm_msp", 0, },
564 { /* end of list */ },
567 static struct i2c_driver dm6446evm_msp_driver = {
568 .driver.name = "dm6446evm_msp",
569 .id_table = dm6446evm_msp_ids,
570 .probe = dm6446evm_msp_probe,
571 .remove = dm6446evm_msp_remove,
574 static int dm6444evm_msp430_get_pins(void)
576 static const char txbuf[2] = { 2, 4, };
577 char buf[4];
578 struct i2c_msg msg[2] = {
580 .flags = 0,
581 .len = 2,
582 .buf = (void __force *)txbuf,
585 .flags = I2C_M_RD,
586 .len = 4,
587 .buf = buf,
590 int status;
592 if (!dm6446evm_msp)
593 return -ENXIO;
595 msg[0].addr = dm6446evm_msp->addr;
596 msg[1].addr = dm6446evm_msp->addr;
598 /* Command 4 == get input state, returns port 2 and port3 data
599 * S Addr W [A] len=2 [A] cmd=4 [A]
600 * RS Addr R [A] [len=4] A [cmd=4] A [port2] A [port3] N P
602 status = i2c_transfer(dm6446evm_msp->adapter, msg, 2);
603 if (status < 0)
604 return status;
606 dev_dbg(&dm6446evm_msp->dev, "PINS: %4ph\n", buf);
608 return (buf[3] << 8) | buf[2];
611 static int dm6444evm_mmc_get_cd(int module)
613 int status = dm6444evm_msp430_get_pins();
615 return (status < 0) ? status : !(status & BIT(1));
618 static int dm6444evm_mmc_get_ro(int module)
620 int status = dm6444evm_msp430_get_pins();
622 return (status < 0) ? status : status & BIT(6 + 8);
625 static struct davinci_mmc_config dm6446evm_mmc_config = {
626 .get_cd = dm6444evm_mmc_get_cd,
627 .get_ro = dm6444evm_mmc_get_ro,
628 .wires = 4,
631 static struct i2c_board_info __initdata i2c_info[] = {
633 I2C_BOARD_INFO("dm6446evm_msp", 0x23),
636 I2C_BOARD_INFO("pcf8574", 0x38),
637 .platform_data = &pcf_data_u2,
640 I2C_BOARD_INFO("pcf8574", 0x39),
641 .platform_data = &pcf_data_u18,
644 I2C_BOARD_INFO("pcf8574", 0x3a),
645 .platform_data = &pcf_data_u35,
648 I2C_BOARD_INFO("24c256", 0x50),
649 .properties = eeprom_properties,
652 I2C_BOARD_INFO("tlv320aic33", 0x1b),
656 #define DM644X_I2C_SDA_PIN GPIO_TO_PIN(2, 12)
657 #define DM644X_I2C_SCL_PIN GPIO_TO_PIN(2, 11)
659 static struct gpiod_lookup_table i2c_recovery_gpiod_table = {
660 .dev_id = "i2c_davinci.1",
661 .table = {
662 GPIO_LOOKUP("davinci_gpio", DM644X_I2C_SDA_PIN, "sda",
663 GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN),
664 GPIO_LOOKUP("davinci_gpio", DM644X_I2C_SCL_PIN, "scl",
665 GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN),
670 /* The msp430 uses a slow bitbanged I2C implementation (ergo 20 KHz),
671 * which requires 100 usec of idle bus after i2c writes sent to it.
673 static struct davinci_i2c_platform_data i2c_pdata = {
674 .bus_freq = 20 /* kHz */,
675 .bus_delay = 100 /* usec */,
676 .gpio_recovery = true,
679 static void __init evm_init_i2c(void)
681 gpiod_add_lookup_table(&i2c_recovery_gpiod_table);
682 davinci_init_i2c(&i2c_pdata);
683 i2c_add_driver(&dm6446evm_msp_driver);
684 i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
686 #endif
688 #define VENC_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL)
690 /* venc standard timings */
691 static struct vpbe_enc_mode_info dm644xevm_enc_std_timing[] = {
693 .name = "ntsc",
694 .timings_type = VPBE_ENC_STD,
695 .std_id = V4L2_STD_NTSC,
696 .interlaced = 1,
697 .xres = 720,
698 .yres = 480,
699 .aspect = {11, 10},
700 .fps = {30000, 1001},
701 .left_margin = 0x79,
702 .upper_margin = 0x10,
705 .name = "pal",
706 .timings_type = VPBE_ENC_STD,
707 .std_id = V4L2_STD_PAL,
708 .interlaced = 1,
709 .xres = 720,
710 .yres = 576,
711 .aspect = {54, 59},
712 .fps = {25, 1},
713 .left_margin = 0x7e,
714 .upper_margin = 0x16,
718 /* venc dv preset timings */
719 static struct vpbe_enc_mode_info dm644xevm_enc_preset_timing[] = {
721 .name = "480p59_94",
722 .timings_type = VPBE_ENC_DV_TIMINGS,
723 .dv_timings = V4L2_DV_BT_CEA_720X480P59_94,
724 .interlaced = 0,
725 .xres = 720,
726 .yres = 480,
727 .aspect = {1, 1},
728 .fps = {5994, 100},
729 .left_margin = 0x80,
730 .upper_margin = 0x20,
733 .name = "576p50",
734 .timings_type = VPBE_ENC_DV_TIMINGS,
735 .dv_timings = V4L2_DV_BT_CEA_720X576P50,
736 .interlaced = 0,
737 .xres = 720,
738 .yres = 576,
739 .aspect = {1, 1},
740 .fps = {50, 1},
741 .left_margin = 0x7e,
742 .upper_margin = 0x30,
747 * The outputs available from VPBE + encoders. Keep the order same
748 * as that of encoders. First those from venc followed by that from
749 * encoders. Index in the output refers to index on a particular encoder.
750 * Driver uses this index to pass it to encoder when it supports more
751 * than one output. Userspace applications use index of the array to
752 * set an output.
754 static struct vpbe_output dm644xevm_vpbe_outputs[] = {
756 .output = {
757 .index = 0,
758 .name = "Composite",
759 .type = V4L2_OUTPUT_TYPE_ANALOG,
760 .std = VENC_STD_ALL,
761 .capabilities = V4L2_OUT_CAP_STD,
763 .subdev_name = DM644X_VPBE_VENC_SUBDEV_NAME,
764 .default_mode = "ntsc",
765 .num_modes = ARRAY_SIZE(dm644xevm_enc_std_timing),
766 .modes = dm644xevm_enc_std_timing,
769 .output = {
770 .index = 1,
771 .name = "Component",
772 .type = V4L2_OUTPUT_TYPE_ANALOG,
773 .capabilities = V4L2_OUT_CAP_DV_TIMINGS,
775 .subdev_name = DM644X_VPBE_VENC_SUBDEV_NAME,
776 .default_mode = "480p59_94",
777 .num_modes = ARRAY_SIZE(dm644xevm_enc_preset_timing),
778 .modes = dm644xevm_enc_preset_timing,
782 static struct vpbe_config dm644xevm_display_cfg = {
783 .module_name = "dm644x-vpbe-display",
784 .i2c_adapter_id = 1,
785 .osd = {
786 .module_name = DM644X_VPBE_OSD_SUBDEV_NAME,
788 .venc = {
789 .module_name = DM644X_VPBE_VENC_SUBDEV_NAME,
791 .num_outputs = ARRAY_SIZE(dm644xevm_vpbe_outputs),
792 .outputs = dm644xevm_vpbe_outputs,
795 static struct platform_device *davinci_evm_devices[] __initdata = {
796 &davinci_fb_device,
797 &rtc_dev,
800 static void __init
801 davinci_evm_map_io(void)
803 dm644x_init();
806 static int davinci_phy_fixup(struct phy_device *phydev)
808 unsigned int control;
809 /* CRITICAL: Fix for increasing PHY signal drive strength for
810 * TX lockup issue. On DaVinci EVM, the Intel LXT971 PHY
811 * signal strength was low causing TX to fail randomly. The
812 * fix is to Set bit 11 (Increased MII drive strength) of PHY
813 * register 26 (Digital Config register) on this phy. */
814 control = phy_read(phydev, 26);
815 phy_write(phydev, 26, (control | 0x800));
816 return 0;
819 #define HAS_ATA (IS_ENABLED(CONFIG_BLK_DEV_PALMCHIP_BK3710) || \
820 IS_ENABLED(CONFIG_PATA_BK3710))
822 #define HAS_NOR IS_ENABLED(CONFIG_MTD_PHYSMAP)
824 #define HAS_NAND IS_ENABLED(CONFIG_MTD_NAND_DAVINCI)
826 #define GPIO_nVBUS_DRV 160
828 static struct gpiod_lookup_table dm644evm_usb_gpio_table = {
829 .dev_id = "musb-davinci",
830 .table = {
831 GPIO_LOOKUP("davinci_gpio", GPIO_nVBUS_DRV, NULL,
832 GPIO_ACTIVE_HIGH),
837 static __init void davinci_evm_init(void)
839 int ret;
840 struct clk *aemif_clk;
841 struct davinci_soc_info *soc_info = &davinci_soc_info;
843 dm644x_register_clocks();
845 dm644x_init_devices();
847 ret = dm644x_gpio_register();
848 if (ret)
849 pr_warn("%s: GPIO init failed: %d\n", __func__, ret);
851 aemif_clk = clk_get(NULL, "aemif");
852 clk_prepare_enable(aemif_clk);
854 if (HAS_ATA) {
855 if (HAS_NAND || HAS_NOR)
856 pr_warn("WARNING: both IDE and Flash are enabled, but they share AEMIF pins\n"
857 "\tDisable IDE for NAND/NOR support\n");
858 davinci_init_ide();
859 } else if (HAS_NAND || HAS_NOR) {
860 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
861 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
863 /* only one device will be jumpered and detected */
864 if (HAS_NAND) {
865 platform_device_register(&davinci_evm_aemif_device);
866 #ifdef CONFIG_I2C
867 evm_leds[7].default_trigger = "nand-disk";
868 #endif
869 if (HAS_NOR)
870 pr_warn("WARNING: both NAND and NOR flash are enabled; disable one of them.\n");
871 } else if (HAS_NOR)
872 platform_device_register(&davinci_evm_norflash_device);
875 platform_add_devices(davinci_evm_devices,
876 ARRAY_SIZE(davinci_evm_devices));
877 #ifdef CONFIG_I2C
878 nvmem_add_cell_table(&dm644evm_nvmem_cell_table);
879 nvmem_add_cell_lookups(&dm644evm_nvmem_cell_lookup, 1);
880 evm_init_i2c();
881 davinci_setup_mmc(0, &dm6446evm_mmc_config);
882 #endif
883 dm644x_init_video(&dm644xevm_capture_cfg, &dm644xevm_display_cfg);
885 davinci_serial_init(dm644x_serial_device);
886 dm644x_init_asp();
888 /* irlml6401 switches over 1A, in under 8 msec */
889 gpiod_add_lookup_table(&dm644evm_usb_gpio_table);
890 davinci_setup_usb(1000, 8);
892 if (IS_BUILTIN(CONFIG_PHYLIB)) {
893 soc_info->emac_pdata->phy_id = DM644X_EVM_PHY_ID;
894 /* Register the fixup for PHY on DaVinci */
895 phy_register_fixup_for_uid(LXT971_PHY_ID, LXT971_PHY_MASK,
896 davinci_phy_fixup);
900 MACHINE_START(DAVINCI_EVM, "DaVinci DM644x EVM")
901 /* Maintainer: MontaVista Software <source@mvista.com> */
902 .atag_offset = 0x100,
903 .map_io = davinci_evm_map_io,
904 .init_irq = dm644x_init_irq,
905 .init_time = dm644x_init_time,
906 .init_machine = davinci_evm_init,
907 .init_late = davinci_init_late,
908 .dma_zone_size = SZ_128M,
909 MACHINE_END