blob: bbfd74263c426d0a0207d33d3346f1af65d0625a [file] [log] [blame]
Kalle Valo63138812009-08-28 10:51:38 -07001/*
2 * linux/arch/arm/mach-omap2/board-n8x0.c
3 *
4 * Copyright (C) 2005-2009 Nokia Corporation
5 * Author: Juha Yrjola <juha.yrjola@nokia.com>
6 *
7 * Modified from mach-omap2/board-generic.c
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/clk.h>
15#include <linux/delay.h>
16#include <linux/gpio.h>
17#include <linux/init.h>
18#include <linux/io.h>
Aaro Koskinen0857ba32012-11-18 18:36:19 +020019#include <linux/irq.h>
Kalle Valo63138812009-08-28 10:51:38 -070020#include <linux/stddef.h>
Tony Lindgren9418c652010-02-26 15:31:12 -080021#include <linux/i2c.h>
Kalle Valo63138812009-08-28 10:51:38 -070022#include <linux/spi/spi.h>
23#include <linux/usb/musb.h>
Aaro Koskinen0857ba32012-11-18 18:36:19 +020024#include <linux/platform_data/i2c-cbus-gpio.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020025#include <linux/platform_data/spi-omap2-mcspi.h>
26#include <linux/platform_data/mtd-onenand-omap2.h>
Jarkko Nikula366498d2010-08-20 09:36:28 +030027#include <sound/tlv320aic3x.h>
Kalle Valo63138812009-08-28 10:51:38 -070028
29#include <asm/mach/arch.h>
30#include <asm/mach-types.h>
31
Tony Lindgren4e653312011-11-10 22:45:17 +010032#include "common.h"
Tony Lindgren9418c652010-02-26 15:31:12 -080033#include <plat/menelaus.h>
Tony Lindgren9418c652010-02-26 15:31:12 -080034#include <plat/mmc.h>
Kalle Valo63138812009-08-28 10:51:38 -070035
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +030036#include "mux.h"
37
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080038#define TUSB6010_ASYNC_CS 1
39#define TUSB6010_SYNC_CS 4
40#define TUSB6010_GPIO_INT 58
41#define TUSB6010_GPIO_ENABLE 0
42#define TUSB6010_DMACHAN 0x3f
43
Aaro Koskinen0857ba32012-11-18 18:36:19 +020044#if defined(CONFIG_I2C_CBUS_GPIO) || defined(CONFIG_I2C_CBUS_GPIO_MODULE)
45static struct i2c_cbus_platform_data n8x0_cbus_data = {
46 .clk_gpio = 66,
47 .dat_gpio = 65,
48 .sel_gpio = 64,
49};
50
51static struct platform_device n8x0_cbus_device = {
52 .name = "i2c-cbus-gpio",
53 .id = 3,
54 .dev = {
55 .platform_data = &n8x0_cbus_data,
56 },
57};
58
59static struct i2c_board_info n8x0_i2c_board_info_3[] __initdata = {
60 {
61 I2C_BOARD_INFO("retu-mfd", 0x01),
62 },
63};
64
65static void __init n8x0_cbus_init(void)
66{
67 const int retu_irq_gpio = 108;
68
69 if (gpio_request_one(retu_irq_gpio, GPIOF_IN, "Retu IRQ"))
70 return;
71 irq_set_irq_type(gpio_to_irq(retu_irq_gpio), IRQ_TYPE_EDGE_RISING);
72 n8x0_i2c_board_info_3[0].irq = gpio_to_irq(retu_irq_gpio);
73 i2c_register_board_info(3, n8x0_i2c_board_info_3,
74 ARRAY_SIZE(n8x0_i2c_board_info_3));
75 platform_device_register(&n8x0_cbus_device);
76}
77#else /* CONFIG_I2C_CBUS_GPIO */
78static void __init n8x0_cbus_init(void)
79{
80}
81#endif /* CONFIG_I2C_CBUS_GPIO */
82
Arnd Bergmann9a35f872011-10-02 16:45:47 +020083#if defined(CONFIG_USB_MUSB_TUSB6010) || defined(CONFIG_USB_MUSB_TUSB6010_MODULE)
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080084/*
85 * Enable or disable power to TUSB6010. When enabling, turn on 3.3 V and
86 * 1.5 V voltage regulators of PM companion chip. Companion chip will then
87 * provide then PGOOD signal to TUSB6010 which will release it from reset.
88 */
89static int tusb_set_power(int state)
90{
91 int i, retval = 0;
92
93 if (state) {
94 gpio_set_value(TUSB6010_GPIO_ENABLE, 1);
95 msleep(1);
96
97 /* Wait until TUSB6010 pulls INT pin down */
98 i = 100;
99 while (i && gpio_get_value(TUSB6010_GPIO_INT)) {
100 msleep(1);
101 i--;
102 }
103
104 if (!i) {
105 printk(KERN_ERR "tusb: powerup failed\n");
106 retval = -ENODEV;
107 }
108 } else {
109 gpio_set_value(TUSB6010_GPIO_ENABLE, 0);
110 msleep(10);
111 }
112
113 return retval;
114}
115
116static struct musb_hdrc_config musb_config = {
117 .multipoint = 1,
118 .dyn_fifo = 1,
119 .num_eps = 16,
120 .ram_bits = 12,
121};
122
123static struct musb_hdrc_platform_data tusb_data = {
Tony Lindgren310018d2012-06-20 07:18:15 -0700124#ifdef CONFIG_USB_GADGET_MUSB_HDRC
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800125 .mode = MUSB_OTG,
Tony Lindgren310018d2012-06-20 07:18:15 -0700126#else
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800127 .mode = MUSB_HOST,
128#endif
129 .set_power = tusb_set_power,
130 .min_power = 25, /* x2 = 50 mA drawn from VBUS as peripheral */
131 .power = 100, /* Max 100 mA VBUS for host mode */
132 .config = &musb_config,
133};
134
135static void __init n8x0_usb_init(void)
136{
137 int ret = 0;
138 static char announce[] __initdata = KERN_INFO "TUSB 6010\n";
139
140 /* PM companion chip power control pin */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300141 ret = gpio_request_one(TUSB6010_GPIO_ENABLE, GPIOF_OUT_INIT_LOW,
142 "TUSB6010 enable");
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800143 if (ret != 0) {
144 printk(KERN_ERR "Could not get TUSB power GPIO%i\n",
145 TUSB6010_GPIO_ENABLE);
146 return;
147 }
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800148 tusb_set_power(0);
149
150 ret = tusb6010_setup_interface(&tusb_data, TUSB6010_REFCLK_19, 2,
151 TUSB6010_ASYNC_CS, TUSB6010_SYNC_CS,
152 TUSB6010_GPIO_INT, TUSB6010_DMACHAN);
153 if (ret != 0)
154 goto err;
155
156 printk(announce);
157
158 return;
159
160err:
161 gpio_free(TUSB6010_GPIO_ENABLE);
162}
163#else
164
165static void __init n8x0_usb_init(void) {}
166
Felipe Balbi7c925542010-12-01 14:23:48 +0200167#endif /*CONFIG_USB_MUSB_TUSB6010 */
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800168
169
Kalle Valo63138812009-08-28 10:51:38 -0700170static struct omap2_mcspi_device_config p54spi_mcspi_config = {
171 .turbo_mode = 0,
Kalle Valo63138812009-08-28 10:51:38 -0700172};
173
174static struct spi_board_info n800_spi_board_info[] __initdata = {
175 {
176 .modalias = "p54spi",
177 .bus_num = 2,
178 .chip_select = 0,
179 .max_speed_hz = 48000000,
180 .controller_data = &p54spi_mcspi_config,
181 },
182};
183
184#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
185 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
186
187static struct mtd_partition onenand_partitions[] = {
188 {
189 .name = "bootloader",
190 .offset = 0,
191 .size = 0x20000,
192 .mask_flags = MTD_WRITEABLE, /* Force read-only */
193 },
194 {
195 .name = "config",
196 .offset = MTDPART_OFS_APPEND,
197 .size = 0x60000,
198 },
199 {
200 .name = "kernel",
201 .offset = MTDPART_OFS_APPEND,
202 .size = 0x200000,
203 },
204 {
205 .name = "initfs",
206 .offset = MTDPART_OFS_APPEND,
207 .size = 0x400000,
208 },
209 {
210 .name = "rootfs",
211 .offset = MTDPART_OFS_APPEND,
212 .size = MTDPART_SIZ_FULL,
213 },
214};
215
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000216static struct omap_onenand_platform_data board_onenand_data[] = {
217 {
218 .cs = 0,
219 .gpio_irq = 26,
220 .parts = onenand_partitions,
221 .nr_parts = ARRAY_SIZE(onenand_partitions),
222 .flags = ONENAND_SYNC_READ,
223 }
Kalle Valo63138812009-08-28 10:51:38 -0700224};
Kalle Valo63138812009-08-28 10:51:38 -0700225#endif
226
Tony Lindgren9418c652010-02-26 15:31:12 -0800227#if defined(CONFIG_MENELAUS) && \
228 (defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE))
229
230/*
231 * On both N800 and N810, only the first of the two MMC controllers is in use.
232 * The two MMC slots are multiplexed via Menelaus companion chip over I2C.
233 * On N800, both slots are powered via Menelaus. On N810, only one of the
234 * slots is powered via Menelaus. The N810 EMMC is powered via GPIO.
235 *
236 * VMMC slot 1 on both N800 and N810
237 * VDCDC3_APE and VMCS2_APE slot 2 on N800
238 * GPIO23 and GPIO9 slot 2 EMMC on N810
239 *
240 */
241#define N8X0_SLOT_SWITCH_GPIO 96
242#define N810_EMMC_VSD_GPIO 23
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700243#define N810_EMMC_VIO_GPIO 9
Tony Lindgren9418c652010-02-26 15:31:12 -0800244
Tony Lindgren49b87c62012-03-06 11:49:28 -0800245static int slot1_cover_open;
246static int slot2_cover_open;
247static struct device *mmc_device;
248
Tony Lindgren9418c652010-02-26 15:31:12 -0800249static int n8x0_mmc_switch_slot(struct device *dev, int slot)
250{
251#ifdef CONFIG_MMC_DEBUG
252 dev_dbg(dev, "Choose slot %d\n", slot + 1);
253#endif
254 gpio_set_value(N8X0_SLOT_SWITCH_GPIO, slot);
255 return 0;
256}
257
258static int n8x0_mmc_set_power_menelaus(struct device *dev, int slot,
259 int power_on, int vdd)
260{
261 int mV;
262
263#ifdef CONFIG_MMC_DEBUG
264 dev_dbg(dev, "Set slot %d power: %s (vdd %d)\n", slot + 1,
265 power_on ? "on" : "off", vdd);
266#endif
267 if (slot == 0) {
268 if (!power_on)
269 return menelaus_set_vmmc(0);
270 switch (1 << vdd) {
271 case MMC_VDD_33_34:
272 case MMC_VDD_32_33:
273 case MMC_VDD_31_32:
274 mV = 3100;
275 break;
276 case MMC_VDD_30_31:
277 mV = 3000;
278 break;
279 case MMC_VDD_28_29:
280 mV = 2800;
281 break;
282 case MMC_VDD_165_195:
283 mV = 1850;
284 break;
285 default:
286 BUG();
287 }
288 return menelaus_set_vmmc(mV);
289 } else {
290 if (!power_on)
291 return menelaus_set_vdcdc(3, 0);
292 switch (1 << vdd) {
293 case MMC_VDD_33_34:
294 case MMC_VDD_32_33:
295 mV = 3300;
296 break;
297 case MMC_VDD_30_31:
298 case MMC_VDD_29_30:
299 mV = 3000;
300 break;
301 case MMC_VDD_28_29:
302 case MMC_VDD_27_28:
303 mV = 2800;
304 break;
305 case MMC_VDD_24_25:
306 case MMC_VDD_23_24:
307 mV = 2400;
308 break;
309 case MMC_VDD_22_23:
310 case MMC_VDD_21_22:
311 mV = 2200;
312 break;
313 case MMC_VDD_20_21:
314 mV = 2000;
315 break;
316 case MMC_VDD_165_195:
317 mV = 1800;
318 break;
319 default:
320 BUG();
321 }
322 return menelaus_set_vdcdc(3, mV);
323 }
324 return 0;
325}
326
327static void n810_set_power_emmc(struct device *dev,
328 int power_on)
329{
330 dev_dbg(dev, "Set EMMC power %s\n", power_on ? "on" : "off");
331
332 if (power_on) {
333 gpio_set_value(N810_EMMC_VSD_GPIO, 1);
334 msleep(1);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700335 gpio_set_value(N810_EMMC_VIO_GPIO, 1);
Tony Lindgren9418c652010-02-26 15:31:12 -0800336 msleep(1);
337 } else {
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700338 gpio_set_value(N810_EMMC_VIO_GPIO, 0);
Tony Lindgren9418c652010-02-26 15:31:12 -0800339 msleep(50);
340 gpio_set_value(N810_EMMC_VSD_GPIO, 0);
341 msleep(50);
342 }
343}
344
345static int n8x0_mmc_set_power(struct device *dev, int slot, int power_on,
346 int vdd)
347{
348 if (machine_is_nokia_n800() || slot == 0)
349 return n8x0_mmc_set_power_menelaus(dev, slot, power_on, vdd);
350
351 n810_set_power_emmc(dev, power_on);
352
353 return 0;
354}
355
356static int n8x0_mmc_set_bus_mode(struct device *dev, int slot, int bus_mode)
357{
358 int r;
359
360 dev_dbg(dev, "Set slot %d bus mode %s\n", slot + 1,
361 bus_mode == MMC_BUSMODE_OPENDRAIN ? "open-drain" : "push-pull");
362 BUG_ON(slot != 0 && slot != 1);
363 slot++;
364 switch (bus_mode) {
365 case MMC_BUSMODE_OPENDRAIN:
366 r = menelaus_set_mmc_opendrain(slot, 1);
367 break;
368 case MMC_BUSMODE_PUSHPULL:
369 r = menelaus_set_mmc_opendrain(slot, 0);
370 break;
371 default:
372 BUG();
373 }
374 if (r != 0 && printk_ratelimit())
375 dev_err(dev, "MMC: unable to set bus mode for slot %d\n",
376 slot);
377 return r;
378}
379
380static int n8x0_mmc_get_cover_state(struct device *dev, int slot)
381{
382 slot++;
383 BUG_ON(slot != 1 && slot != 2);
384 if (slot == 1)
385 return slot1_cover_open;
386 else
387 return slot2_cover_open;
388}
389
390static void n8x0_mmc_callback(void *data, u8 card_mask)
391{
392 int bit, *openp, index;
393
394 if (machine_is_nokia_n800()) {
395 bit = 1 << 1;
396 openp = &slot2_cover_open;
397 index = 1;
398 } else {
399 bit = 1;
400 openp = &slot1_cover_open;
401 index = 0;
402 }
403
404 if (card_mask & bit)
405 *openp = 1;
406 else
407 *openp = 0;
408
Tony Lindgrend5171102012-02-20 10:00:03 -0800409#ifdef CONFIG_MMC_OMAP
Tony Lindgren9418c652010-02-26 15:31:12 -0800410 omap_mmc_notify_cover_event(mmc_device, index, *openp);
Tony Lindgrend5171102012-02-20 10:00:03 -0800411#else
412 pr_warn("MMC: notify cover event not available\n");
413#endif
Tony Lindgren9418c652010-02-26 15:31:12 -0800414}
415
Tony Lindgren9418c652010-02-26 15:31:12 -0800416static int n8x0_mmc_late_init(struct device *dev)
417{
418 int r, bit, *openp;
419 int vs2sel;
420
421 mmc_device = dev;
422
423 r = menelaus_set_slot_sel(1);
424 if (r < 0)
425 return r;
426
427 if (machine_is_nokia_n800())
428 vs2sel = 0;
429 else
430 vs2sel = 2;
431
432 r = menelaus_set_mmc_slot(2, 0, vs2sel, 1);
433 if (r < 0)
434 return r;
435
436 n8x0_mmc_set_power(dev, 0, MMC_POWER_ON, 16); /* MMC_VDD_28_29 */
437 n8x0_mmc_set_power(dev, 1, MMC_POWER_ON, 16);
438
439 r = menelaus_set_mmc_slot(1, 1, 0, 1);
440 if (r < 0)
441 return r;
442 r = menelaus_set_mmc_slot(2, 1, vs2sel, 1);
443 if (r < 0)
444 return r;
445
446 r = menelaus_get_slot_pin_states();
447 if (r < 0)
448 return r;
449
450 if (machine_is_nokia_n800()) {
451 bit = 1 << 1;
452 openp = &slot2_cover_open;
453 } else {
454 bit = 1;
455 openp = &slot1_cover_open;
456 slot2_cover_open = 0;
457 }
458
459 /* All slot pin bits seem to be inversed until first switch change */
460 if (r == 0xf || r == (0xf & ~bit))
461 r = ~r;
462
463 if (r & bit)
464 *openp = 1;
465 else
466 *openp = 0;
467
468 r = menelaus_register_mmc_callback(n8x0_mmc_callback, NULL);
469
470 return r;
471}
472
473static void n8x0_mmc_shutdown(struct device *dev)
474{
475 int vs2sel;
476
477 if (machine_is_nokia_n800())
478 vs2sel = 0;
479 else
480 vs2sel = 2;
481
482 menelaus_set_mmc_slot(1, 0, 0, 0);
483 menelaus_set_mmc_slot(2, 0, vs2sel, 0);
484}
485
486static void n8x0_mmc_cleanup(struct device *dev)
487{
488 menelaus_unregister_mmc_callback();
489
490 gpio_free(N8X0_SLOT_SWITCH_GPIO);
491
492 if (machine_is_nokia_n810()) {
493 gpio_free(N810_EMMC_VSD_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700494 gpio_free(N810_EMMC_VIO_GPIO);
Tony Lindgren9418c652010-02-26 15:31:12 -0800495 }
496}
497
498/*
499 * MMC controller1 has two slots that are multiplexed via I2C.
500 * MMC controller2 is not in use.
501 */
502static struct omap_mmc_platform_data mmc1_data = {
503 .nr_slots = 2,
504 .switch_slot = n8x0_mmc_switch_slot,
505 .init = n8x0_mmc_late_init,
506 .cleanup = n8x0_mmc_cleanup,
507 .shutdown = n8x0_mmc_shutdown,
508 .max_freq = 24000000,
Tony Lindgren9418c652010-02-26 15:31:12 -0800509 .slots[0] = {
510 .wires = 4,
511 .set_power = n8x0_mmc_set_power,
512 .set_bus_mode = n8x0_mmc_set_bus_mode,
513 .get_cover_state = n8x0_mmc_get_cover_state,
514 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_30_31 |
515 MMC_VDD_32_33 | MMC_VDD_33_34,
516 .name = "internal",
517 },
518 .slots[1] = {
519 .set_power = n8x0_mmc_set_power,
520 .set_bus_mode = n8x0_mmc_set_bus_mode,
521 .get_cover_state = n8x0_mmc_get_cover_state,
522 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_20_21 |
523 MMC_VDD_21_22 | MMC_VDD_22_23 |
524 MMC_VDD_23_24 | MMC_VDD_24_25 |
525 MMC_VDD_27_28 | MMC_VDD_28_29 |
526 MMC_VDD_29_30 | MMC_VDD_30_31 |
527 MMC_VDD_32_33 | MMC_VDD_33_34,
528 .name = "external",
529 },
530};
531
532static struct omap_mmc_platform_data *mmc_data[OMAP24XX_NR_MMC];
533
Igor Grinbergbc593f52011-05-03 18:22:09 +0300534static struct gpio n810_emmc_gpios[] __initdata = {
535 { N810_EMMC_VSD_GPIO, GPIOF_OUT_INIT_LOW, "MMC slot 2 Vddf" },
536 { N810_EMMC_VIO_GPIO, GPIOF_OUT_INIT_LOW, "MMC slot 2 Vdd" },
537};
Tony Lindgren9418c652010-02-26 15:31:12 -0800538
Igor Grinbergbc593f52011-05-03 18:22:09 +0300539static void __init n8x0_mmc_init(void)
Tony Lindgren9418c652010-02-26 15:31:12 -0800540{
541 int err;
542
543 if (machine_is_nokia_n810()) {
544 mmc1_data.slots[0].name = "external";
545
546 /*
547 * Some Samsung Movinand chips do not like open-ended
548 * multi-block reads and fall to braind-dead state
549 * while doing so. Reducing the number of blocks in
550 * the transfer or delays in clock disable do not help
551 */
552 mmc1_data.slots[1].name = "internal";
553 mmc1_data.slots[1].ban_openended = 1;
554 }
555
Igor Grinbergbc593f52011-05-03 18:22:09 +0300556 err = gpio_request_one(N8X0_SLOT_SWITCH_GPIO, GPIOF_OUT_INIT_LOW,
557 "MMC slot switch");
Tony Lindgren9418c652010-02-26 15:31:12 -0800558 if (err)
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700559 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800560
Tony Lindgren9418c652010-02-26 15:31:12 -0800561 if (machine_is_nokia_n810()) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300562 err = gpio_request_array(n810_emmc_gpios,
563 ARRAY_SIZE(n810_emmc_gpios));
Tony Lindgren9418c652010-02-26 15:31:12 -0800564 if (err) {
565 gpio_free(N8X0_SLOT_SWITCH_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700566 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800567 }
Tony Lindgren9418c652010-02-26 15:31:12 -0800568 }
569
570 mmc_data[0] = &mmc1_data;
Anand Gadiyare08016d2011-03-01 13:12:55 -0800571 omap242x_init_mmc(mmc_data);
Tony Lindgren9418c652010-02-26 15:31:12 -0800572}
573#else
574
575void __init n8x0_mmc_init(void)
576{
577}
Tony Lindgren9418c652010-02-26 15:31:12 -0800578#endif /* CONFIG_MMC_OMAP */
579
580#ifdef CONFIG_MENELAUS
581
582static int n8x0_auto_sleep_regulators(void)
583{
584 u32 val;
585 int ret;
586
587 val = EN_VPLL_SLEEP | EN_VMMC_SLEEP \
588 | EN_VAUX_SLEEP | EN_VIO_SLEEP \
589 | EN_VMEM_SLEEP | EN_DC3_SLEEP \
590 | EN_VC_SLEEP | EN_DC2_SLEEP;
591
592 ret = menelaus_set_regulator_sleep(1, val);
593 if (ret < 0) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600594 pr_err("Could not set regulators to sleep on menelaus: %u\n",
595 ret);
Tony Lindgren9418c652010-02-26 15:31:12 -0800596 return ret;
597 }
598 return 0;
599}
600
601static int n8x0_auto_voltage_scale(void)
602{
603 int ret;
604
605 ret = menelaus_set_vcore_hw(1400, 1050);
606 if (ret < 0) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600607 pr_err("Could not set VCORE voltage on menelaus: %u\n", ret);
Tony Lindgren9418c652010-02-26 15:31:12 -0800608 return ret;
609 }
610 return 0;
611}
612
613static int n8x0_menelaus_late_init(struct device *dev)
614{
615 int ret;
616
617 ret = n8x0_auto_voltage_scale();
618 if (ret < 0)
619 return ret;
620 ret = n8x0_auto_sleep_regulators();
621 if (ret < 0)
622 return ret;
623 return 0;
624}
625
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300626#else
627static int n8x0_menelaus_late_init(struct device *dev)
628{
629 return 0;
630}
631#endif
Tony Lindgren9418c652010-02-26 15:31:12 -0800632
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300633static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata = {
Tony Lindgren9418c652010-02-26 15:31:12 -0800634 .late_init = n8x0_menelaus_late_init,
635};
636
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300637static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = {
638 {
639 I2C_BOARD_INFO("menelaus", 0x72),
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700640 .irq = 7 + OMAP_INTC_START,
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300641 .platform_data = &n8x0_menelaus_platform_data,
642 },
643};
Tony Lindgren9418c652010-02-26 15:31:12 -0800644
Jarkko Nikula366498d2010-08-20 09:36:28 +0300645static struct aic3x_pdata n810_aic33_data __initdata = {
646 .gpio_reset = 118,
647};
648
649static struct i2c_board_info n810_i2c_board_info_2[] __initdata = {
650 {
651 I2C_BOARD_INFO("tlv320aic3x", 0x18),
652 .platform_data = &n810_aic33_data,
653 },
654};
Tony Lindgren9418c652010-02-26 15:31:12 -0800655
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300656#ifdef CONFIG_OMAP_MUX
657static struct omap_board_mux board_mux[] __initdata = {
Jarkko Nikula04be1e92010-08-20 09:36:28 +0300658 /* I2S codec port pins for McBSP block */
659 OMAP2420_MUX(EAC_AC_SCLK, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
660 OMAP2420_MUX(EAC_AC_FS, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
661 OMAP2420_MUX(EAC_AC_DIN, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
662 OMAP2420_MUX(EAC_AC_DOUT, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300663 { .reg_offset = OMAP_MUX_TERMINATOR },
664};
Tony Lindgren0b50c692010-12-22 18:42:36 -0800665
666static struct omap_device_pad serial2_pads[] __initdata = {
667 {
668 .name = "uart3_rx_irrx.uart3_rx_irrx",
669 .flags = OMAP_DEVICE_PAD_REMUX | OMAP_DEVICE_PAD_WAKEUP,
670 .enable = OMAP_MUX_MODE0,
671 .idle = OMAP_MUX_MODE3 /* Mux as GPIO for idle */
672 },
673};
674
675static inline void board_serial_init(void)
676{
677 struct omap_board_data bdata;
678
679 bdata.flags = 0;
680 bdata.pads = NULL;
681 bdata.pads_cnt = 0;
682
683 bdata.id = 0;
Deepak Kc86845db2011-11-09 17:33:38 +0530684 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800685
686 bdata.id = 1;
Deepak Kc86845db2011-11-09 17:33:38 +0530687 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800688
689 bdata.id = 2;
690 bdata.pads = serial2_pads;
691 bdata.pads_cnt = ARRAY_SIZE(serial2_pads);
Deepak Kc86845db2011-11-09 17:33:38 +0530692 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800693}
694
695#else
696
697static inline void board_serial_init(void)
698{
699 omap_serial_init();
700}
701
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300702#endif
703
Kalle Valo63138812009-08-28 10:51:38 -0700704static void __init n8x0_init_machine(void)
705{
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300706 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
Kalle Valo63138812009-08-28 10:51:38 -0700707 /* FIXME: add n810 spi devices */
708 spi_register_board_info(n800_spi_board_info,
709 ARRAY_SIZE(n800_spi_board_info));
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300710 omap_register_i2c_bus(1, 400, n8x0_i2c_board_info_1,
711 ARRAY_SIZE(n8x0_i2c_board_info_1));
Jarkko Nikula366498d2010-08-20 09:36:28 +0300712 omap_register_i2c_bus(2, 400, NULL, 0);
713 if (machine_is_nokia_n810())
714 i2c_register_board_info(2, n810_i2c_board_info_2,
715 ARRAY_SIZE(n810_i2c_board_info_2));
Tony Lindgren0b50c692010-12-22 18:42:36 -0800716 board_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700717 omap_sdrc_init(NULL, NULL);
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000718 gpmc_onenand_init(board_onenand_data);
Tony Lindgren9418c652010-02-26 15:31:12 -0800719 n8x0_mmc_init();
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800720 n8x0_usb_init();
Aaro Koskinen0857ba32012-11-18 18:36:19 +0200721 n8x0_cbus_init();
Kalle Valo63138812009-08-28 10:51:38 -0700722}
723
724MACHINE_START(NOKIA_N800, "Nokia N800")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400725 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100726 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700727 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700728 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700729 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100730 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700731 .init_machine = n8x0_init_machine,
Shawn Guobbd707a2012-04-26 16:06:50 +0800732 .init_late = omap2420_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700733 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000734 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700735MACHINE_END
736
737MACHINE_START(NOKIA_N810, "Nokia N810")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400738 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100739 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700740 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700741 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700742 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100743 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700744 .init_machine = n8x0_init_machine,
Shawn Guobbd707a2012-04-26 16:06:50 +0800745 .init_late = omap2420_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700746 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000747 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700748MACHINE_END
749
750MACHINE_START(NOKIA_N810_WIMAX, "Nokia N810 WiMAX")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400751 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100752 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700753 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700754 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700755 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100756 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700757 .init_machine = n8x0_init_machine,
Shawn Guobbd707a2012-04-26 16:06:50 +0800758 .init_late = omap2420_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700759 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000760 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700761MACHINE_END