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
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/regulator/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>
38 #include <mach/aemif.h>
40 #define DA850_EVM_PHY_ID "0:00"
41 #define DA850_LCD_PWR_PIN GPIO_TO_PIN(2, 8)
42 #define DA850_LCD_BL_PIN GPIO_TO_PIN(2, 15)
44 #define DA850_MMCSD_CD_PIN GPIO_TO_PIN(4, 0)
45 #define DA850_MMCSD_WP_PIN GPIO_TO_PIN(4, 1)
47 #define DA850_MII_MDIO_CLKEN_PIN GPIO_TO_PIN(2, 6)
49 static struct mtd_partition da850_evm_norflash_partition
[] = {
51 .name
= "bootloaders + env",
54 .mask_flags
= MTD_WRITEABLE
,
58 .offset
= MTDPART_OFS_APPEND
,
64 .offset
= MTDPART_OFS_APPEND
,
65 .size
= MTDPART_SIZ_FULL
,
70 static struct physmap_flash_data da850_evm_norflash_data
= {
72 .parts
= da850_evm_norflash_partition
,
73 .nr_parts
= ARRAY_SIZE(da850_evm_norflash_partition
),
76 static struct resource da850_evm_norflash_resource
[] = {
78 .start
= DA8XX_AEMIF_CS2_BASE
,
79 .end
= DA8XX_AEMIF_CS2_BASE
+ SZ_32M
- 1,
80 .flags
= IORESOURCE_MEM
,
84 static struct platform_device da850_evm_norflash_device
= {
85 .name
= "physmap-flash",
88 .platform_data
= &da850_evm_norflash_data
,
91 .resource
= da850_evm_norflash_resource
,
94 static struct davinci_pm_config da850_pm_pdata
= {
98 static struct platform_device da850_pm_device
= {
101 .platform_data
= &da850_pm_pdata
,
106 /* DA850/OMAP-L138 EVM includes a 512 MByte large-page NAND flash
107 * (128K blocks). It may be used instead of the (default) SPI flash
108 * to boot, using TI's tools to install the secondary boot loader
111 static struct mtd_partition da850_evm_nandflash_partition
[] = {
113 .name
= "u-boot env",
116 .mask_flags
= MTD_WRITEABLE
,
120 .offset
= MTDPART_OFS_APPEND
,
122 .mask_flags
= MTD_WRITEABLE
,
126 .offset
= MTDPART_OFS_APPEND
,
128 .mask_flags
= MTD_WRITEABLE
,
137 .name
= "filesystem",
138 .offset
= MTDPART_OFS_APPEND
,
139 .size
= MTDPART_SIZ_FULL
,
144 static struct davinci_aemif_timing da850_evm_nandflash_timing
= {
154 static struct davinci_nand_pdata da850_evm_nandflash_data
= {
155 .parts
= da850_evm_nandflash_partition
,
156 .nr_parts
= ARRAY_SIZE(da850_evm_nandflash_partition
),
157 .ecc_mode
= NAND_ECC_HW
,
159 .options
= NAND_USE_FLASH_BBT
,
160 .timing
= &da850_evm_nandflash_timing
,
163 static struct resource da850_evm_nandflash_resource
[] = {
165 .start
= DA8XX_AEMIF_CS3_BASE
,
166 .end
= DA8XX_AEMIF_CS3_BASE
+ SZ_512K
+ 2 * SZ_1K
- 1,
167 .flags
= IORESOURCE_MEM
,
170 .start
= DA8XX_AEMIF_CTL_BASE
,
171 .end
= DA8XX_AEMIF_CTL_BASE
+ SZ_32K
- 1,
172 .flags
= IORESOURCE_MEM
,
176 static struct platform_device da850_evm_nandflash_device
= {
177 .name
= "davinci_nand",
180 .platform_data
= &da850_evm_nandflash_data
,
182 .num_resources
= ARRAY_SIZE(da850_evm_nandflash_resource
),
183 .resource
= da850_evm_nandflash_resource
,
186 static struct platform_device
*da850_evm_devices
[] __initdata
= {
187 &da850_evm_nandflash_device
,
188 &da850_evm_norflash_device
,
191 #define DA8XX_AEMIF_CE2CFG_OFFSET 0x10
192 #define DA8XX_AEMIF_ASIZE_16BIT 0x1
194 static void __init
da850_evm_init_nor(void)
196 void __iomem
*aemif_addr
;
198 aemif_addr
= ioremap(DA8XX_AEMIF_CTL_BASE
, SZ_32K
);
200 /* Configure data bus width of CS2 to 16 bit */
201 writel(readl(aemif_addr
+ DA8XX_AEMIF_CE2CFG_OFFSET
) |
202 DA8XX_AEMIF_ASIZE_16BIT
,
203 aemif_addr
+ DA8XX_AEMIF_CE2CFG_OFFSET
);
208 static const short da850_evm_nand_pins
[] = {
209 DA850_EMA_D_0
, DA850_EMA_D_1
, DA850_EMA_D_2
, DA850_EMA_D_3
,
210 DA850_EMA_D_4
, DA850_EMA_D_5
, DA850_EMA_D_6
, DA850_EMA_D_7
,
211 DA850_EMA_A_1
, DA850_EMA_A_2
, DA850_NEMA_CS_3
, DA850_NEMA_CS_4
,
212 DA850_NEMA_WE
, DA850_NEMA_OE
,
216 static const short da850_evm_nor_pins
[] = {
217 DA850_EMA_BA_1
, DA850_EMA_CLK
, DA850_EMA_WAIT_1
, DA850_NEMA_CS_2
,
218 DA850_NEMA_WE
, DA850_NEMA_OE
, DA850_EMA_D_0
, DA850_EMA_D_1
,
219 DA850_EMA_D_2
, DA850_EMA_D_3
, DA850_EMA_D_4
, DA850_EMA_D_5
,
220 DA850_EMA_D_6
, DA850_EMA_D_7
, DA850_EMA_D_8
, DA850_EMA_D_9
,
221 DA850_EMA_D_10
, DA850_EMA_D_11
, DA850_EMA_D_12
, DA850_EMA_D_13
,
222 DA850_EMA_D_14
, DA850_EMA_D_15
, DA850_EMA_A_0
, DA850_EMA_A_1
,
223 DA850_EMA_A_2
, DA850_EMA_A_3
, DA850_EMA_A_4
, DA850_EMA_A_5
,
224 DA850_EMA_A_6
, DA850_EMA_A_7
, DA850_EMA_A_8
, DA850_EMA_A_9
,
225 DA850_EMA_A_10
, DA850_EMA_A_11
, DA850_EMA_A_12
, DA850_EMA_A_13
,
226 DA850_EMA_A_14
, DA850_EMA_A_15
, DA850_EMA_A_16
, DA850_EMA_A_17
,
227 DA850_EMA_A_18
, DA850_EMA_A_19
, DA850_EMA_A_20
, DA850_EMA_A_21
,
228 DA850_EMA_A_22
, DA850_EMA_A_23
,
232 static u32 ui_card_detected
;
234 #if defined(CONFIG_MMC_DAVINCI) || \
235 defined(CONFIG_MMC_DAVINCI_MODULE)
241 static inline void da850_evm_setup_nor_nand(void)
245 if (ui_card_detected
& !HAS_MMC
) {
246 ret
= davinci_cfg_reg_list(da850_evm_nand_pins
);
248 pr_warning("da850_evm_init: nand mux setup failed: "
251 ret
= davinci_cfg_reg_list(da850_evm_nor_pins
);
253 pr_warning("da850_evm_init: nor mux setup failed: %d\n",
256 da850_evm_init_nor();
258 platform_add_devices(da850_evm_devices
,
259 ARRAY_SIZE(da850_evm_devices
));
263 #ifdef CONFIG_DA850_UI_RMII
264 static inline void da850_evm_setup_emac_rmii(int rmii_sel
)
266 struct davinci_soc_info
*soc_info
= &davinci_soc_info
;
268 soc_info
->emac_pdata
->rmii_en
= 1;
269 gpio_set_value(rmii_sel
, 0);
272 static inline void da850_evm_setup_emac_rmii(int rmii_sel
) { }
275 static int da850_evm_ui_expander_setup(struct i2c_client
*client
, unsigned gpio
,
276 unsigned ngpio
, void *c
)
278 int sel_a
, sel_b
, sel_c
, ret
;
284 ret
= gpio_request(sel_a
, "sel_a");
286 pr_warning("Cannot open UI expander pin %d\n", sel_a
);
287 goto exp_setup_sela_fail
;
290 ret
= gpio_request(sel_b
, "sel_b");
292 pr_warning("Cannot open UI expander pin %d\n", sel_b
);
293 goto exp_setup_selb_fail
;
296 ret
= gpio_request(sel_c
, "sel_c");
298 pr_warning("Cannot open UI expander pin %d\n", sel_c
);
299 goto exp_setup_selc_fail
;
302 /* deselect all functionalities */
303 gpio_direction_output(sel_a
, 1);
304 gpio_direction_output(sel_b
, 1);
305 gpio_direction_output(sel_c
, 1);
307 ui_card_detected
= 1;
308 pr_info("DA850/OMAP-L138 EVM UI card detected\n");
310 da850_evm_setup_nor_nand();
312 da850_evm_setup_emac_rmii(sel_a
);
324 static int da850_evm_ui_expander_teardown(struct i2c_client
*client
,
325 unsigned gpio
, unsigned ngpio
, void *c
)
327 /* deselect all functionalities */
328 gpio_set_value(gpio
+ 5, 1);
329 gpio_set_value(gpio
+ 6, 1);
330 gpio_set_value(gpio
+ 7, 1);
339 static struct pca953x_platform_data da850_evm_ui_expander_info
= {
340 .gpio_base
= DAVINCI_N_GPIO
,
341 .setup
= da850_evm_ui_expander_setup
,
342 .teardown
= da850_evm_ui_expander_teardown
,
345 static struct i2c_board_info __initdata da850_evm_i2c_devices
[] = {
347 I2C_BOARD_INFO("tlv320aic3x", 0x18),
350 I2C_BOARD_INFO("tca6416", 0x20),
351 .platform_data
= &da850_evm_ui_expander_info
,
355 static struct davinci_i2c_platform_data da850_evm_i2c_0_pdata
= {
356 .bus_freq
= 100, /* kHz */
357 .bus_delay
= 0, /* usec */
360 static struct davinci_uart_config da850_evm_uart_config __initdata
= {
361 .enabled_uarts
= 0x7,
364 /* davinci da850 evm audio machine driver */
365 static u8 da850_iis_serializer_direction
[] = {
366 INACTIVE_MODE
, INACTIVE_MODE
, INACTIVE_MODE
, INACTIVE_MODE
,
367 INACTIVE_MODE
, INACTIVE_MODE
, INACTIVE_MODE
, INACTIVE_MODE
,
368 INACTIVE_MODE
, INACTIVE_MODE
, INACTIVE_MODE
, TX_MODE
,
369 RX_MODE
, INACTIVE_MODE
, INACTIVE_MODE
, INACTIVE_MODE
,
372 static struct snd_platform_data da850_evm_snd_data
= {
373 .tx_dma_offset
= 0x2000,
374 .rx_dma_offset
= 0x2000,
375 .op_mode
= DAVINCI_MCASP_IIS_MODE
,
376 .num_serializer
= ARRAY_SIZE(da850_iis_serializer_direction
),
378 .serial_dir
= da850_iis_serializer_direction
,
379 .asp_chan_q
= EVENTQ_1
,
380 .version
= MCASP_VERSION_2
,
385 static int da850_evm_mmc_get_ro(int index
)
387 return gpio_get_value(DA850_MMCSD_WP_PIN
);
390 static int da850_evm_mmc_get_cd(int index
)
392 return !gpio_get_value(DA850_MMCSD_CD_PIN
);
395 static struct davinci_mmc_config da850_mmc_config
= {
396 .get_ro
= da850_evm_mmc_get_ro
,
397 .get_cd
= da850_evm_mmc_get_cd
,
399 .max_freq
= 50000000,
400 .caps
= MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
,
401 .version
= MMC_CTLR_VERSION_2
,
404 static void da850_panel_power_ctrl(int val
)
407 gpio_set_value(DA850_LCD_BL_PIN
, val
);
410 gpio_set_value(DA850_LCD_PWR_PIN
, val
);
413 static int da850_lcd_hw_init(void)
417 status
= gpio_request(DA850_LCD_BL_PIN
, "lcd bl\n");
421 status
= gpio_request(DA850_LCD_PWR_PIN
, "lcd pwr\n");
423 gpio_free(DA850_LCD_BL_PIN
);
427 gpio_direction_output(DA850_LCD_BL_PIN
, 0);
428 gpio_direction_output(DA850_LCD_PWR_PIN
, 0);
430 /* Switch off panel power and backlight */
431 da850_panel_power_ctrl(0);
433 /* Switch on panel power and backlight */
434 da850_panel_power_ctrl(1);
439 /* TPS65070 voltage regulator support */
442 static struct regulator_consumer_supply tps65070_dcdc1_consumers
[] = {
444 .supply
= "usb0_vdda33",
447 .supply
= "usb1_vdda33",
452 static struct regulator_consumer_supply tps65070_dcdc2_consumers
[] = {
454 .supply
= "dvdd3318_a",
457 .supply
= "dvdd3318_b",
460 .supply
= "dvdd3318_c",
465 static struct regulator_consumer_supply tps65070_dcdc3_consumers
[] = {
472 static struct regulator_consumer_supply tps65070_ldo1_consumers
[] = {
474 .supply
= "sata_vddr",
477 .supply
= "usb0_vdda18",
480 .supply
= "usb1_vdda18",
483 .supply
= "ddr_dvdd18",
488 static struct regulator_consumer_supply tps65070_ldo2_consumers
[] = {
490 .supply
= "sata_vdd",
493 .supply
= "pll0_vdda",
496 .supply
= "pll1_vdda",
499 .supply
= "usbs_cvdd",
502 .supply
= "vddarnwa1",
506 /* We take advantage of the fact that both defdcdc{2,3} are tied high */
507 static struct tps6507x_reg_platform_data tps6507x_platform_data
= {
508 .defdcdc_default
= true,
511 static struct regulator_init_data tps65070_regulator_data
[] = {
517 .valid_ops_mask
= (REGULATOR_CHANGE_VOLTAGE
|
518 REGULATOR_CHANGE_STATUS
),
521 .num_consumer_supplies
= ARRAY_SIZE(tps65070_dcdc1_consumers
),
522 .consumer_supplies
= tps65070_dcdc1_consumers
,
530 .valid_ops_mask
= (REGULATOR_CHANGE_VOLTAGE
|
531 REGULATOR_CHANGE_STATUS
),
534 .num_consumer_supplies
= ARRAY_SIZE(tps65070_dcdc2_consumers
),
535 .consumer_supplies
= tps65070_dcdc2_consumers
,
536 .driver_data
= &tps6507x_platform_data
,
544 .valid_ops_mask
= (REGULATOR_CHANGE_VOLTAGE
|
545 REGULATOR_CHANGE_STATUS
),
548 .num_consumer_supplies
= ARRAY_SIZE(tps65070_dcdc3_consumers
),
549 .consumer_supplies
= tps65070_dcdc3_consumers
,
550 .driver_data
= &tps6507x_platform_data
,
558 .valid_ops_mask
= (REGULATOR_CHANGE_VOLTAGE
|
559 REGULATOR_CHANGE_STATUS
),
562 .num_consumer_supplies
= ARRAY_SIZE(tps65070_ldo1_consumers
),
563 .consumer_supplies
= tps65070_ldo1_consumers
,
571 .valid_ops_mask
= (REGULATOR_CHANGE_VOLTAGE
|
572 REGULATOR_CHANGE_STATUS
),
575 .num_consumer_supplies
= ARRAY_SIZE(tps65070_ldo2_consumers
),
576 .consumer_supplies
= tps65070_ldo2_consumers
,
580 static struct touchscreen_init_data tps6507x_touchscreen_data
= {
581 .poll_period
= 30, /* ms between touch samples */
582 .min_pressure
= 0x30, /* minimum pressure to trigger touch */
583 .vref
= 0, /* turn off vref when not using A/D */
584 .vendor
= 0, /* /sys/class/input/input?/id/vendor */
585 .product
= 65070, /* /sys/class/input/input?/id/product */
586 .version
= 0x100, /* /sys/class/input/input?/id/version */
589 static struct tps6507x_board tps_board
= {
590 .tps6507x_pmic_init_data
= &tps65070_regulator_data
[0],
591 .tps6507x_ts_init_data
= &tps6507x_touchscreen_data
,
594 static struct i2c_board_info __initdata da850evm_tps65070_info
[] = {
596 I2C_BOARD_INFO("tps6507x", 0x48),
597 .platform_data
= &tps_board
,
601 static int __init
pmic_tps65070_init(void)
603 return i2c_register_board_info(1, da850evm_tps65070_info
,
604 ARRAY_SIZE(da850evm_tps65070_info
));
607 static const short da850_evm_lcdc_pins
[] = {
608 DA850_GPIO2_8
, DA850_GPIO2_15
,
612 static const short da850_evm_mii_pins
[] = {
613 DA850_MII_TXEN
, DA850_MII_TXCLK
, DA850_MII_COL
, DA850_MII_TXD_3
,
614 DA850_MII_TXD_2
, DA850_MII_TXD_1
, DA850_MII_TXD_0
, DA850_MII_RXER
,
615 DA850_MII_CRS
, DA850_MII_RXCLK
, DA850_MII_RXDV
, DA850_MII_RXD_3
,
616 DA850_MII_RXD_2
, DA850_MII_RXD_1
, DA850_MII_RXD_0
, DA850_MDIO_CLK
,
621 static const short da850_evm_rmii_pins
[] = {
622 DA850_RMII_TXD_0
, DA850_RMII_TXD_1
, DA850_RMII_TXEN
,
623 DA850_RMII_CRS_DV
, DA850_RMII_RXD_0
, DA850_RMII_RXD_1
,
624 DA850_RMII_RXER
, DA850_RMII_MHZ_50_CLK
, DA850_MDIO_CLK
,
629 static int __init
da850_evm_config_emac(void)
631 void __iomem
*cfg_chip3_base
;
634 struct davinci_soc_info
*soc_info
= &davinci_soc_info
;
635 u8 rmii_en
= soc_info
->emac_pdata
->rmii_en
;
637 if (!machine_is_davinci_da850_evm())
640 cfg_chip3_base
= DA8XX_SYSCFG0_VIRT(DA8XX_CFGCHIP3_REG
);
642 val
= __raw_readl(cfg_chip3_base
);
646 ret
= davinci_cfg_reg_list(da850_evm_rmii_pins
);
647 pr_info("EMAC: RMII PHY configured, MII PHY will not be"
651 ret
= davinci_cfg_reg_list(da850_evm_mii_pins
);
652 pr_info("EMAC: MII PHY configured, RMII PHY will not be"
657 pr_warning("da850_evm_init: cpgmac/rmii mux setup failed: %d\n",
660 /* configure the CFGCHIP3 register for RMII or MII */
661 __raw_writel(val
, cfg_chip3_base
);
663 ret
= davinci_cfg_reg(DA850_GPIO2_6
);
665 pr_warning("da850_evm_init:GPIO(2,6) mux setup "
668 ret
= gpio_request(DA850_MII_MDIO_CLKEN_PIN
, "mdio_clk_en");
670 pr_warning("Cannot open GPIO %d\n",
671 DA850_MII_MDIO_CLKEN_PIN
);
675 /* Enable/Disable MII MDIO clock */
676 gpio_direction_output(DA850_MII_MDIO_CLKEN_PIN
, rmii_en
);
678 soc_info
->emac_pdata
->phy_id
= DA850_EVM_PHY_ID
;
680 ret
= da8xx_register_emac();
682 pr_warning("da850_evm_init: emac registration failed: %d\n",
687 device_initcall(da850_evm_config_emac
);
690 * The following EDMA channels/slots are not being used by drivers (for
691 * example: Timer, GPIO, UART events etc) on da850/omap-l138 EVM, hence
692 * they are being reserved for codecs on the DSP side.
694 static const s16 da850_dma0_rsv_chans
[][2] = {
695 /* (offset, number) */
702 static const s16 da850_dma0_rsv_slots
[][2] = {
703 /* (offset, number) */
710 static const s16 da850_dma1_rsv_chans
[][2] = {
711 /* (offset, number) */
717 static const s16 da850_dma1_rsv_slots
[][2] = {
718 /* (offset, number) */
724 static struct edma_rsv_info da850_edma_cc0_rsv
= {
725 .rsv_chans
= da850_dma0_rsv_chans
,
726 .rsv_slots
= da850_dma0_rsv_slots
,
729 static struct edma_rsv_info da850_edma_cc1_rsv
= {
730 .rsv_chans
= da850_dma1_rsv_chans
,
731 .rsv_slots
= da850_dma1_rsv_slots
,
734 static struct edma_rsv_info
*da850_edma_rsv
[2] = {
739 static __init
void da850_evm_init(void)
743 ret
= pmic_tps65070_init();
745 pr_warning("da850_evm_init: TPS65070 PMIC init failed: %d\n",
748 ret
= da850_register_edma(da850_edma_rsv
);
750 pr_warning("da850_evm_init: edma registration failed: %d\n",
753 ret
= davinci_cfg_reg_list(da850_i2c0_pins
);
755 pr_warning("da850_evm_init: i2c0 mux setup failed: %d\n",
758 ret
= da8xx_register_i2c(0, &da850_evm_i2c_0_pdata
);
760 pr_warning("da850_evm_init: i2c0 registration failed: %d\n",
764 ret
= da8xx_register_watchdog();
766 pr_warning("da830_evm_init: watchdog registration failed: %d\n",
770 ret
= davinci_cfg_reg_list(da850_mmcsd0_pins
);
772 pr_warning("da850_evm_init: mmcsd0 mux setup failed:"
775 ret
= gpio_request(DA850_MMCSD_CD_PIN
, "MMC CD\n");
777 pr_warning("da850_evm_init: can not open GPIO %d\n",
779 gpio_direction_input(DA850_MMCSD_CD_PIN
);
781 ret
= gpio_request(DA850_MMCSD_WP_PIN
, "MMC WP\n");
783 pr_warning("da850_evm_init: can not open GPIO %d\n",
785 gpio_direction_input(DA850_MMCSD_WP_PIN
);
787 ret
= da8xx_register_mmcsd0(&da850_mmc_config
);
789 pr_warning("da850_evm_init: mmcsd0 registration failed:"
793 davinci_serial_init(&da850_evm_uart_config
);
795 i2c_register_board_info(1, da850_evm_i2c_devices
,
796 ARRAY_SIZE(da850_evm_i2c_devices
));
799 * shut down uart 0 and 1; they are not used on the board and
800 * accessing them causes endless "too much work in irq53" messages
803 __raw_writel(0, IO_ADDRESS(DA8XX_UART1_BASE
) + 0x30);
804 __raw_writel(0, IO_ADDRESS(DA8XX_UART0_BASE
) + 0x30);
806 ret
= davinci_cfg_reg_list(da850_mcasp_pins
);
808 pr_warning("da850_evm_init: mcasp mux setup failed: %d\n",
811 da8xx_register_mcasp(0, &da850_evm_snd_data
);
813 ret
= davinci_cfg_reg_list(da850_lcdcntl_pins
);
815 pr_warning("da850_evm_init: lcdcntl mux setup failed: %d\n",
818 /* Handle board specific muxing for LCD here */
819 ret
= davinci_cfg_reg_list(da850_evm_lcdc_pins
);
821 pr_warning("da850_evm_init: evm specific lcd mux setup "
822 "failed: %d\n", ret
);
824 ret
= da850_lcd_hw_init();
826 pr_warning("da850_evm_init: lcd initialization failed: %d\n",
829 sharp_lk043t1dg01_pdata
.panel_power_ctrl
= da850_panel_power_ctrl
,
830 ret
= da8xx_register_lcdc(&sharp_lk043t1dg01_pdata
);
832 pr_warning("da850_evm_init: lcdc registration failed: %d\n",
835 ret
= da8xx_register_rtc();
837 pr_warning("da850_evm_init: rtc setup failed: %d\n", ret
);
839 ret
= da850_register_cpufreq("pll0_sysclk3");
841 pr_warning("da850_evm_init: cpufreq registration failed: %d\n",
844 ret
= da8xx_register_cpuidle();
846 pr_warning("da850_evm_init: cpuidle registration failed: %d\n",
849 ret
= da850_register_pm(&da850_pm_device
);
851 pr_warning("da850_evm_init: suspend registration failed: %d\n",
855 #ifdef CONFIG_SERIAL_8250_CONSOLE
856 static int __init
da850_evm_console_init(void)
858 if (!machine_is_davinci_da850_evm())
861 return add_preferred_console("ttyS", 2, "115200");
863 console_initcall(da850_evm_console_init
);
866 static void __init
da850_evm_map_io(void)
871 MACHINE_START(DAVINCI_DA850_EVM
, "DaVinci DA850/OMAP-L138/AM18x EVM")
872 .boot_params
= (DA8XX_DDR_BASE
+ 0x100),
873 .map_io
= da850_evm_map_io
,
874 .init_irq
= cp_intc_init
,
875 .timer
= &davinci_timer
,
876 .init_machine
= da850_evm_init
,