blob: 3645285a3e2bb830fafdf5c0bdee445522967acd [file] [log] [blame]
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -08001/*
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 Chemparathy433cdb02010-09-15 10:11:23 -040021#include <linux/clk.h>
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -080022#include <linux/platform_device.h>
23#include <linux/gpio.h>
Vaibhav Hiremath5d4292a2010-02-13 11:47:57 +000024#include <linux/i2c/pca953x.h>
Sriram91733632010-05-10 14:29:16 -070025#include <linux/can/platform/ti_hecc.h>
Sriram56881d22010-05-10 14:29:17 -070026#include <linux/davinci_emac.h>
Vaibhav Hiremathdd6facf2011-12-09 12:27:55 -080027#include <linux/mmc/host.h>
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -080028
29#include <mach/hardware.h>
Vaibhav Hiremathe3d4d0a2010-02-15 10:03:35 -080030#include <mach/am35xx.h>
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -080031#include <asm/mach-types.h>
32#include <asm/mach/arch.h>
33#include <asm/mach/map.h>
34
35#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010036#include "common.h"
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -080037#include <plat/usb.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030038#include <video/omapdss.h>
Tomi Valkeinenf8ae2f02011-05-10 19:48:10 +030039#include <video/omap-panel-generic-dpi.h>
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +030040#include <video/omap-panel-dvi.h>
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -080041
Ilya Yanoka8195ba2012-03-05 11:08:36 -080042#include "am35xx-emac.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080043#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060044#include "control.h"
Vaibhav Hiremathdd6facf2011-12-09 12:27:55 -080045#include "hsmmc.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080046
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +053047#define LCD_PANEL_PWR 176
48#define LCD_PANEL_BKLIGHT_PWR 182
49#define LCD_PANEL_PWM 181
50
stanley.miaob91da662010-05-13 12:39:29 +000051static struct i2c_board_info __initdata am3517evm_i2c1_boardinfo[] = {
Vaibhav Hiremathf2afbbb2010-02-13 11:47:56 +000052 {
53 I2C_BOARD_INFO("s35390a", 0x30),
Vaibhav Hiremathf2afbbb2010-02-13 11:47:56 +000054 },
55};
56
57/*
58 * RTC - S35390A
59 */
60#define GPIO_RTCS35390A_IRQ 55
61
62static void __init am3517_evm_rtc_init(void)
63{
64 int r;
65
66 omap_mux_init_gpio(GPIO_RTCS35390A_IRQ, OMAP_PIN_INPUT_PULLUP);
Igor Grinbergbc593f52011-05-03 18:22:09 +030067
68 r = gpio_request_one(GPIO_RTCS35390A_IRQ, GPIOF_IN, "rtcs35390a-irq");
Vaibhav Hiremathf2afbbb2010-02-13 11:47:56 +000069 if (r < 0) {
70 printk(KERN_WARNING "failed to request GPIO#%d\n",
71 GPIO_RTCS35390A_IRQ);
72 return;
73 }
Igor Grinbergbc593f52011-05-03 18:22:09 +030074
stanley.miaob91da662010-05-13 12:39:29 +000075 am3517evm_i2c1_boardinfo[0].irq = gpio_to_irq(GPIO_RTCS35390A_IRQ);
Vaibhav Hiremathf2afbbb2010-02-13 11:47:56 +000076}
77
Vaibhav Hiremath5d4292a2010-02-13 11:47:57 +000078/*
79 * I2C GPIO Expander - TCA6416
80 */
81
82/* Mounted on Base-Board */
83static struct pca953x_platform_data am3517evm_gpio_expander_info_0 = {
84 .gpio_base = OMAP_MAX_GPIO_LINES,
85};
stanley.miaob91da662010-05-13 12:39:29 +000086static struct i2c_board_info __initdata am3517evm_i2c2_boardinfo[] = {
Vaibhav Hiremath5d4292a2010-02-13 11:47:57 +000087 {
Abhilash Vadakkepat Koyamangalath0640b432011-03-08 15:13:24 +000088 I2C_BOARD_INFO("tlv320aic23", 0x1A),
89 },
90 {
Vaibhav Hiremath5d4292a2010-02-13 11:47:57 +000091 I2C_BOARD_INFO("tca6416", 0x21),
92 .platform_data = &am3517evm_gpio_expander_info_0,
93 },
94};
95
96/* Mounted on UI Card */
97static struct pca953x_platform_data am3517evm_ui_gpio_expander_info_1 = {
98 .gpio_base = OMAP_MAX_GPIO_LINES + 16,
99};
100static struct pca953x_platform_data am3517evm_ui_gpio_expander_info_2 = {
101 .gpio_base = OMAP_MAX_GPIO_LINES + 32,
102};
stanley.miaob91da662010-05-13 12:39:29 +0000103static struct i2c_board_info __initdata am3517evm_i2c3_boardinfo[] = {
Vaibhav Hiremath5d4292a2010-02-13 11:47:57 +0000104 {
105 I2C_BOARD_INFO("tca6416", 0x20),
106 .platform_data = &am3517evm_ui_gpio_expander_info_1,
107 },
108 {
109 I2C_BOARD_INFO("tca6416", 0x21),
110 .platform_data = &am3517evm_ui_gpio_expander_info_2,
111 },
112};
113
Vaibhav Hiremath1f738dc2010-02-17 14:09:28 -0800114static int __init am3517_evm_i2c_init(void)
115{
116 omap_register_i2c_bus(1, 400, NULL, 0);
stanley.miaob91da662010-05-13 12:39:29 +0000117 omap_register_i2c_bus(2, 400, am3517evm_i2c2_boardinfo,
118 ARRAY_SIZE(am3517evm_i2c2_boardinfo));
119 omap_register_i2c_bus(3, 400, am3517evm_i2c3_boardinfo,
120 ARRAY_SIZE(am3517evm_i2c3_boardinfo));
Vaibhav Hiremath1f738dc2010-02-17 14:09:28 -0800121
122 return 0;
123}
124
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530125static int lcd_enabled;
126static int dvi_enabled;
127
Ajay Kumar Guptade997712010-05-10 14:29:19 -0700128#if defined(CONFIG_PANEL_SHARP_LQ043T1DG01) || \
129 defined(CONFIG_PANEL_SHARP_LQ043T1DG01_MODULE)
Igor Grinbergbc593f52011-05-03 18:22:09 +0300130static struct gpio am3517_evm_dss_gpios[] __initdata = {
131 /* GPIO 182 = LCD Backlight Power */
132 { LCD_PANEL_BKLIGHT_PWR, GPIOF_OUT_INIT_HIGH, "lcd_backlight_pwr" },
133 /* GPIO 181 = LCD Panel PWM */
134 { LCD_PANEL_PWM, GPIOF_OUT_INIT_HIGH, "lcd bl enable" },
135 /* GPIO 176 = LCD Panel Power enable pin */
136 { LCD_PANEL_PWR, GPIOF_OUT_INIT_HIGH, "dvi enable" },
137};
138
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530139static void __init am3517_evm_display_init(void)
140{
141 int r;
142
143 omap_mux_init_gpio(LCD_PANEL_PWR, OMAP_PIN_INPUT_PULLUP);
144 omap_mux_init_gpio(LCD_PANEL_BKLIGHT_PWR, OMAP_PIN_INPUT_PULLDOWN);
145 omap_mux_init_gpio(LCD_PANEL_PWM, OMAP_PIN_INPUT_PULLDOWN);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300146
147 r = gpio_request_array(am3517_evm_dss_gpios,
148 ARRAY_SIZE(am3517_evm_dss_gpios));
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530149 if (r) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300150 printk(KERN_ERR "failed to get DSS panel control GPIOs\n");
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530151 return;
152 }
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530153
154 printk(KERN_INFO "Display initialized successfully\n");
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530155}
Ajay Kumar Guptade997712010-05-10 14:29:19 -0700156#else
157static void __init am3517_evm_display_init(void) {}
158#endif
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530159
160static int am3517_evm_panel_enable_lcd(struct omap_dss_device *dssdev)
161{
162 if (dvi_enabled) {
163 printk(KERN_ERR "cannot enable LCD, DVI is enabled\n");
164 return -EINVAL;
165 }
166 gpio_set_value(LCD_PANEL_PWR, 1);
167 lcd_enabled = 1;
168
169 return 0;
170}
171
172static void am3517_evm_panel_disable_lcd(struct omap_dss_device *dssdev)
173{
174 gpio_set_value(LCD_PANEL_PWR, 0);
175 lcd_enabled = 0;
176}
177
Bryan Wu89747c92010-11-17 13:34:34 +0000178static struct panel_generic_dpi_data lcd_panel = {
179 .name = "sharp_lq",
180 .platform_enable = am3517_evm_panel_enable_lcd,
181 .platform_disable = am3517_evm_panel_disable_lcd,
182};
183
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530184static struct omap_dss_device am3517_evm_lcd_device = {
185 .type = OMAP_DISPLAY_TYPE_DPI,
186 .name = "lcd",
Bryan Wu89747c92010-11-17 13:34:34 +0000187 .driver_name = "generic_dpi_panel",
188 .data = &lcd_panel,
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530189 .phy.dpi.data_lines = 16,
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530190};
191
192static int am3517_evm_panel_enable_tv(struct omap_dss_device *dssdev)
193{
194 return 0;
195}
196
197static void am3517_evm_panel_disable_tv(struct omap_dss_device *dssdev)
198{
199}
200
201static struct omap_dss_device am3517_evm_tv_device = {
202 .type = OMAP_DISPLAY_TYPE_VENC,
203 .name = "tv",
204 .driver_name = "venc",
205 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
206 .platform_enable = am3517_evm_panel_enable_tv,
207 .platform_disable = am3517_evm_panel_disable_tv,
208};
209
210static int am3517_evm_panel_enable_dvi(struct omap_dss_device *dssdev)
211{
212 if (lcd_enabled) {
213 printk(KERN_ERR "cannot enable DVI, LCD is enabled\n");
214 return -EINVAL;
215 }
216 dvi_enabled = 1;
217
218 return 0;
219}
220
221static void am3517_evm_panel_disable_dvi(struct omap_dss_device *dssdev)
222{
223 dvi_enabled = 0;
224}
225
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300226static struct panel_dvi_platform_data dvi_panel = {
Bryan Wu89747c92010-11-17 13:34:34 +0000227 .platform_enable = am3517_evm_panel_enable_dvi,
228 .platform_disable = am3517_evm_panel_disable_dvi,
229};
230
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530231static struct omap_dss_device am3517_evm_dvi_device = {
232 .type = OMAP_DISPLAY_TYPE_DPI,
233 .name = "dvi",
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300234 .driver_name = "dvi",
Bryan Wu89747c92010-11-17 13:34:34 +0000235 .data = &dvi_panel,
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530236 .phy.dpi.data_lines = 24,
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530237};
238
239static struct omap_dss_device *am3517_evm_dss_devices[] = {
240 &am3517_evm_lcd_device,
241 &am3517_evm_tv_device,
242 &am3517_evm_dvi_device,
243};
244
245static struct omap_dss_board_info am3517_evm_dss_data = {
246 .num_devices = ARRAY_SIZE(am3517_evm_dss_devices),
247 .devices = am3517_evm_dss_devices,
248 .default_device = &am3517_evm_lcd_device,
249};
250
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800251/*
252 * Board initialization
253 */
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800254
Ajay Kumar Gupta3a0d30b2010-10-19 10:08:11 +0300255static struct omap_musb_board_data musb_board_data = {
256 .interface_type = MUSB_INTERFACE_ULPI,
257 .mode = MUSB_OTG,
258 .power = 500,
Hema HKfe5a4902011-02-16 17:34:40 +0530259 .set_phy_power = am35x_musb_phy_power,
260 .clear_irq = am35x_musb_clear_irq,
Felipe Balbia6d28522011-05-02 12:45:05 +0300261 .set_mode = am35x_set_mode,
Hema HKfe5a4902011-02-16 17:34:40 +0530262 .reset = am35x_musb_reset,
Ajay Kumar Gupta3a0d30b2010-10-19 10:08:11 +0300263};
264
265static __init void am3517_evm_musb_init(void)
266{
267 u32 devconf2;
268
269 /*
270 * Set up USB clock/mode in the DEVCONF2 register.
271 */
272 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
273
274 /* USB2.0 PHY reference clock is 13 MHz */
275 devconf2 &= ~(CONF2_REFFREQ | CONF2_OTGMODE | CONF2_PHY_GPIOMODE);
276 devconf2 |= CONF2_REFFREQ_13MHZ | CONF2_SESENDEN | CONF2_VBDTCTEN
277 | CONF2_DATPOL;
278
279 omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
280
281 usb_musb_init(&musb_board_data);
282}
283
Keshava Munegowda181b2502011-03-01 20:08:16 +0530284static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
285 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
Ajay Kumar Guptade997712010-05-10 14:29:19 -0700286#if defined(CONFIG_PANEL_SHARP_LQ043T1DG01) || \
287 defined(CONFIG_PANEL_SHARP_LQ043T1DG01_MODULE)
Keshava Munegowda181b2502011-03-01 20:08:16 +0530288 .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
Ajay Kumar Guptade997712010-05-10 14:29:19 -0700289#else
Keshava Munegowda181b2502011-03-01 20:08:16 +0530290 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
Ajay Kumar Guptade997712010-05-10 14:29:19 -0700291#endif
Keshava Munegowda181b2502011-03-01 20:08:16 +0530292 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800293
294 .phy_reset = true,
295 .reset_gpio_port[0] = 57,
296 .reset_gpio_port[1] = -EINVAL,
297 .reset_gpio_port[2] = -EINVAL
298};
299
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800300#ifdef CONFIG_OMAP_MUX
301static struct omap_board_mux board_mux[] __initdata = {
Ajay Kumar Gupta3a0d30b2010-10-19 10:08:11 +0300302 /* USB OTG DRVVBUS offset = 0x212 */
303 OMAP3_MUX(SAD2D_MCAD23, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800304 { .reg_offset = OMAP_MUX_TERMINATOR },
305};
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800306#endif
307
Sriram91733632010-05-10 14:29:16 -0700308
309static struct resource am3517_hecc_resources[] = {
310 {
311 .start = AM35XX_IPSS_HECC_BASE,
312 .end = AM35XX_IPSS_HECC_BASE + 0x3FFF,
313 .flags = IORESOURCE_MEM,
314 },
315 {
316 .start = INT_35XX_HECC0_IRQ,
317 .end = INT_35XX_HECC0_IRQ,
318 .flags = IORESOURCE_IRQ,
319 },
320};
321
322static struct platform_device am3517_hecc_device = {
323 .name = "ti_hecc",
324 .id = -1,
325 .num_resources = ARRAY_SIZE(am3517_hecc_resources),
326 .resource = am3517_hecc_resources,
327};
328
329static struct ti_hecc_platform_data am3517_evm_hecc_pdata = {
330 .scc_hecc_offset = AM35XX_HECC_SCC_HECC_OFFSET,
331 .scc_ram_offset = AM35XX_HECC_SCC_RAM_OFFSET,
332 .hecc_ram_offset = AM35XX_HECC_RAM_OFFSET,
333 .mbx_offset = AM35XX_HECC_MBOX_OFFSET,
334 .int_line = AM35XX_HECC_INT_LINE,
335 .version = AM35XX_HECC_VERSION,
336};
337
338static void am3517_evm_hecc_init(struct ti_hecc_platform_data *pdata)
339{
340 am3517_hecc_device.dev.platform_data = pdata;
341 platform_device_register(&am3517_hecc_device);
342}
343
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800344static struct omap_board_config_kernel am3517_evm_config[] __initdata = {
345};
346
Vaibhav Hiremathdd6facf2011-12-09 12:27:55 -0800347static struct omap2_hsmmc_info mmc[] = {
348 {
349 .mmc = 1,
350 .caps = MMC_CAP_4_BIT_DATA,
351 .gpio_cd = 127,
352 .gpio_wp = 126,
353 },
354 {
355 .mmc = 2,
356 .caps = MMC_CAP_4_BIT_DATA,
357 .gpio_cd = 128,
358 .gpio_wp = 129,
359 },
360 {} /* Terminator */
361};
362
363
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800364static void __init am3517_evm_init(void)
365{
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800366 omap_board_config = am3517_evm_config;
367 omap_board_config_size = ARRAY_SIZE(am3517_evm_config);
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800368 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
stanley.miao5241b6b2010-04-20 06:33:29 +0000369
370 am3517_evm_i2c_init();
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200371 omap_display_init(&am3517_evm_dss_data);
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800372 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700373 omap_sdrc_init(NULL, NULL);
Ajay Kumar Guptafec3eeb2010-02-22 10:21:12 +0000374
375 /* Configure GPIO for EHCI port */
376 omap_mux_init_gpio(57, OMAP_PIN_OUTPUT);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530377 usbhs_init(&usbhs_bdata);
Sriram91733632010-05-10 14:29:16 -0700378 am3517_evm_hecc_init(&am3517_evm_hecc_pdata);
Vaibhav Hiremathc3d33322010-01-13 17:17:10 +0530379 /* DSS */
380 am3517_evm_display_init();
Vaibhav Hiremathf2afbbb2010-02-13 11:47:56 +0000381
382 /* RTC - S35390A */
383 am3517_evm_rtc_init();
384
stanley.miaob91da662010-05-13 12:39:29 +0000385 i2c_register_board_info(1, am3517evm_i2c1_boardinfo,
386 ARRAY_SIZE(am3517evm_i2c1_boardinfo));
Sriram56881d22010-05-10 14:29:17 -0700387 /*Ethernet*/
Ilya Yanoka8195ba2012-03-05 11:08:36 -0800388 am35xx_emac_init(AM35XX_DEFAULT_MDIO_FREQUENCY, 1);
Ajay Kumar Gupta3a0d30b2010-10-19 10:08:11 +0300389
390 /* MUSB */
391 am3517_evm_musb_init();
Vaibhav Hiremathdd6facf2011-12-09 12:27:55 -0800392
393 /* MMC init function */
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800394 omap_hsmmc_init(mmc);
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800395}
396
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800397MACHINE_START(OMAP3517EVM, "OMAP3517/AM3517 EVM")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400398 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100399 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800400 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700401 .init_early = am35xx_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700402 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100403 .handle_irq = omap3_intc_handle_irq,
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800404 .init_machine = am3517_evm_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700405 .timer = &omap3_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000406 .restart = omap_prcm_restart,
Ranjith Lohithakshanc6253272009-11-18 18:41:09 -0800407MACHINE_END