blob: 0ada76787ca0d20e7beca4678cc14ad3f77800d1 [file] [log] [blame]
Hanumath Prasad008f8a22010-08-19 12:06:32 +01001/*
2 * Copyright (C) ST-Ericsson SA 2010
3 *
4 * Author: Hanumath Prasad <hanumath.prasad@stericsson.com>
5 * License terms: GNU General Public License (GPL) version 2
6 */
7
8#include <linux/kernel.h>
9#include <linux/gpio.h>
10#include <linux/amba/bus.h>
11#include <linux/amba/mmci.h>
12#include <linux/mmc/host.h>
13#include <linux/platform_device.h>
Linus Walleij865fab62012-10-18 14:20:16 +020014#include <linux/platform_data/dma-ste-dma40.h>
Hanumath Prasad008f8a22010-08-19 12:06:32 +010015
Linus Walleij4b4f7572011-02-15 15:01:35 +010016#include <asm/mach-types.h>
Hanumath Prasad008f8a22010-08-19 12:06:32 +010017#include <mach/devices.h>
Hanumath Prasad008f8a22010-08-19 12:06:32 +010018
Linus Walleij174e7792013-03-19 15:41:55 +010019#include "db8500-regs.h"
Rabin Vincentfbf1eadf2010-09-29 19:46:32 +053020#include "devices-db8500.h"
Hanumath Prasad008f8a22010-08-19 12:06:32 +010021#include "board-mop500.h"
Linus Walleij5d7b8462010-10-14 13:57:59 +020022#include "ste-dma40-db8500.h"
Hanumath Prasad008f8a22010-08-19 12:06:32 +010023
Hanumath Prasad008f8a22010-08-19 12:06:32 +010024/*
Linus Walleijc15def12011-12-15 13:38:40 +010025 * v2 has a new version of this block that need to be forced, the number found
26 * in hardware is incorrect
27 */
28#define U8500_SDI_V2_PERIPHID 0x10480180
29
30/*
Rabin Vincentb8410a12010-08-09 19:18:17 +053031 * SDI 0 (MicroSD slot)
32 */
33
Linus Walleijf727a052011-04-27 12:55:37 +020034/* GPIO pins used by the sdi0 level shifter */
35static int sdi0_en = -1;
36static int sdi0_vsel = -1;
37
Ulf Hanssonbc521812011-12-13 16:57:55 +010038static int mop500_sdi0_ios_handler(struct device *dev, struct mmc_ios *ios)
Rabin Vincentb8410a12010-08-09 19:18:17 +053039{
Ulf Hanssonbc521812011-12-13 16:57:55 +010040 switch (ios->power_mode) {
Linus Walleijf727a052011-04-27 12:55:37 +020041 case MMC_POWER_UP:
42 case MMC_POWER_ON:
43 /*
44 * Level shifter voltage should depend on vdd to when deciding
45 * on either 1.8V or 2.9V. Once the decision has been made the
46 * level shifter must be disabled and re-enabled with a changed
47 * select signal in order to switch the voltage. Since there is
48 * no framework support yet for indicating 1.8V in vdd, use the
49 * default 2.9V.
50 */
51 gpio_direction_output(sdi0_vsel, 0);
52 gpio_direction_output(sdi0_en, 1);
53 break;
54 case MMC_POWER_OFF:
55 gpio_direction_output(sdi0_vsel, 0);
56 gpio_direction_output(sdi0_en, 0);
57 break;
58 }
Rabin Vincentb8410a12010-08-09 19:18:17 +053059
Ulf Hanssonbc521812011-12-13 16:57:55 +010060 return 0;
Rabin Vincentb8410a12010-08-09 19:18:17 +053061}
62
Linus Walleij5d7b8462010-10-14 13:57:59 +020063#ifdef CONFIG_STE_DMA40
64struct stedma40_chan_cfg mop500_sdi0_dma_cfg_rx = {
65 .mode = STEDMA40_MODE_LOGICAL,
66 .dir = STEDMA40_PERIPH_TO_MEM,
67 .src_dev_type = DB8500_DMA_DEV29_SD_MM0_RX,
68 .dst_dev_type = STEDMA40_DEV_DST_MEMORY,
69 .src_info.data_width = STEDMA40_WORD_WIDTH,
70 .dst_info.data_width = STEDMA40_WORD_WIDTH,
71};
72
73static struct stedma40_chan_cfg mop500_sdi0_dma_cfg_tx = {
74 .mode = STEDMA40_MODE_LOGICAL,
75 .dir = STEDMA40_MEM_TO_PERIPH,
76 .src_dev_type = STEDMA40_DEV_SRC_MEMORY,
77 .dst_dev_type = DB8500_DMA_DEV29_SD_MM0_TX,
78 .src_info.data_width = STEDMA40_WORD_WIDTH,
79 .dst_info.data_width = STEDMA40_WORD_WIDTH,
80};
81#endif
82
Lee Jones5e1ac7d2012-05-29 14:40:04 +080083struct mmci_platform_data mop500_sdi0_data = {
Ulf Hanssonbc521812011-12-13 16:57:55 +010084 .ios_handler = mop500_sdi0_ios_handler,
Rabin Vincentb8410a12010-08-09 19:18:17 +053085 .ocr_mask = MMC_VDD_29_30,
Linus Walleij02a73432011-03-30 16:00:39 +020086 .f_max = 50000000,
87 .capabilities = MMC_CAP_4_BIT_DATA |
88 MMC_CAP_SD_HIGHSPEED |
89 MMC_CAP_MMC_HIGHSPEED,
Rabin Vincentb8410a12010-08-09 19:18:17 +053090 .gpio_wp = -1,
Ulf Hanssonbc521812011-12-13 16:57:55 +010091 .sigdir = MCI_ST_FBCLKEN |
92 MCI_ST_CMDDIREN |
93 MCI_ST_DATA0DIREN |
94 MCI_ST_DATA2DIREN,
Linus Walleij5d7b8462010-10-14 13:57:59 +020095#ifdef CONFIG_STE_DMA40
96 .dma_filter = stedma40_filter,
97 .dma_rx_param = &mop500_sdi0_dma_cfg_rx,
98 .dma_tx_param = &mop500_sdi0_dma_cfg_tx,
99#endif
Rabin Vincentb8410a12010-08-09 19:18:17 +0530100};
101
Lee Jones18403422012-02-06 11:22:21 -0800102static void sdi0_configure(struct device *parent)
Rabin Vincentb8410a12010-08-09 19:18:17 +0530103{
104 int ret;
105
Linus Walleij4b4f7572011-02-15 15:01:35 +0100106 ret = gpio_request(sdi0_en, "level shifter enable");
Rabin Vincentb8410a12010-08-09 19:18:17 +0530107 if (!ret)
Linus Walleij4b4f7572011-02-15 15:01:35 +0100108 ret = gpio_request(sdi0_vsel,
109 "level shifter 1v8-3v select");
110
111 if (ret) {
112 pr_warning("unable to config sdi0 gpios for level shifter.\n");
Rabin Vincentb8410a12010-08-09 19:18:17 +0530113 return;
Linus Walleij4b4f7572011-02-15 15:01:35 +0100114 }
Rabin Vincentb8410a12010-08-09 19:18:17 +0530115
Linus Walleij4b4f7572011-02-15 15:01:35 +0100116 /* Select the default 2.9V and enable level shifter */
117 gpio_direction_output(sdi0_vsel, 0);
118 gpio_direction_output(sdi0_en, 1);
Rabin Vincentb8410a12010-08-09 19:18:17 +0530119
Linus Walleij72930312011-03-24 16:13:13 +0100120 /* Add the device, force v2 to subrevision 1 */
Lee Jones18403422012-02-06 11:22:21 -0800121 db8500_add_sdi0(parent, &mop500_sdi0_data, U8500_SDI_V2_PERIPHID);
Rabin Vincentb8410a12010-08-09 19:18:17 +0530122}
123
Lee Jones18403422012-02-06 11:22:21 -0800124void mop500_sdi_tc35892_init(struct device *parent)
Linus Walleij4b4f7572011-02-15 15:01:35 +0100125{
126 mop500_sdi0_data.gpio_cd = GPIO_SDMMC_CD;
127 sdi0_en = GPIO_SDMMC_EN;
128 sdi0_vsel = GPIO_SDMMC_1V8_3V_SEL;
Lee Jones18403422012-02-06 11:22:21 -0800129 sdi0_configure(parent);
Linus Walleij4b4f7572011-02-15 15:01:35 +0100130}
131
Rabin Vincentb8410a12010-08-09 19:18:17 +0530132/*
Stefan Nilsson XK76d67172011-10-26 10:50:42 +0200133 * SDI1 (SDIO WLAN)
134 */
135#ifdef CONFIG_STE_DMA40
136static struct stedma40_chan_cfg sdi1_dma_cfg_rx = {
137 .mode = STEDMA40_MODE_LOGICAL,
138 .dir = STEDMA40_PERIPH_TO_MEM,
139 .src_dev_type = DB8500_DMA_DEV32_SD_MM1_RX,
140 .dst_dev_type = STEDMA40_DEV_DST_MEMORY,
141 .src_info.data_width = STEDMA40_WORD_WIDTH,
142 .dst_info.data_width = STEDMA40_WORD_WIDTH,
143};
144
145static struct stedma40_chan_cfg sdi1_dma_cfg_tx = {
146 .mode = STEDMA40_MODE_LOGICAL,
147 .dir = STEDMA40_MEM_TO_PERIPH,
148 .src_dev_type = STEDMA40_DEV_SRC_MEMORY,
149 .dst_dev_type = DB8500_DMA_DEV32_SD_MM1_TX,
150 .src_info.data_width = STEDMA40_WORD_WIDTH,
151 .dst_info.data_width = STEDMA40_WORD_WIDTH,
152};
153#endif
154
Lee Jones9cf24b12012-08-30 16:11:08 +0100155struct mmci_platform_data mop500_sdi1_data = {
Stefan Nilsson XK76d67172011-10-26 10:50:42 +0200156 .ocr_mask = MMC_VDD_29_30,
157 .f_max = 50000000,
158 .capabilities = MMC_CAP_4_BIT_DATA,
159 .gpio_cd = -1,
160 .gpio_wp = -1,
161#ifdef CONFIG_STE_DMA40
162 .dma_filter = stedma40_filter,
163 .dma_rx_param = &sdi1_dma_cfg_rx,
164 .dma_tx_param = &sdi1_dma_cfg_tx,
165#endif
166};
167
168/*
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100169 * SDI 2 (POP eMMC, not on DB8500ed)
170 */
171
Linus Walleij5d7b8462010-10-14 13:57:59 +0200172#ifdef CONFIG_STE_DMA40
173struct stedma40_chan_cfg mop500_sdi2_dma_cfg_rx = {
174 .mode = STEDMA40_MODE_LOGICAL,
175 .dir = STEDMA40_PERIPH_TO_MEM,
176 .src_dev_type = DB8500_DMA_DEV28_SD_MM2_RX,
177 .dst_dev_type = STEDMA40_DEV_DST_MEMORY,
178 .src_info.data_width = STEDMA40_WORD_WIDTH,
179 .dst_info.data_width = STEDMA40_WORD_WIDTH,
180};
181
182static struct stedma40_chan_cfg mop500_sdi2_dma_cfg_tx = {
183 .mode = STEDMA40_MODE_LOGICAL,
184 .dir = STEDMA40_MEM_TO_PERIPH,
185 .src_dev_type = STEDMA40_DEV_SRC_MEMORY,
186 .dst_dev_type = DB8500_DMA_DEV28_SD_MM2_TX,
187 .src_info.data_width = STEDMA40_WORD_WIDTH,
188 .dst_info.data_width = STEDMA40_WORD_WIDTH,
189};
190#endif
191
Lee Jones9cf24b12012-08-30 16:11:08 +0100192struct mmci_platform_data mop500_sdi2_data = {
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100193 .ocr_mask = MMC_VDD_165_195,
Linus Walleij02a73432011-03-30 16:00:39 +0200194 .f_max = 50000000,
Linus Walleijc15def12011-12-15 13:38:40 +0100195 .capabilities = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA |
196 MMC_CAP_MMC_HIGHSPEED,
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100197 .gpio_cd = -1,
198 .gpio_wp = -1,
Linus Walleij5d7b8462010-10-14 13:57:59 +0200199#ifdef CONFIG_STE_DMA40
200 .dma_filter = stedma40_filter,
201 .dma_rx_param = &mop500_sdi2_dma_cfg_rx,
202 .dma_tx_param = &mop500_sdi2_dma_cfg_tx,
203#endif
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100204};
205
206/*
207 * SDI 4 (on-board eMMC)
208 */
209
Linus Walleij5d7b8462010-10-14 13:57:59 +0200210#ifdef CONFIG_STE_DMA40
211struct stedma40_chan_cfg mop500_sdi4_dma_cfg_rx = {
212 .mode = STEDMA40_MODE_LOGICAL,
213 .dir = STEDMA40_PERIPH_TO_MEM,
214 .src_dev_type = DB8500_DMA_DEV42_SD_MM4_RX,
215 .dst_dev_type = STEDMA40_DEV_DST_MEMORY,
216 .src_info.data_width = STEDMA40_WORD_WIDTH,
217 .dst_info.data_width = STEDMA40_WORD_WIDTH,
218};
219
220static struct stedma40_chan_cfg mop500_sdi4_dma_cfg_tx = {
221 .mode = STEDMA40_MODE_LOGICAL,
222 .dir = STEDMA40_MEM_TO_PERIPH,
223 .src_dev_type = STEDMA40_DEV_SRC_MEMORY,
224 .dst_dev_type = DB8500_DMA_DEV42_SD_MM4_TX,
225 .src_info.data_width = STEDMA40_WORD_WIDTH,
226 .dst_info.data_width = STEDMA40_WORD_WIDTH,
227};
228#endif
229
Lee Jones5e1ac7d2012-05-29 14:40:04 +0800230struct mmci_platform_data mop500_sdi4_data = {
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100231 .ocr_mask = MMC_VDD_29_30,
Linus Walleij02a73432011-03-30 16:00:39 +0200232 .f_max = 50000000,
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100233 .capabilities = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA |
234 MMC_CAP_MMC_HIGHSPEED,
235 .gpio_cd = -1,
236 .gpio_wp = -1,
Linus Walleij5d7b8462010-10-14 13:57:59 +0200237#ifdef CONFIG_STE_DMA40
238 .dma_filter = stedma40_filter,
239 .dma_rx_param = &mop500_sdi4_dma_cfg_rx,
240 .dma_tx_param = &mop500_sdi4_dma_cfg_tx,
241#endif
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100242};
243
Lee Jones18403422012-02-06 11:22:21 -0800244void __init mop500_sdi_init(struct device *parent)
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100245{
Linus Walleijc15def12011-12-15 13:38:40 +0100246 /* PoP:ed eMMC */
Lee Jones18403422012-02-06 11:22:21 -0800247 db8500_add_sdi2(parent, &mop500_sdi2_data, U8500_SDI_V2_PERIPHID);
Bibek Basu4bc3a692011-02-15 10:46:59 +0100248 /* On-board eMMC */
Lee Jones18403422012-02-06 11:22:21 -0800249 db8500_add_sdi4(parent, &mop500_sdi4_data, U8500_SDI_V2_PERIPHID);
250
Linus Walleijedaa86a2010-12-02 12:05:18 +0100251 /*
Linus Walleij4b4f7572011-02-15 15:01:35 +0100252 * On boards with the TC35892 GPIO expander, sdi0 will finally
253 * be added when the TC35892 initializes and calls
Linus Walleijedaa86a2010-12-02 12:05:18 +0100254 * mop500_sdi_tc35892_init() above.
255 */
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100256}
Lee Jones110c2c22011-08-26 16:54:07 +0100257
Lee Jones18403422012-02-06 11:22:21 -0800258void __init snowball_sdi_init(struct device *parent)
Lee Jones110c2c22011-08-26 16:54:07 +0100259{
Philippe Langlais2ab11592012-01-20 09:20:40 +0100260 /* On Snowball MMC_CAP_SD_HIGHSPEED isn't supported (Hardware issue?) */
261 mop500_sdi0_data.capabilities &= ~MMC_CAP_SD_HIGHSPEED;
Lee Jones110c2c22011-08-26 16:54:07 +0100262 /* On-board eMMC */
Lee Jones18403422012-02-06 11:22:21 -0800263 db8500_add_sdi4(parent, &mop500_sdi4_data, U8500_SDI_V2_PERIPHID);
Linus Walleijc15def12011-12-15 13:38:40 +0100264 /* External Micro SD slot */
Lee Jones110c2c22011-08-26 16:54:07 +0100265 mop500_sdi0_data.gpio_cd = SNOWBALL_SDMMC_CD_GPIO;
266 mop500_sdi0_data.cd_invert = true;
267 sdi0_en = SNOWBALL_SDMMC_EN_GPIO;
268 sdi0_vsel = SNOWBALL_SDMMC_1V8_3V_GPIO;
Lee Jones18403422012-02-06 11:22:21 -0800269 sdi0_configure(parent);
Lee Jones110c2c22011-08-26 16:54:07 +0100270}
271
Lee Jones18403422012-02-06 11:22:21 -0800272void __init hrefv60_sdi_init(struct device *parent)
Lee Jones110c2c22011-08-26 16:54:07 +0100273{
Linus Walleijc15def12011-12-15 13:38:40 +0100274 /* PoP:ed eMMC */
Lee Jones18403422012-02-06 11:22:21 -0800275 db8500_add_sdi2(parent, &mop500_sdi2_data, U8500_SDI_V2_PERIPHID);
Lee Jones110c2c22011-08-26 16:54:07 +0100276 /* On-board eMMC */
Lee Jones18403422012-02-06 11:22:21 -0800277 db8500_add_sdi4(parent, &mop500_sdi4_data, U8500_SDI_V2_PERIPHID);
Linus Walleijc15def12011-12-15 13:38:40 +0100278 /* External Micro SD slot */
Lee Jones110c2c22011-08-26 16:54:07 +0100279 mop500_sdi0_data.gpio_cd = HREFV60_SDMMC_CD_GPIO;
280 sdi0_en = HREFV60_SDMMC_EN_GPIO;
281 sdi0_vsel = HREFV60_SDMMC_1V8_3V_GPIO;
Lee Jones18403422012-02-06 11:22:21 -0800282 sdi0_configure(parent);
Linus Walleijc15def12011-12-15 13:38:40 +0100283 /* WLAN SDIO channel */
Lee Jones18403422012-02-06 11:22:21 -0800284 db8500_add_sdi1(parent, &mop500_sdi1_data, U8500_SDI_V2_PERIPHID);
Lee Jones110c2c22011-08-26 16:54:07 +0100285}