Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 1 | /* |
Adrian Hunter | d02a900b | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 2 | * linux/arch/arm/mach-omap2/hsmmc.c |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 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 | */ |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/string.h> |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 15 | #include <linux/delay.h> |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 16 | #include <mach/hardware.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 17 | #include <plat/control.h> |
| 18 | #include <plat/mmc.h> |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 19 | |
Adrian Hunter | d02a900b | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 20 | #include "hsmmc.h" |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 21 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 22 | #if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE) |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 23 | |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 24 | static u16 control_pbias_offset; |
| 25 | static u16 control_devconf1_offset; |
| 26 | |
| 27 | #define HSMMC_NAME_LEN 9 |
| 28 | |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 29 | static struct hsmmc_controller { |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 30 | char name[HSMMC_NAME_LEN + 1]; |
| 31 | } hsmmc[OMAP34XX_NR_MMC]; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 32 | |
Denis Karpov | 1887bde | 2009-09-22 16:44:40 -0700 | [diff] [blame] | 33 | #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM) |
| 34 | |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 35 | static int hsmmc_get_context_loss(struct device *dev) |
Denis Karpov | 1887bde | 2009-09-22 16:44:40 -0700 | [diff] [blame] | 36 | { |
| 37 | /* FIXME: PM DPS not implemented yet */ |
| 38 | return 0; |
| 39 | } |
| 40 | |
| 41 | #else |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 42 | #define hsmmc_get_context_loss NULL |
Denis Karpov | 1887bde | 2009-09-22 16:44:40 -0700 | [diff] [blame] | 43 | #endif |
| 44 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 45 | static void hsmmc1_before_set_reg(struct device *dev, int slot, |
| 46 | int power_on, int vdd) |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 47 | { |
Madhu | 555d503 | 2009-11-22 10:11:08 -0800 | [diff] [blame] | 48 | u32 reg, prog_io; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 49 | struct omap_mmc_platform_data *mmc = dev->platform_data; |
| 50 | |
David Brownell | 0329c37 | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 51 | /* |
| 52 | * Assume we power both OMAP VMMC1 (for CMD, CLK, DAT0..3) and the |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 53 | * card with Vcc regulator (from twl4030 or whatever). OMAP has both |
David Brownell | 0329c37 | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 54 | * 1.8V and 3.0V modes, controlled by the PBIAS register. |
| 55 | * |
| 56 | * In 8-bit modes, OMAP VMMC1A (for DAT4..7) needs a supply, which |
| 57 | * is most naturally TWL VSIM; those pins also use PBIAS. |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 58 | * |
| 59 | * FIXME handle VMMC1A as needed ... |
David Brownell | 0329c37 | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 60 | */ |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 61 | if (power_on) { |
| 62 | if (cpu_is_omap2430()) { |
| 63 | reg = omap_ctrl_readl(OMAP243X_CONTROL_DEVCONF1); |
| 64 | if ((1 << vdd) >= MMC_VDD_30_31) |
| 65 | reg |= OMAP243X_MMC1_ACTIVE_OVERWRITE; |
| 66 | else |
| 67 | reg &= ~OMAP243X_MMC1_ACTIVE_OVERWRITE; |
| 68 | omap_ctrl_writel(reg, OMAP243X_CONTROL_DEVCONF1); |
| 69 | } |
| 70 | |
| 71 | if (mmc->slots[0].internal_clock) { |
| 72 | reg = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0); |
| 73 | reg |= OMAP2_MMCSDIO1ADPCLKISEL; |
| 74 | omap_ctrl_writel(reg, OMAP2_CONTROL_DEVCONF0); |
| 75 | } |
| 76 | |
| 77 | reg = omap_ctrl_readl(control_pbias_offset); |
Madhu | 555d503 | 2009-11-22 10:11:08 -0800 | [diff] [blame] | 78 | if (cpu_is_omap3630()) { |
| 79 | /* Set MMC I/O to 52Mhz */ |
| 80 | prog_io = omap_ctrl_readl(OMAP343X_CONTROL_PROG_IO1); |
| 81 | prog_io |= OMAP3630_PRG_SDMMC1_SPEEDCTRL; |
| 82 | omap_ctrl_writel(prog_io, OMAP343X_CONTROL_PROG_IO1); |
| 83 | } else { |
| 84 | reg |= OMAP2_PBIASSPEEDCTRL0; |
| 85 | } |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 86 | reg &= ~OMAP2_PBIASLITEPWRDNZ0; |
| 87 | omap_ctrl_writel(reg, control_pbias_offset); |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 88 | } else { |
| 89 | reg = omap_ctrl_readl(control_pbias_offset); |
| 90 | reg &= ~OMAP2_PBIASLITEPWRDNZ0; |
| 91 | omap_ctrl_writel(reg, control_pbias_offset); |
| 92 | } |
| 93 | } |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 94 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 95 | static void hsmmc1_after_set_reg(struct device *dev, int slot, |
| 96 | int power_on, int vdd) |
| 97 | { |
| 98 | u32 reg; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 99 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 100 | /* 100ms delay required for PBIAS configuration */ |
| 101 | msleep(100); |
| 102 | |
| 103 | if (power_on) { |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 104 | reg = omap_ctrl_readl(control_pbias_offset); |
| 105 | reg |= (OMAP2_PBIASLITEPWRDNZ0 | OMAP2_PBIASSPEEDCTRL0); |
| 106 | if ((1 << vdd) <= MMC_VDD_165_195) |
| 107 | reg &= ~OMAP2_PBIASLITEVMODE0; |
| 108 | else |
| 109 | reg |= OMAP2_PBIASLITEVMODE0; |
| 110 | omap_ctrl_writel(reg, control_pbias_offset); |
| 111 | } else { |
| 112 | reg = omap_ctrl_readl(control_pbias_offset); |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 113 | reg |= (OMAP2_PBIASSPEEDCTRL0 | OMAP2_PBIASLITEPWRDNZ0 | |
| 114 | OMAP2_PBIASLITEVMODE0); |
| 115 | omap_ctrl_writel(reg, control_pbias_offset); |
| 116 | } |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 117 | } |
| 118 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 119 | static void hsmmc23_before_set_reg(struct device *dev, int slot, |
| 120 | int power_on, int vdd) |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 121 | { |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 122 | struct omap_mmc_platform_data *mmc = dev->platform_data; |
Grazvydas Ignotas | 762ad3a4 | 2009-06-23 13:30:22 +0300 | [diff] [blame] | 123 | |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 124 | if (power_on) { |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 125 | /* Only MMC2 supports a CLKIN */ |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 126 | if (mmc->slots[0].internal_clock) { |
| 127 | u32 reg; |
| 128 | |
| 129 | reg = omap_ctrl_readl(control_devconf1_offset); |
| 130 | reg |= OMAP2_MMCSDIO2ADPCLKISEL; |
| 131 | omap_ctrl_writel(reg, control_devconf1_offset); |
| 132 | } |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 133 | } |
Adrian Hunter | 9b7c18e | 2009-09-22 16:44:50 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 136 | static struct omap_mmc_platform_data *hsmmc_data[OMAP34XX_NR_MMC] __initdata; |
| 137 | |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 138 | void __init omap2_hsmmc_init(struct omap2_hsmmc_info *controllers) |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 139 | { |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 140 | struct omap2_hsmmc_info *c; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 141 | int nr_hsmmc = ARRAY_SIZE(hsmmc_data); |
Aaro Koskinen | a6c7fdd | 2010-02-04 13:06:59 +0200 | [diff] [blame] | 142 | int i; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 143 | |
| 144 | if (cpu_is_omap2430()) { |
| 145 | control_pbias_offset = OMAP243X_CONTROL_PBIAS_LITE; |
| 146 | control_devconf1_offset = OMAP243X_CONTROL_DEVCONF1; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 147 | } else { |
| 148 | control_pbias_offset = OMAP343X_CONTROL_PBIAS_LITE; |
| 149 | control_devconf1_offset = OMAP343X_CONTROL_DEVCONF1; |
| 150 | } |
| 151 | |
| 152 | for (c = controllers; c->mmc; c++) { |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 153 | struct hsmmc_controller *hc = hsmmc + c->mmc - 1; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 154 | struct omap_mmc_platform_data *mmc = hsmmc_data[c->mmc - 1]; |
| 155 | |
| 156 | if (!c->mmc || c->mmc > nr_hsmmc) { |
| 157 | pr_debug("MMC%d: no such controller\n", c->mmc); |
| 158 | continue; |
| 159 | } |
| 160 | if (mmc) { |
| 161 | pr_debug("MMC%d: already configured\n", c->mmc); |
| 162 | continue; |
| 163 | } |
| 164 | |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 165 | mmc = kzalloc(sizeof(struct omap_mmc_platform_data), |
| 166 | GFP_KERNEL); |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 167 | if (!mmc) { |
| 168 | pr_err("Cannot allocate memory for mmc device!\n"); |
Aaro Koskinen | a6c7fdd | 2010-02-04 13:06:59 +0200 | [diff] [blame] | 169 | goto done; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 170 | } |
| 171 | |
Adrian Hunter | e51151a | 2009-03-23 18:23:48 -0700 | [diff] [blame] | 172 | if (c->name) |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 173 | strncpy(hc->name, c->name, HSMMC_NAME_LEN); |
Adrian Hunter | e51151a | 2009-03-23 18:23:48 -0700 | [diff] [blame] | 174 | else |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 175 | snprintf(hc->name, ARRAY_SIZE(hc->name), |
Adrian Hunter | e51151a | 2009-03-23 18:23:48 -0700 | [diff] [blame] | 176 | "mmc%islot%i", c->mmc, 1); |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 177 | mmc->slots[0].name = hc->name; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 178 | mmc->nr_slots = 1; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 179 | mmc->slots[0].wires = c->wires; |
| 180 | mmc->slots[0].internal_clock = !c->ext_clock; |
| 181 | mmc->dma_mask = 0xffffffff; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 182 | |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame^] | 183 | mmc->get_context_loss_count = hsmmc_get_context_loss; |
Denis Karpov | 1887bde | 2009-09-22 16:44:40 -0700 | [diff] [blame] | 184 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 185 | mmc->slots[0].switch_pin = c->gpio_cd; |
| 186 | mmc->slots[0].gpio_wp = c->gpio_wp; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 187 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 188 | if (c->cover_only) |
| 189 | mmc->slots[0].cover = 1; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 190 | |
Adrian Hunter | 23d99bb | 2009-09-22 16:44:48 -0700 | [diff] [blame] | 191 | if (c->nonremovable) |
| 192 | mmc->slots[0].nonremovable = 1; |
| 193 | |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 194 | if (c->power_saving) |
| 195 | mmc->slots[0].power_saving = 1; |
| 196 | |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 197 | /* NOTE: MMC slots should have a Vcc regulator set up. |
| 198 | * This may be from a TWL4030-family chip, another |
| 199 | * controllable regulator, or a fixed supply. |
| 200 | * |
| 201 | * temporary HACK: ocr_mask instead of fixed supply |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 202 | */ |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 203 | mmc->slots[0].ocr_mask = c->ocr_mask; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 204 | |
| 205 | switch (c->mmc) { |
| 206 | case 1: |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 207 | /* on-chip level shifting via PBIAS0/PBIAS1 */ |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 208 | mmc->slots[0].before_set_reg = hsmmc1_before_set_reg; |
| 209 | mmc->slots[0].after_set_reg = hsmmc1_after_set_reg; |
Madhu | 41fd03d | 2009-11-22 10:11:07 -0800 | [diff] [blame] | 210 | |
| 211 | /* Omap3630 HSMMC1 supports only 4-bit */ |
| 212 | if (cpu_is_omap3630() && c->wires > 4) { |
| 213 | c->wires = 4; |
| 214 | mmc->slots[0].wires = c->wires; |
| 215 | } |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 216 | break; |
| 217 | case 2: |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 218 | if (c->ext_clock) |
| 219 | c->transceiver = 1; |
| 220 | if (c->transceiver && c->wires > 4) |
| 221 | c->wires = 4; |
| 222 | /* FALLTHROUGH */ |
Grazvydas Ignotas | 07d83cc | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 223 | case 3: |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 224 | /* off-chip level shifting, or none */ |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 225 | mmc->slots[0].before_set_reg = hsmmc23_before_set_reg; |
| 226 | mmc->slots[0].after_set_reg = NULL; |
Grazvydas Ignotas | 07d83cc | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 227 | break; |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 228 | default: |
| 229 | pr_err("MMC%d configuration not supported!\n", c->mmc); |
Grazvydas Ignotas | 07d83cc | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 230 | kfree(mmc); |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 231 | continue; |
| 232 | } |
| 233 | hsmmc_data[c->mmc - 1] = mmc; |
| 234 | } |
| 235 | |
| 236 | omap2_init_mmc(hsmmc_data, OMAP34XX_NR_MMC); |
David Brownell | 01971f6 | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 237 | |
| 238 | /* pass the device nodes back to board setup code */ |
| 239 | for (c = controllers; c->mmc; c++) { |
| 240 | struct omap_mmc_platform_data *mmc = hsmmc_data[c->mmc - 1]; |
| 241 | |
| 242 | if (!c->mmc || c->mmc > nr_hsmmc) |
| 243 | continue; |
| 244 | c->dev = mmc->dev; |
| 245 | } |
Aaro Koskinen | a6c7fdd | 2010-02-04 13:06:59 +0200 | [diff] [blame] | 246 | |
| 247 | done: |
| 248 | for (i = 0; i < nr_hsmmc; i++) |
| 249 | kfree(hsmmc_data[i]); |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | #endif |