i2c: omap: Remove the OMAP_I2C_FLAG_RESET_REGS_POSTIDLE flag
[cascardo/linux.git] / arch / arm / mach-omap2 / board-n8x0.c
1 /*
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/irq.h>
20 #include <linux/stddef.h>
21 #include <linux/i2c.h>
22 #include <linux/spi/spi.h>
23 #include <linux/usb/musb.h>
24 #include <linux/platform_data/i2c-cbus-gpio.h>
25 #include <linux/platform_data/spi-omap2-mcspi.h>
26 #include <linux/platform_data/mtd-onenand-omap2.h>
27 #include <sound/tlv320aic3x.h>
28
29 #include <asm/mach/arch.h>
30 #include <asm/mach-types.h>
31
32 #include "common.h"
33 #include <plat/menelaus.h>
34 #include <plat/mmc.h>
35
36 #include "mux.h"
37
38 #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
44 #if defined(CONFIG_I2C_CBUS_GPIO) || defined(CONFIG_I2C_CBUS_GPIO_MODULE)
45 static struct i2c_cbus_platform_data n8x0_cbus_data = {
46         .clk_gpio = 66,
47         .dat_gpio = 65,
48         .sel_gpio = 64,
49 };
50
51 static 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
59 static struct i2c_board_info n8x0_i2c_board_info_3[] __initdata = {
60         {
61                 I2C_BOARD_INFO("retu-mfd", 0x01),
62         },
63 };
64
65 static 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 */
78 static void __init n8x0_cbus_init(void)
79 {
80 }
81 #endif /* CONFIG_I2C_CBUS_GPIO */
82
83 #if defined(CONFIG_USB_MUSB_TUSB6010) || defined(CONFIG_USB_MUSB_TUSB6010_MODULE)
84 /*
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  */
89 static 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
116 static struct musb_hdrc_config musb_config = {
117         .multipoint     = 1,
118         .dyn_fifo       = 1,
119         .num_eps        = 16,
120         .ram_bits       = 12,
121 };
122
123 static struct musb_hdrc_platform_data tusb_data = {
124 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
125         .mode           = MUSB_OTG,
126 #else
127         .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
135 static 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 */
141         ret = gpio_request_one(TUSB6010_GPIO_ENABLE, GPIOF_OUT_INIT_LOW,
142                                "TUSB6010 enable");
143         if (ret != 0) {
144                 printk(KERN_ERR "Could not get TUSB power GPIO%i\n",
145                        TUSB6010_GPIO_ENABLE);
146                 return;
147         }
148         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
160 err:
161         gpio_free(TUSB6010_GPIO_ENABLE);
162 }
163 #else
164
165 static void __init n8x0_usb_init(void) {}
166
167 #endif /*CONFIG_USB_MUSB_TUSB6010 */
168
169
170 static struct omap2_mcspi_device_config p54spi_mcspi_config = {
171         .turbo_mode     = 0,
172 };
173
174 static 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
187 static 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
216 static 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         }
224 };
225 #endif
226
227 #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
243 #define N810_EMMC_VIO_GPIO      9
244
245 static int slot1_cover_open;
246 static int slot2_cover_open;
247 static struct device *mmc_device;
248
249 static 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
258 static 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
327 static 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);
335                 gpio_set_value(N810_EMMC_VIO_GPIO, 1);
336                 msleep(1);
337         } else {
338                 gpio_set_value(N810_EMMC_VIO_GPIO, 0);
339                 msleep(50);
340                 gpio_set_value(N810_EMMC_VSD_GPIO, 0);
341                 msleep(50);
342         }
343 }
344
345 static 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
356 static 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
380 static 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
390 static 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
409 #ifdef CONFIG_MMC_OMAP
410         omap_mmc_notify_cover_event(mmc_device, index, *openp);
411 #else
412         pr_warn("MMC: notify cover event not available\n");
413 #endif
414 }
415
416 static 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
473 static 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
486 static 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);
494                 gpio_free(N810_EMMC_VIO_GPIO);
495         }
496 }
497
498 /*
499  * MMC controller1 has two slots that are multiplexed via I2C.
500  * MMC controller2 is not in use.
501  */
502 static 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,
509         .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
532 static struct omap_mmc_platform_data *mmc_data[OMAP24XX_NR_MMC];
533
534 static 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 };
538
539 static void __init n8x0_mmc_init(void)
540 {
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
556         err = gpio_request_one(N8X0_SLOT_SWITCH_GPIO, GPIOF_OUT_INIT_LOW,
557                                "MMC slot switch");
558         if (err)
559                 return;
560
561         if (machine_is_nokia_n810()) {
562                 err = gpio_request_array(n810_emmc_gpios,
563                                          ARRAY_SIZE(n810_emmc_gpios));
564                 if (err) {
565                         gpio_free(N8X0_SLOT_SWITCH_GPIO);
566                         return;
567                 }
568         }
569
570         mmc_data[0] = &mmc1_data;
571         omap242x_init_mmc(mmc_data);
572 }
573 #else
574
575 void __init n8x0_mmc_init(void)
576 {
577 }
578 #endif  /* CONFIG_MMC_OMAP */
579
580 #ifdef CONFIG_MENELAUS
581
582 static 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) {
594                 pr_err("Could not set regulators to sleep on menelaus: %u\n",
595                        ret);
596                 return ret;
597         }
598         return 0;
599 }
600
601 static int n8x0_auto_voltage_scale(void)
602 {
603         int ret;
604
605         ret = menelaus_set_vcore_hw(1400, 1050);
606         if (ret < 0) {
607                 pr_err("Could not set VCORE voltage on menelaus: %u\n", ret);
608                 return ret;
609         }
610         return 0;
611 }
612
613 static 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
626 #else
627 static int n8x0_menelaus_late_init(struct device *dev)
628 {
629         return 0;
630 }
631 #endif
632
633 static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata = {
634         .late_init = n8x0_menelaus_late_init,
635 };
636
637 static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = {
638         {
639                 I2C_BOARD_INFO("menelaus", 0x72),
640                 .irq = 7 + OMAP_INTC_START,
641                 .platform_data = &n8x0_menelaus_platform_data,
642         },
643 };
644
645 static struct aic3x_pdata n810_aic33_data __initdata = {
646         .gpio_reset = 118,
647 };
648
649 static 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 };
655
656 #ifdef CONFIG_OMAP_MUX
657 static struct omap_board_mux board_mux[] __initdata = {
658         /* 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),
663         { .reg_offset = OMAP_MUX_TERMINATOR },
664 };
665
666 static 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
675 static 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;
684         omap_serial_init_port(&bdata, NULL);
685
686         bdata.id = 1;
687         omap_serial_init_port(&bdata, NULL);
688
689         bdata.id = 2;
690         bdata.pads = serial2_pads;
691         bdata.pads_cnt = ARRAY_SIZE(serial2_pads);
692         omap_serial_init_port(&bdata, NULL);
693 }
694
695 #else
696
697 static inline void board_serial_init(void)
698 {
699         omap_serial_init();
700 }
701
702 #endif
703
704 static void __init n8x0_init_machine(void)
705 {
706         omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
707         /* FIXME: add n810 spi devices */
708         spi_register_board_info(n800_spi_board_info,
709                                 ARRAY_SIZE(n800_spi_board_info));
710         omap_register_i2c_bus(1, 400, n8x0_i2c_board_info_1,
711                               ARRAY_SIZE(n8x0_i2c_board_info_1));
712         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));
716         board_serial_init();
717         omap_sdrc_init(NULL, NULL);
718         gpmc_onenand_init(board_onenand_data);
719         n8x0_mmc_init();
720         n8x0_usb_init();
721         n8x0_cbus_init();
722 }
723
724 MACHINE_START(NOKIA_N800, "Nokia N800")
725         .atag_offset    = 0x100,
726         .reserve        = omap_reserve,
727         .map_io         = omap242x_map_io,
728         .init_early     = omap2420_init_early,
729         .init_irq       = omap2_init_irq,
730         .handle_irq     = omap2_intc_handle_irq,
731         .init_machine   = n8x0_init_machine,
732         .init_late      = omap2420_init_late,
733         .timer          = &omap2_timer,
734         .restart        = omap_prcm_restart,
735 MACHINE_END
736
737 MACHINE_START(NOKIA_N810, "Nokia N810")
738         .atag_offset    = 0x100,
739         .reserve        = omap_reserve,
740         .map_io         = omap242x_map_io,
741         .init_early     = omap2420_init_early,
742         .init_irq       = omap2_init_irq,
743         .handle_irq     = omap2_intc_handle_irq,
744         .init_machine   = n8x0_init_machine,
745         .init_late      = omap2420_init_late,
746         .timer          = &omap2_timer,
747         .restart        = omap_prcm_restart,
748 MACHINE_END
749
750 MACHINE_START(NOKIA_N810_WIMAX, "Nokia N810 WiMAX")
751         .atag_offset    = 0x100,
752         .reserve        = omap_reserve,
753         .map_io         = omap242x_map_io,
754         .init_early     = omap2420_init_early,
755         .init_irq       = omap2_init_irq,
756         .handle_irq     = omap2_intc_handle_irq,
757         .init_machine   = n8x0_init_machine,
758         .init_late      = omap2420_init_late,
759         .timer          = &omap2_timer,
760         .restart        = omap_prcm_restart,
761 MACHINE_END