1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/types.h>
6 #include <linux/blkdev.h>
7 #include <linux/blk-mq.h>
8 #include <linux/mmc/core.h>
9 #include <linux/mmc/host.h>
14 MMC_REQ_FAILED_TO_START
,
25 static inline struct mmc_queue_req
*req_to_mmc_queue_req(struct request
*rq
)
27 return blk_mq_rq_to_pdu(rq
);
32 static inline struct request
*mmc_queue_req_to_req(struct mmc_queue_req
*mqr
)
34 return blk_mq_rq_from_pdu(mqr
);
38 struct mmc_blk_ioc_data
;
40 struct mmc_blk_request
{
41 struct mmc_request mrq
;
42 struct mmc_command sbc
;
43 struct mmc_command cmd
;
44 struct mmc_command stop
;
49 * enum mmc_drv_op - enumerates the operations in the mmc_queue_req
50 * @MMC_DRV_OP_IOCTL: ioctl operation
51 * @MMC_DRV_OP_IOCTL_RPMB: RPMB-oriented ioctl operation
52 * @MMC_DRV_OP_BOOT_WP: write protect boot partitions
53 * @MMC_DRV_OP_GET_CARD_STATUS: get card status
54 * @MMC_DRV_OP_GET_EXT_CSD: get the EXT CSD from an eMMC card
58 MMC_DRV_OP_IOCTL_RPMB
,
60 MMC_DRV_OP_GET_CARD_STATUS
,
61 MMC_DRV_OP_GET_EXT_CSD
,
64 struct mmc_queue_req
{
65 struct mmc_blk_request brq
;
66 struct scatterlist
*sg
;
67 enum mmc_drv_op drv_op
;
70 unsigned int ioc_count
;
75 struct mmc_card
*card
;
77 struct blk_mq_tag_set tag_set
;
78 struct mmc_blk_data
*blkdata
;
79 struct request_queue
*queue
;
80 int in_flight
[MMC_ISSUE_MAX
];
81 unsigned int cqe_busy
;
82 #define MMC_CQE_DCMD_BUSY BIT(0)
83 #define MMC_CQE_QUEUE_FULL BIT(1)
90 struct work_struct recovery_work
;
91 wait_queue_head_t wait
;
92 struct request
*recovery_req
;
93 struct request
*complete_req
;
94 struct mutex complete_lock
;
95 struct work_struct complete_work
;
98 extern int mmc_init_queue(struct mmc_queue
*, struct mmc_card
*, spinlock_t
*,
100 extern void mmc_cleanup_queue(struct mmc_queue
*);
101 extern void mmc_queue_suspend(struct mmc_queue
*);
102 extern void mmc_queue_resume(struct mmc_queue
*);
103 extern unsigned int mmc_queue_map_sg(struct mmc_queue
*,
104 struct mmc_queue_req
*);
106 void mmc_cqe_check_busy(struct mmc_queue
*mq
);
107 void mmc_cqe_recovery_notifier(struct mmc_request
*mrq
);
109 enum mmc_issue_type
mmc_issue_type(struct mmc_queue
*mq
, struct request
*req
);
111 static inline int mmc_tot_in_flight(struct mmc_queue
*mq
)
113 return mq
->in_flight
[MMC_ISSUE_SYNC
] +
114 mq
->in_flight
[MMC_ISSUE_DCMD
] +
115 mq
->in_flight
[MMC_ISSUE_ASYNC
];
118 static inline int mmc_cqe_qcnt(struct mmc_queue
*mq
)
120 return mq
->in_flight
[MMC_ISSUE_DCMD
] +
121 mq
->in_flight
[MMC_ISSUE_ASYNC
];