diff options
Diffstat (limited to 'include/linux/mmc')
| -rw-r--r-- | include/linux/mmc/host.h | 5 | ||||
| -rw-r--r-- | include/linux/mmc/sdhci-spear.h | 42 | ||||
| -rw-r--r-- | include/linux/mmc/sdio.h | 2 | ||||
| -rw-r--r-- | include/linux/mmc/sdio_func.h | 3 | ||||
| -rw-r--r-- | include/linux/mmc/sh_mmcif.h | 39 |
5 files changed, 90 insertions, 1 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 43eaf5ca5848..f65913c9f5a4 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
| @@ -108,6 +108,9 @@ struct mmc_host_ops { | |||
| 108 | int (*get_cd)(struct mmc_host *host); | 108 | int (*get_cd)(struct mmc_host *host); |
| 109 | 109 | ||
| 110 | void (*enable_sdio_irq)(struct mmc_host *host, int enable); | 110 | void (*enable_sdio_irq)(struct mmc_host *host, int enable); |
| 111 | |||
| 112 | /* optional callback for HC quirks */ | ||
| 113 | void (*init_card)(struct mmc_host *host, struct mmc_card *card); | ||
| 111 | }; | 114 | }; |
| 112 | 115 | ||
| 113 | struct mmc_card; | 116 | struct mmc_card; |
| @@ -227,7 +230,7 @@ static inline void *mmc_priv(struct mmc_host *host) | |||
| 227 | #define mmc_classdev(x) (&(x)->class_dev) | 230 | #define mmc_classdev(x) (&(x)->class_dev) |
| 228 | #define mmc_hostname(x) (dev_name(&(x)->class_dev)) | 231 | #define mmc_hostname(x) (dev_name(&(x)->class_dev)) |
| 229 | 232 | ||
| 230 | extern int mmc_suspend_host(struct mmc_host *, pm_message_t); | 233 | extern int mmc_suspend_host(struct mmc_host *); |
| 231 | extern int mmc_resume_host(struct mmc_host *); | 234 | extern int mmc_resume_host(struct mmc_host *); |
| 232 | 235 | ||
| 233 | extern void mmc_power_save_host(struct mmc_host *host); | 236 | extern void mmc_power_save_host(struct mmc_host *host); |
diff --git a/include/linux/mmc/sdhci-spear.h b/include/linux/mmc/sdhci-spear.h new file mode 100644 index 000000000000..9188c973f3e1 --- /dev/null +++ b/include/linux/mmc/sdhci-spear.h | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/mmc/sdhci-spear.h | ||
| 3 | * | ||
| 4 | * SDHCI declarations specific to ST SPEAr platform | ||
| 5 | * | ||
| 6 | * Copyright (C) 2010 ST Microelectronics | ||
| 7 | * Viresh Kumar<viresh.kumar@st.com> | ||
| 8 | * | ||
| 9 | * This file is licensed under the terms of the GNU General Public | ||
| 10 | * License version 2. This program is licensed "as is" without any | ||
| 11 | * warranty of any kind, whether express or implied. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef MMC_SDHCI_SPEAR_H | ||
| 15 | #define MMC_SDHCI_SPEAR_H | ||
| 16 | |||
| 17 | #include <linux/platform_device.h> | ||
| 18 | /* | ||
| 19 | * struct sdhci_plat_data: spear sdhci platform data structure | ||
| 20 | * | ||
| 21 | * @card_power_gpio: gpio pin for enabling/disabling power to sdhci socket | ||
| 22 | * @power_active_high: if set, enable power to sdhci socket by setting | ||
| 23 | * card_power_gpio | ||
| 24 | * @power_always_enb: If set, then enable power on probe, otherwise enable only | ||
| 25 | * on card insertion and disable on card removal. | ||
| 26 | * card_int_gpio: gpio pin used for card detection | ||
| 27 | */ | ||
| 28 | struct sdhci_plat_data { | ||
| 29 | int card_power_gpio; | ||
| 30 | int power_active_high; | ||
| 31 | int power_always_enb; | ||
| 32 | int card_int_gpio; | ||
| 33 | }; | ||
| 34 | |||
| 35 | /* This function is used to set platform_data field of pdev->dev */ | ||
| 36 | static inline void | ||
| 37 | sdhci_set_plat_data(struct platform_device *pdev, struct sdhci_plat_data *data) | ||
| 38 | { | ||
| 39 | pdev->dev.platform_data = data; | ||
| 40 | } | ||
| 41 | |||
| 42 | #endif /* MMC_SDHCI_SPEAR_H */ | ||
diff --git a/include/linux/mmc/sdio.h b/include/linux/mmc/sdio.h index 0ebaef577ff5..329a8faa6e37 100644 --- a/include/linux/mmc/sdio.h +++ b/include/linux/mmc/sdio.h | |||
| @@ -94,6 +94,8 @@ | |||
| 94 | 94 | ||
| 95 | #define SDIO_BUS_WIDTH_1BIT 0x00 | 95 | #define SDIO_BUS_WIDTH_1BIT 0x00 |
| 96 | #define SDIO_BUS_WIDTH_4BIT 0x02 | 96 | #define SDIO_BUS_WIDTH_4BIT 0x02 |
| 97 | #define SDIO_BUS_ECSI 0x20 /* Enable continuous SPI interrupt */ | ||
| 98 | #define SDIO_BUS_SCSI 0x40 /* Support continuous SPI interrupt */ | ||
| 97 | 99 | ||
| 98 | #define SDIO_BUS_ASYNC_INT 0x20 | 100 | #define SDIO_BUS_ASYNC_INT 0x20 |
| 99 | 101 | ||
diff --git a/include/linux/mmc/sdio_func.h b/include/linux/mmc/sdio_func.h index c6c0cceba5fe..31baaf82f458 100644 --- a/include/linux/mmc/sdio_func.h +++ b/include/linux/mmc/sdio_func.h | |||
| @@ -145,6 +145,9 @@ extern void sdio_writew(struct sdio_func *func, u16 b, | |||
| 145 | extern void sdio_writel(struct sdio_func *func, u32 b, | 145 | extern void sdio_writel(struct sdio_func *func, u32 b, |
| 146 | unsigned int addr, int *err_ret); | 146 | unsigned int addr, int *err_ret); |
| 147 | 147 | ||
| 148 | extern u8 sdio_writeb_readb(struct sdio_func *func, u8 write_byte, | ||
| 149 | unsigned int addr, int *err_ret); | ||
| 150 | |||
| 148 | extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr, | 151 | extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr, |
| 149 | void *src, int count); | 152 | void *src, int count); |
| 150 | extern int sdio_writesb(struct sdio_func *func, unsigned int addr, | 153 | extern int sdio_writesb(struct sdio_func *func, unsigned int addr, |
diff --git a/include/linux/mmc/sh_mmcif.h b/include/linux/mmc/sh_mmcif.h new file mode 100644 index 000000000000..aafe832f18aa --- /dev/null +++ b/include/linux/mmc/sh_mmcif.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/mmc/sh_mmcif.h | ||
| 3 | * | ||
| 4 | * platform data for eMMC driver | ||
| 5 | * | ||
| 6 | * Copyright (C) 2010 Renesas Solutions Corp. | ||
| 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 as published by | ||
| 10 | * the Free Software Foundation; either version 2 of the License. | ||
| 11 | * | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __SH_MMCIF_H__ | ||
| 15 | #define __SH_MMCIF_H__ | ||
| 16 | |||
| 17 | /* | ||
| 18 | * MMCIF : CE_CLK_CTRL [19:16] | ||
| 19 | * 1000 : Peripheral clock / 512 | ||
| 20 | * 0111 : Peripheral clock / 256 | ||
| 21 | * 0110 : Peripheral clock / 128 | ||
| 22 | * 0101 : Peripheral clock / 64 | ||
| 23 | * 0100 : Peripheral clock / 32 | ||
| 24 | * 0011 : Peripheral clock / 16 | ||
| 25 | * 0010 : Peripheral clock / 8 | ||
| 26 | * 0001 : Peripheral clock / 4 | ||
| 27 | * 0000 : Peripheral clock / 2 | ||
| 28 | * 1111 : Peripheral clock (sup_pclk set '1') | ||
| 29 | */ | ||
| 30 | |||
| 31 | struct sh_mmcif_plat_data { | ||
| 32 | void (*set_pwr)(struct platform_device *pdev, int state); | ||
| 33 | void (*down_pwr)(struct platform_device *pdev); | ||
| 34 | u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */ | ||
| 35 | unsigned long caps; | ||
| 36 | u32 ocr; | ||
| 37 | }; | ||
| 38 | |||
| 39 | #endif /* __SH_MMCIF_H__ */ | ||
