m68knommu: Add Coldfire DMA Timer support
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-omap1 / board-h3-mmc.c
blob66ecc437928f98d13f0270c7a61691ac2175781b
1 /*
2 * linux/arch/arm/mach-omap1/board-h3-mmc.c
4 * Copyright (C) 2007 Instituto Nokia de Tecnologia - INdT
5 * Author: Felipe Balbi <felipe.lima@indt.org.br>
7 * This code is based on linux/arch/arm/mach-omap2/board-n800-mmc.c, which is:
8 * Copyright (C) 2006 Nokia Corporation
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <asm/arch/mmc.h>
16 #include <asm/arch/gpio.h>
18 #ifdef CONFIG_MMC_OMAP
19 static int slot_cover_open;
20 static struct device *mmc_device;
22 static int h3_mmc_set_power(struct device *dev, int slot, int power_on,
23 int vdd)
25 #ifdef CONFIG_MMC_DEBUG
26 dev_dbg(dev, "Set slot %d power: %s (vdd %d)\n", slot + 1,
27 power_on ? "on" : "off", vdd);
28 #endif
29 if (slot != 0) {
30 dev_err(dev, "No such slot %d\n", slot + 1);
31 return -ENODEV;
34 return 0;
37 static int h3_mmc_set_bus_mode(struct device *dev, int slot, int bus_mode)
39 int ret = 0;
41 #ifdef CONFIG_MMC_DEBUG
42 dev_dbg(dev, "Set slot %d bus_mode %s\n", slot + 1,
43 bus_mode == MMC_BUSMODE_OPENDRAIN ? "open-drain" : "push-pull");
44 #endif
45 if (slot != 0) {
46 dev_err(dev, "No such slot %d\n", slot + 1);
47 return -ENODEV;
50 /* Treated on upper level */
52 return bus_mode;
55 static int h3_mmc_get_cover_state(struct device *dev, int slot)
57 BUG_ON(slot != 0);
59 return slot_cover_open;
62 void h3_mmc_slot_cover_handler(void *arg, int state)
64 if (mmc_device == NULL)
65 return;
67 slot_cover_open = state;
68 omap_mmc_notify_cover_event(mmc_device, 0, state);
71 static int h3_mmc_late_init(struct device *dev)
73 int ret = 0;
75 mmc_device = dev;
77 return ret;
80 static void h3_mmc_cleanup(struct device *dev)
84 static struct omap_mmc_platform_data h3_mmc_data = {
85 .nr_slots = 1,
86 .switch_slot = NULL,
87 .init = h3_mmc_late_init,
88 .cleanup = h3_mmc_cleanup,
89 .slots[0] = {
90 .set_power = h3_mmc_set_power,
91 .set_bus_mode = h3_mmc_set_bus_mode,
92 .get_ro = NULL,
93 .get_cover_state = h3_mmc_get_cover_state,
94 .ocr_mask = MMC_VDD_28_29 | MMC_VDD_30_31 |
95 MMC_VDD_32_33 | MMC_VDD_33_34,
96 .name = "mmcblk",
100 void __init h3_mmc_init(void)
102 omap_set_mmc_info(1, &h3_mmc_data);
105 #else
107 void __init h3_mmc_init(void)
111 void h3_mmc_slot_cover_handler(void *arg, int state)
114 #endif