blob: 22a8fd30f9ffddec29afa1727ef7987c721260a0 [file] [log] [blame]
David Andersb075f582010-08-02 13:18:05 +03001/*
2 * Board support file for OMAP4430 based PandaBoard.
3 *
4 * Copyright (C) 2010 Texas Instruments
5 *
6 * Author: David Anders <x0132446@ti.com>
7 *
8 * Based on mach-omap2/board-4430sdp.c
9 *
10 * Author: Santosh Shilimkar <santosh.shilimkar@ti.com>
11 *
12 * Based on mach-omap2/board-3430sdp.c
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/io.h>
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -070023#include <linux/leds.h>
David Andersb075f582010-08-02 13:18:05 +030024#include <linux/gpio.h>
25#include <linux/usb/otg.h>
26#include <linux/i2c/twl.h>
27#include <linux/regulator/machine.h>
28
29#include <mach/hardware.h>
30#include <mach/omap4-common.h>
31#include <asm/mach-types.h>
32#include <asm/mach/arch.h>
33#include <asm/mach/map.h>
34
35#include <plat/board.h>
36#include <plat/common.h>
37#include <plat/control.h>
38#include <plat/timer-gp.h>
39#include <plat/usb.h>
40#include <plat/mmc.h>
41#include "hsmmc.h"
42
43
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -070044static struct gpio_led gpio_leds[] = {
45 {
46 .name = "pandaboard::status1",
47 .default_trigger = "heartbeat",
48 .gpio = 7,
49 },
50 {
51 .name = "pandaboard::status2",
52 .default_trigger = "mmc0",
53 .gpio = 8,
54 },
55};
56
57static struct gpio_led_platform_data gpio_led_info = {
58 .leds = gpio_leds,
59 .num_leds = ARRAY_SIZE(gpio_leds),
60};
61
62static struct platform_device leds_gpio = {
63 .name = "leds-gpio",
64 .id = -1,
65 .dev = {
66 .platform_data = &gpio_led_info,
67 },
68};
69
70static struct platform_device *panda_devices[] __initdata = {
71 &leds_gpio,
72};
73
David Andersb075f582010-08-02 13:18:05 +030074static void __init omap4_panda_init_irq(void)
75{
76 omap2_init_common_hw(NULL, NULL);
77 gic_init_irq();
78 omap_gpio_init();
79}
80
81static struct omap_musb_board_data musb_board_data = {
82 .interface_type = MUSB_INTERFACE_UTMI,
83 .mode = MUSB_PERIPHERAL,
84 .power = 100,
85};
86
87static struct omap2_hsmmc_info mmc[] = {
88 {
89 .mmc = 1,
90 .wires = 8,
91 .gpio_wp = -EINVAL,
92 },
93 {} /* Terminator */
94};
95
96static struct regulator_consumer_supply omap4_panda_vmmc_supply[] = {
97 {
98 .supply = "vmmc",
99 .dev_name = "mmci-omap-hs.0",
100 },
101 {
102 .supply = "vmmc",
103 .dev_name = "mmci-omap-hs.1",
104 },
105};
106
107static int omap4_twl6030_hsmmc_late_init(struct device *dev)
108{
109 int ret = 0;
110 struct platform_device *pdev = container_of(dev,
111 struct platform_device, dev);
112 struct omap_mmc_platform_data *pdata = dev->platform_data;
113
114 /* Setting MMC1 Card detect Irq */
115 if (pdev->id == 0)
116 pdata->slots[0].card_detect_irq = TWL6030_IRQ_BASE +
117 MMCDETECT_INTR_OFFSET;
118 return ret;
119}
120
121static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
122{
123 struct omap_mmc_platform_data *pdata = dev->platform_data;
124
125 pdata->init = omap4_twl6030_hsmmc_late_init;
126}
127
128static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
129{
130 struct omap2_hsmmc_info *c;
131
132 omap2_hsmmc_init(controllers);
133 for (c = controllers; c->mmc; c++)
134 omap4_twl6030_hsmmc_set_late_init(c->dev);
135
136 return 0;
137}
138
139static struct regulator_init_data omap4_panda_vaux1 = {
140 .constraints = {
141 .min_uV = 1000000,
142 .max_uV = 3000000,
143 .apply_uV = true,
144 .valid_modes_mask = REGULATOR_MODE_NORMAL
145 | REGULATOR_MODE_STANDBY,
146 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
147 | REGULATOR_CHANGE_MODE
148 | REGULATOR_CHANGE_STATUS,
149 },
150};
151
152static struct regulator_init_data omap4_panda_vaux2 = {
153 .constraints = {
154 .min_uV = 1200000,
155 .max_uV = 2800000,
156 .apply_uV = true,
157 .valid_modes_mask = REGULATOR_MODE_NORMAL
158 | REGULATOR_MODE_STANDBY,
159 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
160 | REGULATOR_CHANGE_MODE
161 | REGULATOR_CHANGE_STATUS,
162 },
163};
164
165static struct regulator_init_data omap4_panda_vaux3 = {
166 .constraints = {
167 .min_uV = 1000000,
168 .max_uV = 3000000,
169 .apply_uV = true,
170 .valid_modes_mask = REGULATOR_MODE_NORMAL
171 | REGULATOR_MODE_STANDBY,
172 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
173 | REGULATOR_CHANGE_MODE
174 | REGULATOR_CHANGE_STATUS,
175 },
176};
177
178/* VMMC1 for MMC1 card */
179static struct regulator_init_data omap4_panda_vmmc = {
180 .constraints = {
181 .min_uV = 1200000,
182 .max_uV = 3000000,
183 .apply_uV = true,
184 .valid_modes_mask = REGULATOR_MODE_NORMAL
185 | REGULATOR_MODE_STANDBY,
186 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
187 | REGULATOR_CHANGE_MODE
188 | REGULATOR_CHANGE_STATUS,
189 },
190 .num_consumer_supplies = 2,
191 .consumer_supplies = omap4_panda_vmmc_supply,
192};
193
194static struct regulator_init_data omap4_panda_vpp = {
195 .constraints = {
196 .min_uV = 1800000,
197 .max_uV = 2500000,
198 .apply_uV = true,
199 .valid_modes_mask = REGULATOR_MODE_NORMAL
200 | REGULATOR_MODE_STANDBY,
201 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
202 | REGULATOR_CHANGE_MODE
203 | REGULATOR_CHANGE_STATUS,
204 },
205};
206
207static struct regulator_init_data omap4_panda_vusim = {
208 .constraints = {
209 .min_uV = 1200000,
210 .max_uV = 2900000,
211 .apply_uV = true,
212 .valid_modes_mask = REGULATOR_MODE_NORMAL
213 | REGULATOR_MODE_STANDBY,
214 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
215 | REGULATOR_CHANGE_MODE
216 | REGULATOR_CHANGE_STATUS,
217 },
218};
219
220static struct regulator_init_data omap4_panda_vana = {
221 .constraints = {
222 .min_uV = 2100000,
223 .max_uV = 2100000,
224 .apply_uV = true,
225 .valid_modes_mask = REGULATOR_MODE_NORMAL
226 | REGULATOR_MODE_STANDBY,
227 .valid_ops_mask = REGULATOR_CHANGE_MODE
228 | REGULATOR_CHANGE_STATUS,
229 },
230};
231
232static struct regulator_init_data omap4_panda_vcxio = {
233 .constraints = {
234 .min_uV = 1800000,
235 .max_uV = 1800000,
236 .apply_uV = true,
237 .valid_modes_mask = REGULATOR_MODE_NORMAL
238 | REGULATOR_MODE_STANDBY,
239 .valid_ops_mask = REGULATOR_CHANGE_MODE
240 | REGULATOR_CHANGE_STATUS,
241 },
242};
243
244static struct regulator_init_data omap4_panda_vdac = {
245 .constraints = {
246 .min_uV = 1800000,
247 .max_uV = 1800000,
248 .apply_uV = true,
249 .valid_modes_mask = REGULATOR_MODE_NORMAL
250 | REGULATOR_MODE_STANDBY,
251 .valid_ops_mask = REGULATOR_CHANGE_MODE
252 | REGULATOR_CHANGE_STATUS,
253 },
254};
255
256static struct regulator_init_data omap4_panda_vusb = {
257 .constraints = {
258 .min_uV = 3300000,
259 .max_uV = 3300000,
260 .apply_uV = true,
261 .valid_modes_mask = REGULATOR_MODE_NORMAL
262 | REGULATOR_MODE_STANDBY,
263 .valid_ops_mask = REGULATOR_CHANGE_MODE
264 | REGULATOR_CHANGE_STATUS,
265 },
266};
267
268static struct twl4030_platform_data omap4_panda_twldata = {
269 .irq_base = TWL6030_IRQ_BASE,
270 .irq_end = TWL6030_IRQ_END,
271
272 /* Regulators */
273 .vmmc = &omap4_panda_vmmc,
274 .vpp = &omap4_panda_vpp,
275 .vusim = &omap4_panda_vusim,
276 .vana = &omap4_panda_vana,
277 .vcxio = &omap4_panda_vcxio,
278 .vdac = &omap4_panda_vdac,
279 .vusb = &omap4_panda_vusb,
280 .vaux1 = &omap4_panda_vaux1,
281 .vaux2 = &omap4_panda_vaux2,
282 .vaux3 = &omap4_panda_vaux3,
283};
284
285static struct i2c_board_info __initdata omap4_panda_i2c_boardinfo[] = {
286 {
287 I2C_BOARD_INFO("twl6030", 0x48),
288 .flags = I2C_CLIENT_WAKE,
289 .irq = OMAP44XX_IRQ_SYS_1N,
290 .platform_data = &omap4_panda_twldata,
291 },
292};
293static int __init omap4_panda_i2c_init(void)
294{
295 /*
296 * Phoenix Audio IC needs I2C1 to
297 * start with 400 KHz or less
298 */
299 omap_register_i2c_bus(1, 400, omap4_panda_i2c_boardinfo,
300 ARRAY_SIZE(omap4_panda_i2c_boardinfo));
301 omap_register_i2c_bus(2, 400, NULL, 0);
302 omap_register_i2c_bus(3, 400, NULL, 0);
303 omap_register_i2c_bus(4, 400, NULL, 0);
304 return 0;
305}
306static void __init omap4_panda_init(void)
307{
308 int status;
309
310 omap4_panda_i2c_init();
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700311 platform_add_devices(panda_devices, ARRAY_SIZE(panda_devices));
David Andersb075f582010-08-02 13:18:05 +0300312 omap_serial_init();
313 omap4_twl6030_hsmmc_init(mmc);
314 /* OMAP4 Panda uses internal transceiver so register nop transceiver */
315 usb_nop_xceiv_register();
316 /* FIXME: allow multi-omap to boot until musb is updated for omap4 */
317 if (!cpu_is_omap44xx())
318 usb_musb_init(&musb_board_data);
319}
320
321static void __init omap4_panda_map_io(void)
322{
323 omap2_set_globals_443x();
324 omap44xx_map_common_io();
325}
326
327MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board")
328 /* Maintainer: David Anders - Texas Instruments Inc */
329 .phys_io = 0x48000000,
330 .io_pg_offst = ((0xfa000000) >> 18) & 0xfffc,
331 .boot_params = 0x80000100,
332 .map_io = omap4_panda_map_io,
333 .init_irq = omap4_panda_init_irq,
334 .init_machine = omap4_panda_init,
335 .timer = &omap_timer,
336MACHINE_END