Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-omap2/board-am3517evm.c |
| 3 | * |
| 4 | * Copyright (C) 2009 Texas Instruments Incorporated |
| 5 | * Author: Ranjith Lohithakshan <ranjithl@ti.com> |
| 6 | * |
| 7 | * Based on mach-omap2/board-omap3evm.c |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public License as published by the |
| 11 | * Free Software Foundation version 2. |
| 12 | * |
| 13 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, |
| 14 | * whether express or implied; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/init.h> |
Cyril Chemparathy | 433cdb0 | 2010-09-15 10:11:23 -0400 | [diff] [blame] | 21 | #include <linux/clk.h> |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
| 23 | #include <linux/gpio.h> |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 24 | #include <linux/i2c/pca953x.h> |
Sriram | 91733631 | 2010-05-10 14:29:16 -0700 | [diff] [blame] | 25 | #include <linux/can/platform/ti_hecc.h> |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 26 | #include <linux/davinci_emac.h> |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 27 | |
| 28 | #include <mach/hardware.h> |
Vaibhav Hiremath | e3d4d0a | 2010-02-15 10:03:35 -0800 | [diff] [blame] | 29 | #include <mach/am35xx.h> |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 30 | #include <asm/mach-types.h> |
| 31 | #include <asm/mach/arch.h> |
| 32 | #include <asm/mach/map.h> |
| 33 | |
| 34 | #include <plat/board.h> |
| 35 | #include <plat/common.h> |
| 36 | #include <plat/usb.h> |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 37 | #include <plat/display.h> |
Bryan Wu | 89747c9 | 2010-11-17 13:34:34 +0000 | [diff] [blame^] | 38 | #include <plat/panel-generic-dpi.h> |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 39 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 40 | #include "mux.h" |
Paul Walmsley | 4814ced | 2010-10-08 11:40:20 -0600 | [diff] [blame] | 41 | #include "control.h" |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 42 | |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 43 | #define AM35XX_EVM_MDIO_FREQUENCY (1000000) |
| 44 | |
Cyril Chemparathy | 433cdb0 | 2010-09-15 10:11:23 -0400 | [diff] [blame] | 45 | static struct mdio_platform_data am3517_evm_mdio_pdata = { |
| 46 | .bus_freq = AM35XX_EVM_MDIO_FREQUENCY, |
| 47 | }; |
| 48 | |
| 49 | static struct resource am3517_mdio_resources[] = { |
| 50 | { |
| 51 | .start = AM35XX_IPSS_EMAC_BASE + AM35XX_EMAC_MDIO_OFFSET, |
| 52 | .end = AM35XX_IPSS_EMAC_BASE + AM35XX_EMAC_MDIO_OFFSET + |
| 53 | SZ_4K - 1, |
| 54 | .flags = IORESOURCE_MEM, |
| 55 | }, |
| 56 | }; |
| 57 | |
| 58 | static struct platform_device am3517_mdio_device = { |
| 59 | .name = "davinci_mdio", |
| 60 | .id = 0, |
| 61 | .num_resources = ARRAY_SIZE(am3517_mdio_resources), |
| 62 | .resource = am3517_mdio_resources, |
| 63 | .dev.platform_data = &am3517_evm_mdio_pdata, |
| 64 | }; |
| 65 | |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 66 | static struct emac_platform_data am3517_evm_emac_pdata = { |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 67 | .rmii_en = 1, |
| 68 | }; |
| 69 | |
| 70 | static struct resource am3517_emac_resources[] = { |
| 71 | { |
| 72 | .start = AM35XX_IPSS_EMAC_BASE, |
Cyril Chemparathy | 433cdb0 | 2010-09-15 10:11:23 -0400 | [diff] [blame] | 73 | .end = AM35XX_IPSS_EMAC_BASE + 0x2FFFF, |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 74 | .flags = IORESOURCE_MEM, |
| 75 | }, |
| 76 | { |
| 77 | .start = INT_35XX_EMAC_C0_RXTHRESH_IRQ, |
| 78 | .end = INT_35XX_EMAC_C0_RXTHRESH_IRQ, |
| 79 | .flags = IORESOURCE_IRQ, |
| 80 | }, |
| 81 | { |
| 82 | .start = INT_35XX_EMAC_C0_RX_PULSE_IRQ, |
| 83 | .end = INT_35XX_EMAC_C0_RX_PULSE_IRQ, |
| 84 | .flags = IORESOURCE_IRQ, |
| 85 | }, |
| 86 | { |
| 87 | .start = INT_35XX_EMAC_C0_TX_PULSE_IRQ, |
| 88 | .end = INT_35XX_EMAC_C0_TX_PULSE_IRQ, |
| 89 | .flags = IORESOURCE_IRQ, |
| 90 | }, |
| 91 | { |
| 92 | .start = INT_35XX_EMAC_C0_MISC_PULSE_IRQ, |
| 93 | .end = INT_35XX_EMAC_C0_MISC_PULSE_IRQ, |
| 94 | .flags = IORESOURCE_IRQ, |
| 95 | }, |
| 96 | }; |
| 97 | |
| 98 | static struct platform_device am3517_emac_device = { |
| 99 | .name = "davinci_emac", |
| 100 | .id = -1, |
| 101 | .num_resources = ARRAY_SIZE(am3517_emac_resources), |
| 102 | .resource = am3517_emac_resources, |
| 103 | }; |
| 104 | |
| 105 | static void am3517_enable_ethernet_int(void) |
| 106 | { |
| 107 | u32 regval; |
| 108 | |
| 109 | regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 110 | regval = (regval | AM35XX_CPGMAC_C0_RX_PULSE_CLR | |
| 111 | AM35XX_CPGMAC_C0_TX_PULSE_CLR | |
| 112 | AM35XX_CPGMAC_C0_MISC_PULSE_CLR | |
| 113 | AM35XX_CPGMAC_C0_RX_THRESH_CLR); |
| 114 | omap_ctrl_writel(regval, AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 115 | regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 116 | } |
| 117 | |
| 118 | static void am3517_disable_ethernet_int(void) |
| 119 | { |
| 120 | u32 regval; |
| 121 | |
| 122 | regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 123 | regval = (regval | AM35XX_CPGMAC_C0_RX_PULSE_CLR | |
| 124 | AM35XX_CPGMAC_C0_TX_PULSE_CLR); |
| 125 | omap_ctrl_writel(regval, AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 126 | regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 127 | } |
| 128 | |
Manjunath Kondaiah G | 04aeae7 | 2010-10-08 09:58:35 -0700 | [diff] [blame] | 129 | static void am3517_evm_ethernet_init(struct emac_platform_data *pdata) |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 130 | { |
| 131 | unsigned int regval; |
| 132 | |
| 133 | pdata->ctrl_reg_offset = AM35XX_EMAC_CNTRL_OFFSET; |
| 134 | pdata->ctrl_mod_reg_offset = AM35XX_EMAC_CNTRL_MOD_OFFSET; |
| 135 | pdata->ctrl_ram_offset = AM35XX_EMAC_CNTRL_RAM_OFFSET; |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 136 | pdata->ctrl_ram_size = AM35XX_EMAC_CNTRL_RAM_SIZE; |
| 137 | pdata->version = EMAC_VERSION_2; |
| 138 | pdata->hw_ram_addr = AM35XX_EMAC_HW_RAM_ADDR; |
| 139 | pdata->interrupt_enable = am3517_enable_ethernet_int; |
| 140 | pdata->interrupt_disable = am3517_disable_ethernet_int; |
| 141 | am3517_emac_device.dev.platform_data = pdata; |
| 142 | platform_device_register(&am3517_emac_device); |
Cyril Chemparathy | 433cdb0 | 2010-09-15 10:11:23 -0400 | [diff] [blame] | 143 | platform_device_register(&am3517_mdio_device); |
| 144 | clk_add_alias(NULL, dev_name(&am3517_mdio_device.dev), |
| 145 | NULL, &am3517_emac_device.dev); |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 146 | |
| 147 | regval = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); |
| 148 | regval = regval & (~(AM35XX_CPGMACSS_SW_RST)); |
| 149 | omap_ctrl_writel(regval, AM35XX_CONTROL_IP_SW_RESET); |
| 150 | regval = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); |
| 151 | |
| 152 | return ; |
| 153 | } |
| 154 | |
| 155 | |
| 156 | |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 157 | #define LCD_PANEL_PWR 176 |
| 158 | #define LCD_PANEL_BKLIGHT_PWR 182 |
| 159 | #define LCD_PANEL_PWM 181 |
| 160 | |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 161 | static struct i2c_board_info __initdata am3517evm_i2c1_boardinfo[] = { |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 162 | { |
| 163 | I2C_BOARD_INFO("s35390a", 0x30), |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 164 | }, |
| 165 | }; |
| 166 | |
| 167 | /* |
| 168 | * RTC - S35390A |
| 169 | */ |
| 170 | #define GPIO_RTCS35390A_IRQ 55 |
| 171 | |
| 172 | static void __init am3517_evm_rtc_init(void) |
| 173 | { |
| 174 | int r; |
| 175 | |
| 176 | omap_mux_init_gpio(GPIO_RTCS35390A_IRQ, OMAP_PIN_INPUT_PULLUP); |
| 177 | r = gpio_request(GPIO_RTCS35390A_IRQ, "rtcs35390a-irq"); |
| 178 | if (r < 0) { |
| 179 | printk(KERN_WARNING "failed to request GPIO#%d\n", |
| 180 | GPIO_RTCS35390A_IRQ); |
| 181 | return; |
| 182 | } |
| 183 | r = gpio_direction_input(GPIO_RTCS35390A_IRQ); |
| 184 | if (r < 0) { |
| 185 | printk(KERN_WARNING "GPIO#%d cannot be configured as input\n", |
| 186 | GPIO_RTCS35390A_IRQ); |
| 187 | gpio_free(GPIO_RTCS35390A_IRQ); |
| 188 | return; |
| 189 | } |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 190 | am3517evm_i2c1_boardinfo[0].irq = gpio_to_irq(GPIO_RTCS35390A_IRQ); |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 193 | /* |
| 194 | * I2C GPIO Expander - TCA6416 |
| 195 | */ |
| 196 | |
| 197 | /* Mounted on Base-Board */ |
| 198 | static struct pca953x_platform_data am3517evm_gpio_expander_info_0 = { |
| 199 | .gpio_base = OMAP_MAX_GPIO_LINES, |
| 200 | }; |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 201 | static struct i2c_board_info __initdata am3517evm_i2c2_boardinfo[] = { |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 202 | { |
| 203 | I2C_BOARD_INFO("tca6416", 0x21), |
| 204 | .platform_data = &am3517evm_gpio_expander_info_0, |
| 205 | }, |
| 206 | }; |
| 207 | |
| 208 | /* Mounted on UI Card */ |
| 209 | static struct pca953x_platform_data am3517evm_ui_gpio_expander_info_1 = { |
| 210 | .gpio_base = OMAP_MAX_GPIO_LINES + 16, |
| 211 | }; |
| 212 | static struct pca953x_platform_data am3517evm_ui_gpio_expander_info_2 = { |
| 213 | .gpio_base = OMAP_MAX_GPIO_LINES + 32, |
| 214 | }; |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 215 | static struct i2c_board_info __initdata am3517evm_i2c3_boardinfo[] = { |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 216 | { |
| 217 | I2C_BOARD_INFO("tca6416", 0x20), |
| 218 | .platform_data = &am3517evm_ui_gpio_expander_info_1, |
| 219 | }, |
| 220 | { |
| 221 | I2C_BOARD_INFO("tca6416", 0x21), |
| 222 | .platform_data = &am3517evm_ui_gpio_expander_info_2, |
| 223 | }, |
| 224 | }; |
| 225 | |
Vaibhav Hiremath | 1f738dc | 2010-02-17 14:09:28 -0800 | [diff] [blame] | 226 | static int __init am3517_evm_i2c_init(void) |
| 227 | { |
| 228 | omap_register_i2c_bus(1, 400, NULL, 0); |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 229 | omap_register_i2c_bus(2, 400, am3517evm_i2c2_boardinfo, |
| 230 | ARRAY_SIZE(am3517evm_i2c2_boardinfo)); |
| 231 | omap_register_i2c_bus(3, 400, am3517evm_i2c3_boardinfo, |
| 232 | ARRAY_SIZE(am3517evm_i2c3_boardinfo)); |
Vaibhav Hiremath | 1f738dc | 2010-02-17 14:09:28 -0800 | [diff] [blame] | 233 | |
| 234 | return 0; |
| 235 | } |
| 236 | |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 237 | static int lcd_enabled; |
| 238 | static int dvi_enabled; |
| 239 | |
Ajay Kumar Gupta | de99771 | 2010-05-10 14:29:19 -0700 | [diff] [blame] | 240 | #if defined(CONFIG_PANEL_SHARP_LQ043T1DG01) || \ |
| 241 | defined(CONFIG_PANEL_SHARP_LQ043T1DG01_MODULE) |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 242 | static void __init am3517_evm_display_init(void) |
| 243 | { |
| 244 | int r; |
| 245 | |
| 246 | omap_mux_init_gpio(LCD_PANEL_PWR, OMAP_PIN_INPUT_PULLUP); |
| 247 | omap_mux_init_gpio(LCD_PANEL_BKLIGHT_PWR, OMAP_PIN_INPUT_PULLDOWN); |
| 248 | omap_mux_init_gpio(LCD_PANEL_PWM, OMAP_PIN_INPUT_PULLDOWN); |
| 249 | /* |
| 250 | * Enable GPIO 182 = LCD Backlight Power |
| 251 | */ |
| 252 | r = gpio_request(LCD_PANEL_BKLIGHT_PWR, "lcd_backlight_pwr"); |
| 253 | if (r) { |
| 254 | printk(KERN_ERR "failed to get lcd_backlight_pwr\n"); |
| 255 | return; |
| 256 | } |
| 257 | gpio_direction_output(LCD_PANEL_BKLIGHT_PWR, 1); |
| 258 | /* |
| 259 | * Enable GPIO 181 = LCD Panel PWM |
| 260 | */ |
| 261 | r = gpio_request(LCD_PANEL_PWM, "lcd_pwm"); |
| 262 | if (r) { |
| 263 | printk(KERN_ERR "failed to get lcd_pwm\n"); |
| 264 | goto err_1; |
| 265 | } |
| 266 | gpio_direction_output(LCD_PANEL_PWM, 1); |
| 267 | /* |
| 268 | * Enable GPIO 176 = LCD Panel Power enable pin |
| 269 | */ |
| 270 | r = gpio_request(LCD_PANEL_PWR, "lcd_panel_pwr"); |
| 271 | if (r) { |
| 272 | printk(KERN_ERR "failed to get lcd_panel_pwr\n"); |
| 273 | goto err_2; |
| 274 | } |
| 275 | gpio_direction_output(LCD_PANEL_PWR, 1); |
| 276 | |
| 277 | printk(KERN_INFO "Display initialized successfully\n"); |
| 278 | return; |
| 279 | |
| 280 | err_2: |
| 281 | gpio_free(LCD_PANEL_PWM); |
| 282 | err_1: |
| 283 | gpio_free(LCD_PANEL_BKLIGHT_PWR); |
| 284 | } |
Ajay Kumar Gupta | de99771 | 2010-05-10 14:29:19 -0700 | [diff] [blame] | 285 | #else |
| 286 | static void __init am3517_evm_display_init(void) {} |
| 287 | #endif |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 288 | |
| 289 | static int am3517_evm_panel_enable_lcd(struct omap_dss_device *dssdev) |
| 290 | { |
| 291 | if (dvi_enabled) { |
| 292 | printk(KERN_ERR "cannot enable LCD, DVI is enabled\n"); |
| 293 | return -EINVAL; |
| 294 | } |
| 295 | gpio_set_value(LCD_PANEL_PWR, 1); |
| 296 | lcd_enabled = 1; |
| 297 | |
| 298 | return 0; |
| 299 | } |
| 300 | |
| 301 | static void am3517_evm_panel_disable_lcd(struct omap_dss_device *dssdev) |
| 302 | { |
| 303 | gpio_set_value(LCD_PANEL_PWR, 0); |
| 304 | lcd_enabled = 0; |
| 305 | } |
| 306 | |
Bryan Wu | 89747c9 | 2010-11-17 13:34:34 +0000 | [diff] [blame^] | 307 | static struct panel_generic_dpi_data lcd_panel = { |
| 308 | .name = "sharp_lq", |
| 309 | .platform_enable = am3517_evm_panel_enable_lcd, |
| 310 | .platform_disable = am3517_evm_panel_disable_lcd, |
| 311 | }; |
| 312 | |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 313 | static struct omap_dss_device am3517_evm_lcd_device = { |
| 314 | .type = OMAP_DISPLAY_TYPE_DPI, |
| 315 | .name = "lcd", |
Bryan Wu | 89747c9 | 2010-11-17 13:34:34 +0000 | [diff] [blame^] | 316 | .driver_name = "generic_dpi_panel", |
| 317 | .data = &lcd_panel, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 318 | .phy.dpi.data_lines = 16, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 319 | }; |
| 320 | |
| 321 | static int am3517_evm_panel_enable_tv(struct omap_dss_device *dssdev) |
| 322 | { |
| 323 | return 0; |
| 324 | } |
| 325 | |
| 326 | static void am3517_evm_panel_disable_tv(struct omap_dss_device *dssdev) |
| 327 | { |
| 328 | } |
| 329 | |
| 330 | static struct omap_dss_device am3517_evm_tv_device = { |
| 331 | .type = OMAP_DISPLAY_TYPE_VENC, |
| 332 | .name = "tv", |
| 333 | .driver_name = "venc", |
| 334 | .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO, |
| 335 | .platform_enable = am3517_evm_panel_enable_tv, |
| 336 | .platform_disable = am3517_evm_panel_disable_tv, |
| 337 | }; |
| 338 | |
| 339 | static int am3517_evm_panel_enable_dvi(struct omap_dss_device *dssdev) |
| 340 | { |
| 341 | if (lcd_enabled) { |
| 342 | printk(KERN_ERR "cannot enable DVI, LCD is enabled\n"); |
| 343 | return -EINVAL; |
| 344 | } |
| 345 | dvi_enabled = 1; |
| 346 | |
| 347 | return 0; |
| 348 | } |
| 349 | |
| 350 | static void am3517_evm_panel_disable_dvi(struct omap_dss_device *dssdev) |
| 351 | { |
| 352 | dvi_enabled = 0; |
| 353 | } |
| 354 | |
Bryan Wu | 89747c9 | 2010-11-17 13:34:34 +0000 | [diff] [blame^] | 355 | static struct panel_generic_dpi_data dvi_panel = { |
| 356 | .name = "generic", |
| 357 | .platform_enable = am3517_evm_panel_enable_dvi, |
| 358 | .platform_disable = am3517_evm_panel_disable_dvi, |
| 359 | }; |
| 360 | |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 361 | static struct omap_dss_device am3517_evm_dvi_device = { |
| 362 | .type = OMAP_DISPLAY_TYPE_DPI, |
| 363 | .name = "dvi", |
Bryan Wu | 89747c9 | 2010-11-17 13:34:34 +0000 | [diff] [blame^] | 364 | .driver_name = "generic_dpi_panel", |
| 365 | .data = &dvi_panel, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 366 | .phy.dpi.data_lines = 24, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 367 | }; |
| 368 | |
| 369 | static struct omap_dss_device *am3517_evm_dss_devices[] = { |
| 370 | &am3517_evm_lcd_device, |
| 371 | &am3517_evm_tv_device, |
| 372 | &am3517_evm_dvi_device, |
| 373 | }; |
| 374 | |
| 375 | static struct omap_dss_board_info am3517_evm_dss_data = { |
| 376 | .num_devices = ARRAY_SIZE(am3517_evm_dss_devices), |
| 377 | .devices = am3517_evm_dss_devices, |
| 378 | .default_device = &am3517_evm_lcd_device, |
| 379 | }; |
| 380 | |
Manjunath Kondaiah G | 3881573 | 2010-10-08 09:56:37 -0700 | [diff] [blame] | 381 | static struct platform_device am3517_evm_dss_device = { |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 382 | .name = "omapdss", |
| 383 | .id = -1, |
| 384 | .dev = { |
| 385 | .platform_data = &am3517_evm_dss_data, |
| 386 | }, |
| 387 | }; |
| 388 | |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 389 | /* |
| 390 | * Board initialization |
| 391 | */ |
| 392 | static struct omap_board_config_kernel am3517_evm_config[] __initdata = { |
| 393 | }; |
| 394 | |
| 395 | static struct platform_device *am3517_evm_devices[] __initdata = { |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 396 | &am3517_evm_dss_device, |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 397 | }; |
| 398 | |
| 399 | static void __init am3517_evm_init_irq(void) |
| 400 | { |
| 401 | omap_board_config = am3517_evm_config; |
| 402 | omap_board_config_size = ARRAY_SIZE(am3517_evm_config); |
Paul Walmsley | 4805734 | 2010-12-21 15:25:10 -0700 | [diff] [blame] | 403 | omap2_init_common_infrastructure(); |
| 404 | omap2_init_common_devices(NULL, NULL); |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 405 | omap_init_irq(); |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 406 | } |
| 407 | |
Ajay Kumar Gupta | 3a0d30b | 2010-10-19 10:08:11 +0300 | [diff] [blame] | 408 | static struct omap_musb_board_data musb_board_data = { |
| 409 | .interface_type = MUSB_INTERFACE_ULPI, |
| 410 | .mode = MUSB_OTG, |
| 411 | .power = 500, |
| 412 | }; |
| 413 | |
| 414 | static __init void am3517_evm_musb_init(void) |
| 415 | { |
| 416 | u32 devconf2; |
| 417 | |
| 418 | /* |
| 419 | * Set up USB clock/mode in the DEVCONF2 register. |
| 420 | */ |
| 421 | devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2); |
| 422 | |
| 423 | /* USB2.0 PHY reference clock is 13 MHz */ |
| 424 | devconf2 &= ~(CONF2_REFFREQ | CONF2_OTGMODE | CONF2_PHY_GPIOMODE); |
| 425 | devconf2 |= CONF2_REFFREQ_13MHZ | CONF2_SESENDEN | CONF2_VBDTCTEN |
| 426 | | CONF2_DATPOL; |
| 427 | |
| 428 | omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2); |
| 429 | |
| 430 | usb_musb_init(&musb_board_data); |
| 431 | } |
| 432 | |
Felipe Balbi | 6f69a18 | 2010-03-04 09:45:53 +0200 | [diff] [blame] | 433 | static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 434 | .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY, |
Ajay Kumar Gupta | de99771 | 2010-05-10 14:29:19 -0700 | [diff] [blame] | 435 | #if defined(CONFIG_PANEL_SHARP_LQ043T1DG01) || \ |
| 436 | defined(CONFIG_PANEL_SHARP_LQ043T1DG01_MODULE) |
| 437 | .port_mode[1] = EHCI_HCD_OMAP_MODE_UNKNOWN, |
| 438 | #else |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 439 | .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY, |
Ajay Kumar Gupta | de99771 | 2010-05-10 14:29:19 -0700 | [diff] [blame] | 440 | #endif |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 441 | .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, |
| 442 | |
| 443 | .phy_reset = true, |
| 444 | .reset_gpio_port[0] = 57, |
| 445 | .reset_gpio_port[1] = -EINVAL, |
| 446 | .reset_gpio_port[2] = -EINVAL |
| 447 | }; |
| 448 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 449 | #ifdef CONFIG_OMAP_MUX |
| 450 | static struct omap_board_mux board_mux[] __initdata = { |
Ajay Kumar Gupta | 3a0d30b | 2010-10-19 10:08:11 +0300 | [diff] [blame] | 451 | /* USB OTG DRVVBUS offset = 0x212 */ |
| 452 | OMAP3_MUX(SAD2D_MCAD23, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 453 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
| 454 | }; |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 455 | #endif |
| 456 | |
Sriram | 91733631 | 2010-05-10 14:29:16 -0700 | [diff] [blame] | 457 | |
| 458 | static struct resource am3517_hecc_resources[] = { |
| 459 | { |
| 460 | .start = AM35XX_IPSS_HECC_BASE, |
| 461 | .end = AM35XX_IPSS_HECC_BASE + 0x3FFF, |
| 462 | .flags = IORESOURCE_MEM, |
| 463 | }, |
| 464 | { |
| 465 | .start = INT_35XX_HECC0_IRQ, |
| 466 | .end = INT_35XX_HECC0_IRQ, |
| 467 | .flags = IORESOURCE_IRQ, |
| 468 | }, |
| 469 | }; |
| 470 | |
| 471 | static struct platform_device am3517_hecc_device = { |
| 472 | .name = "ti_hecc", |
| 473 | .id = -1, |
| 474 | .num_resources = ARRAY_SIZE(am3517_hecc_resources), |
| 475 | .resource = am3517_hecc_resources, |
| 476 | }; |
| 477 | |
| 478 | static struct ti_hecc_platform_data am3517_evm_hecc_pdata = { |
| 479 | .scc_hecc_offset = AM35XX_HECC_SCC_HECC_OFFSET, |
| 480 | .scc_ram_offset = AM35XX_HECC_SCC_RAM_OFFSET, |
| 481 | .hecc_ram_offset = AM35XX_HECC_RAM_OFFSET, |
| 482 | .mbx_offset = AM35XX_HECC_MBOX_OFFSET, |
| 483 | .int_line = AM35XX_HECC_INT_LINE, |
| 484 | .version = AM35XX_HECC_VERSION, |
| 485 | }; |
| 486 | |
| 487 | static void am3517_evm_hecc_init(struct ti_hecc_platform_data *pdata) |
| 488 | { |
| 489 | am3517_hecc_device.dev.platform_data = pdata; |
| 490 | platform_device_register(&am3517_hecc_device); |
| 491 | } |
| 492 | |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 493 | static void __init am3517_evm_init(void) |
| 494 | { |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 495 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
stanley.miao | 5241b6b | 2010-04-20 06:33:29 +0000 | [diff] [blame] | 496 | |
| 497 | am3517_evm_i2c_init(); |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 498 | platform_add_devices(am3517_evm_devices, |
| 499 | ARRAY_SIZE(am3517_evm_devices)); |
| 500 | |
| 501 | omap_serial_init(); |
Ajay Kumar Gupta | fec3eeb | 2010-02-22 10:21:12 +0000 | [diff] [blame] | 502 | |
| 503 | /* Configure GPIO for EHCI port */ |
| 504 | omap_mux_init_gpio(57, OMAP_PIN_OUTPUT); |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 505 | usb_ehci_init(&ehci_pdata); |
Sriram | 91733631 | 2010-05-10 14:29:16 -0700 | [diff] [blame] | 506 | am3517_evm_hecc_init(&am3517_evm_hecc_pdata); |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 507 | /* DSS */ |
| 508 | am3517_evm_display_init(); |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 509 | |
| 510 | /* RTC - S35390A */ |
| 511 | am3517_evm_rtc_init(); |
| 512 | |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 513 | i2c_register_board_info(1, am3517evm_i2c1_boardinfo, |
| 514 | ARRAY_SIZE(am3517evm_i2c1_boardinfo)); |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 515 | /*Ethernet*/ |
| 516 | am3517_evm_ethernet_init(&am3517_evm_emac_pdata); |
Ajay Kumar Gupta | 3a0d30b | 2010-10-19 10:08:11 +0300 | [diff] [blame] | 517 | |
| 518 | /* MUSB */ |
| 519 | am3517_evm_musb_init(); |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 520 | } |
| 521 | |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 522 | MACHINE_START(OMAP3517EVM, "OMAP3517/AM3517 EVM") |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 523 | .boot_params = 0x80000100, |
Mike Rapoport | 869fef4 | 2010-08-04 14:43:18 +0300 | [diff] [blame] | 524 | .map_io = omap3_map_io, |
Russell King | 71ee7da | 2010-05-23 10:18:16 +0100 | [diff] [blame] | 525 | .reserve = omap_reserve, |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 526 | .init_irq = am3517_evm_init_irq, |
| 527 | .init_machine = am3517_evm_init, |
| 528 | .timer = &omap_timer, |
| 529 | MACHINE_END |