]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-omap2/board-n8x0.c
ARM: OMAP2+: Remove legacy booting support for n8x0
[karo-tx-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/spi-omap2-mcspi.h>
25 #include <linux/platform_data/mtd-onenand-omap2.h>
26 #include <linux/mfd/menelaus.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 "mmc.h"
34 #include "soc.h"
35 #include "gpmc-onenand.h"
36
37 #define TUSB6010_ASYNC_CS       1
38 #define TUSB6010_SYNC_CS        4
39 #define TUSB6010_GPIO_INT       58
40 #define TUSB6010_GPIO_ENABLE    0
41 #define TUSB6010_DMACHAN        0x3f
42
43 #define NOKIA_N810_WIMAX        (1 << 2)
44 #define NOKIA_N810              (1 << 1)
45 #define NOKIA_N800              (1 << 0)
46
47 static u32 board_caps;
48
49 #define board_is_n800()         (board_caps & NOKIA_N800)
50 #define board_is_n810()         (board_caps & NOKIA_N810)
51 #define board_is_n810_wimax()   (board_caps & NOKIA_N810_WIMAX)
52
53 static void board_check_revision(void)
54 {
55         if (of_have_populated_dt()) {
56                 if (of_machine_is_compatible("nokia,n800"))
57                         board_caps = NOKIA_N800;
58                 else if (of_machine_is_compatible("nokia,n810"))
59                         board_caps = NOKIA_N810;
60                 else if (of_machine_is_compatible("nokia,n810-wimax"))
61                         board_caps = NOKIA_N810_WIMAX;
62         }
63
64         if (!board_caps)
65                 pr_err("Unknown board\n");
66 }
67
68 #if defined(CONFIG_USB_MUSB_TUSB6010) || defined(CONFIG_USB_MUSB_TUSB6010_MODULE)
69 /*
70  * Enable or disable power to TUSB6010. When enabling, turn on 3.3 V and
71  * 1.5 V voltage regulators of PM companion chip. Companion chip will then
72  * provide then PGOOD signal to TUSB6010 which will release it from reset.
73  */
74 static int tusb_set_power(int state)
75 {
76         int i, retval = 0;
77
78         if (state) {
79                 gpio_set_value(TUSB6010_GPIO_ENABLE, 1);
80                 msleep(1);
81
82                 /* Wait until TUSB6010 pulls INT pin down */
83                 i = 100;
84                 while (i && gpio_get_value(TUSB6010_GPIO_INT)) {
85                         msleep(1);
86                         i--;
87                 }
88
89                 if (!i) {
90                         printk(KERN_ERR "tusb: powerup failed\n");
91                         retval = -ENODEV;
92                 }
93         } else {
94                 gpio_set_value(TUSB6010_GPIO_ENABLE, 0);
95                 msleep(10);
96         }
97
98         return retval;
99 }
100
101 static struct musb_hdrc_config musb_config = {
102         .multipoint     = 1,
103         .dyn_fifo       = 1,
104         .num_eps        = 16,
105         .ram_bits       = 12,
106 };
107
108 static struct musb_hdrc_platform_data tusb_data = {
109         .mode           = MUSB_OTG,
110         .set_power      = tusb_set_power,
111         .min_power      = 25,   /* x2 = 50 mA drawn from VBUS as peripheral */
112         .power          = 100,  /* Max 100 mA VBUS for host mode */
113         .config         = &musb_config,
114 };
115
116 static void __init n8x0_usb_init(void)
117 {
118         int ret = 0;
119         static char     announce[] __initdata = KERN_INFO "TUSB 6010\n";
120
121         /* PM companion chip power control pin */
122         ret = gpio_request_one(TUSB6010_GPIO_ENABLE, GPIOF_OUT_INIT_LOW,
123                                "TUSB6010 enable");
124         if (ret != 0) {
125                 printk(KERN_ERR "Could not get TUSB power GPIO%i\n",
126                        TUSB6010_GPIO_ENABLE);
127                 return;
128         }
129         tusb_set_power(0);
130
131         ret = tusb6010_setup_interface(&tusb_data, TUSB6010_REFCLK_19, 2,
132                                         TUSB6010_ASYNC_CS, TUSB6010_SYNC_CS,
133                                         TUSB6010_GPIO_INT, TUSB6010_DMACHAN);
134         if (ret != 0)
135                 goto err;
136
137         printk(announce);
138
139         return;
140
141 err:
142         gpio_free(TUSB6010_GPIO_ENABLE);
143 }
144 #else
145
146 static void __init n8x0_usb_init(void) {}
147
148 #endif /*CONFIG_USB_MUSB_TUSB6010 */
149
150
151 static struct omap2_mcspi_device_config p54spi_mcspi_config = {
152         .turbo_mode     = 0,
153 };
154
155 static struct spi_board_info n800_spi_board_info[] __initdata = {
156         {
157                 .modalias       = "p54spi",
158                 .bus_num        = 2,
159                 .chip_select    = 0,
160                 .max_speed_hz   = 48000000,
161                 .controller_data = &p54spi_mcspi_config,
162         },
163 };
164
165 #if defined(CONFIG_MTD_ONENAND_OMAP2) || \
166         defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
167
168 static struct mtd_partition onenand_partitions[] = {
169         {
170                 .name           = "bootloader",
171                 .offset         = 0,
172                 .size           = 0x20000,
173                 .mask_flags     = MTD_WRITEABLE,        /* Force read-only */
174         },
175         {
176                 .name           = "config",
177                 .offset         = MTDPART_OFS_APPEND,
178                 .size           = 0x60000,
179         },
180         {
181                 .name           = "kernel",
182                 .offset         = MTDPART_OFS_APPEND,
183                 .size           = 0x200000,
184         },
185         {
186                 .name           = "initfs",
187                 .offset         = MTDPART_OFS_APPEND,
188                 .size           = 0x400000,
189         },
190         {
191                 .name           = "rootfs",
192                 .offset         = MTDPART_OFS_APPEND,
193                 .size           = MTDPART_SIZ_FULL,
194         },
195 };
196
197 static struct omap_onenand_platform_data board_onenand_data[] = {
198         {
199                 .cs             = 0,
200                 .gpio_irq       = 26,
201                 .parts          = onenand_partitions,
202                 .nr_parts       = ARRAY_SIZE(onenand_partitions),
203                 .flags          = ONENAND_SYNC_READ,
204         }
205 };
206 #endif
207
208 #if defined(CONFIG_MENELAUS) &&                                         \
209         (defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE))
210
211 /*
212  * On both N800 and N810, only the first of the two MMC controllers is in use.
213  * The two MMC slots are multiplexed via Menelaus companion chip over I2C.
214  * On N800, both slots are powered via Menelaus. On N810, only one of the
215  * slots is powered via Menelaus. The N810 EMMC is powered via GPIO.
216  *
217  * VMMC                         slot 1 on both N800 and N810
218  * VDCDC3_APE and VMCS2_APE     slot 2 on N800
219  * GPIO23 and GPIO9             slot 2 EMMC on N810
220  *
221  */
222 #define N8X0_SLOT_SWITCH_GPIO   96
223 #define N810_EMMC_VSD_GPIO      23
224 #define N810_EMMC_VIO_GPIO      9
225
226 static int slot1_cover_open;
227 static int slot2_cover_open;
228 static struct device *mmc_device;
229
230 static int n8x0_mmc_switch_slot(struct device *dev, int slot)
231 {
232 #ifdef CONFIG_MMC_DEBUG
233         dev_dbg(dev, "Choose slot %d\n", slot + 1);
234 #endif
235         gpio_set_value(N8X0_SLOT_SWITCH_GPIO, slot);
236         return 0;
237 }
238
239 static int n8x0_mmc_set_power_menelaus(struct device *dev, int slot,
240                                         int power_on, int vdd)
241 {
242         int mV;
243
244 #ifdef CONFIG_MMC_DEBUG
245         dev_dbg(dev, "Set slot %d power: %s (vdd %d)\n", slot + 1,
246                 power_on ? "on" : "off", vdd);
247 #endif
248         if (slot == 0) {
249                 if (!power_on)
250                         return menelaus_set_vmmc(0);
251                 switch (1 << vdd) {
252                 case MMC_VDD_33_34:
253                 case MMC_VDD_32_33:
254                 case MMC_VDD_31_32:
255                         mV = 3100;
256                         break;
257                 case MMC_VDD_30_31:
258                         mV = 3000;
259                         break;
260                 case MMC_VDD_28_29:
261                         mV = 2800;
262                         break;
263                 case MMC_VDD_165_195:
264                         mV = 1850;
265                         break;
266                 default:
267                         BUG();
268                 }
269                 return menelaus_set_vmmc(mV);
270         } else {
271                 if (!power_on)
272                         return menelaus_set_vdcdc(3, 0);
273                 switch (1 << vdd) {
274                 case MMC_VDD_33_34:
275                 case MMC_VDD_32_33:
276                         mV = 3300;
277                         break;
278                 case MMC_VDD_30_31:
279                 case MMC_VDD_29_30:
280                         mV = 3000;
281                         break;
282                 case MMC_VDD_28_29:
283                 case MMC_VDD_27_28:
284                         mV = 2800;
285                         break;
286                 case MMC_VDD_24_25:
287                 case MMC_VDD_23_24:
288                         mV = 2400;
289                         break;
290                 case MMC_VDD_22_23:
291                 case MMC_VDD_21_22:
292                         mV = 2200;
293                         break;
294                 case MMC_VDD_20_21:
295                         mV = 2000;
296                         break;
297                 case MMC_VDD_165_195:
298                         mV = 1800;
299                         break;
300                 default:
301                         BUG();
302                 }
303                 return menelaus_set_vdcdc(3, mV);
304         }
305         return 0;
306 }
307
308 static void n810_set_power_emmc(struct device *dev,
309                                          int power_on)
310 {
311         dev_dbg(dev, "Set EMMC power %s\n", power_on ? "on" : "off");
312
313         if (power_on) {
314                 gpio_set_value(N810_EMMC_VSD_GPIO, 1);
315                 msleep(1);
316                 gpio_set_value(N810_EMMC_VIO_GPIO, 1);
317                 msleep(1);
318         } else {
319                 gpio_set_value(N810_EMMC_VIO_GPIO, 0);
320                 msleep(50);
321                 gpio_set_value(N810_EMMC_VSD_GPIO, 0);
322                 msleep(50);
323         }
324 }
325
326 static int n8x0_mmc_set_power(struct device *dev, int slot, int power_on,
327                               int vdd)
328 {
329         if (board_is_n800() || slot == 0)
330                 return n8x0_mmc_set_power_menelaus(dev, slot, power_on, vdd);
331
332         n810_set_power_emmc(dev, power_on);
333
334         return 0;
335 }
336
337 static int n8x0_mmc_set_bus_mode(struct device *dev, int slot, int bus_mode)
338 {
339         int r;
340
341         dev_dbg(dev, "Set slot %d bus mode %s\n", slot + 1,
342                 bus_mode == MMC_BUSMODE_OPENDRAIN ? "open-drain" : "push-pull");
343         BUG_ON(slot != 0 && slot != 1);
344         slot++;
345         switch (bus_mode) {
346         case MMC_BUSMODE_OPENDRAIN:
347                 r = menelaus_set_mmc_opendrain(slot, 1);
348                 break;
349         case MMC_BUSMODE_PUSHPULL:
350                 r = menelaus_set_mmc_opendrain(slot, 0);
351                 break;
352         default:
353                 BUG();
354         }
355         if (r != 0 && printk_ratelimit())
356                 dev_err(dev, "MMC: unable to set bus mode for slot %d\n",
357                         slot);
358         return r;
359 }
360
361 static int n8x0_mmc_get_cover_state(struct device *dev, int slot)
362 {
363         slot++;
364         BUG_ON(slot != 1 && slot != 2);
365         if (slot == 1)
366                 return slot1_cover_open;
367         else
368                 return slot2_cover_open;
369 }
370
371 static void n8x0_mmc_callback(void *data, u8 card_mask)
372 {
373         int bit, *openp, index;
374
375         if (board_is_n800()) {
376                 bit = 1 << 1;
377                 openp = &slot2_cover_open;
378                 index = 1;
379         } else {
380                 bit = 1;
381                 openp = &slot1_cover_open;
382                 index = 0;
383         }
384
385         if (card_mask & bit)
386                 *openp = 1;
387         else
388                 *openp = 0;
389
390 #ifdef CONFIG_MMC_OMAP
391         omap_mmc_notify_cover_event(mmc_device, index, *openp);
392 #else
393         pr_warn("MMC: notify cover event not available\n");
394 #endif
395 }
396
397 static int n8x0_mmc_late_init(struct device *dev)
398 {
399         int r, bit, *openp;
400         int vs2sel;
401
402         mmc_device = dev;
403
404         r = menelaus_set_slot_sel(1);
405         if (r < 0)
406                 return r;
407
408         if (board_is_n800())
409                 vs2sel = 0;
410         else
411                 vs2sel = 2;
412
413         r = menelaus_set_mmc_slot(2, 0, vs2sel, 1);
414         if (r < 0)
415                 return r;
416
417         n8x0_mmc_set_power(dev, 0, MMC_POWER_ON, 16); /* MMC_VDD_28_29 */
418         n8x0_mmc_set_power(dev, 1, MMC_POWER_ON, 16);
419
420         r = menelaus_set_mmc_slot(1, 1, 0, 1);
421         if (r < 0)
422                 return r;
423         r = menelaus_set_mmc_slot(2, 1, vs2sel, 1);
424         if (r < 0)
425                 return r;
426
427         r = menelaus_get_slot_pin_states();
428         if (r < 0)
429                 return r;
430
431         if (board_is_n800()) {
432                 bit = 1 << 1;
433                 openp = &slot2_cover_open;
434         } else {
435                 bit = 1;
436                 openp = &slot1_cover_open;
437                 slot2_cover_open = 0;
438         }
439
440         /* All slot pin bits seem to be inversed until first switch change */
441         if (r == 0xf || r == (0xf & ~bit))
442                 r = ~r;
443
444         if (r & bit)
445                 *openp = 1;
446         else
447                 *openp = 0;
448
449         r = menelaus_register_mmc_callback(n8x0_mmc_callback, NULL);
450
451         return r;
452 }
453
454 static void n8x0_mmc_shutdown(struct device *dev)
455 {
456         int vs2sel;
457
458         if (board_is_n800())
459                 vs2sel = 0;
460         else
461                 vs2sel = 2;
462
463         menelaus_set_mmc_slot(1, 0, 0, 0);
464         menelaus_set_mmc_slot(2, 0, vs2sel, 0);
465 }
466
467 static void n8x0_mmc_cleanup(struct device *dev)
468 {
469         menelaus_unregister_mmc_callback();
470
471         gpio_free(N8X0_SLOT_SWITCH_GPIO);
472
473         if (board_is_n810()) {
474                 gpio_free(N810_EMMC_VSD_GPIO);
475                 gpio_free(N810_EMMC_VIO_GPIO);
476         }
477 }
478
479 /*
480  * MMC controller1 has two slots that are multiplexed via I2C.
481  * MMC controller2 is not in use.
482  */
483 static struct omap_mmc_platform_data mmc1_data = {
484         .nr_slots                       = 0,
485         .switch_slot                    = n8x0_mmc_switch_slot,
486         .init                           = n8x0_mmc_late_init,
487         .cleanup                        = n8x0_mmc_cleanup,
488         .shutdown                       = n8x0_mmc_shutdown,
489         .max_freq                       = 24000000,
490         .slots[0] = {
491                 .wires                  = 4,
492                 .set_power              = n8x0_mmc_set_power,
493                 .set_bus_mode           = n8x0_mmc_set_bus_mode,
494                 .get_cover_state        = n8x0_mmc_get_cover_state,
495                 .ocr_mask               = MMC_VDD_165_195 | MMC_VDD_30_31 |
496                                                 MMC_VDD_32_33   | MMC_VDD_33_34,
497                 .name                   = "internal",
498         },
499         .slots[1] = {
500                 .set_power              = n8x0_mmc_set_power,
501                 .set_bus_mode           = n8x0_mmc_set_bus_mode,
502                 .get_cover_state        = n8x0_mmc_get_cover_state,
503                 .ocr_mask               = MMC_VDD_165_195 | MMC_VDD_20_21 |
504                                                 MMC_VDD_21_22 | MMC_VDD_22_23 |
505                                                 MMC_VDD_23_24 | MMC_VDD_24_25 |
506                                                 MMC_VDD_27_28 | MMC_VDD_28_29 |
507                                                 MMC_VDD_29_30 | MMC_VDD_30_31 |
508                                                 MMC_VDD_32_33 | MMC_VDD_33_34,
509                 .name                   = "external",
510         },
511 };
512
513 static struct omap_mmc_platform_data *mmc_data[OMAP24XX_NR_MMC];
514
515 static struct gpio n810_emmc_gpios[] __initdata = {
516         { N810_EMMC_VSD_GPIO, GPIOF_OUT_INIT_LOW,  "MMC slot 2 Vddf" },
517         { N810_EMMC_VIO_GPIO, GPIOF_OUT_INIT_LOW,  "MMC slot 2 Vdd"  },
518 };
519
520 static void __init n8x0_mmc_init(void)
521 {
522         int err;
523
524         if (board_is_n810()) {
525                 mmc1_data.slots[0].name = "external";
526
527                 /*
528                  * Some Samsung Movinand chips do not like open-ended
529                  * multi-block reads and fall to braind-dead state
530                  * while doing so. Reducing the number of blocks in
531                  * the transfer or delays in clock disable do not help
532                  */
533                 mmc1_data.slots[1].name = "internal";
534                 mmc1_data.slots[1].ban_openended = 1;
535         }
536
537         err = gpio_request_one(N8X0_SLOT_SWITCH_GPIO, GPIOF_OUT_INIT_LOW,
538                                "MMC slot switch");
539         if (err)
540                 return;
541
542         if (board_is_n810()) {
543                 err = gpio_request_array(n810_emmc_gpios,
544                                          ARRAY_SIZE(n810_emmc_gpios));
545                 if (err) {
546                         gpio_free(N8X0_SLOT_SWITCH_GPIO);
547                         return;
548                 }
549         }
550
551         mmc1_data.nr_slots = 2;
552         mmc_data[0] = &mmc1_data;
553 }
554 #else
555 static struct omap_mmc_platform_data mmc1_data;
556 void __init n8x0_mmc_init(void)
557 {
558 }
559 #endif  /* CONFIG_MMC_OMAP */
560
561 #ifdef CONFIG_MENELAUS
562
563 static int n8x0_auto_sleep_regulators(void)
564 {
565         u32 val;
566         int ret;
567
568         val = EN_VPLL_SLEEP | EN_VMMC_SLEEP    \
569                 | EN_VAUX_SLEEP | EN_VIO_SLEEP \
570                 | EN_VMEM_SLEEP | EN_DC3_SLEEP \
571                 | EN_VC_SLEEP | EN_DC2_SLEEP;
572
573         ret = menelaus_set_regulator_sleep(1, val);
574         if (ret < 0) {
575                 pr_err("Could not set regulators to sleep on menelaus: %u\n",
576                        ret);
577                 return ret;
578         }
579         return 0;
580 }
581
582 static int n8x0_auto_voltage_scale(void)
583 {
584         int ret;
585
586         ret = menelaus_set_vcore_hw(1400, 1050);
587         if (ret < 0) {
588                 pr_err("Could not set VCORE voltage on menelaus: %u\n", ret);
589                 return ret;
590         }
591         return 0;
592 }
593
594 static int n8x0_menelaus_late_init(struct device *dev)
595 {
596         int ret;
597
598         ret = n8x0_auto_voltage_scale();
599         if (ret < 0)
600                 return ret;
601         ret = n8x0_auto_sleep_regulators();
602         if (ret < 0)
603                 return ret;
604         return 0;
605 }
606
607 #else
608 static int n8x0_menelaus_late_init(struct device *dev)
609 {
610         return 0;
611 }
612 #endif
613
614 static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata = {
615         .late_init = n8x0_menelaus_late_init,
616 };
617
618 static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = {
619         {
620                 I2C_BOARD_INFO("menelaus", 0x72),
621                 .irq = 7 + OMAP_INTC_START,
622                 .platform_data = &n8x0_menelaus_platform_data,
623         },
624 };
625
626 static struct aic3x_pdata n810_aic33_data __initdata = {
627         .gpio_reset = 118,
628 };
629
630 static struct i2c_board_info n810_i2c_board_info_2[] __initdata = {
631         {
632                 I2C_BOARD_INFO("tlv320aic3x", 0x18),
633                 .platform_data = &n810_aic33_data,
634         },
635 };
636
637 static int __init n8x0_late_initcall(void)
638 {
639         if (!board_caps)
640                 return -ENODEV;
641
642         gpmc_onenand_init(board_onenand_data);
643         n8x0_mmc_init();
644         n8x0_usb_init();
645
646         return 0;
647 }
648 omap_late_initcall(n8x0_late_initcall);
649
650 /*
651  * Legacy init pdata init for n8x0. Note that we want to follow the
652  * I2C bus numbering starting at 0 for device tree like other omaps.
653  */
654 void * __init n8x0_legacy_init(void)
655 {
656         board_check_revision();
657         spi_register_board_info(n800_spi_board_info,
658                                 ARRAY_SIZE(n800_spi_board_info));
659         i2c_register_board_info(0, n8x0_i2c_board_info_1,
660                                 ARRAY_SIZE(n8x0_i2c_board_info_1));
661         if (board_is_n810())
662                 i2c_register_board_info(1, n810_i2c_board_info_2,
663                                         ARRAY_SIZE(n810_i2c_board_info_2));
664
665         return &mmc1_data;
666 }