blob: a9e983e01199d14f8438881496016336e8d3a91d [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>
Tony Lindgren4e653312011-11-10 22:45:17 +010029#include "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
Arnd Bergmann9a35f872011-10-02 16:45:47 +020049#if defined(CONFIG_USB_MUSB_TUSB6010) || defined(CONFIG_USB_MUSB_TUSB6010_MODULE)
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080050/*
51 * Enable or disable power to TUSB6010. When enabling, turn on 3.3 V and
52 * 1.5 V voltage regulators of PM companion chip. Companion chip will then
53 * provide then PGOOD signal to TUSB6010 which will release it from reset.
54 */
55static int tusb_set_power(int state)
56{
57 int i, retval = 0;
58
59 if (state) {
60 gpio_set_value(TUSB6010_GPIO_ENABLE, 1);
61 msleep(1);
62
63 /* Wait until TUSB6010 pulls INT pin down */
64 i = 100;
65 while (i && gpio_get_value(TUSB6010_GPIO_INT)) {
66 msleep(1);
67 i--;
68 }
69
70 if (!i) {
71 printk(KERN_ERR "tusb: powerup failed\n");
72 retval = -ENODEV;
73 }
74 } else {
75 gpio_set_value(TUSB6010_GPIO_ENABLE, 0);
76 msleep(10);
77 }
78
79 return retval;
80}
81
82static struct musb_hdrc_config musb_config = {
83 .multipoint = 1,
84 .dyn_fifo = 1,
85 .num_eps = 16,
86 .ram_bits = 12,
87};
88
89static struct musb_hdrc_platform_data tusb_data = {
90#if defined(CONFIG_USB_MUSB_OTG)
91 .mode = MUSB_OTG,
92#elif defined(CONFIG_USB_MUSB_PERIPHERAL)
93 .mode = MUSB_PERIPHERAL,
94#else /* defined(CONFIG_USB_MUSB_HOST) */
95 .mode = MUSB_HOST,
96#endif
97 .set_power = tusb_set_power,
98 .min_power = 25, /* x2 = 50 mA drawn from VBUS as peripheral */
99 .power = 100, /* Max 100 mA VBUS for host mode */
100 .config = &musb_config,
101};
102
103static void __init n8x0_usb_init(void)
104{
105 int ret = 0;
106 static char announce[] __initdata = KERN_INFO "TUSB 6010\n";
107
108 /* PM companion chip power control pin */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300109 ret = gpio_request_one(TUSB6010_GPIO_ENABLE, GPIOF_OUT_INIT_LOW,
110 "TUSB6010 enable");
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800111 if (ret != 0) {
112 printk(KERN_ERR "Could not get TUSB power GPIO%i\n",
113 TUSB6010_GPIO_ENABLE);
114 return;
115 }
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800116 tusb_set_power(0);
117
118 ret = tusb6010_setup_interface(&tusb_data, TUSB6010_REFCLK_19, 2,
119 TUSB6010_ASYNC_CS, TUSB6010_SYNC_CS,
120 TUSB6010_GPIO_INT, TUSB6010_DMACHAN);
121 if (ret != 0)
122 goto err;
123
124 printk(announce);
125
126 return;
127
128err:
129 gpio_free(TUSB6010_GPIO_ENABLE);
130}
131#else
132
133static void __init n8x0_usb_init(void) {}
134
Felipe Balbi7c925542010-12-01 14:23:48 +0200135#endif /*CONFIG_USB_MUSB_TUSB6010 */
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800136
137
Kalle Valo63138812009-08-28 10:51:38 -0700138static struct omap2_mcspi_device_config p54spi_mcspi_config = {
139 .turbo_mode = 0,
Kalle Valo63138812009-08-28 10:51:38 -0700140};
141
142static struct spi_board_info n800_spi_board_info[] __initdata = {
143 {
144 .modalias = "p54spi",
145 .bus_num = 2,
146 .chip_select = 0,
147 .max_speed_hz = 48000000,
148 .controller_data = &p54spi_mcspi_config,
149 },
150};
151
152#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
153 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
154
155static struct mtd_partition onenand_partitions[] = {
156 {
157 .name = "bootloader",
158 .offset = 0,
159 .size = 0x20000,
160 .mask_flags = MTD_WRITEABLE, /* Force read-only */
161 },
162 {
163 .name = "config",
164 .offset = MTDPART_OFS_APPEND,
165 .size = 0x60000,
166 },
167 {
168 .name = "kernel",
169 .offset = MTDPART_OFS_APPEND,
170 .size = 0x200000,
171 },
172 {
173 .name = "initfs",
174 .offset = MTDPART_OFS_APPEND,
175 .size = 0x400000,
176 },
177 {
178 .name = "rootfs",
179 .offset = MTDPART_OFS_APPEND,
180 .size = MTDPART_SIZ_FULL,
181 },
182};
183
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000184static struct omap_onenand_platform_data board_onenand_data[] = {
185 {
186 .cs = 0,
187 .gpio_irq = 26,
188 .parts = onenand_partitions,
189 .nr_parts = ARRAY_SIZE(onenand_partitions),
190 .flags = ONENAND_SYNC_READ,
191 }
Kalle Valo63138812009-08-28 10:51:38 -0700192};
Kalle Valo63138812009-08-28 10:51:38 -0700193#endif
194
Tony Lindgren9418c652010-02-26 15:31:12 -0800195#if defined(CONFIG_MENELAUS) && \
196 (defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE))
197
198/*
199 * On both N800 and N810, only the first of the two MMC controllers is in use.
200 * The two MMC slots are multiplexed via Menelaus companion chip over I2C.
201 * On N800, both slots are powered via Menelaus. On N810, only one of the
202 * slots is powered via Menelaus. The N810 EMMC is powered via GPIO.
203 *
204 * VMMC slot 1 on both N800 and N810
205 * VDCDC3_APE and VMCS2_APE slot 2 on N800
206 * GPIO23 and GPIO9 slot 2 EMMC on N810
207 *
208 */
209#define N8X0_SLOT_SWITCH_GPIO 96
210#define N810_EMMC_VSD_GPIO 23
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700211#define N810_EMMC_VIO_GPIO 9
Tony Lindgren9418c652010-02-26 15:31:12 -0800212
213static int n8x0_mmc_switch_slot(struct device *dev, int slot)
214{
215#ifdef CONFIG_MMC_DEBUG
216 dev_dbg(dev, "Choose slot %d\n", slot + 1);
217#endif
218 gpio_set_value(N8X0_SLOT_SWITCH_GPIO, slot);
219 return 0;
220}
221
222static int n8x0_mmc_set_power_menelaus(struct device *dev, int slot,
223 int power_on, int vdd)
224{
225 int mV;
226
227#ifdef CONFIG_MMC_DEBUG
228 dev_dbg(dev, "Set slot %d power: %s (vdd %d)\n", slot + 1,
229 power_on ? "on" : "off", vdd);
230#endif
231 if (slot == 0) {
232 if (!power_on)
233 return menelaus_set_vmmc(0);
234 switch (1 << vdd) {
235 case MMC_VDD_33_34:
236 case MMC_VDD_32_33:
237 case MMC_VDD_31_32:
238 mV = 3100;
239 break;
240 case MMC_VDD_30_31:
241 mV = 3000;
242 break;
243 case MMC_VDD_28_29:
244 mV = 2800;
245 break;
246 case MMC_VDD_165_195:
247 mV = 1850;
248 break;
249 default:
250 BUG();
251 }
252 return menelaus_set_vmmc(mV);
253 } else {
254 if (!power_on)
255 return menelaus_set_vdcdc(3, 0);
256 switch (1 << vdd) {
257 case MMC_VDD_33_34:
258 case MMC_VDD_32_33:
259 mV = 3300;
260 break;
261 case MMC_VDD_30_31:
262 case MMC_VDD_29_30:
263 mV = 3000;
264 break;
265 case MMC_VDD_28_29:
266 case MMC_VDD_27_28:
267 mV = 2800;
268 break;
269 case MMC_VDD_24_25:
270 case MMC_VDD_23_24:
271 mV = 2400;
272 break;
273 case MMC_VDD_22_23:
274 case MMC_VDD_21_22:
275 mV = 2200;
276 break;
277 case MMC_VDD_20_21:
278 mV = 2000;
279 break;
280 case MMC_VDD_165_195:
281 mV = 1800;
282 break;
283 default:
284 BUG();
285 }
286 return menelaus_set_vdcdc(3, mV);
287 }
288 return 0;
289}
290
291static void n810_set_power_emmc(struct device *dev,
292 int power_on)
293{
294 dev_dbg(dev, "Set EMMC power %s\n", power_on ? "on" : "off");
295
296 if (power_on) {
297 gpio_set_value(N810_EMMC_VSD_GPIO, 1);
298 msleep(1);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700299 gpio_set_value(N810_EMMC_VIO_GPIO, 1);
Tony Lindgren9418c652010-02-26 15:31:12 -0800300 msleep(1);
301 } else {
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700302 gpio_set_value(N810_EMMC_VIO_GPIO, 0);
Tony Lindgren9418c652010-02-26 15:31:12 -0800303 msleep(50);
304 gpio_set_value(N810_EMMC_VSD_GPIO, 0);
305 msleep(50);
306 }
307}
308
309static int n8x0_mmc_set_power(struct device *dev, int slot, int power_on,
310 int vdd)
311{
312 if (machine_is_nokia_n800() || slot == 0)
313 return n8x0_mmc_set_power_menelaus(dev, slot, power_on, vdd);
314
315 n810_set_power_emmc(dev, power_on);
316
317 return 0;
318}
319
320static int n8x0_mmc_set_bus_mode(struct device *dev, int slot, int bus_mode)
321{
322 int r;
323
324 dev_dbg(dev, "Set slot %d bus mode %s\n", slot + 1,
325 bus_mode == MMC_BUSMODE_OPENDRAIN ? "open-drain" : "push-pull");
326 BUG_ON(slot != 0 && slot != 1);
327 slot++;
328 switch (bus_mode) {
329 case MMC_BUSMODE_OPENDRAIN:
330 r = menelaus_set_mmc_opendrain(slot, 1);
331 break;
332 case MMC_BUSMODE_PUSHPULL:
333 r = menelaus_set_mmc_opendrain(slot, 0);
334 break;
335 default:
336 BUG();
337 }
338 if (r != 0 && printk_ratelimit())
339 dev_err(dev, "MMC: unable to set bus mode for slot %d\n",
340 slot);
341 return r;
342}
343
344static int n8x0_mmc_get_cover_state(struct device *dev, int slot)
345{
346 slot++;
347 BUG_ON(slot != 1 && slot != 2);
348 if (slot == 1)
349 return slot1_cover_open;
350 else
351 return slot2_cover_open;
352}
353
354static void n8x0_mmc_callback(void *data, u8 card_mask)
355{
356 int bit, *openp, index;
357
358 if (machine_is_nokia_n800()) {
359 bit = 1 << 1;
360 openp = &slot2_cover_open;
361 index = 1;
362 } else {
363 bit = 1;
364 openp = &slot1_cover_open;
365 index = 0;
366 }
367
368 if (card_mask & bit)
369 *openp = 1;
370 else
371 *openp = 0;
372
373 omap_mmc_notify_cover_event(mmc_device, index, *openp);
374}
375
Tony Lindgren9418c652010-02-26 15:31:12 -0800376static int n8x0_mmc_late_init(struct device *dev)
377{
378 int r, bit, *openp;
379 int vs2sel;
380
381 mmc_device = dev;
382
383 r = menelaus_set_slot_sel(1);
384 if (r < 0)
385 return r;
386
387 if (machine_is_nokia_n800())
388 vs2sel = 0;
389 else
390 vs2sel = 2;
391
392 r = menelaus_set_mmc_slot(2, 0, vs2sel, 1);
393 if (r < 0)
394 return r;
395
396 n8x0_mmc_set_power(dev, 0, MMC_POWER_ON, 16); /* MMC_VDD_28_29 */
397 n8x0_mmc_set_power(dev, 1, MMC_POWER_ON, 16);
398
399 r = menelaus_set_mmc_slot(1, 1, 0, 1);
400 if (r < 0)
401 return r;
402 r = menelaus_set_mmc_slot(2, 1, vs2sel, 1);
403 if (r < 0)
404 return r;
405
406 r = menelaus_get_slot_pin_states();
407 if (r < 0)
408 return r;
409
410 if (machine_is_nokia_n800()) {
411 bit = 1 << 1;
412 openp = &slot2_cover_open;
413 } else {
414 bit = 1;
415 openp = &slot1_cover_open;
416 slot2_cover_open = 0;
417 }
418
419 /* All slot pin bits seem to be inversed until first switch change */
420 if (r == 0xf || r == (0xf & ~bit))
421 r = ~r;
422
423 if (r & bit)
424 *openp = 1;
425 else
426 *openp = 0;
427
428 r = menelaus_register_mmc_callback(n8x0_mmc_callback, NULL);
429
430 return r;
431}
432
433static void n8x0_mmc_shutdown(struct device *dev)
434{
435 int vs2sel;
436
437 if (machine_is_nokia_n800())
438 vs2sel = 0;
439 else
440 vs2sel = 2;
441
442 menelaus_set_mmc_slot(1, 0, 0, 0);
443 menelaus_set_mmc_slot(2, 0, vs2sel, 0);
444}
445
446static void n8x0_mmc_cleanup(struct device *dev)
447{
448 menelaus_unregister_mmc_callback();
449
450 gpio_free(N8X0_SLOT_SWITCH_GPIO);
451
452 if (machine_is_nokia_n810()) {
453 gpio_free(N810_EMMC_VSD_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700454 gpio_free(N810_EMMC_VIO_GPIO);
Tony Lindgren9418c652010-02-26 15:31:12 -0800455 }
456}
457
458/*
459 * MMC controller1 has two slots that are multiplexed via I2C.
460 * MMC controller2 is not in use.
461 */
462static struct omap_mmc_platform_data mmc1_data = {
463 .nr_slots = 2,
464 .switch_slot = n8x0_mmc_switch_slot,
465 .init = n8x0_mmc_late_init,
466 .cleanup = n8x0_mmc_cleanup,
467 .shutdown = n8x0_mmc_shutdown,
468 .max_freq = 24000000,
469 .dma_mask = 0xffffffff,
470 .slots[0] = {
471 .wires = 4,
472 .set_power = n8x0_mmc_set_power,
473 .set_bus_mode = n8x0_mmc_set_bus_mode,
474 .get_cover_state = n8x0_mmc_get_cover_state,
475 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_30_31 |
476 MMC_VDD_32_33 | MMC_VDD_33_34,
477 .name = "internal",
478 },
479 .slots[1] = {
480 .set_power = n8x0_mmc_set_power,
481 .set_bus_mode = n8x0_mmc_set_bus_mode,
482 .get_cover_state = n8x0_mmc_get_cover_state,
483 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_20_21 |
484 MMC_VDD_21_22 | MMC_VDD_22_23 |
485 MMC_VDD_23_24 | MMC_VDD_24_25 |
486 MMC_VDD_27_28 | MMC_VDD_28_29 |
487 MMC_VDD_29_30 | MMC_VDD_30_31 |
488 MMC_VDD_32_33 | MMC_VDD_33_34,
489 .name = "external",
490 },
491};
492
493static struct omap_mmc_platform_data *mmc_data[OMAP24XX_NR_MMC];
494
Igor Grinbergbc593f52011-05-03 18:22:09 +0300495static struct gpio n810_emmc_gpios[] __initdata = {
496 { N810_EMMC_VSD_GPIO, GPIOF_OUT_INIT_LOW, "MMC slot 2 Vddf" },
497 { N810_EMMC_VIO_GPIO, GPIOF_OUT_INIT_LOW, "MMC slot 2 Vdd" },
498};
Tony Lindgren9418c652010-02-26 15:31:12 -0800499
Igor Grinbergbc593f52011-05-03 18:22:09 +0300500static void __init n8x0_mmc_init(void)
Tony Lindgren9418c652010-02-26 15:31:12 -0800501{
502 int err;
503
504 if (machine_is_nokia_n810()) {
505 mmc1_data.slots[0].name = "external";
506
507 /*
508 * Some Samsung Movinand chips do not like open-ended
509 * multi-block reads and fall to braind-dead state
510 * while doing so. Reducing the number of blocks in
511 * the transfer or delays in clock disable do not help
512 */
513 mmc1_data.slots[1].name = "internal";
514 mmc1_data.slots[1].ban_openended = 1;
515 }
516
Igor Grinbergbc593f52011-05-03 18:22:09 +0300517 err = gpio_request_one(N8X0_SLOT_SWITCH_GPIO, GPIOF_OUT_INIT_LOW,
518 "MMC slot switch");
Tony Lindgren9418c652010-02-26 15:31:12 -0800519 if (err)
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700520 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800521
Tony Lindgren9418c652010-02-26 15:31:12 -0800522 if (machine_is_nokia_n810()) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300523 err = gpio_request_array(n810_emmc_gpios,
524 ARRAY_SIZE(n810_emmc_gpios));
Tony Lindgren9418c652010-02-26 15:31:12 -0800525 if (err) {
526 gpio_free(N8X0_SLOT_SWITCH_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700527 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800528 }
Tony Lindgren9418c652010-02-26 15:31:12 -0800529 }
530
531 mmc_data[0] = &mmc1_data;
Anand Gadiyare08016d2011-03-01 13:12:55 -0800532 omap242x_init_mmc(mmc_data);
Tony Lindgren9418c652010-02-26 15:31:12 -0800533}
534#else
535
536void __init n8x0_mmc_init(void)
537{
538}
Tony Lindgren9418c652010-02-26 15:31:12 -0800539#endif /* CONFIG_MMC_OMAP */
540
541#ifdef CONFIG_MENELAUS
542
543static int n8x0_auto_sleep_regulators(void)
544{
545 u32 val;
546 int ret;
547
548 val = EN_VPLL_SLEEP | EN_VMMC_SLEEP \
549 | EN_VAUX_SLEEP | EN_VIO_SLEEP \
550 | EN_VMEM_SLEEP | EN_DC3_SLEEP \
551 | EN_VC_SLEEP | EN_DC2_SLEEP;
552
553 ret = menelaus_set_regulator_sleep(1, val);
554 if (ret < 0) {
555 printk(KERN_ERR "Could not set regulators to sleep on "
556 "menelaus: %u\n", ret);
557 return ret;
558 }
559 return 0;
560}
561
562static int n8x0_auto_voltage_scale(void)
563{
564 int ret;
565
566 ret = menelaus_set_vcore_hw(1400, 1050);
567 if (ret < 0) {
568 printk(KERN_ERR "Could not set VCORE voltage on "
569 "menelaus: %u\n", ret);
570 return ret;
571 }
572 return 0;
573}
574
575static int n8x0_menelaus_late_init(struct device *dev)
576{
577 int ret;
578
579 ret = n8x0_auto_voltage_scale();
580 if (ret < 0)
581 return ret;
582 ret = n8x0_auto_sleep_regulators();
583 if (ret < 0)
584 return ret;
585 return 0;
586}
587
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300588#else
589static int n8x0_menelaus_late_init(struct device *dev)
590{
591 return 0;
592}
593#endif
Tony Lindgren9418c652010-02-26 15:31:12 -0800594
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300595static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata = {
Tony Lindgren9418c652010-02-26 15:31:12 -0800596 .late_init = n8x0_menelaus_late_init,
597};
598
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300599static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = {
600 {
601 I2C_BOARD_INFO("menelaus", 0x72),
602 .irq = INT_24XX_SYS_NIRQ,
603 .platform_data = &n8x0_menelaus_platform_data,
604 },
605};
Tony Lindgren9418c652010-02-26 15:31:12 -0800606
Jarkko Nikula366498d2010-08-20 09:36:28 +0300607static struct aic3x_pdata n810_aic33_data __initdata = {
608 .gpio_reset = 118,
609};
610
611static struct i2c_board_info n810_i2c_board_info_2[] __initdata = {
612 {
613 I2C_BOARD_INFO("tlv320aic3x", 0x18),
614 .platform_data = &n810_aic33_data,
615 },
616};
Tony Lindgren9418c652010-02-26 15:31:12 -0800617
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300618#ifdef CONFIG_OMAP_MUX
619static struct omap_board_mux board_mux[] __initdata = {
Jarkko Nikula04be1e92010-08-20 09:36:28 +0300620 /* I2S codec port pins for McBSP block */
621 OMAP2420_MUX(EAC_AC_SCLK, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
622 OMAP2420_MUX(EAC_AC_FS, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
623 OMAP2420_MUX(EAC_AC_DIN, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
624 OMAP2420_MUX(EAC_AC_DOUT, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300625 { .reg_offset = OMAP_MUX_TERMINATOR },
626};
Tony Lindgren0b50c692010-12-22 18:42:36 -0800627
628static struct omap_device_pad serial2_pads[] __initdata = {
629 {
630 .name = "uart3_rx_irrx.uart3_rx_irrx",
631 .flags = OMAP_DEVICE_PAD_REMUX | OMAP_DEVICE_PAD_WAKEUP,
632 .enable = OMAP_MUX_MODE0,
633 .idle = OMAP_MUX_MODE3 /* Mux as GPIO for idle */
634 },
635};
636
637static inline void board_serial_init(void)
638{
639 struct omap_board_data bdata;
640
641 bdata.flags = 0;
642 bdata.pads = NULL;
643 bdata.pads_cnt = 0;
644
645 bdata.id = 0;
Deepak Kc86845db2011-11-09 17:33:38 +0530646 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800647
648 bdata.id = 1;
Deepak Kc86845db2011-11-09 17:33:38 +0530649 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800650
651 bdata.id = 2;
652 bdata.pads = serial2_pads;
653 bdata.pads_cnt = ARRAY_SIZE(serial2_pads);
Deepak Kc86845db2011-11-09 17:33:38 +0530654 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800655}
656
657#else
658
659static inline void board_serial_init(void)
660{
661 omap_serial_init();
662}
663
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300664#endif
665
Kalle Valo63138812009-08-28 10:51:38 -0700666static void __init n8x0_init_machine(void)
667{
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300668 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
Kalle Valo63138812009-08-28 10:51:38 -0700669 /* FIXME: add n810 spi devices */
670 spi_register_board_info(n800_spi_board_info,
671 ARRAY_SIZE(n800_spi_board_info));
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300672 omap_register_i2c_bus(1, 400, n8x0_i2c_board_info_1,
673 ARRAY_SIZE(n8x0_i2c_board_info_1));
Jarkko Nikula366498d2010-08-20 09:36:28 +0300674 omap_register_i2c_bus(2, 400, NULL, 0);
675 if (machine_is_nokia_n810())
676 i2c_register_board_info(2, n810_i2c_board_info_2,
677 ARRAY_SIZE(n810_i2c_board_info_2));
Tony Lindgren0b50c692010-12-22 18:42:36 -0800678 board_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700679 omap_sdrc_init(NULL, NULL);
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000680 gpmc_onenand_init(board_onenand_data);
Tony Lindgren9418c652010-02-26 15:31:12 -0800681 n8x0_mmc_init();
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800682 n8x0_usb_init();
Kalle Valo63138812009-08-28 10:51:38 -0700683}
684
685MACHINE_START(NOKIA_N800, "Nokia N800")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400686 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100687 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700688 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700689 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700690 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100691 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700692 .init_machine = n8x0_init_machine,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700693 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000694 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700695MACHINE_END
696
697MACHINE_START(NOKIA_N810, "Nokia N810")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400698 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100699 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700700 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700701 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700702 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100703 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700704 .init_machine = n8x0_init_machine,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700705 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000706 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700707MACHINE_END
708
709MACHINE_START(NOKIA_N810_WIMAX, "Nokia N810 WiMAX")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400710 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100711 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700712 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700713 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700714 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100715 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700716 .init_machine = n8x0_init_machine,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700717 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000718 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700719MACHINE_END