blob: 147d9005f32009b337c490589f5cf4b2b13802e2 [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>
19#include <linux/stddef.h>
Tony Lindgren9418c652010-02-26 15:31:12 -080020#include <linux/i2c.h>
Kalle Valo63138812009-08-28 10:51:38 -070021#include <linux/spi/spi.h>
22#include <linux/usb/musb.h>
Jarkko Nikula366498d2010-08-20 09:36:28 +030023#include <sound/tlv320aic3x.h>
Kalle Valo63138812009-08-28 10:51:38 -070024
25#include <asm/mach/arch.h>
26#include <asm/mach-types.h>
27
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/board.h>
29#include <plat/common.h>
Tony Lindgren9418c652010-02-26 15:31:12 -080030#include <plat/menelaus.h>
Kalle Valo63138812009-08-28 10:51:38 -070031#include <mach/irqs.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070032#include <plat/mcspi.h>
33#include <plat/onenand.h>
Tony Lindgren9418c652010-02-26 15:31:12 -080034#include <plat/mmc.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070035#include <plat/serial.h>
Kalle Valo63138812009-08-28 10:51:38 -070036
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +030037#include "mux.h"
38
Tony Lindgren9418c652010-02-26 15:31:12 -080039static int slot1_cover_open;
40static int slot2_cover_open;
41static struct device *mmc_device;
42
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080043#define TUSB6010_ASYNC_CS 1
44#define TUSB6010_SYNC_CS 4
45#define TUSB6010_GPIO_INT 58
46#define TUSB6010_GPIO_ENABLE 0
47#define TUSB6010_DMACHAN 0x3f
48
49#if defined(CONFIG_USB_TUSB6010) || \
50 defined(CONFIG_USB_TUSB6010_MODULE)
51/*
52 * Enable or disable power to TUSB6010. When enabling, turn on 3.3 V and
53 * 1.5 V voltage regulators of PM companion chip. Companion chip will then
54 * provide then PGOOD signal to TUSB6010 which will release it from reset.
55 */
56static int tusb_set_power(int state)
57{
58 int i, retval = 0;
59
60 if (state) {
61 gpio_set_value(TUSB6010_GPIO_ENABLE, 1);
62 msleep(1);
63
64 /* Wait until TUSB6010 pulls INT pin down */
65 i = 100;
66 while (i && gpio_get_value(TUSB6010_GPIO_INT)) {
67 msleep(1);
68 i--;
69 }
70
71 if (!i) {
72 printk(KERN_ERR "tusb: powerup failed\n");
73 retval = -ENODEV;
74 }
75 } else {
76 gpio_set_value(TUSB6010_GPIO_ENABLE, 0);
77 msleep(10);
78 }
79
80 return retval;
81}
82
83static struct musb_hdrc_config musb_config = {
84 .multipoint = 1,
85 .dyn_fifo = 1,
86 .num_eps = 16,
87 .ram_bits = 12,
88};
89
90static struct musb_hdrc_platform_data tusb_data = {
91#if defined(CONFIG_USB_MUSB_OTG)
92 .mode = MUSB_OTG,
93#elif defined(CONFIG_USB_MUSB_PERIPHERAL)
94 .mode = MUSB_PERIPHERAL,
95#else /* defined(CONFIG_USB_MUSB_HOST) */
96 .mode = MUSB_HOST,
97#endif
98 .set_power = tusb_set_power,
99 .min_power = 25, /* x2 = 50 mA drawn from VBUS as peripheral */
100 .power = 100, /* Max 100 mA VBUS for host mode */
101 .config = &musb_config,
102};
103
104static void __init n8x0_usb_init(void)
105{
106 int ret = 0;
107 static char announce[] __initdata = KERN_INFO "TUSB 6010\n";
108
109 /* PM companion chip power control pin */
110 ret = gpio_request(TUSB6010_GPIO_ENABLE, "TUSB6010 enable");
111 if (ret != 0) {
112 printk(KERN_ERR "Could not get TUSB power GPIO%i\n",
113 TUSB6010_GPIO_ENABLE);
114 return;
115 }
116 gpio_direction_output(TUSB6010_GPIO_ENABLE, 0);
117
118 tusb_set_power(0);
119
120 ret = tusb6010_setup_interface(&tusb_data, TUSB6010_REFCLK_19, 2,
121 TUSB6010_ASYNC_CS, TUSB6010_SYNC_CS,
122 TUSB6010_GPIO_INT, TUSB6010_DMACHAN);
123 if (ret != 0)
124 goto err;
125
126 printk(announce);
127
128 return;
129
130err:
131 gpio_free(TUSB6010_GPIO_ENABLE);
132}
133#else
134
135static void __init n8x0_usb_init(void) {}
136
137#endif /*CONFIG_USB_TUSB6010 */
138
139
Kalle Valo63138812009-08-28 10:51:38 -0700140static struct omap2_mcspi_device_config p54spi_mcspi_config = {
141 .turbo_mode = 0,
142 .single_channel = 1,
143};
144
145static struct spi_board_info n800_spi_board_info[] __initdata = {
146 {
147 .modalias = "p54spi",
148 .bus_num = 2,
149 .chip_select = 0,
150 .max_speed_hz = 48000000,
151 .controller_data = &p54spi_mcspi_config,
152 },
153};
154
155#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
156 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
157
158static struct mtd_partition onenand_partitions[] = {
159 {
160 .name = "bootloader",
161 .offset = 0,
162 .size = 0x20000,
163 .mask_flags = MTD_WRITEABLE, /* Force read-only */
164 },
165 {
166 .name = "config",
167 .offset = MTDPART_OFS_APPEND,
168 .size = 0x60000,
169 },
170 {
171 .name = "kernel",
172 .offset = MTDPART_OFS_APPEND,
173 .size = 0x200000,
174 },
175 {
176 .name = "initfs",
177 .offset = MTDPART_OFS_APPEND,
178 .size = 0x400000,
179 },
180 {
181 .name = "rootfs",
182 .offset = MTDPART_OFS_APPEND,
183 .size = MTDPART_SIZ_FULL,
184 },
185};
186
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000187static struct omap_onenand_platform_data board_onenand_data[] = {
188 {
189 .cs = 0,
190 .gpio_irq = 26,
191 .parts = onenand_partitions,
192 .nr_parts = ARRAY_SIZE(onenand_partitions),
193 .flags = ONENAND_SYNC_READ,
194 }
Kalle Valo63138812009-08-28 10:51:38 -0700195};
Kalle Valo63138812009-08-28 10:51:38 -0700196#endif
197
Tony Lindgren9418c652010-02-26 15:31:12 -0800198#if defined(CONFIG_MENELAUS) && \
199 (defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE))
200
201/*
202 * On both N800 and N810, only the first of the two MMC controllers is in use.
203 * The two MMC slots are multiplexed via Menelaus companion chip over I2C.
204 * On N800, both slots are powered via Menelaus. On N810, only one of the
205 * slots is powered via Menelaus. The N810 EMMC is powered via GPIO.
206 *
207 * VMMC slot 1 on both N800 and N810
208 * VDCDC3_APE and VMCS2_APE slot 2 on N800
209 * GPIO23 and GPIO9 slot 2 EMMC on N810
210 *
211 */
212#define N8X0_SLOT_SWITCH_GPIO 96
213#define N810_EMMC_VSD_GPIO 23
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700214#define N810_EMMC_VIO_GPIO 9
Tony Lindgren9418c652010-02-26 15:31:12 -0800215
216static int n8x0_mmc_switch_slot(struct device *dev, int slot)
217{
218#ifdef CONFIG_MMC_DEBUG
219 dev_dbg(dev, "Choose slot %d\n", slot + 1);
220#endif
221 gpio_set_value(N8X0_SLOT_SWITCH_GPIO, slot);
222 return 0;
223}
224
225static int n8x0_mmc_set_power_menelaus(struct device *dev, int slot,
226 int power_on, int vdd)
227{
228 int mV;
229
230#ifdef CONFIG_MMC_DEBUG
231 dev_dbg(dev, "Set slot %d power: %s (vdd %d)\n", slot + 1,
232 power_on ? "on" : "off", vdd);
233#endif
234 if (slot == 0) {
235 if (!power_on)
236 return menelaus_set_vmmc(0);
237 switch (1 << vdd) {
238 case MMC_VDD_33_34:
239 case MMC_VDD_32_33:
240 case MMC_VDD_31_32:
241 mV = 3100;
242 break;
243 case MMC_VDD_30_31:
244 mV = 3000;
245 break;
246 case MMC_VDD_28_29:
247 mV = 2800;
248 break;
249 case MMC_VDD_165_195:
250 mV = 1850;
251 break;
252 default:
253 BUG();
254 }
255 return menelaus_set_vmmc(mV);
256 } else {
257 if (!power_on)
258 return menelaus_set_vdcdc(3, 0);
259 switch (1 << vdd) {
260 case MMC_VDD_33_34:
261 case MMC_VDD_32_33:
262 mV = 3300;
263 break;
264 case MMC_VDD_30_31:
265 case MMC_VDD_29_30:
266 mV = 3000;
267 break;
268 case MMC_VDD_28_29:
269 case MMC_VDD_27_28:
270 mV = 2800;
271 break;
272 case MMC_VDD_24_25:
273 case MMC_VDD_23_24:
274 mV = 2400;
275 break;
276 case MMC_VDD_22_23:
277 case MMC_VDD_21_22:
278 mV = 2200;
279 break;
280 case MMC_VDD_20_21:
281 mV = 2000;
282 break;
283 case MMC_VDD_165_195:
284 mV = 1800;
285 break;
286 default:
287 BUG();
288 }
289 return menelaus_set_vdcdc(3, mV);
290 }
291 return 0;
292}
293
294static void n810_set_power_emmc(struct device *dev,
295 int power_on)
296{
297 dev_dbg(dev, "Set EMMC power %s\n", power_on ? "on" : "off");
298
299 if (power_on) {
300 gpio_set_value(N810_EMMC_VSD_GPIO, 1);
301 msleep(1);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700302 gpio_set_value(N810_EMMC_VIO_GPIO, 1);
Tony Lindgren9418c652010-02-26 15:31:12 -0800303 msleep(1);
304 } else {
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700305 gpio_set_value(N810_EMMC_VIO_GPIO, 0);
Tony Lindgren9418c652010-02-26 15:31:12 -0800306 msleep(50);
307 gpio_set_value(N810_EMMC_VSD_GPIO, 0);
308 msleep(50);
309 }
310}
311
312static int n8x0_mmc_set_power(struct device *dev, int slot, int power_on,
313 int vdd)
314{
315 if (machine_is_nokia_n800() || slot == 0)
316 return n8x0_mmc_set_power_menelaus(dev, slot, power_on, vdd);
317
318 n810_set_power_emmc(dev, power_on);
319
320 return 0;
321}
322
323static int n8x0_mmc_set_bus_mode(struct device *dev, int slot, int bus_mode)
324{
325 int r;
326
327 dev_dbg(dev, "Set slot %d bus mode %s\n", slot + 1,
328 bus_mode == MMC_BUSMODE_OPENDRAIN ? "open-drain" : "push-pull");
329 BUG_ON(slot != 0 && slot != 1);
330 slot++;
331 switch (bus_mode) {
332 case MMC_BUSMODE_OPENDRAIN:
333 r = menelaus_set_mmc_opendrain(slot, 1);
334 break;
335 case MMC_BUSMODE_PUSHPULL:
336 r = menelaus_set_mmc_opendrain(slot, 0);
337 break;
338 default:
339 BUG();
340 }
341 if (r != 0 && printk_ratelimit())
342 dev_err(dev, "MMC: unable to set bus mode for slot %d\n",
343 slot);
344 return r;
345}
346
347static int n8x0_mmc_get_cover_state(struct device *dev, int slot)
348{
349 slot++;
350 BUG_ON(slot != 1 && slot != 2);
351 if (slot == 1)
352 return slot1_cover_open;
353 else
354 return slot2_cover_open;
355}
356
357static void n8x0_mmc_callback(void *data, u8 card_mask)
358{
359 int bit, *openp, index;
360
361 if (machine_is_nokia_n800()) {
362 bit = 1 << 1;
363 openp = &slot2_cover_open;
364 index = 1;
365 } else {
366 bit = 1;
367 openp = &slot1_cover_open;
368 index = 0;
369 }
370
371 if (card_mask & bit)
372 *openp = 1;
373 else
374 *openp = 0;
375
376 omap_mmc_notify_cover_event(mmc_device, index, *openp);
377}
378
Tony Lindgren9418c652010-02-26 15:31:12 -0800379static int n8x0_mmc_late_init(struct device *dev)
380{
381 int r, bit, *openp;
382 int vs2sel;
383
384 mmc_device = dev;
385
386 r = menelaus_set_slot_sel(1);
387 if (r < 0)
388 return r;
389
390 if (machine_is_nokia_n800())
391 vs2sel = 0;
392 else
393 vs2sel = 2;
394
395 r = menelaus_set_mmc_slot(2, 0, vs2sel, 1);
396 if (r < 0)
397 return r;
398
399 n8x0_mmc_set_power(dev, 0, MMC_POWER_ON, 16); /* MMC_VDD_28_29 */
400 n8x0_mmc_set_power(dev, 1, MMC_POWER_ON, 16);
401
402 r = menelaus_set_mmc_slot(1, 1, 0, 1);
403 if (r < 0)
404 return r;
405 r = menelaus_set_mmc_slot(2, 1, vs2sel, 1);
406 if (r < 0)
407 return r;
408
409 r = menelaus_get_slot_pin_states();
410 if (r < 0)
411 return r;
412
413 if (machine_is_nokia_n800()) {
414 bit = 1 << 1;
415 openp = &slot2_cover_open;
416 } else {
417 bit = 1;
418 openp = &slot1_cover_open;
419 slot2_cover_open = 0;
420 }
421
422 /* All slot pin bits seem to be inversed until first switch change */
423 if (r == 0xf || r == (0xf & ~bit))
424 r = ~r;
425
426 if (r & bit)
427 *openp = 1;
428 else
429 *openp = 0;
430
431 r = menelaus_register_mmc_callback(n8x0_mmc_callback, NULL);
432
433 return r;
434}
435
436static void n8x0_mmc_shutdown(struct device *dev)
437{
438 int vs2sel;
439
440 if (machine_is_nokia_n800())
441 vs2sel = 0;
442 else
443 vs2sel = 2;
444
445 menelaus_set_mmc_slot(1, 0, 0, 0);
446 menelaus_set_mmc_slot(2, 0, vs2sel, 0);
447}
448
449static void n8x0_mmc_cleanup(struct device *dev)
450{
451 menelaus_unregister_mmc_callback();
452
453 gpio_free(N8X0_SLOT_SWITCH_GPIO);
454
455 if (machine_is_nokia_n810()) {
456 gpio_free(N810_EMMC_VSD_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700457 gpio_free(N810_EMMC_VIO_GPIO);
Tony Lindgren9418c652010-02-26 15:31:12 -0800458 }
459}
460
461/*
462 * MMC controller1 has two slots that are multiplexed via I2C.
463 * MMC controller2 is not in use.
464 */
465static struct omap_mmc_platform_data mmc1_data = {
466 .nr_slots = 2,
467 .switch_slot = n8x0_mmc_switch_slot,
468 .init = n8x0_mmc_late_init,
469 .cleanup = n8x0_mmc_cleanup,
470 .shutdown = n8x0_mmc_shutdown,
471 .max_freq = 24000000,
472 .dma_mask = 0xffffffff,
473 .slots[0] = {
474 .wires = 4,
475 .set_power = n8x0_mmc_set_power,
476 .set_bus_mode = n8x0_mmc_set_bus_mode,
477 .get_cover_state = n8x0_mmc_get_cover_state,
478 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_30_31 |
479 MMC_VDD_32_33 | MMC_VDD_33_34,
480 .name = "internal",
481 },
482 .slots[1] = {
483 .set_power = n8x0_mmc_set_power,
484 .set_bus_mode = n8x0_mmc_set_bus_mode,
485 .get_cover_state = n8x0_mmc_get_cover_state,
486 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_20_21 |
487 MMC_VDD_21_22 | MMC_VDD_22_23 |
488 MMC_VDD_23_24 | MMC_VDD_24_25 |
489 MMC_VDD_27_28 | MMC_VDD_28_29 |
490 MMC_VDD_29_30 | MMC_VDD_30_31 |
491 MMC_VDD_32_33 | MMC_VDD_33_34,
492 .name = "external",
493 },
494};
495
496static struct omap_mmc_platform_data *mmc_data[OMAP24XX_NR_MMC];
497
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -0700498static void __init n8x0_mmc_init(void)
Tony Lindgren9418c652010-02-26 15:31:12 -0800499
500{
501 int err;
502
503 if (machine_is_nokia_n810()) {
504 mmc1_data.slots[0].name = "external";
505
506 /*
507 * Some Samsung Movinand chips do not like open-ended
508 * multi-block reads and fall to braind-dead state
509 * while doing so. Reducing the number of blocks in
510 * the transfer or delays in clock disable do not help
511 */
512 mmc1_data.slots[1].name = "internal";
513 mmc1_data.slots[1].ban_openended = 1;
514 }
515
516 err = gpio_request(N8X0_SLOT_SWITCH_GPIO, "MMC slot switch");
517 if (err)
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700518 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800519
520 gpio_direction_output(N8X0_SLOT_SWITCH_GPIO, 0);
521
522 if (machine_is_nokia_n810()) {
523 err = gpio_request(N810_EMMC_VSD_GPIO, "MMC slot 2 Vddf");
524 if (err) {
525 gpio_free(N8X0_SLOT_SWITCH_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700526 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800527 }
528 gpio_direction_output(N810_EMMC_VSD_GPIO, 0);
529
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700530 err = gpio_request(N810_EMMC_VIO_GPIO, "MMC slot 2 Vdd");
Tony Lindgren9418c652010-02-26 15:31:12 -0800531 if (err) {
532 gpio_free(N8X0_SLOT_SWITCH_GPIO);
533 gpio_free(N810_EMMC_VSD_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700534 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800535 }
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700536 gpio_direction_output(N810_EMMC_VIO_GPIO, 0);
Tony Lindgren9418c652010-02-26 15:31:12 -0800537 }
538
539 mmc_data[0] = &mmc1_data;
540 omap2_init_mmc(mmc_data, OMAP24XX_NR_MMC);
541}
542#else
543
544void __init n8x0_mmc_init(void)
545{
546}
Tony Lindgren9418c652010-02-26 15:31:12 -0800547#endif /* CONFIG_MMC_OMAP */
548
549#ifdef CONFIG_MENELAUS
550
551static int n8x0_auto_sleep_regulators(void)
552{
553 u32 val;
554 int ret;
555
556 val = EN_VPLL_SLEEP | EN_VMMC_SLEEP \
557 | EN_VAUX_SLEEP | EN_VIO_SLEEP \
558 | EN_VMEM_SLEEP | EN_DC3_SLEEP \
559 | EN_VC_SLEEP | EN_DC2_SLEEP;
560
561 ret = menelaus_set_regulator_sleep(1, val);
562 if (ret < 0) {
563 printk(KERN_ERR "Could not set regulators to sleep on "
564 "menelaus: %u\n", ret);
565 return ret;
566 }
567 return 0;
568}
569
570static int n8x0_auto_voltage_scale(void)
571{
572 int ret;
573
574 ret = menelaus_set_vcore_hw(1400, 1050);
575 if (ret < 0) {
576 printk(KERN_ERR "Could not set VCORE voltage on "
577 "menelaus: %u\n", ret);
578 return ret;
579 }
580 return 0;
581}
582
583static int n8x0_menelaus_late_init(struct device *dev)
584{
585 int ret;
586
587 ret = n8x0_auto_voltage_scale();
588 if (ret < 0)
589 return ret;
590 ret = n8x0_auto_sleep_regulators();
591 if (ret < 0)
592 return ret;
593 return 0;
594}
595
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300596#else
597static int n8x0_menelaus_late_init(struct device *dev)
598{
599 return 0;
600}
601#endif
Tony Lindgren9418c652010-02-26 15:31:12 -0800602
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300603static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata = {
Tony Lindgren9418c652010-02-26 15:31:12 -0800604 .late_init = n8x0_menelaus_late_init,
605};
606
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300607static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = {
608 {
609 I2C_BOARD_INFO("menelaus", 0x72),
610 .irq = INT_24XX_SYS_NIRQ,
611 .platform_data = &n8x0_menelaus_platform_data,
612 },
613};
Tony Lindgren9418c652010-02-26 15:31:12 -0800614
Jarkko Nikula366498d2010-08-20 09:36:28 +0300615static struct aic3x_pdata n810_aic33_data __initdata = {
616 .gpio_reset = 118,
617};
618
619static struct i2c_board_info n810_i2c_board_info_2[] __initdata = {
620 {
621 I2C_BOARD_INFO("tlv320aic3x", 0x18),
622 .platform_data = &n810_aic33_data,
623 },
624};
Tony Lindgren9418c652010-02-26 15:31:12 -0800625
Kalle Valo63138812009-08-28 10:51:38 -0700626static void __init n8x0_map_io(void)
627{
628 omap2_set_globals_242x();
Tony Lindgren6fbd55d2010-02-12 12:26:47 -0800629 omap242x_map_common_io();
Kalle Valo63138812009-08-28 10:51:38 -0700630}
631
632static void __init n8x0_init_irq(void)
633{
Paul Walmsley48057342010-12-21 15:25:10 -0700634 omap2_init_common_infrastructure();
635 omap2_init_common_devices(NULL, NULL);
Kalle Valo63138812009-08-28 10:51:38 -0700636 omap_init_irq();
Kalle Valo63138812009-08-28 10:51:38 -0700637}
638
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300639#ifdef CONFIG_OMAP_MUX
640static struct omap_board_mux board_mux[] __initdata = {
Jarkko Nikula04be1e92010-08-20 09:36:28 +0300641 /* I2S codec port pins for McBSP block */
642 OMAP2420_MUX(EAC_AC_SCLK, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
643 OMAP2420_MUX(EAC_AC_FS, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
644 OMAP2420_MUX(EAC_AC_DIN, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
645 OMAP2420_MUX(EAC_AC_DOUT, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300646 { .reg_offset = OMAP_MUX_TERMINATOR },
647};
Tony Lindgren0b50c692010-12-22 18:42:36 -0800648
649static struct omap_device_pad serial2_pads[] __initdata = {
650 {
651 .name = "uart3_rx_irrx.uart3_rx_irrx",
652 .flags = OMAP_DEVICE_PAD_REMUX | OMAP_DEVICE_PAD_WAKEUP,
653 .enable = OMAP_MUX_MODE0,
654 .idle = OMAP_MUX_MODE3 /* Mux as GPIO for idle */
655 },
656};
657
658static inline void board_serial_init(void)
659{
660 struct omap_board_data bdata;
661
662 bdata.flags = 0;
663 bdata.pads = NULL;
664 bdata.pads_cnt = 0;
665
666 bdata.id = 0;
667 omap_serial_init_port(&bdata);
668
669 bdata.id = 1;
670 omap_serial_init_port(&bdata);
671
672 bdata.id = 2;
673 bdata.pads = serial2_pads;
674 bdata.pads_cnt = ARRAY_SIZE(serial2_pads);
675 omap_serial_init_port(&bdata);
676}
677
678#else
679
680static inline void board_serial_init(void)
681{
682 omap_serial_init();
683}
684
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300685#endif
686
Kalle Valo63138812009-08-28 10:51:38 -0700687static void __init n8x0_init_machine(void)
688{
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300689 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
Kalle Valo63138812009-08-28 10:51:38 -0700690 /* FIXME: add n810 spi devices */
691 spi_register_board_info(n800_spi_board_info,
692 ARRAY_SIZE(n800_spi_board_info));
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300693 omap_register_i2c_bus(1, 400, n8x0_i2c_board_info_1,
694 ARRAY_SIZE(n8x0_i2c_board_info_1));
Jarkko Nikula366498d2010-08-20 09:36:28 +0300695 omap_register_i2c_bus(2, 400, NULL, 0);
696 if (machine_is_nokia_n810())
697 i2c_register_board_info(2, n810_i2c_board_info_2,
698 ARRAY_SIZE(n810_i2c_board_info_2));
Tony Lindgren0b50c692010-12-22 18:42:36 -0800699 board_serial_init();
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000700 gpmc_onenand_init(board_onenand_data);
Tony Lindgren9418c652010-02-26 15:31:12 -0800701 n8x0_mmc_init();
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800702 n8x0_usb_init();
Kalle Valo63138812009-08-28 10:51:38 -0700703}
704
705MACHINE_START(NOKIA_N800, "Nokia N800")
Kalle Valo63138812009-08-28 10:51:38 -0700706 .boot_params = 0x80000100,
707 .map_io = n8x0_map_io,
Russell King71ee7da2010-05-23 10:18:16 +0100708 .reserve = omap_reserve,
Kalle Valo63138812009-08-28 10:51:38 -0700709 .init_irq = n8x0_init_irq,
710 .init_machine = n8x0_init_machine,
711 .timer = &omap_timer,
712MACHINE_END
713
714MACHINE_START(NOKIA_N810, "Nokia N810")
Kalle Valo63138812009-08-28 10:51:38 -0700715 .boot_params = 0x80000100,
716 .map_io = n8x0_map_io,
Russell King71ee7da2010-05-23 10:18:16 +0100717 .reserve = omap_reserve,
Kalle Valo63138812009-08-28 10:51:38 -0700718 .init_irq = n8x0_init_irq,
719 .init_machine = n8x0_init_machine,
720 .timer = &omap_timer,
721MACHINE_END
722
723MACHINE_START(NOKIA_N810_WIMAX, "Nokia N810 WiMAX")
Kalle Valo63138812009-08-28 10:51:38 -0700724 .boot_params = 0x80000100,
725 .map_io = n8x0_map_io,
Russell King71ee7da2010-05-23 10:18:16 +0100726 .reserve = omap_reserve,
Kalle Valo63138812009-08-28 10:51:38 -0700727 .init_irq = n8x0_init_irq,
728 .init_machine = n8x0_init_machine,
729 .timer = &omap_timer,
730MACHINE_END