blob: 952e558ee598ac0b643d3198afd7f7e8f83ea6da [file] [log] [blame]
Jens Axboe320ae512013-10-24 09:20:05 +01001#ifndef BLK_MQ_H
2#define BLK_MQ_H
3
4#include <linux/blkdev.h>
5
6struct blk_mq_tags;
7
8struct blk_mq_cpu_notifier {
9 struct list_head list;
10 void *data;
11 void (*notify)(void *data, unsigned long action, unsigned int cpu);
12};
13
Jens Axboe1429d7c2014-05-19 09:23:55 -060014struct blk_mq_ctxmap {
15 unsigned int map_size;
16 unsigned int bits_per_word;
17 struct blk_align_bitmap *map;
18};
19
Jens Axboe320ae512013-10-24 09:20:05 +010020struct blk_mq_hw_ctx {
21 struct {
22 spinlock_t lock;
23 struct list_head dispatch;
24 } ____cacheline_aligned_in_smp;
25
26 unsigned long state; /* BLK_MQ_S_* flags */
Christoph Hellwig70f4db62014-04-16 10:48:08 -060027 struct delayed_work run_work;
28 struct delayed_work delay_work;
Jens Axboee4043dc2014-04-09 10:18:23 -060029 cpumask_var_t cpumask;
Jens Axboe506e9312014-05-07 10:26:44 -060030 int next_cpu;
31 int next_cpu_batch;
Jens Axboe320ae512013-10-24 09:20:05 +010032
33 unsigned long flags; /* BLK_MQ_F_* flags */
34
35 struct request_queue *queue;
36 unsigned int queue_num;
37
38 void *driver_data;
39
Jens Axboe1429d7c2014-05-19 09:23:55 -060040 struct blk_mq_ctxmap ctx_map;
41
Jens Axboe4bb659b2014-05-09 09:36:49 -060042 unsigned int nr_ctx;
43 struct blk_mq_ctx **ctxs;
44
45 unsigned int wait_index;
Jens Axboe320ae512013-10-24 09:20:05 +010046
Jens Axboe320ae512013-10-24 09:20:05 +010047 struct blk_mq_tags *tags;
48
49 unsigned long queued;
50 unsigned long run;
51#define BLK_MQ_MAX_DISPATCH_ORDER 10
52 unsigned long dispatched[BLK_MQ_MAX_DISPATCH_ORDER];
53
Jens Axboe320ae512013-10-24 09:20:05 +010054 unsigned int numa_node;
55 unsigned int cmd_size; /* per-request extra data */
56
57 struct blk_mq_cpu_notifier cpu_notifier;
58 struct kobject kobj;
59};
60
Christoph Hellwig24d2f902014-04-15 14:14:00 -060061struct blk_mq_tag_set {
Jens Axboe320ae512013-10-24 09:20:05 +010062 struct blk_mq_ops *ops;
63 unsigned int nr_hw_queues;
64 unsigned int queue_depth;
65 unsigned int reserved_tags;
66 unsigned int cmd_size; /* per-request extra data */
67 int numa_node;
68 unsigned int timeout;
69 unsigned int flags; /* BLK_MQ_F_* */
Christoph Hellwig24d2f902014-04-15 14:14:00 -060070 void *driver_data;
71
72 struct blk_mq_tags **tags;
Jens Axboe320ae512013-10-24 09:20:05 +010073};
74
75typedef int (queue_rq_fn)(struct blk_mq_hw_ctx *, struct request *);
76typedef struct blk_mq_hw_ctx *(map_queue_fn)(struct request_queue *, const int);
Christoph Hellwig24d2f902014-04-15 14:14:00 -060077typedef struct blk_mq_hw_ctx *(alloc_hctx_fn)(struct blk_mq_tag_set *,
78 unsigned int);
Jens Axboe320ae512013-10-24 09:20:05 +010079typedef void (free_hctx_fn)(struct blk_mq_hw_ctx *, unsigned int);
80typedef int (init_hctx_fn)(struct blk_mq_hw_ctx *, void *, unsigned int);
81typedef void (exit_hctx_fn)(struct blk_mq_hw_ctx *, unsigned int);
Christoph Hellwig24d2f902014-04-15 14:14:00 -060082typedef int (init_request_fn)(void *, struct request *, unsigned int,
83 unsigned int, unsigned int);
84typedef void (exit_request_fn)(void *, struct request *, unsigned int,
85 unsigned int);
Jens Axboe320ae512013-10-24 09:20:05 +010086
87struct blk_mq_ops {
88 /*
89 * Queue request
90 */
91 queue_rq_fn *queue_rq;
92
93 /*
94 * Map to specific hardware queue
95 */
96 map_queue_fn *map_queue;
97
98 /*
99 * Called on request timeout
100 */
101 rq_timed_out_fn *timeout;
102
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800103 softirq_done_fn *complete;
104
Jens Axboe320ae512013-10-24 09:20:05 +0100105 /*
106 * Override for hctx allocations (should probably go)
107 */
108 alloc_hctx_fn *alloc_hctx;
109 free_hctx_fn *free_hctx;
110
111 /*
112 * Called when the block layer side of a hardware queue has been
113 * set up, allowing the driver to allocate/init matching structures.
114 * Ditto for exit/teardown.
115 */
116 init_hctx_fn *init_hctx;
117 exit_hctx_fn *exit_hctx;
Christoph Hellwige9b267d2014-04-15 13:59:10 -0600118
119 /*
120 * Called for every command allocated by the block layer to allow
121 * the driver to set up driver specific data.
122 * Ditto for exit/teardown.
123 */
124 init_request_fn *init_request;
125 exit_request_fn *exit_request;
Jens Axboe320ae512013-10-24 09:20:05 +0100126};
127
128enum {
129 BLK_MQ_RQ_QUEUE_OK = 0, /* queued fine */
130 BLK_MQ_RQ_QUEUE_BUSY = 1, /* requeue IO for later */
131 BLK_MQ_RQ_QUEUE_ERROR = 2, /* end IO with error */
132
133 BLK_MQ_F_SHOULD_MERGE = 1 << 0,
134 BLK_MQ_F_SHOULD_SORT = 1 << 1,
Jens Axboe320ae512013-10-24 09:20:05 +0100135
Jens Axboe5d12f902014-03-19 15:25:02 -0600136 BLK_MQ_S_STOPPED = 0,
Jens Axboe320ae512013-10-24 09:20:05 +0100137
138 BLK_MQ_MAX_DEPTH = 2048,
Jens Axboe506e9312014-05-07 10:26:44 -0600139
140 BLK_MQ_CPU_WORK_BATCH = 8,
Jens Axboe320ae512013-10-24 09:20:05 +0100141};
142
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600143struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *);
Jens Axboe320ae512013-10-24 09:20:05 +0100144int blk_mq_register_disk(struct gendisk *);
145void blk_mq_unregister_disk(struct gendisk *);
Jens Axboe320ae512013-10-24 09:20:05 +0100146
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600147int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set);
148void blk_mq_free_tag_set(struct blk_mq_tag_set *set);
149
Jens Axboe320ae512013-10-24 09:20:05 +0100150void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule);
151
Christoph Hellwigfeb71da2014-02-20 15:32:37 -0800152void blk_mq_insert_request(struct request *, bool, bool, bool);
Jens Axboe320ae512013-10-24 09:20:05 +0100153void blk_mq_run_queues(struct request_queue *q, bool async);
154void blk_mq_free_request(struct request *rq);
155bool blk_mq_can_queue(struct blk_mq_hw_ctx *);
Christoph Hellwig18741982014-02-10 09:29:00 -0700156struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp);
Jens Axboe320ae512013-10-24 09:20:05 +0100157struct request *blk_mq_alloc_reserved_request(struct request_queue *q, int rw, gfp_t gfp);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600158struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100159
160struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *, const int ctx_index);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600161struct blk_mq_hw_ctx *blk_mq_alloc_single_hw_queue(struct blk_mq_tag_set *, unsigned int);
Jens Axboe320ae512013-10-24 09:20:05 +0100162void blk_mq_free_single_hw_queue(struct blk_mq_hw_ctx *, unsigned int);
163
Christoph Hellwig63151a42014-04-16 09:44:52 +0200164void blk_mq_end_io(struct request *rq, int error);
165void __blk_mq_end_io(struct request *rq, int error);
Jens Axboe320ae512013-10-24 09:20:05 +0100166
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200167void blk_mq_requeue_request(struct request *rq);
168
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800169void blk_mq_complete_request(struct request *rq);
170
Jens Axboe320ae512013-10-24 09:20:05 +0100171void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx);
172void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx);
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100173void blk_mq_stop_hw_queues(struct request_queue *q);
Christoph Hellwig2f268552014-04-16 09:44:56 +0200174void blk_mq_start_hw_queues(struct request_queue *q);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200175void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600176void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs);
Jens Axboe320ae512013-10-24 09:20:05 +0100177
178/*
179 * Driver command data is immediately after the request. So subtract request
180 * size to get back to the original request.
181 */
182static inline struct request *blk_mq_rq_from_pdu(void *pdu)
183{
184 return pdu - sizeof(struct request);
185}
186static inline void *blk_mq_rq_to_pdu(struct request *rq)
187{
188 return (void *) rq + sizeof(*rq);
189}
190
Jens Axboe320ae512013-10-24 09:20:05 +0100191#define queue_for_each_hw_ctx(q, hctx, i) \
Jose Alonso0d0b7d42014-01-28 08:09:46 -0700192 for ((i) = 0; (i) < (q)->nr_hw_queues && \
193 ({ hctx = (q)->queue_hw_ctx[i]; 1; }); (i)++)
Jens Axboe320ae512013-10-24 09:20:05 +0100194
195#define queue_for_each_ctx(q, ctx, i) \
Jose Alonso0d0b7d42014-01-28 08:09:46 -0700196 for ((i) = 0; (i) < (q)->nr_queues && \
197 ({ ctx = per_cpu_ptr((q)->queue_ctx, (i)); 1; }); (i)++)
Jens Axboe320ae512013-10-24 09:20:05 +0100198
199#define hctx_for_each_ctx(hctx, ctx, i) \
Jose Alonso0d0b7d42014-01-28 08:09:46 -0700200 for ((i) = 0; (i) < (hctx)->nr_ctx && \
201 ({ ctx = (hctx)->ctxs[(i)]; 1; }); (i)++)
Jens Axboe320ae512013-10-24 09:20:05 +0100202
203#define blk_ctx_sum(q, sum) \
204({ \
205 struct blk_mq_ctx *__x; \
206 unsigned int __ret = 0, __i; \
207 \
208 queue_for_each_ctx((q), __x, __i) \
209 __ret += sum; \
210 __ret; \
211})
212
213#endif