blob: cf26a15a64bf3b9974e4d58e0d0e5928ffc738d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef MMC_QUEUE_H
2#define MMC_QUEUE_H
3
Ulf Hansson066185d2017-01-13 14:14:07 +01004#include <linux/types.h>
5#include <linux/blkdev.h>
Linus Walleij304419d2017-05-18 11:29:32 +02006#include <linux/blk-mq.h>
Ulf Hansson066185d2017-01-13 14:14:07 +01007#include <linux/mmc/core.h>
8#include <linux/mmc/host.h>
9
Linus Walleij304419d2017-05-18 11:29:32 +020010static inline struct mmc_queue_req *req_to_mmc_queue_req(struct request *rq)
11{
12 return blk_mq_rq_to_pdu(rq);
13}
14
Linus Walleij67e69d52017-05-19 15:37:27 +020015struct mmc_queue_req;
16
17static inline struct request *mmc_queue_req_to_req(struct mmc_queue_req *mqr)
18{
19 return blk_mq_rq_from_pdu(mqr);
20}
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022struct task_struct;
Linus Walleij7db30282016-11-18 13:36:15 +010023struct mmc_blk_data;
Linus Walleij614f0382017-05-18 11:29:34 +020024struct mmc_blk_ioc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Per Forlin97868a22011-07-09 17:12:36 -040026struct mmc_blk_request {
27 struct mmc_request mrq;
28 struct mmc_command sbc;
29 struct mmc_command cmd;
30 struct mmc_command stop;
31 struct mmc_data data;
Adrian Hunterb8360a42015-05-07 13:10:24 +030032 int retune_retry_done;
Per Forlin97868a22011-07-09 17:12:36 -040033};
34
Linus Walleij02166a02017-05-19 15:37:28 +020035/**
36 * enum mmc_drv_op - enumerates the operations in the mmc_queue_req
37 * @MMC_DRV_OP_IOCTL: ioctl operation
Linus Walleij0493f6f2017-05-19 15:37:30 +020038 * @MMC_DRV_OP_BOOT_WP: write protect boot partitions
Linus Walleij02166a02017-05-19 15:37:28 +020039 */
40enum mmc_drv_op {
41 MMC_DRV_OP_IOCTL,
Linus Walleij0493f6f2017-05-19 15:37:30 +020042 MMC_DRV_OP_BOOT_WP,
Linus Walleij02166a02017-05-19 15:37:28 +020043};
44
Per Forlin97868a22011-07-09 17:12:36 -040045struct mmc_queue_req {
Per Forlin97868a22011-07-09 17:12:36 -040046 struct mmc_blk_request brq;
47 struct scatterlist *sg;
48 char *bounce_buf;
49 struct scatterlist *bounce_sg;
50 unsigned int bounce_sg_len;
Linus Walleij74f5ba32017-02-01 13:47:55 +010051 struct mmc_async_req areq;
Linus Walleij02166a02017-05-19 15:37:28 +020052 enum mmc_drv_op drv_op;
Linus Walleij0493f6f2017-05-19 15:37:30 +020053 int drv_op_result;
Linus Walleij69f75992017-08-20 23:39:06 +020054 void *drv_op_data;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +020055 unsigned int ioc_count;
Per Forlin97868a22011-07-09 17:12:36 -040056};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058struct mmc_queue {
59 struct mmc_card *card;
Christoph Hellwig87598a22006-11-13 20:23:52 +010060 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct semaphore thread_sem;
Linus Walleij9491be52017-02-01 13:47:56 +010062 bool suspended;
Adrian Huntere0097cf2016-11-29 12:09:10 +020063 bool asleep;
Linus Walleij7db30282016-11-18 13:36:15 +010064 struct mmc_blk_data *blkdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct request_queue *queue;
Linus Walleij304419d2017-05-18 11:29:32 +020066 /*
67 * FIXME: this counter is not a very reliable way of keeping
68 * track of how many requests that are ongoing. Switch to just
69 * letting the block core keep track of requests and per-request
70 * associated mmc_queue_req data.
71 */
Adrian Huntercdf8a6f2017-03-13 14:36:35 +020072 int qcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
Adrian Hunterd09408a2011-06-23 13:40:28 +030075extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *,
76 const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077extern void mmc_cleanup_queue(struct mmc_queue *);
78extern void mmc_queue_suspend(struct mmc_queue *);
79extern void mmc_queue_resume(struct mmc_queue *);
80
Per Forlin97868a22011-07-09 17:12:36 -040081extern unsigned int mmc_queue_map_sg(struct mmc_queue *,
82 struct mmc_queue_req *);
83extern void mmc_queue_bounce_pre(struct mmc_queue_req *);
84extern void mmc_queue_bounce_post(struct mmc_queue_req *);
Pierre Ossman98ccf142007-05-12 00:26:16 +020085
Chuanxiao Dong4e93b9a2014-08-12 12:01:30 +080086extern int mmc_access_rpmb(struct mmc_queue *);
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif