2 * linux/arch/arm/mach-omap2/board-n800-mmc.c
4 * Copyright (C) 2006 Nokia Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/delay.h>
13 #include <linux/platform_device.h>
14 #include <linux/gpio.h>
15 #include <linux/i2c/menelaus.h>
17 #include <asm/mach-types.h>
21 #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
23 static const int slot_switch_gpio
= 96;
25 static const int n810_slot2_pw_vddf
= 23;
26 static const int n810_slot2_pw_vdd
= 9;
28 static int slot1_cover_open
;
29 static int slot2_cover_open
;
30 static struct device
*mmc_device
;
33 * VMMC --> slot 1 (N800 & N810)
34 * VDCDC3_APE, VMCS2_APE --> slot 2 on N800
35 * GPIO96 --> Menelaus GPIO2
36 * GPIO23 --> controls slot2 VSD (N810 only)
37 * GPIO9 --> controls slot2 VIO_SD (N810 only)
40 static int n800_mmc_switch_slot(struct device
*dev
, int slot
)
42 #ifdef CONFIG_MMC_DEBUG
43 dev_dbg(dev
, "Choose slot %d\n", slot
+ 1);
45 gpio_set_value(slot_switch_gpio
, slot
);
49 static int n800_mmc_set_power_menelaus(struct device
*dev
, int slot
,
50 int power_on
, int vdd
)
54 #ifdef CONFIG_MMC_DEBUG
55 dev_dbg(dev
, "Set slot %d power: %s (vdd %d)\n", slot
+ 1,
56 power_on
? "on" : "off", vdd
);
60 return menelaus_set_vmmc(0);
79 return menelaus_set_vmmc(mV
);
82 return menelaus_set_vdcdc(3, 0);
107 case MMC_VDD_165_195
:
113 return menelaus_set_vdcdc(3, mV
);
118 static void nokia_mmc_set_power_internal(struct device
*dev
,
121 dev_dbg(dev
, "Set internal slot power %s\n",
122 power_on
? "on" : "off");
125 gpio_set_value(n810_slot2_pw_vddf
, 1);
127 gpio_set_value(n810_slot2_pw_vdd
, 1);
130 gpio_set_value(n810_slot2_pw_vdd
, 0);
132 gpio_set_value(n810_slot2_pw_vddf
, 0);
137 static int n800_mmc_set_power(struct device
*dev
, int slot
, int power_on
,
140 if (machine_is_nokia_n800() || slot
== 0)
141 return n800_mmc_set_power_menelaus(dev
, slot
, power_on
, vdd
);
143 nokia_mmc_set_power_internal(dev
, power_on
);
148 static int n800_mmc_set_bus_mode(struct device
*dev
, int slot
, int bus_mode
)
152 dev_dbg(dev
, "Set slot %d bus mode %s\n", slot
+ 1,
153 bus_mode
== MMC_BUSMODE_OPENDRAIN
? "open-drain" : "push-pull");
154 BUG_ON(slot
!= 0 && slot
!= 1);
157 case MMC_BUSMODE_OPENDRAIN
:
158 r
= menelaus_set_mmc_opendrain(slot
, 1);
160 case MMC_BUSMODE_PUSHPULL
:
161 r
= menelaus_set_mmc_opendrain(slot
, 0);
166 if (r
!= 0 && printk_ratelimit())
167 dev_err(dev
, "MMC: unable to set bus mode for slot %d\n",
172 static int n800_mmc_get_cover_state(struct device
*dev
, int slot
)
175 BUG_ON(slot
!= 1 && slot
!= 2);
177 return slot1_cover_open
;
179 return slot2_cover_open
;
182 static void n800_mmc_callback(void *data
, u8 card_mask
)
184 int bit
, *openp
, index
;
186 if (machine_is_nokia_n800()) {
188 openp
= &slot2_cover_open
;
192 openp
= &slot1_cover_open
;
201 omap_mmc_notify_cover_event(mmc_device
, index
, *openp
);
204 void n800_mmc_slot1_cover_handler(void *arg
, int closed_state
)
206 if (mmc_device
== NULL
)
209 slot1_cover_open
= !closed_state
;
210 omap_mmc_notify_cover_event(mmc_device
, 0, closed_state
);
213 static int n800_mmc_late_init(struct device
*dev
)
220 r
= menelaus_set_slot_sel(1);
224 if (machine_is_nokia_n800())
229 r
= menelaus_set_mmc_slot(2, 0, vs2sel
, 1);
233 n800_mmc_set_power(dev
, 0, MMC_POWER_ON
, 16); /* MMC_VDD_28_29 */
234 n800_mmc_set_power(dev
, 1, MMC_POWER_ON
, 16);
236 r
= menelaus_set_mmc_slot(1, 1, 0, 1);
239 r
= menelaus_set_mmc_slot(2, 1, vs2sel
, 1);
243 r
= menelaus_get_slot_pin_states();
247 if (machine_is_nokia_n800()) {
249 openp
= &slot2_cover_open
;
252 openp
= &slot1_cover_open
;
253 slot2_cover_open
= 0;
256 /* All slot pin bits seem to be inversed until first swith change */
257 if (r
== 0xf || r
== (0xf & ~bit
))
265 r
= menelaus_register_mmc_callback(n800_mmc_callback
, NULL
);
270 static void n800_mmc_shutdown(struct device
*dev
)
274 if (machine_is_nokia_n800())
279 menelaus_set_mmc_slot(1, 0, 0, 0);
280 menelaus_set_mmc_slot(2, 0, vs2sel
, 0);
283 static void n800_mmc_cleanup(struct device
*dev
)
285 menelaus_unregister_mmc_callback();
287 gpio_free(slot_switch_gpio
);
289 if (machine_is_nokia_n810()) {
290 gpio_free(n810_slot2_pw_vddf
);
291 gpio_free(n810_slot2_pw_vdd
);
296 * MMC controller1 has two slots that are multiplexed via I2C.
297 * MMC controller2 is not in use.
299 static struct omap_mmc_platform_data mmc1_data
= {
301 .switch_slot
= n800_mmc_switch_slot
,
302 .init
= n800_mmc_late_init
,
303 .cleanup
= n800_mmc_cleanup
,
304 .shutdown
= n800_mmc_shutdown
,
305 .max_freq
= 24000000,
306 .dma_mask
= 0xffffffff,
309 .set_power
= n800_mmc_set_power
,
310 .set_bus_mode
= n800_mmc_set_bus_mode
,
311 .get_cover_state
= n800_mmc_get_cover_state
,
312 .ocr_mask
= MMC_VDD_165_195
| MMC_VDD_30_31
|
313 MMC_VDD_32_33
| MMC_VDD_33_34
,
317 .set_power
= n800_mmc_set_power
,
318 .set_bus_mode
= n800_mmc_set_bus_mode
,
319 .get_cover_state
= n800_mmc_get_cover_state
,
320 .ocr_mask
= MMC_VDD_165_195
| MMC_VDD_20_21
|
321 MMC_VDD_21_22
| MMC_VDD_22_23
| MMC_VDD_23_24
|
322 MMC_VDD_24_25
| MMC_VDD_27_28
| MMC_VDD_28_29
|
323 MMC_VDD_29_30
| MMC_VDD_30_31
| MMC_VDD_32_33
|
329 static struct omap_mmc_platform_data
*mmc_data
[OMAP24XX_NR_MMC
];
331 void __init
n800_mmc_init(void)
334 if (machine_is_nokia_n810()) {
335 mmc1_data
.slots
[0].name
= "external";
338 * Some Samsung Movinand chips do not like open-ended
339 * multi-block reads and fall to braind-dead state
340 * while doing so. Reducing the number of blocks in
341 * the transfer or delays in clock disable do not help
343 mmc1_data
.slots
[1].name
= "internal";
344 mmc1_data
.slots
[1].ban_openended
= 1;
347 if (gpio_request(slot_switch_gpio
, "MMC slot switch") < 0)
349 gpio_direction_output(slot_switch_gpio
, 0);
351 if (machine_is_nokia_n810()) {
352 if (gpio_request(n810_slot2_pw_vddf
, "MMC slot 2 Vddf") < 0)
354 gpio_direction_output(n810_slot2_pw_vddf
, 0);
356 if (gpio_request(n810_slot2_pw_vdd
, "MMC slot 2 Vdd") < 0)
358 gpio_direction_output(n810_slot2_pw_vdd
, 0);
361 mmc_data
[0] = &mmc1_data
;
362 omap2_init_mmc(mmc_data
, OMAP24XX_NR_MMC
);
366 void __init
n800_mmc_init(void)
370 void n800_mmc_slot1_cover_handler(void *arg
, int state
)