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> |
Vivien Didelot | 5877457 | 2013-08-29 15:24:14 -0400 | [diff] [blame] | 24 | #include <linux/platform_data/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> |
Vaibhav Hiremath | dd6facf | 2011-12-09 12:27:55 -0800 | [diff] [blame] | 27 | #include <linux/mmc/host.h> |
Felipe Balbi | e8c4a7a | 2012-10-24 14:26:19 -0700 | [diff] [blame] | 28 | #include <linux/usb/musb.h> |
Tony Lindgren | 4b25408 | 2012-08-30 15:37:24 -0700 | [diff] [blame] | 29 | #include <linux/platform_data/gpio-omap.h> |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 30 | |
Tony Lindgren | 4f9ed54 | 2012-09-20 11:40:52 -0700 | [diff] [blame] | 31 | #include "am35xx.h" |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 32 | #include <asm/mach-types.h> |
| 33 | #include <asm/mach/arch.h> |
| 34 | #include <asm/mach/map.h> |
| 35 | |
Tony Lindgren | 4e65331 | 2011-11-10 22:45:17 +0100 | [diff] [blame] | 36 | #include "common.h" |
Tomi Valkeinen | a0b38cc | 2011-05-11 14:05:07 +0300 | [diff] [blame] | 37 | #include <video/omapdss.h> |
Archit Taneja | a0d8dde | 2013-02-12 16:46:46 +0530 | [diff] [blame] | 38 | #include <video/omap-panel-data.h> |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 39 | |
Ilya Yanok | a8195ba | 2012-03-05 11:08:36 -0800 | [diff] [blame] | 40 | #include "am35xx-emac.h" |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 41 | #include "mux.h" |
Paul Walmsley | 4814ced | 2010-10-08 11:40:20 -0600 | [diff] [blame] | 42 | #include "control.h" |
Vaibhav Hiremath | dd6facf | 2011-12-09 12:27:55 -0800 | [diff] [blame] | 43 | #include "hsmmc.h" |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 44 | |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 45 | #define LCD_PANEL_PWR 176 |
| 46 | #define LCD_PANEL_BKLIGHT_PWR 182 |
| 47 | #define LCD_PANEL_PWM 181 |
| 48 | |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 49 | static struct i2c_board_info __initdata am3517evm_i2c1_boardinfo[] = { |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 50 | { |
| 51 | I2C_BOARD_INFO("s35390a", 0x30), |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 52 | }, |
| 53 | }; |
| 54 | |
| 55 | /* |
| 56 | * RTC - S35390A |
| 57 | */ |
| 58 | #define GPIO_RTCS35390A_IRQ 55 |
| 59 | |
| 60 | static void __init am3517_evm_rtc_init(void) |
| 61 | { |
| 62 | int r; |
| 63 | |
| 64 | omap_mux_init_gpio(GPIO_RTCS35390A_IRQ, OMAP_PIN_INPUT_PULLUP); |
Igor Grinberg | bc593f5 | 2011-05-03 18:22:09 +0300 | [diff] [blame] | 65 | |
| 66 | r = gpio_request_one(GPIO_RTCS35390A_IRQ, GPIOF_IN, "rtcs35390a-irq"); |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 67 | if (r < 0) { |
| 68 | printk(KERN_WARNING "failed to request GPIO#%d\n", |
| 69 | GPIO_RTCS35390A_IRQ); |
| 70 | return; |
| 71 | } |
Igor Grinberg | bc593f5 | 2011-05-03 18:22:09 +0300 | [diff] [blame] | 72 | |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 73 | am3517evm_i2c1_boardinfo[0].irq = gpio_to_irq(GPIO_RTCS35390A_IRQ); |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 76 | /* |
| 77 | * I2C GPIO Expander - TCA6416 |
| 78 | */ |
| 79 | |
| 80 | /* Mounted on Base-Board */ |
| 81 | static struct pca953x_platform_data am3517evm_gpio_expander_info_0 = { |
| 82 | .gpio_base = OMAP_MAX_GPIO_LINES, |
| 83 | }; |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 84 | static struct i2c_board_info __initdata am3517evm_i2c2_boardinfo[] = { |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 85 | { |
Abhilash Vadakkepat Koyamangalath | 0640b43 | 2011-03-08 15:13:24 +0000 | [diff] [blame] | 86 | I2C_BOARD_INFO("tlv320aic23", 0x1A), |
| 87 | }, |
| 88 | { |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 89 | I2C_BOARD_INFO("tca6416", 0x21), |
| 90 | .platform_data = &am3517evm_gpio_expander_info_0, |
| 91 | }, |
| 92 | }; |
| 93 | |
| 94 | /* Mounted on UI Card */ |
| 95 | static struct pca953x_platform_data am3517evm_ui_gpio_expander_info_1 = { |
| 96 | .gpio_base = OMAP_MAX_GPIO_LINES + 16, |
| 97 | }; |
| 98 | static struct pca953x_platform_data am3517evm_ui_gpio_expander_info_2 = { |
| 99 | .gpio_base = OMAP_MAX_GPIO_LINES + 32, |
| 100 | }; |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 101 | static struct i2c_board_info __initdata am3517evm_i2c3_boardinfo[] = { |
Vaibhav Hiremath | 5d4292a | 2010-02-13 11:47:57 +0000 | [diff] [blame] | 102 | { |
| 103 | I2C_BOARD_INFO("tca6416", 0x20), |
| 104 | .platform_data = &am3517evm_ui_gpio_expander_info_1, |
| 105 | }, |
| 106 | { |
| 107 | I2C_BOARD_INFO("tca6416", 0x21), |
| 108 | .platform_data = &am3517evm_ui_gpio_expander_info_2, |
| 109 | }, |
| 110 | }; |
| 111 | |
Vaibhav Hiremath | 1f738dc | 2010-02-17 14:09:28 -0800 | [diff] [blame] | 112 | static int __init am3517_evm_i2c_init(void) |
| 113 | { |
| 114 | omap_register_i2c_bus(1, 400, NULL, 0); |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 115 | omap_register_i2c_bus(2, 400, am3517evm_i2c2_boardinfo, |
| 116 | ARRAY_SIZE(am3517evm_i2c2_boardinfo)); |
| 117 | omap_register_i2c_bus(3, 400, am3517evm_i2c3_boardinfo, |
| 118 | ARRAY_SIZE(am3517evm_i2c3_boardinfo)); |
Vaibhav Hiremath | 1f738dc | 2010-02-17 14:09:28 -0800 | [diff] [blame] | 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 123 | static const struct display_timing am3517_evm_lcd_videomode = { |
| 124 | .pixelclock = { 0, 9000000, 0 }, |
| 125 | |
| 126 | .hactive = { 0, 480, 0 }, |
| 127 | .hfront_porch = { 0, 3, 0 }, |
| 128 | .hback_porch = { 0, 2, 0 }, |
| 129 | .hsync_len = { 0, 42, 0 }, |
| 130 | |
| 131 | .vactive = { 0, 272, 0 }, |
| 132 | .vfront_porch = { 0, 3, 0 }, |
| 133 | .vback_porch = { 0, 2, 0 }, |
| 134 | .vsync_len = { 0, 11, 0 }, |
| 135 | |
| 136 | .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW | |
| 137 | DISPLAY_FLAGS_DE_LOW | DISPLAY_FLAGS_PIXDATA_POSEDGE, |
Bryan Wu | 89747c9 | 2010-11-17 13:34:34 +0000 | [diff] [blame] | 138 | }; |
| 139 | |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 140 | static struct panel_dpi_platform_data am3517_evm_lcd_pdata = { |
| 141 | .name = "lcd", |
| 142 | .source = "dpi.0", |
| 143 | |
| 144 | .data_lines = 16, |
| 145 | |
| 146 | .display_timing = &am3517_evm_lcd_videomode, |
| 147 | |
| 148 | .enable_gpio = LCD_PANEL_PWR, |
| 149 | .backlight_gpio = LCD_PANEL_BKLIGHT_PWR, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 150 | }; |
| 151 | |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 152 | static struct platform_device am3517_evm_lcd_device = { |
| 153 | .name = "panel-dpi", |
| 154 | .id = 0, |
| 155 | .dev.platform_data = &am3517_evm_lcd_pdata, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 156 | }; |
| 157 | |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 158 | static struct connector_dvi_platform_data am3517_evm_dvi_connector_pdata = { |
| 159 | .name = "dvi", |
| 160 | .source = "tfp410.0", |
| 161 | .i2c_bus_num = -1, |
Bryan Wu | 89747c9 | 2010-11-17 13:34:34 +0000 | [diff] [blame] | 162 | }; |
| 163 | |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 164 | static struct platform_device am3517_evm_dvi_connector_device = { |
| 165 | .name = "connector-dvi", |
| 166 | .id = 0, |
| 167 | .dev.platform_data = &am3517_evm_dvi_connector_pdata, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 168 | }; |
| 169 | |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 170 | static struct encoder_tfp410_platform_data am3517_evm_tfp410_pdata = { |
| 171 | .name = "tfp410.0", |
| 172 | .source = "dpi.0", |
| 173 | .data_lines = 24, |
| 174 | .power_down_gpio = -1, |
| 175 | }; |
| 176 | |
| 177 | static struct platform_device am3517_evm_tfp410_device = { |
| 178 | .name = "tfp410", |
| 179 | .id = 0, |
| 180 | .dev.platform_data = &am3517_evm_tfp410_pdata, |
| 181 | }; |
| 182 | |
| 183 | static struct connector_atv_platform_data am3517_evm_tv_pdata = { |
| 184 | .name = "tv", |
| 185 | .source = "venc.0", |
| 186 | .connector_type = OMAP_DSS_VENC_TYPE_SVIDEO, |
| 187 | .invert_polarity = false, |
| 188 | }; |
| 189 | |
| 190 | static struct platform_device am3517_evm_tv_connector_device = { |
| 191 | .name = "connector-analog-tv", |
| 192 | .id = 0, |
| 193 | .dev.platform_data = &am3517_evm_tv_pdata, |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 194 | }; |
| 195 | |
| 196 | static struct omap_dss_board_info am3517_evm_dss_data = { |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 197 | .default_display_name = "lcd", |
Vaibhav Hiremath | c3d3332 | 2010-01-13 17:17:10 +0530 | [diff] [blame] | 198 | }; |
| 199 | |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 200 | static void __init am3517_evm_display_init(void) |
| 201 | { |
| 202 | gpio_request_one(LCD_PANEL_PWM, GPIOF_OUT_INIT_HIGH, "lcd panel pwm"); |
| 203 | |
| 204 | omap_display_init(&am3517_evm_dss_data); |
| 205 | |
| 206 | platform_device_register(&am3517_evm_tfp410_device); |
| 207 | platform_device_register(&am3517_evm_dvi_connector_device); |
| 208 | platform_device_register(&am3517_evm_lcd_device); |
| 209 | platform_device_register(&am3517_evm_tv_connector_device); |
| 210 | } |
| 211 | |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 212 | /* |
| 213 | * Board initialization |
| 214 | */ |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 215 | |
Ajay Kumar Gupta | 3a0d30b | 2010-10-19 10:08:11 +0300 | [diff] [blame] | 216 | static struct omap_musb_board_data musb_board_data = { |
| 217 | .interface_type = MUSB_INTERFACE_ULPI, |
| 218 | .mode = MUSB_OTG, |
| 219 | .power = 500, |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 220 | .set_phy_power = am35x_musb_phy_power, |
| 221 | .clear_irq = am35x_musb_clear_irq, |
Felipe Balbi | a6d2852 | 2011-05-02 12:45:05 +0300 | [diff] [blame] | 222 | .set_mode = am35x_set_mode, |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 223 | .reset = am35x_musb_reset, |
Ajay Kumar Gupta | 3a0d30b | 2010-10-19 10:08:11 +0300 | [diff] [blame] | 224 | }; |
| 225 | |
| 226 | static __init void am3517_evm_musb_init(void) |
| 227 | { |
| 228 | u32 devconf2; |
| 229 | |
| 230 | /* |
| 231 | * Set up USB clock/mode in the DEVCONF2 register. |
| 232 | */ |
| 233 | devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2); |
| 234 | |
| 235 | /* USB2.0 PHY reference clock is 13 MHz */ |
| 236 | devconf2 &= ~(CONF2_REFFREQ | CONF2_OTGMODE | CONF2_PHY_GPIOMODE); |
| 237 | devconf2 |= CONF2_REFFREQ_13MHZ | CONF2_SESENDEN | CONF2_VBDTCTEN |
| 238 | | CONF2_DATPOL; |
| 239 | |
| 240 | omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2); |
| 241 | |
| 242 | usb_musb_init(&musb_board_data); |
| 243 | } |
| 244 | |
Peter Ujfalusi | 6253bac | 2012-08-16 16:41:02 +0300 | [diff] [blame] | 245 | static __init void am3517_evm_mcbsp1_init(void) |
| 246 | { |
| 247 | u32 devconf0; |
| 248 | |
| 249 | /* McBSP1 CLKR/FSR signal to be connected to CLKX/FSX pin */ |
| 250 | devconf0 = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0); |
| 251 | devconf0 |= OMAP2_MCBSP1_CLKR_MASK | OMAP2_MCBSP1_FSR_MASK; |
| 252 | omap_ctrl_writel(devconf0, OMAP2_CONTROL_DEVCONF0); |
| 253 | } |
| 254 | |
Roger Quadros | 9413624 | 2013-03-20 17:44:47 +0200 | [diff] [blame] | 255 | static struct usbhs_phy_data phy_data[] __initdata = { |
| 256 | { |
| 257 | .port = 1, |
| 258 | .reset_gpio = 57, |
| 259 | .vcc_gpio = -EINVAL, |
| 260 | }, |
| 261 | }; |
| 262 | |
Roger Quadros | 4297315 | 2013-02-14 10:13:48 +0200 | [diff] [blame] | 263 | static struct usbhs_omap_platform_data usbhs_bdata __initdata = { |
Keshava Munegowda | 181b250 | 2011-03-01 20:08:16 +0530 | [diff] [blame] | 264 | .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY, |
Keshava Munegowda | 181b250 | 2011-03-01 20:08:16 +0530 | [diff] [blame] | 265 | .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY, |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 266 | }; |
| 267 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 268 | #ifdef CONFIG_OMAP_MUX |
| 269 | static struct omap_board_mux board_mux[] __initdata = { |
Ajay Kumar Gupta | 3a0d30b | 2010-10-19 10:08:11 +0300 | [diff] [blame] | 270 | /* USB OTG DRVVBUS offset = 0x212 */ |
| 271 | OMAP3_MUX(SAD2D_MCAD23, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 272 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
| 273 | }; |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 274 | #endif |
| 275 | |
Sriram | 91733631 | 2010-05-10 14:29:16 -0700 | [diff] [blame] | 276 | |
| 277 | static struct resource am3517_hecc_resources[] = { |
| 278 | { |
| 279 | .start = AM35XX_IPSS_HECC_BASE, |
| 280 | .end = AM35XX_IPSS_HECC_BASE + 0x3FFF, |
| 281 | .flags = IORESOURCE_MEM, |
| 282 | }, |
| 283 | { |
Tony Lindgren | 7d7e1eb | 2012-08-27 17:43:01 -0700 | [diff] [blame] | 284 | .start = 24 + OMAP_INTC_START, |
Sriram | 91733631 | 2010-05-10 14:29:16 -0700 | [diff] [blame] | 285 | .flags = IORESOURCE_IRQ, |
| 286 | }, |
| 287 | }; |
| 288 | |
| 289 | static struct platform_device am3517_hecc_device = { |
| 290 | .name = "ti_hecc", |
| 291 | .id = -1, |
| 292 | .num_resources = ARRAY_SIZE(am3517_hecc_resources), |
| 293 | .resource = am3517_hecc_resources, |
| 294 | }; |
| 295 | |
| 296 | static struct ti_hecc_platform_data am3517_evm_hecc_pdata = { |
| 297 | .scc_hecc_offset = AM35XX_HECC_SCC_HECC_OFFSET, |
| 298 | .scc_ram_offset = AM35XX_HECC_SCC_RAM_OFFSET, |
| 299 | .hecc_ram_offset = AM35XX_HECC_RAM_OFFSET, |
| 300 | .mbx_offset = AM35XX_HECC_MBOX_OFFSET, |
| 301 | .int_line = AM35XX_HECC_INT_LINE, |
| 302 | .version = AM35XX_HECC_VERSION, |
| 303 | }; |
| 304 | |
| 305 | static void am3517_evm_hecc_init(struct ti_hecc_platform_data *pdata) |
| 306 | { |
| 307 | am3517_hecc_device.dev.platform_data = pdata; |
| 308 | platform_device_register(&am3517_hecc_device); |
| 309 | } |
| 310 | |
Vaibhav Hiremath | dd6facf | 2011-12-09 12:27:55 -0800 | [diff] [blame] | 311 | static struct omap2_hsmmc_info mmc[] = { |
| 312 | { |
| 313 | .mmc = 1, |
| 314 | .caps = MMC_CAP_4_BIT_DATA, |
| 315 | .gpio_cd = 127, |
| 316 | .gpio_wp = 126, |
| 317 | }, |
| 318 | { |
| 319 | .mmc = 2, |
| 320 | .caps = MMC_CAP_4_BIT_DATA, |
| 321 | .gpio_cd = 128, |
| 322 | .gpio_wp = 129, |
| 323 | }, |
| 324 | {} /* Terminator */ |
| 325 | }; |
| 326 | |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 327 | static void __init am3517_evm_init(void) |
| 328 | { |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 329 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
stanley.miao | 5241b6b | 2010-04-20 06:33:29 +0000 | [diff] [blame] | 330 | |
| 331 | am3517_evm_i2c_init(); |
Tomi Valkeinen | 9dab02d | 2013-05-31 14:04:59 +0300 | [diff] [blame] | 332 | |
| 333 | am3517_evm_display_init(); |
| 334 | |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 335 | omap_serial_init(); |
Tony Lindgren | a4ca9db | 2011-08-22 23:57:23 -0700 | [diff] [blame] | 336 | omap_sdrc_init(NULL, NULL); |
Ajay Kumar Gupta | fec3eeb | 2010-02-22 10:21:12 +0000 | [diff] [blame] | 337 | |
| 338 | /* Configure GPIO for EHCI port */ |
| 339 | omap_mux_init_gpio(57, OMAP_PIN_OUTPUT); |
Roger Quadros | 9413624 | 2013-03-20 17:44:47 +0200 | [diff] [blame] | 340 | |
| 341 | usbhs_init_phys(phy_data, ARRAY_SIZE(phy_data)); |
Keshava Munegowda | 9e64bb1 | 2011-03-01 20:08:19 +0530 | [diff] [blame] | 342 | usbhs_init(&usbhs_bdata); |
Sriram | 91733631 | 2010-05-10 14:29:16 -0700 | [diff] [blame] | 343 | am3517_evm_hecc_init(&am3517_evm_hecc_pdata); |
Vaibhav Hiremath | f2afbbb | 2010-02-13 11:47:56 +0000 | [diff] [blame] | 344 | |
| 345 | /* RTC - S35390A */ |
| 346 | am3517_evm_rtc_init(); |
| 347 | |
stanley.miao | b91da66 | 2010-05-13 12:39:29 +0000 | [diff] [blame] | 348 | i2c_register_board_info(1, am3517evm_i2c1_boardinfo, |
| 349 | ARRAY_SIZE(am3517evm_i2c1_boardinfo)); |
Sriram | 56881d2 | 2010-05-10 14:29:17 -0700 | [diff] [blame] | 350 | /*Ethernet*/ |
Ilya Yanok | a8195ba | 2012-03-05 11:08:36 -0800 | [diff] [blame] | 351 | am35xx_emac_init(AM35XX_DEFAULT_MDIO_FREQUENCY, 1); |
Ajay Kumar Gupta | 3a0d30b | 2010-10-19 10:08:11 +0300 | [diff] [blame] | 352 | |
| 353 | /* MUSB */ |
| 354 | am3517_evm_musb_init(); |
Vaibhav Hiremath | dd6facf | 2011-12-09 12:27:55 -0800 | [diff] [blame] | 355 | |
Peter Ujfalusi | 6253bac | 2012-08-16 16:41:02 +0300 | [diff] [blame] | 356 | /* McBSP1 */ |
| 357 | am3517_evm_mcbsp1_init(); |
| 358 | |
Vaibhav Hiremath | dd6facf | 2011-12-09 12:27:55 -0800 | [diff] [blame] | 359 | /* MMC init function */ |
Tony Lindgren | 3b972bf | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 360 | omap_hsmmc_init(mmc); |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 361 | } |
| 362 | |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 363 | MACHINE_START(OMAP3517EVM, "OMAP3517/AM3517 EVM") |
Nicolas Pitre | 5e52b43 | 2011-07-05 22:38:15 -0400 | [diff] [blame] | 364 | .atag_offset = 0x100, |
Russell King | 71ee7da | 2010-05-23 10:18:16 +0100 | [diff] [blame] | 365 | .reserve = omap_reserve, |
Russell King - ARM Linux | 3dc3bad | 2011-02-14 15:40:20 -0800 | [diff] [blame] | 366 | .map_io = omap3_map_io, |
Tony Lindgren | 8f5b5a4 | 2011-08-22 23:57:24 -0700 | [diff] [blame] | 367 | .init_early = am35xx_init_early, |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 368 | .init_irq = omap3_init_irq, |
Marc Zyngier | 6b2f55d | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 369 | .handle_irq = omap3_intc_handle_irq, |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 370 | .init_machine = am3517_evm_init, |
Shawn Guo | bbd707a | 2012-04-26 16:06:50 +0800 | [diff] [blame] | 371 | .init_late = am35xx_init_late, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 372 | .init_time = omap3_sync32k_timer_init, |
Paul Walmsley | 187e3e0 | 2012-10-29 20:56:12 -0600 | [diff] [blame] | 373 | .restart = omap3xxx_restart, |
Ranjith Lohithakshan | c625327 | 2009-11-18 18:41:09 -0800 | [diff] [blame] | 374 | MACHINE_END |