blob: 17e59d50b4960298630404e7dbe4a687eb8e9a19 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef MMC_QUEUE_H
3#define MMC_QUEUE_H
4
Ulf Hansson066185d2017-01-13 14:14:07 +01005#include <linux/types.h>
6#include <linux/blkdev.h>
Linus Walleij304419d2017-05-18 11:29:32 +02007#include <linux/blk-mq.h>
Ulf Hansson066185d2017-01-13 14:14:07 +01008#include <linux/mmc/core.h>
9#include <linux/mmc/host.h>
10
Adrian Hunter81196972017-11-29 15:41:03 +020011enum mmc_issued {
12 MMC_REQ_STARTED,
13 MMC_REQ_BUSY,
14 MMC_REQ_FAILED_TO_START,
15 MMC_REQ_FINISHED,
16};
17
18enum mmc_issue_type {
19 MMC_ISSUE_SYNC,
Adrian Hunter1e8e55b2017-11-29 15:41:04 +020020 MMC_ISSUE_DCMD,
Adrian Hunter81196972017-11-29 15:41:03 +020021 MMC_ISSUE_ASYNC,
22 MMC_ISSUE_MAX,
23};
24
Linus Walleij304419d2017-05-18 11:29:32 +020025static inline struct mmc_queue_req *req_to_mmc_queue_req(struct request *rq)
26{
27 return blk_mq_rq_to_pdu(rq);
28}
29
Linus Walleij67e69d52017-05-19 15:37:27 +020030struct mmc_queue_req;
31
32static inline struct request *mmc_queue_req_to_req(struct mmc_queue_req *mqr)
33{
34 return blk_mq_rq_from_pdu(mqr);
35}
36
Linus Walleij7db30282016-11-18 13:36:15 +010037struct mmc_blk_data;
Linus Walleij614f0382017-05-18 11:29:34 +020038struct mmc_blk_ioc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Per Forlin97868a22011-07-09 17:12:36 -040040struct mmc_blk_request {
41 struct mmc_request mrq;
42 struct mmc_command sbc;
43 struct mmc_command cmd;
44 struct mmc_command stop;
45 struct mmc_data data;
46};
47
Linus Walleij02166a02017-05-19 15:37:28 +020048/**
49 * enum mmc_drv_op - enumerates the operations in the mmc_queue_req
50 * @MMC_DRV_OP_IOCTL: ioctl operation
Linus Walleij97548572017-09-20 10:02:00 +020051 * @MMC_DRV_OP_IOCTL_RPMB: RPMB-oriented ioctl operation
Linus Walleij0493f6f2017-05-19 15:37:30 +020052 * @MMC_DRV_OP_BOOT_WP: write protect boot partitions
Linus Walleij627c3cc2017-08-20 23:39:08 +020053 * @MMC_DRV_OP_GET_CARD_STATUS: get card status
54 * @MMC_DRV_OP_GET_EXT_CSD: get the EXT CSD from an eMMC card
Linus Walleij02166a02017-05-19 15:37:28 +020055 */
56enum mmc_drv_op {
57 MMC_DRV_OP_IOCTL,
Linus Walleij97548572017-09-20 10:02:00 +020058 MMC_DRV_OP_IOCTL_RPMB,
Linus Walleij0493f6f2017-05-19 15:37:30 +020059 MMC_DRV_OP_BOOT_WP,
Linus Walleij627c3cc2017-08-20 23:39:08 +020060 MMC_DRV_OP_GET_CARD_STATUS,
61 MMC_DRV_OP_GET_EXT_CSD,
Linus Walleij02166a02017-05-19 15:37:28 +020062};
63
Per Forlin97868a22011-07-09 17:12:36 -040064struct mmc_queue_req {
Per Forlin97868a22011-07-09 17:12:36 -040065 struct mmc_blk_request brq;
66 struct scatterlist *sg;
Linus Walleij02166a02017-05-19 15:37:28 +020067 enum mmc_drv_op drv_op;
Linus Walleij0493f6f2017-05-19 15:37:30 +020068 int drv_op_result;
Linus Walleij69f75992017-08-20 23:39:06 +020069 void *drv_op_data;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +020070 unsigned int ioc_count;
Adrian Hunter81196972017-11-29 15:41:03 +020071 int retries;
Per Forlin97868a22011-07-09 17:12:36 -040072};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074struct mmc_queue {
75 struct mmc_card *card;
Adrian Hunter81196972017-11-29 15:41:03 +020076 struct mmc_ctx ctx;
77 struct blk_mq_tag_set tag_set;
Linus Walleij7db30282016-11-18 13:36:15 +010078 struct mmc_blk_data *blkdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct request_queue *queue;
Adrian Hunter81196972017-11-29 15:41:03 +020080 int in_flight[MMC_ISSUE_MAX];
Adrian Hunter1e8e55b2017-11-29 15:41:04 +020081 unsigned int cqe_busy;
82#define MMC_CQE_DCMD_BUSY BIT(0)
83#define MMC_CQE_QUEUE_FULL BIT(1)
84 bool use_cqe;
85 bool recovery_needed;
86 bool in_recovery;
Adrian Hunter81196972017-11-29 15:41:03 +020087 bool rw_wait;
88 bool waiting;
Adrian Hunter1e8e55b2017-11-29 15:41:04 +020089 struct work_struct recovery_work;
Adrian Hunter81196972017-11-29 15:41:03 +020090 wait_queue_head_t wait;
Adrian Hunter10f21df42017-11-29 15:41:07 +020091 struct request *recovery_req;
Adrian Hunter81196972017-11-29 15:41:03 +020092 struct request *complete_req;
93 struct mutex complete_lock;
94 struct work_struct complete_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
Adrian Hunterd09408a2011-06-23 13:40:28 +030097extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *,
98 const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099extern void mmc_cleanup_queue(struct mmc_queue *);
100extern void mmc_queue_suspend(struct mmc_queue *);
101extern void mmc_queue_resume(struct mmc_queue *);
Per Forlin97868a22011-07-09 17:12:36 -0400102extern unsigned int mmc_queue_map_sg(struct mmc_queue *,
103 struct mmc_queue_req *);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200104
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200105void mmc_cqe_check_busy(struct mmc_queue *mq);
106void mmc_cqe_recovery_notifier(struct mmc_request *mrq);
107
Adrian Hunter81196972017-11-29 15:41:03 +0200108enum mmc_issue_type mmc_issue_type(struct mmc_queue *mq, struct request *req);
109
110static inline int mmc_tot_in_flight(struct mmc_queue *mq)
111{
112 return mq->in_flight[MMC_ISSUE_SYNC] +
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200113 mq->in_flight[MMC_ISSUE_DCMD] +
114 mq->in_flight[MMC_ISSUE_ASYNC];
115}
116
117static inline int mmc_cqe_qcnt(struct mmc_queue *mq)
118{
119 return mq->in_flight[MMC_ISSUE_DCMD] +
Adrian Hunter81196972017-11-29 15:41:03 +0200120 mq->in_flight[MMC_ISSUE_ASYNC];
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#endif