blob: d95f727ca39a1c2297c98ff9f2aca78e170b1feb [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>
Arnd Bergmann22037472012-08-24 15:21:06 +020023#include <linux/platform_data/spi-omap2-mcspi.h>
24#include <linux/platform_data/mtd-onenand-omap2.h>
Jarkko Nikula366498d2010-08-20 09:36:28 +030025#include <sound/tlv320aic3x.h>
Kalle Valo63138812009-08-28 10:51:38 -070026
27#include <asm/mach/arch.h>
28#include <asm/mach-types.h>
29
Tony Lindgren4e653312011-11-10 22:45:17 +010030#include "common.h"
Tony Lindgren9418c652010-02-26 15:31:12 -080031#include <plat/menelaus.h>
Tony Lindgren9418c652010-02-26 15:31:12 -080032#include <plat/mmc.h>
Kalle Valo63138812009-08-28 10:51:38 -070033
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +030034#include "mux.h"
35
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080036#define TUSB6010_ASYNC_CS 1
37#define TUSB6010_SYNC_CS 4
38#define TUSB6010_GPIO_INT 58
39#define TUSB6010_GPIO_ENABLE 0
40#define TUSB6010_DMACHAN 0x3f
41
Arnd Bergmann9a35f872011-10-02 16:45:47 +020042#if defined(CONFIG_USB_MUSB_TUSB6010) || defined(CONFIG_USB_MUSB_TUSB6010_MODULE)
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080043/*
44 * Enable or disable power to TUSB6010. When enabling, turn on 3.3 V and
45 * 1.5 V voltage regulators of PM companion chip. Companion chip will then
46 * provide then PGOOD signal to TUSB6010 which will release it from reset.
47 */
48static int tusb_set_power(int state)
49{
50 int i, retval = 0;
51
52 if (state) {
53 gpio_set_value(TUSB6010_GPIO_ENABLE, 1);
54 msleep(1);
55
56 /* Wait until TUSB6010 pulls INT pin down */
57 i = 100;
58 while (i && gpio_get_value(TUSB6010_GPIO_INT)) {
59 msleep(1);
60 i--;
61 }
62
63 if (!i) {
64 printk(KERN_ERR "tusb: powerup failed\n");
65 retval = -ENODEV;
66 }
67 } else {
68 gpio_set_value(TUSB6010_GPIO_ENABLE, 0);
69 msleep(10);
70 }
71
72 return retval;
73}
74
75static struct musb_hdrc_config musb_config = {
76 .multipoint = 1,
77 .dyn_fifo = 1,
78 .num_eps = 16,
79 .ram_bits = 12,
80};
81
82static struct musb_hdrc_platform_data tusb_data = {
Tony Lindgren310018d2012-06-20 07:18:15 -070083#ifdef CONFIG_USB_GADGET_MUSB_HDRC
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080084 .mode = MUSB_OTG,
Tony Lindgren310018d2012-06-20 07:18:15 -070085#else
Francisco Alecrim97b9ad12010-03-10 18:52:24 -080086 .mode = MUSB_HOST,
87#endif
88 .set_power = tusb_set_power,
89 .min_power = 25, /* x2 = 50 mA drawn from VBUS as peripheral */
90 .power = 100, /* Max 100 mA VBUS for host mode */
91 .config = &musb_config,
92};
93
94static void __init n8x0_usb_init(void)
95{
96 int ret = 0;
97 static char announce[] __initdata = KERN_INFO "TUSB 6010\n";
98
99 /* PM companion chip power control pin */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300100 ret = gpio_request_one(TUSB6010_GPIO_ENABLE, GPIOF_OUT_INIT_LOW,
101 "TUSB6010 enable");
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800102 if (ret != 0) {
103 printk(KERN_ERR "Could not get TUSB power GPIO%i\n",
104 TUSB6010_GPIO_ENABLE);
105 return;
106 }
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800107 tusb_set_power(0);
108
109 ret = tusb6010_setup_interface(&tusb_data, TUSB6010_REFCLK_19, 2,
110 TUSB6010_ASYNC_CS, TUSB6010_SYNC_CS,
111 TUSB6010_GPIO_INT, TUSB6010_DMACHAN);
112 if (ret != 0)
113 goto err;
114
115 printk(announce);
116
117 return;
118
119err:
120 gpio_free(TUSB6010_GPIO_ENABLE);
121}
122#else
123
124static void __init n8x0_usb_init(void) {}
125
Felipe Balbi7c925542010-12-01 14:23:48 +0200126#endif /*CONFIG_USB_MUSB_TUSB6010 */
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800127
128
Kalle Valo63138812009-08-28 10:51:38 -0700129static struct omap2_mcspi_device_config p54spi_mcspi_config = {
130 .turbo_mode = 0,
Kalle Valo63138812009-08-28 10:51:38 -0700131};
132
133static struct spi_board_info n800_spi_board_info[] __initdata = {
134 {
135 .modalias = "p54spi",
136 .bus_num = 2,
137 .chip_select = 0,
138 .max_speed_hz = 48000000,
139 .controller_data = &p54spi_mcspi_config,
140 },
141};
142
143#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
144 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
145
146static struct mtd_partition onenand_partitions[] = {
147 {
148 .name = "bootloader",
149 .offset = 0,
150 .size = 0x20000,
151 .mask_flags = MTD_WRITEABLE, /* Force read-only */
152 },
153 {
154 .name = "config",
155 .offset = MTDPART_OFS_APPEND,
156 .size = 0x60000,
157 },
158 {
159 .name = "kernel",
160 .offset = MTDPART_OFS_APPEND,
161 .size = 0x200000,
162 },
163 {
164 .name = "initfs",
165 .offset = MTDPART_OFS_APPEND,
166 .size = 0x400000,
167 },
168 {
169 .name = "rootfs",
170 .offset = MTDPART_OFS_APPEND,
171 .size = MTDPART_SIZ_FULL,
172 },
173};
174
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000175static struct omap_onenand_platform_data board_onenand_data[] = {
176 {
177 .cs = 0,
178 .gpio_irq = 26,
179 .parts = onenand_partitions,
180 .nr_parts = ARRAY_SIZE(onenand_partitions),
181 .flags = ONENAND_SYNC_READ,
182 }
Kalle Valo63138812009-08-28 10:51:38 -0700183};
Kalle Valo63138812009-08-28 10:51:38 -0700184#endif
185
Tony Lindgren9418c652010-02-26 15:31:12 -0800186#if defined(CONFIG_MENELAUS) && \
187 (defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE))
188
189/*
190 * On both N800 and N810, only the first of the two MMC controllers is in use.
191 * The two MMC slots are multiplexed via Menelaus companion chip over I2C.
192 * On N800, both slots are powered via Menelaus. On N810, only one of the
193 * slots is powered via Menelaus. The N810 EMMC is powered via GPIO.
194 *
195 * VMMC slot 1 on both N800 and N810
196 * VDCDC3_APE and VMCS2_APE slot 2 on N800
197 * GPIO23 and GPIO9 slot 2 EMMC on N810
198 *
199 */
200#define N8X0_SLOT_SWITCH_GPIO 96
201#define N810_EMMC_VSD_GPIO 23
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700202#define N810_EMMC_VIO_GPIO 9
Tony Lindgren9418c652010-02-26 15:31:12 -0800203
Tony Lindgren49b87c62012-03-06 11:49:28 -0800204static int slot1_cover_open;
205static int slot2_cover_open;
206static struct device *mmc_device;
207
Tony Lindgren9418c652010-02-26 15:31:12 -0800208static int n8x0_mmc_switch_slot(struct device *dev, int slot)
209{
210#ifdef CONFIG_MMC_DEBUG
211 dev_dbg(dev, "Choose slot %d\n", slot + 1);
212#endif
213 gpio_set_value(N8X0_SLOT_SWITCH_GPIO, slot);
214 return 0;
215}
216
217static int n8x0_mmc_set_power_menelaus(struct device *dev, int slot,
218 int power_on, int vdd)
219{
220 int mV;
221
222#ifdef CONFIG_MMC_DEBUG
223 dev_dbg(dev, "Set slot %d power: %s (vdd %d)\n", slot + 1,
224 power_on ? "on" : "off", vdd);
225#endif
226 if (slot == 0) {
227 if (!power_on)
228 return menelaus_set_vmmc(0);
229 switch (1 << vdd) {
230 case MMC_VDD_33_34:
231 case MMC_VDD_32_33:
232 case MMC_VDD_31_32:
233 mV = 3100;
234 break;
235 case MMC_VDD_30_31:
236 mV = 3000;
237 break;
238 case MMC_VDD_28_29:
239 mV = 2800;
240 break;
241 case MMC_VDD_165_195:
242 mV = 1850;
243 break;
244 default:
245 BUG();
246 }
247 return menelaus_set_vmmc(mV);
248 } else {
249 if (!power_on)
250 return menelaus_set_vdcdc(3, 0);
251 switch (1 << vdd) {
252 case MMC_VDD_33_34:
253 case MMC_VDD_32_33:
254 mV = 3300;
255 break;
256 case MMC_VDD_30_31:
257 case MMC_VDD_29_30:
258 mV = 3000;
259 break;
260 case MMC_VDD_28_29:
261 case MMC_VDD_27_28:
262 mV = 2800;
263 break;
264 case MMC_VDD_24_25:
265 case MMC_VDD_23_24:
266 mV = 2400;
267 break;
268 case MMC_VDD_22_23:
269 case MMC_VDD_21_22:
270 mV = 2200;
271 break;
272 case MMC_VDD_20_21:
273 mV = 2000;
274 break;
275 case MMC_VDD_165_195:
276 mV = 1800;
277 break;
278 default:
279 BUG();
280 }
281 return menelaus_set_vdcdc(3, mV);
282 }
283 return 0;
284}
285
286static void n810_set_power_emmc(struct device *dev,
287 int power_on)
288{
289 dev_dbg(dev, "Set EMMC power %s\n", power_on ? "on" : "off");
290
291 if (power_on) {
292 gpio_set_value(N810_EMMC_VSD_GPIO, 1);
293 msleep(1);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700294 gpio_set_value(N810_EMMC_VIO_GPIO, 1);
Tony Lindgren9418c652010-02-26 15:31:12 -0800295 msleep(1);
296 } else {
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700297 gpio_set_value(N810_EMMC_VIO_GPIO, 0);
Tony Lindgren9418c652010-02-26 15:31:12 -0800298 msleep(50);
299 gpio_set_value(N810_EMMC_VSD_GPIO, 0);
300 msleep(50);
301 }
302}
303
304static int n8x0_mmc_set_power(struct device *dev, int slot, int power_on,
305 int vdd)
306{
307 if (machine_is_nokia_n800() || slot == 0)
308 return n8x0_mmc_set_power_menelaus(dev, slot, power_on, vdd);
309
310 n810_set_power_emmc(dev, power_on);
311
312 return 0;
313}
314
315static int n8x0_mmc_set_bus_mode(struct device *dev, int slot, int bus_mode)
316{
317 int r;
318
319 dev_dbg(dev, "Set slot %d bus mode %s\n", slot + 1,
320 bus_mode == MMC_BUSMODE_OPENDRAIN ? "open-drain" : "push-pull");
321 BUG_ON(slot != 0 && slot != 1);
322 slot++;
323 switch (bus_mode) {
324 case MMC_BUSMODE_OPENDRAIN:
325 r = menelaus_set_mmc_opendrain(slot, 1);
326 break;
327 case MMC_BUSMODE_PUSHPULL:
328 r = menelaus_set_mmc_opendrain(slot, 0);
329 break;
330 default:
331 BUG();
332 }
333 if (r != 0 && printk_ratelimit())
334 dev_err(dev, "MMC: unable to set bus mode for slot %d\n",
335 slot);
336 return r;
337}
338
339static int n8x0_mmc_get_cover_state(struct device *dev, int slot)
340{
341 slot++;
342 BUG_ON(slot != 1 && slot != 2);
343 if (slot == 1)
344 return slot1_cover_open;
345 else
346 return slot2_cover_open;
347}
348
349static void n8x0_mmc_callback(void *data, u8 card_mask)
350{
351 int bit, *openp, index;
352
353 if (machine_is_nokia_n800()) {
354 bit = 1 << 1;
355 openp = &slot2_cover_open;
356 index = 1;
357 } else {
358 bit = 1;
359 openp = &slot1_cover_open;
360 index = 0;
361 }
362
363 if (card_mask & bit)
364 *openp = 1;
365 else
366 *openp = 0;
367
Tony Lindgrend5171102012-02-20 10:00:03 -0800368#ifdef CONFIG_MMC_OMAP
Tony Lindgren9418c652010-02-26 15:31:12 -0800369 omap_mmc_notify_cover_event(mmc_device, index, *openp);
Tony Lindgrend5171102012-02-20 10:00:03 -0800370#else
371 pr_warn("MMC: notify cover event not available\n");
372#endif
Tony Lindgren9418c652010-02-26 15:31:12 -0800373}
374
Tony Lindgren9418c652010-02-26 15:31:12 -0800375static int n8x0_mmc_late_init(struct device *dev)
376{
377 int r, bit, *openp;
378 int vs2sel;
379
380 mmc_device = dev;
381
382 r = menelaus_set_slot_sel(1);
383 if (r < 0)
384 return r;
385
386 if (machine_is_nokia_n800())
387 vs2sel = 0;
388 else
389 vs2sel = 2;
390
391 r = menelaus_set_mmc_slot(2, 0, vs2sel, 1);
392 if (r < 0)
393 return r;
394
395 n8x0_mmc_set_power(dev, 0, MMC_POWER_ON, 16); /* MMC_VDD_28_29 */
396 n8x0_mmc_set_power(dev, 1, MMC_POWER_ON, 16);
397
398 r = menelaus_set_mmc_slot(1, 1, 0, 1);
399 if (r < 0)
400 return r;
401 r = menelaus_set_mmc_slot(2, 1, vs2sel, 1);
402 if (r < 0)
403 return r;
404
405 r = menelaus_get_slot_pin_states();
406 if (r < 0)
407 return r;
408
409 if (machine_is_nokia_n800()) {
410 bit = 1 << 1;
411 openp = &slot2_cover_open;
412 } else {
413 bit = 1;
414 openp = &slot1_cover_open;
415 slot2_cover_open = 0;
416 }
417
418 /* All slot pin bits seem to be inversed until first switch change */
419 if (r == 0xf || r == (0xf & ~bit))
420 r = ~r;
421
422 if (r & bit)
423 *openp = 1;
424 else
425 *openp = 0;
426
427 r = menelaus_register_mmc_callback(n8x0_mmc_callback, NULL);
428
429 return r;
430}
431
432static void n8x0_mmc_shutdown(struct device *dev)
433{
434 int vs2sel;
435
436 if (machine_is_nokia_n800())
437 vs2sel = 0;
438 else
439 vs2sel = 2;
440
441 menelaus_set_mmc_slot(1, 0, 0, 0);
442 menelaus_set_mmc_slot(2, 0, vs2sel, 0);
443}
444
445static void n8x0_mmc_cleanup(struct device *dev)
446{
447 menelaus_unregister_mmc_callback();
448
449 gpio_free(N8X0_SLOT_SWITCH_GPIO);
450
451 if (machine_is_nokia_n810()) {
452 gpio_free(N810_EMMC_VSD_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700453 gpio_free(N810_EMMC_VIO_GPIO);
Tony Lindgren9418c652010-02-26 15:31:12 -0800454 }
455}
456
457/*
458 * MMC controller1 has two slots that are multiplexed via I2C.
459 * MMC controller2 is not in use.
460 */
461static struct omap_mmc_platform_data mmc1_data = {
462 .nr_slots = 2,
463 .switch_slot = n8x0_mmc_switch_slot,
464 .init = n8x0_mmc_late_init,
465 .cleanup = n8x0_mmc_cleanup,
466 .shutdown = n8x0_mmc_shutdown,
467 .max_freq = 24000000,
Tony Lindgren9418c652010-02-26 15:31:12 -0800468 .slots[0] = {
469 .wires = 4,
470 .set_power = n8x0_mmc_set_power,
471 .set_bus_mode = n8x0_mmc_set_bus_mode,
472 .get_cover_state = n8x0_mmc_get_cover_state,
473 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_30_31 |
474 MMC_VDD_32_33 | MMC_VDD_33_34,
475 .name = "internal",
476 },
477 .slots[1] = {
478 .set_power = n8x0_mmc_set_power,
479 .set_bus_mode = n8x0_mmc_set_bus_mode,
480 .get_cover_state = n8x0_mmc_get_cover_state,
481 .ocr_mask = MMC_VDD_165_195 | MMC_VDD_20_21 |
482 MMC_VDD_21_22 | MMC_VDD_22_23 |
483 MMC_VDD_23_24 | MMC_VDD_24_25 |
484 MMC_VDD_27_28 | MMC_VDD_28_29 |
485 MMC_VDD_29_30 | MMC_VDD_30_31 |
486 MMC_VDD_32_33 | MMC_VDD_33_34,
487 .name = "external",
488 },
489};
490
491static struct omap_mmc_platform_data *mmc_data[OMAP24XX_NR_MMC];
492
Igor Grinbergbc593f52011-05-03 18:22:09 +0300493static struct gpio n810_emmc_gpios[] __initdata = {
494 { N810_EMMC_VSD_GPIO, GPIOF_OUT_INIT_LOW, "MMC slot 2 Vddf" },
495 { N810_EMMC_VIO_GPIO, GPIOF_OUT_INIT_LOW, "MMC slot 2 Vdd" },
496};
Tony Lindgren9418c652010-02-26 15:31:12 -0800497
Igor Grinbergbc593f52011-05-03 18:22:09 +0300498static void __init n8x0_mmc_init(void)
Tony Lindgren9418c652010-02-26 15:31:12 -0800499{
500 int err;
501
502 if (machine_is_nokia_n810()) {
503 mmc1_data.slots[0].name = "external";
504
505 /*
506 * Some Samsung Movinand chips do not like open-ended
507 * multi-block reads and fall to braind-dead state
508 * while doing so. Reducing the number of blocks in
509 * the transfer or delays in clock disable do not help
510 */
511 mmc1_data.slots[1].name = "internal";
512 mmc1_data.slots[1].ban_openended = 1;
513 }
514
Igor Grinbergbc593f52011-05-03 18:22:09 +0300515 err = gpio_request_one(N8X0_SLOT_SWITCH_GPIO, GPIOF_OUT_INIT_LOW,
516 "MMC slot switch");
Tony Lindgren9418c652010-02-26 15:31:12 -0800517 if (err)
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700518 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800519
Tony Lindgren9418c652010-02-26 15:31:12 -0800520 if (machine_is_nokia_n810()) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300521 err = gpio_request_array(n810_emmc_gpios,
522 ARRAY_SIZE(n810_emmc_gpios));
Tony Lindgren9418c652010-02-26 15:31:12 -0800523 if (err) {
524 gpio_free(N8X0_SLOT_SWITCH_GPIO);
Tony Lindgren1dea5c62010-04-21 15:27:24 -0700525 return;
Tony Lindgren9418c652010-02-26 15:31:12 -0800526 }
Tony Lindgren9418c652010-02-26 15:31:12 -0800527 }
528
529 mmc_data[0] = &mmc1_data;
Anand Gadiyare08016d2011-03-01 13:12:55 -0800530 omap242x_init_mmc(mmc_data);
Tony Lindgren9418c652010-02-26 15:31:12 -0800531}
532#else
533
534void __init n8x0_mmc_init(void)
535{
536}
Tony Lindgren9418c652010-02-26 15:31:12 -0800537#endif /* CONFIG_MMC_OMAP */
538
539#ifdef CONFIG_MENELAUS
540
541static int n8x0_auto_sleep_regulators(void)
542{
543 u32 val;
544 int ret;
545
546 val = EN_VPLL_SLEEP | EN_VMMC_SLEEP \
547 | EN_VAUX_SLEEP | EN_VIO_SLEEP \
548 | EN_VMEM_SLEEP | EN_DC3_SLEEP \
549 | EN_VC_SLEEP | EN_DC2_SLEEP;
550
551 ret = menelaus_set_regulator_sleep(1, val);
552 if (ret < 0) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600553 pr_err("Could not set regulators to sleep on menelaus: %u\n",
554 ret);
Tony Lindgren9418c652010-02-26 15:31:12 -0800555 return ret;
556 }
557 return 0;
558}
559
560static int n8x0_auto_voltage_scale(void)
561{
562 int ret;
563
564 ret = menelaus_set_vcore_hw(1400, 1050);
565 if (ret < 0) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600566 pr_err("Could not set VCORE voltage on menelaus: %u\n", ret);
Tony Lindgren9418c652010-02-26 15:31:12 -0800567 return ret;
568 }
569 return 0;
570}
571
572static int n8x0_menelaus_late_init(struct device *dev)
573{
574 int ret;
575
576 ret = n8x0_auto_voltage_scale();
577 if (ret < 0)
578 return ret;
579 ret = n8x0_auto_sleep_regulators();
580 if (ret < 0)
581 return ret;
582 return 0;
583}
584
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300585#else
586static int n8x0_menelaus_late_init(struct device *dev)
587{
588 return 0;
589}
590#endif
Tony Lindgren9418c652010-02-26 15:31:12 -0800591
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300592static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata = {
Tony Lindgren9418c652010-02-26 15:31:12 -0800593 .late_init = n8x0_menelaus_late_init,
594};
595
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300596static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = {
597 {
598 I2C_BOARD_INFO("menelaus", 0x72),
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700599 .irq = 7 + OMAP_INTC_START,
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300600 .platform_data = &n8x0_menelaus_platform_data,
601 },
602};
Tony Lindgren9418c652010-02-26 15:31:12 -0800603
Jarkko Nikula366498d2010-08-20 09:36:28 +0300604static struct aic3x_pdata n810_aic33_data __initdata = {
605 .gpio_reset = 118,
606};
607
608static struct i2c_board_info n810_i2c_board_info_2[] __initdata = {
609 {
610 I2C_BOARD_INFO("tlv320aic3x", 0x18),
611 .platform_data = &n810_aic33_data,
612 },
613};
Tony Lindgren9418c652010-02-26 15:31:12 -0800614
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300615#ifdef CONFIG_OMAP_MUX
616static struct omap_board_mux board_mux[] __initdata = {
Jarkko Nikula04be1e92010-08-20 09:36:28 +0300617 /* I2S codec port pins for McBSP block */
618 OMAP2420_MUX(EAC_AC_SCLK, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
619 OMAP2420_MUX(EAC_AC_FS, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
620 OMAP2420_MUX(EAC_AC_DIN, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
621 OMAP2420_MUX(EAC_AC_DOUT, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300622 { .reg_offset = OMAP_MUX_TERMINATOR },
623};
Tony Lindgren0b50c692010-12-22 18:42:36 -0800624
625static struct omap_device_pad serial2_pads[] __initdata = {
626 {
627 .name = "uart3_rx_irrx.uart3_rx_irrx",
628 .flags = OMAP_DEVICE_PAD_REMUX | OMAP_DEVICE_PAD_WAKEUP,
629 .enable = OMAP_MUX_MODE0,
630 .idle = OMAP_MUX_MODE3 /* Mux as GPIO for idle */
631 },
632};
633
634static inline void board_serial_init(void)
635{
636 struct omap_board_data bdata;
637
638 bdata.flags = 0;
639 bdata.pads = NULL;
640 bdata.pads_cnt = 0;
641
642 bdata.id = 0;
Deepak Kc86845db2011-11-09 17:33:38 +0530643 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800644
645 bdata.id = 1;
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 = 2;
649 bdata.pads = serial2_pads;
650 bdata.pads_cnt = ARRAY_SIZE(serial2_pads);
Deepak Kc86845db2011-11-09 17:33:38 +0530651 omap_serial_init_port(&bdata, NULL);
Tony Lindgren0b50c692010-12-22 18:42:36 -0800652}
653
654#else
655
656static inline void board_serial_init(void)
657{
658 omap_serial_init();
659}
660
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300661#endif
662
Kalle Valo63138812009-08-28 10:51:38 -0700663static void __init n8x0_init_machine(void)
664{
Tony Lindgrenbd8f0fc2010-07-05 16:31:38 +0300665 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
Kalle Valo63138812009-08-28 10:51:38 -0700666 /* FIXME: add n810 spi devices */
667 spi_register_board_info(n800_spi_board_info,
668 ARRAY_SIZE(n800_spi_board_info));
Jarkko Nikulaa7f97d22010-08-20 09:36:28 +0300669 omap_register_i2c_bus(1, 400, n8x0_i2c_board_info_1,
670 ARRAY_SIZE(n8x0_i2c_board_info_1));
Jarkko Nikula366498d2010-08-20 09:36:28 +0300671 omap_register_i2c_bus(2, 400, NULL, 0);
672 if (machine_is_nokia_n810())
673 i2c_register_board_info(2, n810_i2c_board_info_2,
674 ARRAY_SIZE(n810_i2c_board_info_2));
Tony Lindgren0b50c692010-12-22 18:42:36 -0800675 board_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700676 omap_sdrc_init(NULL, NULL);
Aaro Koskinena1a92e62010-12-02 15:51:23 +0000677 gpmc_onenand_init(board_onenand_data);
Tony Lindgren9418c652010-02-26 15:31:12 -0800678 n8x0_mmc_init();
Francisco Alecrim97b9ad12010-03-10 18:52:24 -0800679 n8x0_usb_init();
Kalle Valo63138812009-08-28 10:51:38 -0700680}
681
682MACHINE_START(NOKIA_N800, "Nokia N800")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400683 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100684 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700685 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700686 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700687 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100688 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700689 .init_machine = n8x0_init_machine,
Shawn Guobbd707a2012-04-26 16:06:50 +0800690 .init_late = omap2420_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700691 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000692 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700693MACHINE_END
694
695MACHINE_START(NOKIA_N810, "Nokia N810")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400696 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100697 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700698 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700699 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700700 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100701 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700702 .init_machine = n8x0_init_machine,
Shawn Guobbd707a2012-04-26 16:06:50 +0800703 .init_late = omap2420_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700704 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000705 .restart = omap_prcm_restart,
Kalle Valo63138812009-08-28 10:51:38 -0700706MACHINE_END
707
708MACHINE_START(NOKIA_N810_WIMAX, "Nokia N810 WiMAX")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400709 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100710 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700711 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700712 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700713 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100714 .handle_irq = omap2_intc_handle_irq,
Kalle Valo63138812009-08-28 10:51:38 -0700715 .init_machine = n8x0_init_machine,
Shawn Guobbd707a2012-04-26 16:06:50 +0800716 .init_late = omap2420_init_late,
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