davinci: da8xx/omapl EVM: Specify reserved channels/slots
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-davinci / board-da850-evm.c
blobef7d9de4db29d740f22e3cde9623fe8464ac6fab
1 /*
2 * TI DA850/OMAP-L138 EVM board
4 * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
6 * Derived from: arch/arm/mach-davinci/board-da830-evm.c
7 * Original Copyrights follow:
9 * 2007, 2009 (c) MontaVista Software, Inc. This file is licensed under
10 * the terms of the GNU General Public License version 2. This program
11 * is licensed "as is" without any warranty of any kind, whether express
12 * or implied.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/console.h>
17 #include <linux/i2c.h>
18 #include <linux/i2c/at24.h>
19 #include <linux/i2c/pca953x.h>
20 #include <linux/mfd/tps6507x.h>
21 #include <linux/gpio.h>
22 #include <linux/platform_device.h>
23 #include <linux/mtd/mtd.h>
24 #include <linux/mtd/nand.h>
25 #include <linux/mtd/partitions.h>
26 #include <linux/mtd/physmap.h>
27 #include <linux/regulator/machine.h>
28 #include <linux/mfd/tps6507x.h>
29 #include <linux/input/tps6507x-ts.h>
31 #include <asm/mach-types.h>
32 #include <asm/mach/arch.h>
34 #include <mach/cp_intc.h>
35 #include <mach/da8xx.h>
36 #include <mach/nand.h>
37 #include <mach/mux.h>
39 #define DA850_EVM_PHY_MASK 0x1
40 #define DA850_EVM_MDIO_FREQUENCY 2200000 /* PHY bus frequency */
42 #define DA850_LCD_PWR_PIN GPIO_TO_PIN(2, 8)
43 #define DA850_LCD_BL_PIN GPIO_TO_PIN(2, 15)
45 #define DA850_MMCSD_CD_PIN GPIO_TO_PIN(4, 0)
46 #define DA850_MMCSD_WP_PIN GPIO_TO_PIN(4, 1)
48 #define DA850_MII_MDIO_CLKEN_PIN GPIO_TO_PIN(2, 6)
50 static struct mtd_partition da850_evm_norflash_partition[] = {
52 .name = "bootloaders + env",
53 .offset = 0,
54 .size = SZ_512K,
55 .mask_flags = MTD_WRITEABLE,
58 .name = "kernel",
59 .offset = MTDPART_OFS_APPEND,
60 .size = SZ_2M,
61 .mask_flags = 0,
64 .name = "filesystem",
65 .offset = MTDPART_OFS_APPEND,
66 .size = MTDPART_SIZ_FULL,
67 .mask_flags = 0,
71 static struct physmap_flash_data da850_evm_norflash_data = {
72 .width = 2,
73 .parts = da850_evm_norflash_partition,
74 .nr_parts = ARRAY_SIZE(da850_evm_norflash_partition),
77 static struct resource da850_evm_norflash_resource[] = {
79 .start = DA8XX_AEMIF_CS2_BASE,
80 .end = DA8XX_AEMIF_CS2_BASE + SZ_32M - 1,
81 .flags = IORESOURCE_MEM,
85 static struct platform_device da850_evm_norflash_device = {
86 .name = "physmap-flash",
87 .id = 0,
88 .dev = {
89 .platform_data = &da850_evm_norflash_data,
91 .num_resources = 1,
92 .resource = da850_evm_norflash_resource,
95 static struct davinci_pm_config da850_pm_pdata = {
96 .sleepcount = 128,
99 static struct platform_device da850_pm_device = {
100 .name = "pm-davinci",
101 .dev = {
102 .platform_data = &da850_pm_pdata,
104 .id = -1,
107 /* DA850/OMAP-L138 EVM includes a 512 MByte large-page NAND flash
108 * (128K blocks). It may be used instead of the (default) SPI flash
109 * to boot, using TI's tools to install the secondary boot loader
110 * (UBL) and U-Boot.
112 struct mtd_partition da850_evm_nandflash_partition[] = {
114 .name = "u-boot env",
115 .offset = 0,
116 .size = SZ_128K,
117 .mask_flags = MTD_WRITEABLE,
120 .name = "UBL",
121 .offset = MTDPART_OFS_APPEND,
122 .size = SZ_128K,
123 .mask_flags = MTD_WRITEABLE,
126 .name = "u-boot",
127 .offset = MTDPART_OFS_APPEND,
128 .size = 4 * SZ_128K,
129 .mask_flags = MTD_WRITEABLE,
132 .name = "kernel",
133 .offset = 0x200000,
134 .size = SZ_2M,
135 .mask_flags = 0,
138 .name = "filesystem",
139 .offset = MTDPART_OFS_APPEND,
140 .size = MTDPART_SIZ_FULL,
141 .mask_flags = 0,
145 static struct davinci_nand_pdata da850_evm_nandflash_data = {
146 .parts = da850_evm_nandflash_partition,
147 .nr_parts = ARRAY_SIZE(da850_evm_nandflash_partition),
148 .ecc_mode = NAND_ECC_HW,
149 .ecc_bits = 4,
150 .options = NAND_USE_FLASH_BBT,
153 static struct resource da850_evm_nandflash_resource[] = {
155 .start = DA8XX_AEMIF_CS3_BASE,
156 .end = DA8XX_AEMIF_CS3_BASE + SZ_512K + 2 * SZ_1K - 1,
157 .flags = IORESOURCE_MEM,
160 .start = DA8XX_AEMIF_CTL_BASE,
161 .end = DA8XX_AEMIF_CTL_BASE + SZ_32K - 1,
162 .flags = IORESOURCE_MEM,
166 static struct platform_device da850_evm_nandflash_device = {
167 .name = "davinci_nand",
168 .id = 1,
169 .dev = {
170 .platform_data = &da850_evm_nandflash_data,
172 .num_resources = ARRAY_SIZE(da850_evm_nandflash_resource),
173 .resource = da850_evm_nandflash_resource,
176 static struct platform_device *da850_evm_devices[] __initdata = {
177 &da850_evm_nandflash_device,
178 &da850_evm_norflash_device,
181 #define DA8XX_AEMIF_CE2CFG_OFFSET 0x10
182 #define DA8XX_AEMIF_ASIZE_16BIT 0x1
184 static void __init da850_evm_init_nor(void)
186 void __iomem *aemif_addr;
188 aemif_addr = ioremap(DA8XX_AEMIF_CTL_BASE, SZ_32K);
190 /* Configure data bus width of CS2 to 16 bit */
191 writel(readl(aemif_addr + DA8XX_AEMIF_CE2CFG_OFFSET) |
192 DA8XX_AEMIF_ASIZE_16BIT,
193 aemif_addr + DA8XX_AEMIF_CE2CFG_OFFSET);
195 iounmap(aemif_addr);
198 static u32 ui_card_detected;
200 #if defined(CONFIG_MMC_DAVINCI) || \
201 defined(CONFIG_MMC_DAVINCI_MODULE)
202 #define HAS_MMC 1
203 #else
204 #define HAS_MMC 0
205 #endif
207 static __init void da850_evm_setup_nor_nand(void)
209 int ret = 0;
211 if (ui_card_detected & !HAS_MMC) {
212 ret = davinci_cfg_reg_list(da850_nand_pins);
213 if (ret)
214 pr_warning("da850_evm_init: nand mux setup failed: "
215 "%d\n", ret);
217 ret = davinci_cfg_reg_list(da850_nor_pins);
218 if (ret)
219 pr_warning("da850_evm_init: nor mux setup failed: %d\n",
220 ret);
222 da850_evm_init_nor();
224 platform_add_devices(da850_evm_devices,
225 ARRAY_SIZE(da850_evm_devices));
229 #ifdef CONFIG_DA850_UI_RMII
230 static inline void da850_evm_setup_emac_rmii(int rmii_sel)
232 struct davinci_soc_info *soc_info = &davinci_soc_info;
234 soc_info->emac_pdata->rmii_en = 1;
235 gpio_set_value(rmii_sel, 0);
237 #else
238 static inline void da850_evm_setup_emac_rmii(int rmii_sel) { }
239 #endif
241 static int da850_evm_ui_expander_setup(struct i2c_client *client, unsigned gpio,
242 unsigned ngpio, void *c)
244 int sel_a, sel_b, sel_c, ret;
246 sel_a = gpio + 7;
247 sel_b = gpio + 6;
248 sel_c = gpio + 5;
250 ret = gpio_request(sel_a, "sel_a");
251 if (ret) {
252 pr_warning("Cannot open UI expander pin %d\n", sel_a);
253 goto exp_setup_sela_fail;
256 ret = gpio_request(sel_b, "sel_b");
257 if (ret) {
258 pr_warning("Cannot open UI expander pin %d\n", sel_b);
259 goto exp_setup_selb_fail;
262 ret = gpio_request(sel_c, "sel_c");
263 if (ret) {
264 pr_warning("Cannot open UI expander pin %d\n", sel_c);
265 goto exp_setup_selc_fail;
268 /* deselect all functionalities */
269 gpio_direction_output(sel_a, 1);
270 gpio_direction_output(sel_b, 1);
271 gpio_direction_output(sel_c, 1);
273 ui_card_detected = 1;
274 pr_info("DA850/OMAP-L138 EVM UI card detected\n");
276 da850_evm_setup_nor_nand();
278 da850_evm_setup_emac_rmii(sel_a);
280 return 0;
282 exp_setup_selc_fail:
283 gpio_free(sel_b);
284 exp_setup_selb_fail:
285 gpio_free(sel_a);
286 exp_setup_sela_fail:
287 return ret;
290 static int da850_evm_ui_expander_teardown(struct i2c_client *client,
291 unsigned gpio, unsigned ngpio, void *c)
293 /* deselect all functionalities */
294 gpio_set_value(gpio + 5, 1);
295 gpio_set_value(gpio + 6, 1);
296 gpio_set_value(gpio + 7, 1);
298 gpio_free(gpio + 5);
299 gpio_free(gpio + 6);
300 gpio_free(gpio + 7);
302 return 0;
305 static struct pca953x_platform_data da850_evm_ui_expander_info = {
306 .gpio_base = DAVINCI_N_GPIO,
307 .setup = da850_evm_ui_expander_setup,
308 .teardown = da850_evm_ui_expander_teardown,
311 static struct i2c_board_info __initdata da850_evm_i2c_devices[] = {
313 I2C_BOARD_INFO("tlv320aic3x", 0x18),
316 I2C_BOARD_INFO("tca6416", 0x20),
317 .platform_data = &da850_evm_ui_expander_info,
321 static struct davinci_i2c_platform_data da850_evm_i2c_0_pdata = {
322 .bus_freq = 100, /* kHz */
323 .bus_delay = 0, /* usec */
326 static struct davinci_uart_config da850_evm_uart_config __initdata = {
327 .enabled_uarts = 0x7,
330 /* davinci da850 evm audio machine driver */
331 static u8 da850_iis_serializer_direction[] = {
332 INACTIVE_MODE, INACTIVE_MODE, INACTIVE_MODE, INACTIVE_MODE,
333 INACTIVE_MODE, INACTIVE_MODE, INACTIVE_MODE, INACTIVE_MODE,
334 INACTIVE_MODE, INACTIVE_MODE, INACTIVE_MODE, TX_MODE,
335 RX_MODE, INACTIVE_MODE, INACTIVE_MODE, INACTIVE_MODE,
338 static struct snd_platform_data da850_evm_snd_data = {
339 .tx_dma_offset = 0x2000,
340 .rx_dma_offset = 0x2000,
341 .op_mode = DAVINCI_MCASP_IIS_MODE,
342 .num_serializer = ARRAY_SIZE(da850_iis_serializer_direction),
343 .tdm_slots = 2,
344 .serial_dir = da850_iis_serializer_direction,
345 .eventq_no = EVENTQ_1,
346 .version = MCASP_VERSION_2,
347 .txnumevt = 1,
348 .rxnumevt = 1,
351 static int da850_evm_mmc_get_ro(int index)
353 return gpio_get_value(DA850_MMCSD_WP_PIN);
356 static int da850_evm_mmc_get_cd(int index)
358 return !gpio_get_value(DA850_MMCSD_CD_PIN);
361 static struct davinci_mmc_config da850_mmc_config = {
362 .get_ro = da850_evm_mmc_get_ro,
363 .get_cd = da850_evm_mmc_get_cd,
364 .wires = 4,
365 .max_freq = 50000000,
366 .caps = MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED,
367 .version = MMC_CTLR_VERSION_2,
370 static void da850_panel_power_ctrl(int val)
372 /* lcd backlight */
373 gpio_set_value(DA850_LCD_BL_PIN, val);
375 /* lcd power */
376 gpio_set_value(DA850_LCD_PWR_PIN, val);
379 static int da850_lcd_hw_init(void)
381 int status;
383 status = gpio_request(DA850_LCD_BL_PIN, "lcd bl\n");
384 if (status < 0)
385 return status;
387 status = gpio_request(DA850_LCD_PWR_PIN, "lcd pwr\n");
388 if (status < 0) {
389 gpio_free(DA850_LCD_BL_PIN);
390 return status;
393 gpio_direction_output(DA850_LCD_BL_PIN, 0);
394 gpio_direction_output(DA850_LCD_PWR_PIN, 0);
396 /* Switch off panel power and backlight */
397 da850_panel_power_ctrl(0);
399 /* Switch on panel power and backlight */
400 da850_panel_power_ctrl(1);
402 return 0;
405 /* TPS65070 voltage regulator support */
407 /* 3.3V */
408 struct regulator_consumer_supply tps65070_dcdc1_consumers[] = {
410 .supply = "usb0_vdda33",
413 .supply = "usb1_vdda33",
417 /* 3.3V or 1.8V */
418 struct regulator_consumer_supply tps65070_dcdc2_consumers[] = {
420 .supply = "dvdd3318_a",
423 .supply = "dvdd3318_b",
426 .supply = "dvdd3318_c",
430 /* 1.2V */
431 struct regulator_consumer_supply tps65070_dcdc3_consumers[] = {
433 .supply = "cvdd",
437 /* 1.8V LDO */
438 struct regulator_consumer_supply tps65070_ldo1_consumers[] = {
440 .supply = "sata_vddr",
443 .supply = "usb0_vdda18",
446 .supply = "usb1_vdda18",
449 .supply = "ddr_dvdd18",
453 /* 1.2V LDO */
454 struct regulator_consumer_supply tps65070_ldo2_consumers[] = {
456 .supply = "sata_vdd",
459 .supply = "pll0_vdda",
462 .supply = "pll1_vdda",
465 .supply = "usbs_cvdd",
468 .supply = "vddarnwa1",
472 struct regulator_init_data tps65070_regulator_data[] = {
473 /* dcdc1 */
475 .constraints = {
476 .min_uV = 3150000,
477 .max_uV = 3450000,
478 .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE |
479 REGULATOR_CHANGE_STATUS),
480 .boot_on = 1,
482 .num_consumer_supplies = ARRAY_SIZE(tps65070_dcdc1_consumers),
483 .consumer_supplies = tps65070_dcdc1_consumers,
486 /* dcdc2 */
488 .constraints = {
489 .min_uV = 1710000,
490 .max_uV = 3450000,
491 .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE |
492 REGULATOR_CHANGE_STATUS),
493 .boot_on = 1,
495 .num_consumer_supplies = ARRAY_SIZE(tps65070_dcdc2_consumers),
496 .consumer_supplies = tps65070_dcdc2_consumers,
499 /* dcdc3 */
501 .constraints = {
502 .min_uV = 950000,
503 .max_uV = 1320000,
504 .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE |
505 REGULATOR_CHANGE_STATUS),
506 .boot_on = 1,
508 .num_consumer_supplies = ARRAY_SIZE(tps65070_dcdc3_consumers),
509 .consumer_supplies = tps65070_dcdc3_consumers,
512 /* ldo1 */
514 .constraints = {
515 .min_uV = 1710000,
516 .max_uV = 1890000,
517 .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE |
518 REGULATOR_CHANGE_STATUS),
519 .boot_on = 1,
521 .num_consumer_supplies = ARRAY_SIZE(tps65070_ldo1_consumers),
522 .consumer_supplies = tps65070_ldo1_consumers,
525 /* ldo2 */
527 .constraints = {
528 .min_uV = 1140000,
529 .max_uV = 1320000,
530 .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE |
531 REGULATOR_CHANGE_STATUS),
532 .boot_on = 1,
534 .num_consumer_supplies = ARRAY_SIZE(tps65070_ldo2_consumers),
535 .consumer_supplies = tps65070_ldo2_consumers,
539 static struct touchscreen_init_data tps6507x_touchscreen_data = {
540 .poll_period = 30, /* ms between touch samples */
541 .min_pressure = 0x30, /* minimum pressure to trigger touch */
542 .vref = 0, /* turn off vref when not using A/D */
543 .vendor = 0, /* /sys/class/input/input?/id/vendor */
544 .product = 65070, /* /sys/class/input/input?/id/product */
545 .version = 0x100, /* /sys/class/input/input?/id/version */
548 static struct tps6507x_board tps_board = {
549 .tps6507x_pmic_init_data = &tps65070_regulator_data[0],
550 .tps6507x_ts_init_data = &tps6507x_touchscreen_data,
553 static struct i2c_board_info __initdata da850evm_tps65070_info[] = {
555 I2C_BOARD_INFO("tps6507x", 0x48),
556 .platform_data = &tps_board,
560 static int __init pmic_tps65070_init(void)
562 return i2c_register_board_info(1, da850evm_tps65070_info,
563 ARRAY_SIZE(da850evm_tps65070_info));
566 static const short da850_evm_lcdc_pins[] = {
567 DA850_GPIO2_8, DA850_GPIO2_15,
571 static int __init da850_evm_config_emac(void)
573 void __iomem *cfg_chip3_base;
574 int ret;
575 u32 val;
576 struct davinci_soc_info *soc_info = &davinci_soc_info;
577 u8 rmii_en = soc_info->emac_pdata->rmii_en;
579 if (!machine_is_davinci_da850_evm())
580 return 0;
582 cfg_chip3_base = DA8XX_SYSCFG0_VIRT(DA8XX_CFGCHIP3_REG);
584 val = __raw_readl(cfg_chip3_base);
586 if (rmii_en) {
587 val |= BIT(8);
588 ret = davinci_cfg_reg_list(da850_rmii_pins);
589 pr_info("EMAC: RMII PHY configured, MII PHY will not be"
590 " functional\n");
591 } else {
592 val &= ~BIT(8);
593 ret = davinci_cfg_reg_list(da850_cpgmac_pins);
594 pr_info("EMAC: MII PHY configured, RMII PHY will not be"
595 " functional\n");
598 if (ret)
599 pr_warning("da850_evm_init: cpgmac/rmii mux setup failed: %d\n",
600 ret);
602 /* configure the CFGCHIP3 register for RMII or MII */
603 __raw_writel(val, cfg_chip3_base);
605 ret = davinci_cfg_reg(DA850_GPIO2_6);
606 if (ret)
607 pr_warning("da850_evm_init:GPIO(2,6) mux setup "
608 "failed\n");
610 ret = gpio_request(DA850_MII_MDIO_CLKEN_PIN, "mdio_clk_en");
611 if (ret) {
612 pr_warning("Cannot open GPIO %d\n",
613 DA850_MII_MDIO_CLKEN_PIN);
614 return ret;
617 /* Enable/Disable MII MDIO clock */
618 gpio_direction_output(DA850_MII_MDIO_CLKEN_PIN, rmii_en);
620 soc_info->emac_pdata->phy_mask = DA850_EVM_PHY_MASK;
621 soc_info->emac_pdata->mdio_max_freq = DA850_EVM_MDIO_FREQUENCY;
623 ret = da8xx_register_emac();
624 if (ret)
625 pr_warning("da850_evm_init: emac registration failed: %d\n",
626 ret);
628 return 0;
630 device_initcall(da850_evm_config_emac);
633 * The following EDMA channels/slots are not being used by drivers (for
634 * example: Timer, GPIO, UART events etc) on da850/omap-l138 EVM, hence
635 * they are being reserved for codecs on the DSP side.
637 static const s16 da850_dma0_rsv_chans[][2] = {
638 /* (offset, number) */
639 { 8, 6},
640 {24, 4},
641 {30, 2},
642 {-1, -1}
645 static const s16 da850_dma0_rsv_slots[][2] = {
646 /* (offset, number) */
647 { 8, 6},
648 {24, 4},
649 {30, 50},
650 {-1, -1}
653 static const s16 da850_dma1_rsv_chans[][2] = {
654 /* (offset, number) */
655 { 0, 28},
656 {30, 2},
657 {-1, -1}
660 static const s16 da850_dma1_rsv_slots[][2] = {
661 /* (offset, number) */
662 { 0, 28},
663 {30, 90},
664 {-1, -1}
667 static struct edma_rsv_info da850_edma_cc0_rsv = {
668 .rsv_chans = da850_dma0_rsv_chans,
669 .rsv_slots = da850_dma0_rsv_slots,
672 static struct edma_rsv_info da850_edma_cc1_rsv = {
673 .rsv_chans = da850_dma1_rsv_chans,
674 .rsv_slots = da850_dma1_rsv_slots,
677 static struct edma_rsv_info *da850_edma_rsv[2] = {
678 &da850_edma_cc0_rsv,
679 &da850_edma_cc1_rsv,
682 static __init void da850_evm_init(void)
684 int ret;
686 ret = pmic_tps65070_init();
687 if (ret)
688 pr_warning("da850_evm_init: TPS65070 PMIC init failed: %d\n",
689 ret);
691 ret = da850_register_edma(da850_edma_rsv);
692 if (ret)
693 pr_warning("da850_evm_init: edma registration failed: %d\n",
694 ret);
696 ret = davinci_cfg_reg_list(da850_i2c0_pins);
697 if (ret)
698 pr_warning("da850_evm_init: i2c0 mux setup failed: %d\n",
699 ret);
701 ret = da8xx_register_i2c(0, &da850_evm_i2c_0_pdata);
702 if (ret)
703 pr_warning("da850_evm_init: i2c0 registration failed: %d\n",
704 ret);
707 ret = da8xx_register_watchdog();
708 if (ret)
709 pr_warning("da830_evm_init: watchdog registration failed: %d\n",
710 ret);
712 if (HAS_MMC) {
713 ret = davinci_cfg_reg_list(da850_mmcsd0_pins);
714 if (ret)
715 pr_warning("da850_evm_init: mmcsd0 mux setup failed:"
716 " %d\n", ret);
718 ret = gpio_request(DA850_MMCSD_CD_PIN, "MMC CD\n");
719 if (ret)
720 pr_warning("da850_evm_init: can not open GPIO %d\n",
721 DA850_MMCSD_CD_PIN);
722 gpio_direction_input(DA850_MMCSD_CD_PIN);
724 ret = gpio_request(DA850_MMCSD_WP_PIN, "MMC WP\n");
725 if (ret)
726 pr_warning("da850_evm_init: can not open GPIO %d\n",
727 DA850_MMCSD_WP_PIN);
728 gpio_direction_input(DA850_MMCSD_WP_PIN);
730 ret = da8xx_register_mmcsd0(&da850_mmc_config);
731 if (ret)
732 pr_warning("da850_evm_init: mmcsd0 registration failed:"
733 " %d\n", ret);
736 davinci_serial_init(&da850_evm_uart_config);
738 i2c_register_board_info(1, da850_evm_i2c_devices,
739 ARRAY_SIZE(da850_evm_i2c_devices));
742 * shut down uart 0 and 1; they are not used on the board and
743 * accessing them causes endless "too much work in irq53" messages
744 * with arago fs
746 __raw_writel(0, IO_ADDRESS(DA8XX_UART1_BASE) + 0x30);
747 __raw_writel(0, IO_ADDRESS(DA8XX_UART0_BASE) + 0x30);
749 ret = davinci_cfg_reg_list(da850_mcasp_pins);
750 if (ret)
751 pr_warning("da850_evm_init: mcasp mux setup failed: %d\n",
752 ret);
754 da8xx_register_mcasp(0, &da850_evm_snd_data);
756 ret = davinci_cfg_reg_list(da850_lcdcntl_pins);
757 if (ret)
758 pr_warning("da850_evm_init: lcdcntl mux setup failed: %d\n",
759 ret);
761 /* Handle board specific muxing for LCD here */
762 ret = davinci_cfg_reg_list(da850_evm_lcdc_pins);
763 if (ret)
764 pr_warning("da850_evm_init: evm specific lcd mux setup "
765 "failed: %d\n", ret);
767 ret = da850_lcd_hw_init();
768 if (ret)
769 pr_warning("da850_evm_init: lcd initialization failed: %d\n",
770 ret);
772 sharp_lk043t1dg01_pdata.panel_power_ctrl = da850_panel_power_ctrl,
773 ret = da8xx_register_lcdc(&sharp_lk043t1dg01_pdata);
774 if (ret)
775 pr_warning("da850_evm_init: lcdc registration failed: %d\n",
776 ret);
778 ret = da8xx_register_rtc();
779 if (ret)
780 pr_warning("da850_evm_init: rtc setup failed: %d\n", ret);
782 ret = da850_register_cpufreq();
783 if (ret)
784 pr_warning("da850_evm_init: cpufreq registration failed: %d\n",
785 ret);
787 ret = da8xx_register_cpuidle();
788 if (ret)
789 pr_warning("da850_evm_init: cpuidle registration failed: %d\n",
790 ret);
792 ret = da850_register_pm(&da850_pm_device);
793 if (ret)
794 pr_warning("da850_evm_init: suspend registration failed: %d\n",
795 ret);
798 #ifdef CONFIG_SERIAL_8250_CONSOLE
799 static int __init da850_evm_console_init(void)
801 return add_preferred_console("ttyS", 2, "115200");
803 console_initcall(da850_evm_console_init);
804 #endif
806 static void __init da850_evm_map_io(void)
808 da850_init();
811 MACHINE_START(DAVINCI_DA850_EVM, "DaVinci DA850/OMAP-L138 EVM")
812 .phys_io = IO_PHYS,
813 .io_pg_offst = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
814 .boot_params = (DA8XX_DDR_BASE + 0x100),
815 .map_io = da850_evm_map_io,
816 .init_irq = cp_intc_init,
817 .timer = &davinci_timer,
818 .init_machine = da850_evm_init,
819 MACHINE_END