ARM: OMAP: hsmmc: Add support for non-OMAP pins
[pandora-kernel.git] / arch / arm / mach-omap2 / hsmmc.c
1 /*
2  * linux/arch/arm/mach-omap2/hsmmc.c
3  *
4  * Copyright (C) 2007-2008 Texas Instruments
5  * Copyright (C) 2008 Nokia Corporation
6  * Author: Texas Instruments
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12 #include <linux/kernel.h>
13 #include <linux/slab.h>
14 #include <linux/string.h>
15 #include <linux/delay.h>
16 #include <linux/gpio.h>
17 #include <mach/hardware.h>
18 #include <plat/mmc.h>
19 #include <plat/omap-pm.h>
20 #include <plat/mux.h>
21 #include <plat/omap_device.h>
22 #include <asm/mach-types.h>
23
24 #include "mux.h"
25 #include "hsmmc.h"
26 #include "control.h"
27
28 #if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
29
30 static u16 control_pbias_offset;
31 static u16 control_devconf1_offset;
32 static u16 control_mmc1;
33
34 #define HSMMC_NAME_LEN  9
35
36 #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM)
37
38 static int hsmmc_get_context_loss(struct device *dev)
39 {
40         return omap_pm_get_dev_context_loss_count(dev);
41 }
42
43 #else
44 #define hsmmc_get_context_loss NULL
45 #endif
46
47 static void omap_hsmmc1_before_set_reg(struct device *dev, int slot,
48                                   int power_on, int vdd)
49 {
50         u32 reg, prog_io;
51         struct omap_mmc_platform_data *mmc = dev->platform_data;
52
53         if (mmc->slots[0].remux)
54                 mmc->slots[0].remux(dev, slot, power_on);
55
56         /*
57          * Assume we power both OMAP VMMC1 (for CMD, CLK, DAT0..3) and the
58          * card with Vcc regulator (from twl4030 or whatever).  OMAP has both
59          * 1.8V and 3.0V modes, controlled by the PBIAS register.
60          *
61          * In 8-bit modes, OMAP VMMC1A (for DAT4..7) needs a supply, which
62          * is most naturally TWL VSIM; those pins also use PBIAS.
63          *
64          * FIXME handle VMMC1A as needed ...
65          */
66         if (power_on) {
67                 if (cpu_is_omap2430()) {
68                         reg = omap_ctrl_readl(OMAP243X_CONTROL_DEVCONF1);
69                         if ((1 << vdd) >= MMC_VDD_30_31)
70                                 reg |= OMAP243X_MMC1_ACTIVE_OVERWRITE;
71                         else
72                                 reg &= ~OMAP243X_MMC1_ACTIVE_OVERWRITE;
73                         omap_ctrl_writel(reg, OMAP243X_CONTROL_DEVCONF1);
74                 }
75
76                 if (mmc->slots[0].internal_clock) {
77                         reg = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
78                         reg |= OMAP2_MMCSDIO1ADPCLKISEL;
79                         omap_ctrl_writel(reg, OMAP2_CONTROL_DEVCONF0);
80                 }
81
82                 reg = omap_ctrl_readl(control_pbias_offset);
83                 if (cpu_is_omap3630()) {
84                         /* Set MMC I/O to 52Mhz */
85                         prog_io = omap_ctrl_readl(OMAP343X_CONTROL_PROG_IO1);
86                         prog_io |= OMAP3630_PRG_SDMMC1_SPEEDCTRL;
87                         omap_ctrl_writel(prog_io, OMAP343X_CONTROL_PROG_IO1);
88                 } else {
89                         reg |= OMAP2_PBIASSPEEDCTRL0;
90                 }
91                 reg &= ~OMAP2_PBIASLITEPWRDNZ0;
92                 omap_ctrl_writel(reg, control_pbias_offset);
93         } else {
94                 reg = omap_ctrl_readl(control_pbias_offset);
95                 reg &= ~OMAP2_PBIASLITEPWRDNZ0;
96                 omap_ctrl_writel(reg, control_pbias_offset);
97         }
98 }
99
100 static void omap_hsmmc1_after_set_reg(struct device *dev, int slot,
101                                  int power_on, int vdd)
102 {
103         u32 reg;
104
105         /* 100ms delay required for PBIAS configuration */
106         msleep(100);
107
108         if (power_on) {
109                 reg = omap_ctrl_readl(control_pbias_offset);
110                 reg |= (OMAP2_PBIASLITEPWRDNZ0 | OMAP2_PBIASSPEEDCTRL0);
111                 if ((1 << vdd) <= MMC_VDD_165_195)
112                         reg &= ~OMAP2_PBIASLITEVMODE0;
113                 else
114                         reg |= OMAP2_PBIASLITEVMODE0;
115                 omap_ctrl_writel(reg, control_pbias_offset);
116         } else {
117                 reg = omap_ctrl_readl(control_pbias_offset);
118                 reg |= (OMAP2_PBIASSPEEDCTRL0 | OMAP2_PBIASLITEPWRDNZ0 |
119                         OMAP2_PBIASLITEVMODE0);
120                 omap_ctrl_writel(reg, control_pbias_offset);
121         }
122 }
123
124 static void omap4_hsmmc1_before_set_reg(struct device *dev, int slot,
125                                   int power_on, int vdd)
126 {
127         u32 reg;
128
129         /*
130          * Assume we power both OMAP VMMC1 (for CMD, CLK, DAT0..3) and the
131          * card with Vcc regulator (from twl4030 or whatever).  OMAP has both
132          * 1.8V and 3.0V modes, controlled by the PBIAS register.
133          */
134         reg = omap4_ctrl_pad_readl(control_pbias_offset);
135         reg &= ~(OMAP4_MMC1_PBIASLITE_PWRDNZ_MASK |
136                 OMAP4_MMC1_PWRDNZ_MASK |
137                 OMAP4_MMC1_PBIASLITE_VMODE_MASK);
138         omap4_ctrl_pad_writel(reg, control_pbias_offset);
139 }
140
141 static void omap4_hsmmc1_after_set_reg(struct device *dev, int slot,
142                                  int power_on, int vdd)
143 {
144         u32 reg;
145         unsigned long timeout;
146
147         if (power_on) {
148                 reg = omap4_ctrl_pad_readl(control_pbias_offset);
149                 reg |= OMAP4_MMC1_PBIASLITE_PWRDNZ_MASK;
150                 if ((1 << vdd) <= MMC_VDD_165_195)
151                         reg &= ~OMAP4_MMC1_PBIASLITE_VMODE_MASK;
152                 else
153                         reg |= OMAP4_MMC1_PBIASLITE_VMODE_MASK;
154                 reg |= (OMAP4_MMC1_PBIASLITE_PWRDNZ_MASK |
155                         OMAP4_MMC1_PWRDNZ_MASK);
156                 omap4_ctrl_pad_writel(reg, control_pbias_offset);
157
158                 timeout = jiffies + msecs_to_jiffies(5);
159                 do {
160                         reg = omap4_ctrl_pad_readl(control_pbias_offset);
161                         if (!(reg & OMAP4_MMC1_PBIASLITE_VMODE_ERROR_MASK))
162                                 break;
163                         usleep_range(100, 200);
164                 } while (!time_after(jiffies, timeout));
165
166                 if (reg & OMAP4_MMC1_PBIASLITE_VMODE_ERROR_MASK) {
167                         pr_err("Pbias Voltage is not same as LDO\n");
168                         /* Caution : On VMODE_ERROR Power Down MMC IO */
169                         reg &= ~(OMAP4_MMC1_PWRDNZ_MASK);
170                         omap4_ctrl_pad_writel(reg, control_pbias_offset);
171                 }
172         }
173 }
174
175 static void hsmmc2_before_set_reg(struct device *dev, int slot,
176                                    int power_on, int vdd)
177 {
178         struct omap_mmc_platform_data *mmc = dev->platform_data;
179
180         if (mmc->slots[0].remux)
181                 mmc->slots[0].remux(dev, slot, power_on);
182
183         if (power_on) {
184                 u32 reg;
185
186                 reg = omap_ctrl_readl(control_devconf1_offset);
187                 if (mmc->slots[0].internal_clock)
188                         reg |= OMAP2_MMCSDIO2ADPCLKISEL;
189                 else
190                         reg &= ~OMAP2_MMCSDIO2ADPCLKISEL;
191                 omap_ctrl_writel(reg, control_devconf1_offset);
192         }
193 }
194
195 static int nop_mmc_set_power(struct device *dev, int slot, int power_on,
196                                                         int vdd)
197 {
198         return 0;
199 }
200
201 static inline void omap_hsmmc_mux(struct omap_mmc_platform_data *mmc_controller,
202                         int controller_nr)
203 {
204         if (gpio_is_valid(mmc_controller->slots[0].switch_pin) &&
205                 (mmc_controller->slots[0].switch_pin < OMAP_MAX_GPIO_LINES))
206                 omap_mux_init_gpio(mmc_controller->slots[0].switch_pin,
207                                         OMAP_PIN_INPUT_PULLUP);
208         if (gpio_is_valid(mmc_controller->slots[0].gpio_wp) &&
209                 (mmc_controller->slots[0].gpio_wp < OMAP_MAX_GPIO_LINES))
210                 omap_mux_init_gpio(mmc_controller->slots[0].gpio_wp,
211                                         OMAP_PIN_INPUT_PULLUP);
212         if (cpu_is_omap34xx()) {
213                 if (controller_nr == 0) {
214                         omap_mux_init_signal("sdmmc1_clk",
215                                 OMAP_PIN_INPUT_PULLUP);
216                         omap_mux_init_signal("sdmmc1_cmd",
217                                 OMAP_PIN_INPUT_PULLUP);
218                         omap_mux_init_signal("sdmmc1_dat0",
219                                 OMAP_PIN_INPUT_PULLUP);
220                         if (mmc_controller->slots[0].caps &
221                                 (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA)) {
222                                 omap_mux_init_signal("sdmmc1_dat1",
223                                         OMAP_PIN_INPUT_PULLUP);
224                                 omap_mux_init_signal("sdmmc1_dat2",
225                                         OMAP_PIN_INPUT_PULLUP);
226                                 omap_mux_init_signal("sdmmc1_dat3",
227                                         OMAP_PIN_INPUT_PULLUP);
228                         }
229                         if (mmc_controller->slots[0].caps &
230                                                 MMC_CAP_8_BIT_DATA) {
231                                 omap_mux_init_signal("sdmmc1_dat4",
232                                         OMAP_PIN_INPUT_PULLUP);
233                                 omap_mux_init_signal("sdmmc1_dat5",
234                                         OMAP_PIN_INPUT_PULLUP);
235                                 omap_mux_init_signal("sdmmc1_dat6",
236                                         OMAP_PIN_INPUT_PULLUP);
237                                 omap_mux_init_signal("sdmmc1_dat7",
238                                         OMAP_PIN_INPUT_PULLUP);
239                         }
240                 }
241                 if (controller_nr == 1) {
242                         /* MMC2 */
243                         omap_mux_init_signal("sdmmc2_clk",
244                                 OMAP_PIN_INPUT_PULLUP);
245                         omap_mux_init_signal("sdmmc2_cmd",
246                                 OMAP_PIN_INPUT_PULLUP);
247                         omap_mux_init_signal("sdmmc2_dat0",
248                                 OMAP_PIN_INPUT_PULLUP);
249
250                         /*
251                          * For 8 wire configurations, Lines DAT4, 5, 6 and 7
252                          * need to be muxed in the board-*.c files
253                          */
254                         if (mmc_controller->slots[0].caps &
255                                 (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA)) {
256                                 omap_mux_init_signal("sdmmc2_dat1",
257                                         OMAP_PIN_INPUT_PULLUP);
258                                 omap_mux_init_signal("sdmmc2_dat2",
259                                         OMAP_PIN_INPUT_PULLUP);
260                                 omap_mux_init_signal("sdmmc2_dat3",
261                                         OMAP_PIN_INPUT_PULLUP);
262                         }
263                         if (mmc_controller->slots[0].caps &
264                                                         MMC_CAP_8_BIT_DATA) {
265                                 omap_mux_init_signal("sdmmc2_dat4.sdmmc2_dat4",
266                                         OMAP_PIN_INPUT_PULLUP);
267                                 omap_mux_init_signal("sdmmc2_dat5.sdmmc2_dat5",
268                                         OMAP_PIN_INPUT_PULLUP);
269                                 omap_mux_init_signal("sdmmc2_dat6.sdmmc2_dat6",
270                                         OMAP_PIN_INPUT_PULLUP);
271                                 omap_mux_init_signal("sdmmc2_dat7.sdmmc2_dat7",
272                                         OMAP_PIN_INPUT_PULLUP);
273                         }
274                 }
275
276                 /*
277                  * For MMC3 the pins need to be muxed in the board-*.c files
278                  */
279         }
280 }
281
282 static int __init omap_hsmmc_pdata_init(struct omap2_hsmmc_info *c,
283                                         struct omap_mmc_platform_data *mmc)
284 {
285         char *hc_name;
286
287         hc_name = kzalloc(sizeof(char) * (HSMMC_NAME_LEN + 1), GFP_KERNEL);
288         if (!hc_name) {
289                 pr_err("Cannot allocate memory for controller slot name\n");
290                 kfree(hc_name);
291                 return -ENOMEM;
292         }
293
294         if (c->name)
295                 strncpy(hc_name, c->name, HSMMC_NAME_LEN);
296         else
297                 snprintf(hc_name, (HSMMC_NAME_LEN + 1), "mmc%islot%i",
298                                                                 c->mmc, 1);
299         mmc->slots[0].name = hc_name;
300         mmc->nr_slots = 1;
301         mmc->slots[0].caps = c->caps;
302         mmc->slots[0].internal_clock = !c->ext_clock;
303         mmc->dma_mask = 0xffffffff;
304         if (cpu_is_omap44xx())
305                 mmc->reg_offset = OMAP4_MMC_REG_OFFSET;
306         else
307                 mmc->reg_offset = 0;
308
309         mmc->get_context_loss_count = hsmmc_get_context_loss;
310
311         mmc->slots[0].switch_pin = c->gpio_cd;
312         mmc->slots[0].gpio_wp = c->gpio_wp;
313
314         mmc->slots[0].remux = c->remux;
315         mmc->slots[0].init_card = c->init_card;
316
317         if (c->cover_only)
318                 mmc->slots[0].cover = 1;
319
320         if (c->nonremovable)
321                 mmc->slots[0].nonremovable = 1;
322
323         if (c->power_saving)
324                 mmc->slots[0].power_saving = 1;
325
326         if (c->no_off)
327                 mmc->slots[0].no_off = 1;
328
329         if (c->no_off_init)
330                 mmc->slots[0].no_regulator_off_init = c->no_off_init;
331
332         if (c->vcc_aux_disable_is_sleep)
333                 mmc->slots[0].vcc_aux_disable_is_sleep = 1;
334
335         /*
336          * NOTE:  MMC slots should have a Vcc regulator set up.
337          * This may be from a TWL4030-family chip, another
338          * controllable regulator, or a fixed supply.
339          *
340          * temporary HACK: ocr_mask instead of fixed supply
341          */
342         mmc->slots[0].ocr_mask = c->ocr_mask;
343
344         if (cpu_is_omap3517() || cpu_is_omap3505())
345                 mmc->slots[0].set_power = nop_mmc_set_power;
346         else
347                 mmc->slots[0].features |= HSMMC_HAS_PBIAS;
348
349         if (cpu_is_omap44xx() && (omap_rev() > OMAP4430_REV_ES1_0))
350                 mmc->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
351
352         switch (c->mmc) {
353         case 1:
354                 if (mmc->slots[0].features & HSMMC_HAS_PBIAS) {
355                         /* on-chip level shifting via PBIAS0/PBIAS1 */
356                         if (cpu_is_omap44xx()) {
357                                 mmc->slots[0].before_set_reg =
358                                                 omap4_hsmmc1_before_set_reg;
359                                 mmc->slots[0].after_set_reg =
360                                                 omap4_hsmmc1_after_set_reg;
361                         } else {
362                                 mmc->slots[0].before_set_reg =
363                                                 omap_hsmmc1_before_set_reg;
364                                 mmc->slots[0].after_set_reg =
365                                                 omap_hsmmc1_after_set_reg;
366                         }
367                 }
368
369                 /* OMAP3630 HSMMC1 supports only 4-bit */
370                 if (cpu_is_omap3630() &&
371                                 (c->caps & MMC_CAP_8_BIT_DATA)) {
372                         c->caps &= ~MMC_CAP_8_BIT_DATA;
373                         c->caps |= MMC_CAP_4_BIT_DATA;
374                         mmc->slots[0].caps = c->caps;
375                 }
376                 break;
377         case 2:
378                 if (c->ext_clock)
379                         c->transceiver = 1;
380                 if (c->transceiver && (c->caps & MMC_CAP_8_BIT_DATA)) {
381                         c->caps &= ~MMC_CAP_8_BIT_DATA;
382                         c->caps |= MMC_CAP_4_BIT_DATA;
383                 }
384                 if (mmc->slots[0].features & HSMMC_HAS_PBIAS) {
385                         /* off-chip level shifting, or none */
386                         mmc->slots[0].before_set_reg = hsmmc2_before_set_reg;
387                         mmc->slots[0].after_set_reg = NULL;
388                 }
389                 break;
390         case 3:
391         case 4:
392         case 5:
393                 mmc->slots[0].before_set_reg = NULL;
394                 mmc->slots[0].after_set_reg = NULL;
395                 break;
396         default:
397                 pr_err("MMC%d configuration not supported!\n", c->mmc);
398                 kfree(hc_name);
399                 return -ENODEV;
400         }
401         return 0;
402 }
403
404 #define MAX_OMAP_MMC_HWMOD_NAME_LEN             16
405
406 void __init omap_init_hsmmc(struct omap2_hsmmc_info *hsmmcinfo, int ctrl_nr)
407 {
408         struct omap_hwmod *oh;
409         struct platform_device *pdev;
410         char oh_name[MAX_OMAP_MMC_HWMOD_NAME_LEN];
411         struct omap_mmc_platform_data *mmc_data;
412         struct omap_mmc_dev_attr *mmc_dev_attr;
413         char *name;
414         int l;
415
416         mmc_data = kzalloc(sizeof(struct omap_mmc_platform_data), GFP_KERNEL);
417         if (!mmc_data) {
418                 pr_err("Cannot allocate memory for mmc device!\n");
419                 goto done;
420         }
421
422         if (omap_hsmmc_pdata_init(hsmmcinfo, mmc_data) < 0) {
423                 pr_err("%s fails!\n", __func__);
424                 goto done;
425         }
426         omap_hsmmc_mux(mmc_data, (ctrl_nr - 1));
427
428         name = "omap_hsmmc";
429
430         l = snprintf(oh_name, MAX_OMAP_MMC_HWMOD_NAME_LEN,
431                      "mmc%d", ctrl_nr);
432         WARN(l >= MAX_OMAP_MMC_HWMOD_NAME_LEN,
433              "String buffer overflow in MMC%d device setup\n", ctrl_nr);
434         oh = omap_hwmod_lookup(oh_name);
435         if (!oh) {
436                 pr_err("Could not look up %s\n", oh_name);
437                 kfree(mmc_data->slots[0].name);
438                 goto done;
439         }
440
441         if (oh->dev_attr != NULL) {
442                 mmc_dev_attr = oh->dev_attr;
443                 mmc_data->controller_flags = mmc_dev_attr->flags;
444                 /*
445                  * erratum 2.1.1.128 doesn't apply if board has
446                  * a transceiver is attached
447                  */
448                 if (hsmmcinfo->transceiver)
449                         mmc_data->controller_flags &=
450                                 ~OMAP_HSMMC_BROKEN_MULTIBLOCK_READ;
451         }
452
453         pdev = omap_device_build(name, ctrl_nr - 1, oh, mmc_data,
454                 sizeof(struct omap_mmc_platform_data), NULL, 0, false);
455         if (IS_ERR(pdev)) {
456                 WARN(1, "Can't build omap_device for %s:%s.\n", name, oh->name);
457                 kfree(mmc_data->slots[0].name);
458                 goto done;
459         }
460         /*
461          * return device handle to board setup code
462          * required to populate for regulator framework structure
463          */
464         hsmmcinfo->dev = &pdev->dev;
465
466 done:
467         kfree(mmc_data);
468 }
469
470 void __init omap2_hsmmc_init(struct omap2_hsmmc_info *controllers)
471 {
472         u32 reg;
473
474         if (!cpu_is_omap44xx()) {
475                 if (cpu_is_omap2430()) {
476                         control_pbias_offset = OMAP243X_CONTROL_PBIAS_LITE;
477                         control_devconf1_offset = OMAP243X_CONTROL_DEVCONF1;
478                 } else {
479                         control_pbias_offset = OMAP343X_CONTROL_PBIAS_LITE;
480                         control_devconf1_offset = OMAP343X_CONTROL_DEVCONF1;
481                 }
482
483                 if (machine_is_omap3_pandora()) {
484                         /* needed for gpio_126 - gpio_129 to work correctly */
485                         reg = omap_ctrl_readl(control_pbias_offset);
486                         reg &= ~OMAP343X_PBIASLITEVMODE1;
487                         omap_ctrl_writel(reg, control_pbias_offset);
488                 }
489         } else {
490                 control_pbias_offset =
491                         OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_PBIASLITE;
492                 control_mmc1 = OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_MMC1;
493                 reg = omap4_ctrl_pad_readl(control_mmc1);
494                 reg |= (OMAP4_SDMMC1_PUSTRENGTH_GRP0_MASK |
495                         OMAP4_SDMMC1_PUSTRENGTH_GRP1_MASK);
496                 reg &= ~(OMAP4_SDMMC1_PUSTRENGTH_GRP2_MASK |
497                         OMAP4_SDMMC1_PUSTRENGTH_GRP3_MASK);
498                 reg |= (OMAP4_SDMMC1_DR0_SPEEDCTRL_MASK |
499                         OMAP4_SDMMC1_DR1_SPEEDCTRL_MASK |
500                         OMAP4_SDMMC1_DR2_SPEEDCTRL_MASK);
501                 omap4_ctrl_pad_writel(reg, control_mmc1);
502         }
503
504         for (; controllers->mmc; controllers++)
505                 omap_init_hsmmc(controllers, controllers->mmc);
506
507 }
508
509 #endif