blob: ab469d525894a765aaecfd90f999f6f11de611d1 [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
14struct blk_mq_hw_ctx {
15 struct {
16 spinlock_t lock;
17 struct list_head dispatch;
18 } ____cacheline_aligned_in_smp;
19
20 unsigned long state; /* BLK_MQ_S_* flags */
Christoph Hellwig70f4db62014-04-16 10:48:08 -060021 struct delayed_work run_work;
22 struct delayed_work delay_work;
Jens Axboee4043dc2014-04-09 10:18:23 -060023 cpumask_var_t cpumask;
Jens Axboe320ae512013-10-24 09:20:05 +010024
25 unsigned long flags; /* BLK_MQ_F_* flags */
26
27 struct request_queue *queue;
28 unsigned int queue_num;
29
30 void *driver_data;
31
32 unsigned int nr_ctx;
33 struct blk_mq_ctx **ctxs;
34 unsigned int nr_ctx_map;
35 unsigned long *ctx_map;
36
Jens Axboe320ae512013-10-24 09:20:05 +010037 struct blk_mq_tags *tags;
38
39 unsigned long queued;
40 unsigned long run;
41#define BLK_MQ_MAX_DISPATCH_ORDER 10
42 unsigned long dispatched[BLK_MQ_MAX_DISPATCH_ORDER];
43
Jens Axboe320ae512013-10-24 09:20:05 +010044 unsigned int numa_node;
45 unsigned int cmd_size; /* per-request extra data */
46
47 struct blk_mq_cpu_notifier cpu_notifier;
48 struct kobject kobj;
49};
50
Christoph Hellwig24d2f902014-04-15 14:14:00 -060051struct blk_mq_tag_set {
Jens Axboe320ae512013-10-24 09:20:05 +010052 struct blk_mq_ops *ops;
53 unsigned int nr_hw_queues;
54 unsigned int queue_depth;
55 unsigned int reserved_tags;
56 unsigned int cmd_size; /* per-request extra data */
57 int numa_node;
58 unsigned int timeout;
59 unsigned int flags; /* BLK_MQ_F_* */
Christoph Hellwig24d2f902014-04-15 14:14:00 -060060 void *driver_data;
61
62 struct blk_mq_tags **tags;
Jens Axboe320ae512013-10-24 09:20:05 +010063};
64
65typedef int (queue_rq_fn)(struct blk_mq_hw_ctx *, struct request *);
66typedef struct blk_mq_hw_ctx *(map_queue_fn)(struct request_queue *, const int);
Christoph Hellwig24d2f902014-04-15 14:14:00 -060067typedef struct blk_mq_hw_ctx *(alloc_hctx_fn)(struct blk_mq_tag_set *,
68 unsigned int);
Jens Axboe320ae512013-10-24 09:20:05 +010069typedef void (free_hctx_fn)(struct blk_mq_hw_ctx *, unsigned int);
70typedef int (init_hctx_fn)(struct blk_mq_hw_ctx *, void *, unsigned int);
71typedef void (exit_hctx_fn)(struct blk_mq_hw_ctx *, unsigned int);
Christoph Hellwig24d2f902014-04-15 14:14:00 -060072typedef int (init_request_fn)(void *, struct request *, unsigned int,
73 unsigned int, unsigned int);
74typedef void (exit_request_fn)(void *, struct request *, unsigned int,
75 unsigned int);
Jens Axboe320ae512013-10-24 09:20:05 +010076
77struct blk_mq_ops {
78 /*
79 * Queue request
80 */
81 queue_rq_fn *queue_rq;
82
83 /*
84 * Map to specific hardware queue
85 */
86 map_queue_fn *map_queue;
87
88 /*
89 * Called on request timeout
90 */
91 rq_timed_out_fn *timeout;
92
Christoph Hellwig30a91cb2014-02-10 03:24:38 -080093 softirq_done_fn *complete;
94
Jens Axboe320ae512013-10-24 09:20:05 +010095 /*
96 * Override for hctx allocations (should probably go)
97 */
98 alloc_hctx_fn *alloc_hctx;
99 free_hctx_fn *free_hctx;
100
101 /*
102 * Called when the block layer side of a hardware queue has been
103 * set up, allowing the driver to allocate/init matching structures.
104 * Ditto for exit/teardown.
105 */
106 init_hctx_fn *init_hctx;
107 exit_hctx_fn *exit_hctx;
Christoph Hellwige9b267d2014-04-15 13:59:10 -0600108
109 /*
110 * Called for every command allocated by the block layer to allow
111 * the driver to set up driver specific data.
112 * Ditto for exit/teardown.
113 */
114 init_request_fn *init_request;
115 exit_request_fn *exit_request;
Jens Axboe320ae512013-10-24 09:20:05 +0100116};
117
118enum {
119 BLK_MQ_RQ_QUEUE_OK = 0, /* queued fine */
120 BLK_MQ_RQ_QUEUE_BUSY = 1, /* requeue IO for later */
121 BLK_MQ_RQ_QUEUE_ERROR = 2, /* end IO with error */
122
123 BLK_MQ_F_SHOULD_MERGE = 1 << 0,
124 BLK_MQ_F_SHOULD_SORT = 1 << 1,
125 BLK_MQ_F_SHOULD_IPI = 1 << 2,
126
Jens Axboe5d12f902014-03-19 15:25:02 -0600127 BLK_MQ_S_STOPPED = 0,
Jens Axboe320ae512013-10-24 09:20:05 +0100128
129 BLK_MQ_MAX_DEPTH = 2048,
130};
131
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600132struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *);
Jens Axboe320ae512013-10-24 09:20:05 +0100133int blk_mq_register_disk(struct gendisk *);
134void blk_mq_unregister_disk(struct gendisk *);
Jens Axboe320ae512013-10-24 09:20:05 +0100135
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600136int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set);
137void blk_mq_free_tag_set(struct blk_mq_tag_set *set);
138
Jens Axboe320ae512013-10-24 09:20:05 +0100139void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule);
140
Christoph Hellwigfeb71da2014-02-20 15:32:37 -0800141void blk_mq_insert_request(struct request *, bool, bool, bool);
Jens Axboe320ae512013-10-24 09:20:05 +0100142void blk_mq_run_queues(struct request_queue *q, bool async);
143void blk_mq_free_request(struct request *rq);
144bool blk_mq_can_queue(struct blk_mq_hw_ctx *);
Christoph Hellwig18741982014-02-10 09:29:00 -0700145struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp);
Jens Axboe320ae512013-10-24 09:20:05 +0100146struct request *blk_mq_alloc_reserved_request(struct request_queue *q, int rw, gfp_t gfp);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600147struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100148
149struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *, const int ctx_index);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600150struct blk_mq_hw_ctx *blk_mq_alloc_single_hw_queue(struct blk_mq_tag_set *, unsigned int);
Jens Axboe320ae512013-10-24 09:20:05 +0100151void blk_mq_free_single_hw_queue(struct blk_mq_hw_ctx *, unsigned int);
152
Christoph Hellwig63151a42014-04-16 09:44:52 +0200153void blk_mq_end_io(struct request *rq, int error);
154void __blk_mq_end_io(struct request *rq, int error);
Jens Axboe320ae512013-10-24 09:20:05 +0100155
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200156void blk_mq_requeue_request(struct request *rq);
157
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800158void blk_mq_complete_request(struct request *rq);
159
Jens Axboe320ae512013-10-24 09:20:05 +0100160void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx);
161void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx);
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100162void blk_mq_stop_hw_queues(struct request_queue *q);
Christoph Hellwig2f268552014-04-16 09:44:56 +0200163void blk_mq_start_hw_queues(struct request_queue *q);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200164void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600165void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs);
Jens Axboe320ae512013-10-24 09:20:05 +0100166
167/*
168 * Driver command data is immediately after the request. So subtract request
169 * size to get back to the original request.
170 */
171static inline struct request *blk_mq_rq_from_pdu(void *pdu)
172{
173 return pdu - sizeof(struct request);
174}
175static inline void *blk_mq_rq_to_pdu(struct request *rq)
176{
177 return (void *) rq + sizeof(*rq);
178}
179
Jens Axboe320ae512013-10-24 09:20:05 +0100180#define queue_for_each_hw_ctx(q, hctx, i) \
Jose Alonso0d0b7d42014-01-28 08:09:46 -0700181 for ((i) = 0; (i) < (q)->nr_hw_queues && \
182 ({ hctx = (q)->queue_hw_ctx[i]; 1; }); (i)++)
Jens Axboe320ae512013-10-24 09:20:05 +0100183
184#define queue_for_each_ctx(q, ctx, i) \
Jose Alonso0d0b7d42014-01-28 08:09:46 -0700185 for ((i) = 0; (i) < (q)->nr_queues && \
186 ({ ctx = per_cpu_ptr((q)->queue_ctx, (i)); 1; }); (i)++)
Jens Axboe320ae512013-10-24 09:20:05 +0100187
188#define hctx_for_each_ctx(hctx, ctx, i) \
Jose Alonso0d0b7d42014-01-28 08:09:46 -0700189 for ((i) = 0; (i) < (hctx)->nr_ctx && \
190 ({ ctx = (hctx)->ctxs[(i)]; 1; }); (i)++)
Jens Axboe320ae512013-10-24 09:20:05 +0100191
192#define blk_ctx_sum(q, sum) \
193({ \
194 struct blk_mq_ctx *__x; \
195 unsigned int __ret = 0, __i; \
196 \
197 queue_for_each_ctx((q), __x, __i) \
198 __ret += sum; \
199 __ret; \
200})
201
202#endif