Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef MMC_QUEUE_H |
| 2 | #define MMC_QUEUE_H |
| 3 | |
Ulf Hansson | 066185d | 2017-01-13 14:14:07 +0100 | [diff] [blame] | 4 | #include <linux/types.h> |
| 5 | #include <linux/blkdev.h> |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 6 | #include <linux/blk-mq.h> |
Ulf Hansson | 066185d | 2017-01-13 14:14:07 +0100 | [diff] [blame] | 7 | #include <linux/mmc/core.h> |
| 8 | #include <linux/mmc/host.h> |
| 9 | |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 10 | static 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 Walleij | 67e69d5 | 2017-05-19 15:37:27 +0200 | [diff] [blame] | 15 | struct mmc_queue_req; |
| 16 | |
| 17 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | struct task_struct; |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 23 | struct mmc_blk_data; |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 24 | struct mmc_blk_ioc_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Per Forlin | 97868a2 | 2011-07-09 17:12:36 -0400 | [diff] [blame] | 26 | struct 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 Hunter | b8360a4 | 2015-05-07 13:10:24 +0300 | [diff] [blame] | 32 | int retune_retry_done; |
Per Forlin | 97868a2 | 2011-07-09 17:12:36 -0400 | [diff] [blame] | 33 | }; |
| 34 | |
Linus Walleij | 02166a0 | 2017-05-19 15:37:28 +0200 | [diff] [blame] | 35 | /** |
| 36 | * enum mmc_drv_op - enumerates the operations in the mmc_queue_req |
| 37 | * @MMC_DRV_OP_IOCTL: ioctl operation |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 38 | * @MMC_DRV_OP_BOOT_WP: write protect boot partitions |
Linus Walleij | 02166a0 | 2017-05-19 15:37:28 +0200 | [diff] [blame] | 39 | */ |
| 40 | enum mmc_drv_op { |
| 41 | MMC_DRV_OP_IOCTL, |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 42 | MMC_DRV_OP_BOOT_WP, |
Linus Walleij | 02166a0 | 2017-05-19 15:37:28 +0200 | [diff] [blame] | 43 | }; |
| 44 | |
Per Forlin | 97868a2 | 2011-07-09 17:12:36 -0400 | [diff] [blame] | 45 | struct mmc_queue_req { |
Per Forlin | 97868a2 | 2011-07-09 17:12:36 -0400 | [diff] [blame] | 46 | 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 Walleij | 74f5ba3 | 2017-02-01 13:47:55 +0100 | [diff] [blame] | 51 | struct mmc_async_req areq; |
Linus Walleij | 02166a0 | 2017-05-19 15:37:28 +0200 | [diff] [blame] | 52 | enum mmc_drv_op drv_op; |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 53 | int drv_op_result; |
Linus Walleij | 69f7599 | 2017-08-20 23:39:06 +0200 | [diff] [blame^] | 54 | void *drv_op_data; |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 55 | unsigned int ioc_count; |
Per Forlin | 97868a2 | 2011-07-09 17:12:36 -0400 | [diff] [blame] | 56 | }; |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct mmc_queue { |
| 59 | struct mmc_card *card; |
Christoph Hellwig | 87598a2 | 2006-11-13 20:23:52 +0100 | [diff] [blame] | 60 | struct task_struct *thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | struct semaphore thread_sem; |
Linus Walleij | 9491be5 | 2017-02-01 13:47:56 +0100 | [diff] [blame] | 62 | bool suspended; |
Adrian Hunter | e0097cf | 2016-11-29 12:09:10 +0200 | [diff] [blame] | 63 | bool asleep; |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 64 | struct mmc_blk_data *blkdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | struct request_queue *queue; |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 66 | /* |
| 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 Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 72 | int qcnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Adrian Hunter | d09408a | 2011-06-23 13:40:28 +0300 | [diff] [blame] | 75 | extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *, |
| 76 | const char *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | extern void mmc_cleanup_queue(struct mmc_queue *); |
| 78 | extern void mmc_queue_suspend(struct mmc_queue *); |
| 79 | extern void mmc_queue_resume(struct mmc_queue *); |
| 80 | |
Per Forlin | 97868a2 | 2011-07-09 17:12:36 -0400 | [diff] [blame] | 81 | extern unsigned int mmc_queue_map_sg(struct mmc_queue *, |
| 82 | struct mmc_queue_req *); |
| 83 | extern void mmc_queue_bounce_pre(struct mmc_queue_req *); |
| 84 | extern void mmc_queue_bounce_post(struct mmc_queue_req *); |
Pierre Ossman | 98ccf14 | 2007-05-12 00:26:16 +0200 | [diff] [blame] | 85 | |
Chuanxiao Dong | 4e93b9a | 2014-08-12 12:01:30 +0800 | [diff] [blame] | 86 | extern int mmc_access_rpmb(struct mmc_queue *); |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #endif |