aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mmc/card.h10
-rw-r--r--include/linux/mmc/host.h6
2 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h
index 77e61e0a216a..aad015e0152b 100644
--- a/include/linux/mmc/card.h
+++ b/include/linux/mmc/card.h
@@ -89,6 +89,7 @@ struct mmc_ext_csd {
89 unsigned int boot_ro_lock; /* ro lock support */ 89 unsigned int boot_ro_lock; /* ro lock support */
90 bool boot_ro_lockable; 90 bool boot_ro_lockable;
91 bool ffu_capable; /* Firmware upgrade support */ 91 bool ffu_capable; /* Firmware upgrade support */
92 bool cmdq_en; /* Command Queue enabled */
92 bool cmdq_support; /* Command Queue supported */ 93 bool cmdq_support; /* Command Queue supported */
93 unsigned int cmdq_depth; /* Command Queue depth */ 94 unsigned int cmdq_depth; /* Command Queue depth */
94#define MMC_FIRMWARE_LEN 8 95#define MMC_FIRMWARE_LEN 8
@@ -208,6 +209,7 @@ struct sdio_cis {
208struct mmc_host; 209struct mmc_host;
209struct sdio_func; 210struct sdio_func;
210struct sdio_func_tuple; 211struct sdio_func_tuple;
212struct mmc_queue_req;
211 213
212#define SDIO_MAX_FUNCS 7 214#define SDIO_MAX_FUNCS 7
213 215
@@ -267,6 +269,8 @@ struct mmc_card {
267#define MMC_QUIRK_TRIM_BROKEN (1<<12) /* Skip trim */ 269#define MMC_QUIRK_TRIM_BROKEN (1<<12) /* Skip trim */
268#define MMC_QUIRK_BROKEN_HPI (1<<13) /* Disable broken HPI support */ 270#define MMC_QUIRK_BROKEN_HPI (1<<13) /* Disable broken HPI support */
269 271
272 bool reenable_cmdq; /* Re-enable Command Queue */
273
270 unsigned int erase_size; /* erase size in sectors */ 274 unsigned int erase_size; /* erase size in sectors */
271 unsigned int erase_shift; /* if erase unit is power 2 */ 275 unsigned int erase_shift; /* if erase unit is power 2 */
272 unsigned int pref_erase; /* in sectors */ 276 unsigned int pref_erase; /* in sectors */
@@ -300,6 +304,10 @@ struct mmc_card {
300 struct dentry *debugfs_root; 304 struct dentry *debugfs_root;
301 struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */ 305 struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */
302 unsigned int nr_parts; 306 unsigned int nr_parts;
307
308 struct mmc_queue_req *mqrq; /* Shared queue structure */
309 unsigned int bouncesz; /* Bounce buffer size */
310 int qdepth; /* Shared queue depth */
303}; 311};
304 312
305static inline bool mmc_large_sector(struct mmc_card *card) 313static inline bool mmc_large_sector(struct mmc_card *card)
@@ -307,6 +315,8 @@ static inline bool mmc_large_sector(struct mmc_card *card)
307 return card->ext_csd.data_sector_size == 4096; 315 return card->ext_csd.data_sector_size == 4096;
308} 316}
309 317
318bool mmc_card_is_blockaddr(struct mmc_card *card);
319
310#define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC) 320#define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC)
311#define mmc_card_sd(c) ((c)->type == MMC_TYPE_SD) 321#define mmc_card_sd(c) ((c)->type == MMC_TYPE_SD)
312#define mmc_card_sdio(c) ((c)->type == MMC_TYPE_SDIO) 322#define mmc_card_sdio(c) ((c)->type == MMC_TYPE_SDIO)
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
index 83f1c4a9f03b..21385ac0c9b1 100644
--- a/include/linux/mmc/host.h
+++ b/include/linux/mmc/host.h
@@ -17,6 +17,7 @@
17#include <linux/mmc/core.h> 17#include <linux/mmc/core.h>
18#include <linux/mmc/card.h> 18#include <linux/mmc/card.h>
19#include <linux/mmc/pm.h> 19#include <linux/mmc/pm.h>
20#include <linux/dma-direction.h>
20 21
21struct mmc_ios { 22struct mmc_ios {
22 unsigned int clock; /* clock rate */ 23 unsigned int clock; /* clock rate */
@@ -499,6 +500,11 @@ static inline bool mmc_can_retune(struct mmc_host *host)
499 return host->can_retune == 1; 500 return host->can_retune == 1;
500} 501}
501 502
503static inline enum dma_data_direction mmc_get_dma_dir(struct mmc_data *data)
504{
505 return data->flags & MMC_DATA_WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
506}
507
502int mmc_send_tuning(struct mmc_host *host, u32 opcode, int *cmd_error); 508int mmc_send_tuning(struct mmc_host *host, u32 opcode, int *cmd_error);
503int mmc_abort_tuning(struct mmc_host *host, u32 opcode); 509int mmc_abort_tuning(struct mmc_host *host, u32 opcode);
504 510