diff options
author | Maen Suleiman <maen@marvell.com> | 2009-02-14 03:07:26 -0500 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2009-03-24 21:30:03 +0100 |
commit | 236caa7cc351f885874a2776b7dd1b5667359dc8 (patch) | |
tree | eb4401ec49695310cce5d098733a99a14f12171f /arch | |
parent | 4cb32906e47987fee3fbfd79145d2348a2e8c5f3 (diff) | |
download | linux-236caa7cc351f885874a2776b7dd1b5667359dc8.tar.gz linux-236caa7cc351f885874a2776b7dd1b5667359dc8.tar.bz2 linux-236caa7cc351f885874a2776b7dd1b5667359dc8.zip |
mmc: SDIO driver for Marvell SoCs
This supports MMC/SD/SDIO currently found on the Kirkwood 88F6281 and
88F6192 SoC controllers.
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/plat-orion/include/plat/mvsdio.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/plat-orion/include/plat/mvsdio.h b/arch/arm/plat-orion/include/plat/mvsdio.h new file mode 100644 index 000000000000..14ca88676002 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/mvsdio.h @@ -0,0 +1,21 @@ +/* + * arch/arm/plat-orion/include/plat/mvsdio.h + * + * This file is licensed under the terms of the GNU General Public + * License version 2. This program is licensed "as is" without any + * warranty of any kind, whether express or implied. + */ + +#ifndef __MACH_MVSDIO_H +#define __MACH_MVSDIO_H + +#include <linux/mbus.h> + +struct mvsdio_platform_data { + struct mbus_dram_target_info *dram; + unsigned int clock; + int gpio_card_detect; + int gpio_write_protect; +}; + +#endif |