blob: 9f16ea6964ec6182e996168c0f67408b61c93f6e [file] [log] [blame]
Sebastian Ottf30664e2012-08-28 16:50:38 +02001/*
2 * Block driver for s390 storage class memory.
3 *
4 * Copyright IBM Corp. 2012
5 * Author(s): Sebastian Ott <sebott@linux.vnet.ibm.com>
6 */
7
8#define KMSG_COMPONENT "scm_block"
9#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10
11#include <linux/interrupt.h>
12#include <linux/spinlock.h>
Sebastian Ott9d4df772014-12-05 16:32:13 +010013#include <linux/mempool.h>
Sebastian Ottf30664e2012-08-28 16:50:38 +020014#include <linux/module.h>
15#include <linux/blkdev.h>
16#include <linux/genhd.h>
17#include <linux/slab.h>
18#include <linux/list.h>
19#include <asm/eadm.h>
20#include "scm_blk.h"
21
22debug_info_t *scm_debug;
23static int scm_major;
Sebastian Ott9d4df772014-12-05 16:32:13 +010024static mempool_t *aidaw_pool;
Sebastian Ottf30664e2012-08-28 16:50:38 +020025static DEFINE_SPINLOCK(list_lock);
26static LIST_HEAD(inactive_requests);
27static unsigned int nr_requests = 64;
Sebastian Ott86223842014-12-05 16:47:17 +010028static unsigned int nr_requests_per_io = 8;
Sebastian Ottf30664e2012-08-28 16:50:38 +020029static atomic_t nr_devices = ATOMIC_INIT(0);
30module_param(nr_requests, uint, S_IRUGO);
31MODULE_PARM_DESC(nr_requests, "Number of parallel requests.");
32
Sebastian Ott86223842014-12-05 16:47:17 +010033module_param(nr_requests_per_io, uint, S_IRUGO);
34MODULE_PARM_DESC(nr_requests_per_io, "Number of requests per IO.");
35
Sebastian Ottf30664e2012-08-28 16:50:38 +020036MODULE_DESCRIPTION("Block driver for s390 storage class memory.");
37MODULE_LICENSE("GPL");
38MODULE_ALIAS("scm:scmdev*");
39
40static void __scm_free_rq(struct scm_request *scmrq)
41{
42 struct aob_rq_header *aobrq = to_aobrq(scmrq);
43
44 free_page((unsigned long) scmrq->aob);
Sebastian Ott0d804b22012-08-28 16:51:19 +020045 __scm_free_rq_cluster(scmrq);
Sebastian Ott86223842014-12-05 16:47:17 +010046 kfree(scmrq->request);
Sebastian Ottf30664e2012-08-28 16:50:38 +020047 kfree(aobrq);
48}
49
50static void scm_free_rqs(void)
51{
52 struct list_head *iter, *safe;
53 struct scm_request *scmrq;
54
55 spin_lock_irq(&list_lock);
56 list_for_each_safe(iter, safe, &inactive_requests) {
57 scmrq = list_entry(iter, struct scm_request, list);
58 list_del(&scmrq->list);
59 __scm_free_rq(scmrq);
60 }
61 spin_unlock_irq(&list_lock);
Sebastian Ott9d4df772014-12-05 16:32:13 +010062
63 mempool_destroy(aidaw_pool);
Sebastian Ottf30664e2012-08-28 16:50:38 +020064}
65
66static int __scm_alloc_rq(void)
67{
68 struct aob_rq_header *aobrq;
69 struct scm_request *scmrq;
70
71 aobrq = kzalloc(sizeof(*aobrq) + sizeof(*scmrq), GFP_KERNEL);
72 if (!aobrq)
73 return -ENOMEM;
74
75 scmrq = (void *) aobrq->data;
Sebastian Ottf30664e2012-08-28 16:50:38 +020076 scmrq->aob = (void *) get_zeroed_page(GFP_DMA);
Sebastian Ott86223842014-12-05 16:47:17 +010077 if (!scmrq->aob)
78 goto free;
Sebastian Ott0d804b22012-08-28 16:51:19 +020079
Sebastian Ott86223842014-12-05 16:47:17 +010080 scmrq->request = kcalloc(nr_requests_per_io, sizeof(scmrq->request[0]),
81 GFP_KERNEL);
82 if (!scmrq->request)
83 goto free;
84
85 if (__scm_alloc_rq_cluster(scmrq))
86 goto free;
Sebastian Ott0d804b22012-08-28 16:51:19 +020087
Sebastian Ottf30664e2012-08-28 16:50:38 +020088 INIT_LIST_HEAD(&scmrq->list);
89 spin_lock_irq(&list_lock);
90 list_add(&scmrq->list, &inactive_requests);
91 spin_unlock_irq(&list_lock);
92
93 return 0;
Sebastian Ott86223842014-12-05 16:47:17 +010094free:
95 __scm_free_rq(scmrq);
96 return -ENOMEM;
Sebastian Ottf30664e2012-08-28 16:50:38 +020097}
98
99static int scm_alloc_rqs(unsigned int nrqs)
100{
101 int ret = 0;
102
Sebastian Ott9d4df772014-12-05 16:32:13 +0100103 aidaw_pool = mempool_create_page_pool(max(nrqs/8, 1U), 0);
104 if (!aidaw_pool)
105 return -ENOMEM;
106
Sebastian Ottf30664e2012-08-28 16:50:38 +0200107 while (nrqs-- && !ret)
108 ret = __scm_alloc_rq();
109
110 return ret;
111}
112
113static struct scm_request *scm_request_fetch(void)
114{
115 struct scm_request *scmrq = NULL;
116
117 spin_lock(&list_lock);
118 if (list_empty(&inactive_requests))
119 goto out;
120 scmrq = list_first_entry(&inactive_requests, struct scm_request, list);
121 list_del(&scmrq->list);
122out:
123 spin_unlock(&list_lock);
124 return scmrq;
125}
126
127static void scm_request_done(struct scm_request *scmrq)
128{
129 unsigned long flags;
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100130 struct msb *msb;
131 u64 aidaw;
132 int i;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200133
Sebastian Ott86223842014-12-05 16:47:17 +0100134 for (i = 0; i < nr_requests_per_io && scmrq->request[i]; i++) {
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100135 msb = &scmrq->aob->msb[i];
136 aidaw = msb->data_addr;
137
138 if ((msb->flags & MSB_FLAG_IDA) && aidaw &&
139 IS_ALIGNED(aidaw, PAGE_SIZE))
140 mempool_free(virt_to_page(aidaw), aidaw_pool);
141 }
Sebastian Ott9d4df772014-12-05 16:32:13 +0100142
Sebastian Ottf30664e2012-08-28 16:50:38 +0200143 spin_lock_irqsave(&list_lock, flags);
144 list_add(&scmrq->list, &inactive_requests);
145 spin_unlock_irqrestore(&list_lock, flags);
146}
147
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100148static bool scm_permit_request(struct scm_blk_dev *bdev, struct request *req)
149{
150 return rq_data_dir(req) != WRITE || bdev->state != SCM_WR_PROHIBIT;
151}
152
Sebastian Ottde88d0d2014-12-05 16:41:47 +0100153static inline struct aidaw *scm_aidaw_alloc(void)
Sebastian Ott9d4df772014-12-05 16:32:13 +0100154{
155 struct page *page = mempool_alloc(aidaw_pool, GFP_ATOMIC);
156
157 return page ? page_address(page) : NULL;
158}
159
Sebastian Ottde88d0d2014-12-05 16:41:47 +0100160static inline unsigned long scm_aidaw_bytes(struct aidaw *aidaw)
161{
162 unsigned long _aidaw = (unsigned long) aidaw;
163 unsigned long bytes = ALIGN(_aidaw, PAGE_SIZE) - _aidaw;
164
165 return (bytes / sizeof(*aidaw)) * PAGE_SIZE;
166}
167
168struct aidaw *scm_aidaw_fetch(struct scm_request *scmrq, unsigned int bytes)
169{
170 struct aidaw *aidaw;
171
172 if (scm_aidaw_bytes(scmrq->next_aidaw) >= bytes)
173 return scmrq->next_aidaw;
174
175 aidaw = scm_aidaw_alloc();
176 if (aidaw)
177 memset(aidaw, 0, PAGE_SIZE);
178 return aidaw;
179}
180
Sebastian Ott9d4df772014-12-05 16:32:13 +0100181static int scm_request_prepare(struct scm_request *scmrq)
Sebastian Ottf30664e2012-08-28 16:50:38 +0200182{
183 struct scm_blk_dev *bdev = scmrq->bdev;
184 struct scm_device *scmdev = bdev->gendisk->private_data;
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100185 int pos = scmrq->aob->request.msb_count;
186 struct msb *msb = &scmrq->aob->msb[pos];
187 struct request *req = scmrq->request[pos];
Sebastian Ottf30664e2012-08-28 16:50:38 +0200188 struct req_iterator iter;
Sebastian Ottde88d0d2014-12-05 16:41:47 +0100189 struct aidaw *aidaw;
Kent Overstreet79886132013-11-23 17:19:00 -0800190 struct bio_vec bv;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200191
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100192 aidaw = scm_aidaw_fetch(scmrq, blk_rq_bytes(req));
Sebastian Ott9d4df772014-12-05 16:32:13 +0100193 if (!aidaw)
194 return -ENOMEM;
195
Sebastian Ottf30664e2012-08-28 16:50:38 +0200196 msb->bs = MSB_BS_4K;
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100197 scmrq->aob->request.msb_count++;
198 msb->scm_addr = scmdev->address + ((u64) blk_rq_pos(req) << 9);
199 msb->oc = (rq_data_dir(req) == READ) ? MSB_OC_READ : MSB_OC_WRITE;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200200 msb->flags |= MSB_FLAG_IDA;
201 msb->data_addr = (u64) aidaw;
202
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100203 rq_for_each_segment(bv, req, iter) {
Kent Overstreet79886132013-11-23 17:19:00 -0800204 WARN_ON(bv.bv_offset);
205 msb->blk_count += bv.bv_len >> 12;
206 aidaw->data_addr = (u64) page_address(bv.bv_page);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200207 aidaw++;
208 }
Sebastian Ott9d4df772014-12-05 16:32:13 +0100209
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100210 scmrq->next_aidaw = aidaw;
Sebastian Ott9d4df772014-12-05 16:32:13 +0100211 return 0;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200212}
213
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100214static inline void scm_request_set(struct scm_request *scmrq,
215 struct request *req)
216{
217 scmrq->request[scmrq->aob->request.msb_count] = req;
218}
219
Sebastian Ottf30664e2012-08-28 16:50:38 +0200220static inline void scm_request_init(struct scm_blk_dev *bdev,
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100221 struct scm_request *scmrq)
Sebastian Ottf30664e2012-08-28 16:50:38 +0200222{
223 struct aob_rq_header *aobrq = to_aobrq(scmrq);
224 struct aob *aob = scmrq->aob;
225
Sebastian Ott86223842014-12-05 16:47:17 +0100226 memset(scmrq->request, 0,
227 nr_requests_per_io * sizeof(scmrq->request[0]));
Sebastian Ottf30664e2012-08-28 16:50:38 +0200228 memset(aob, 0, sizeof(*aob));
Sebastian Ottf30664e2012-08-28 16:50:38 +0200229 aobrq->scmdev = bdev->scmdev;
230 aob->request.cmd_code = ARQB_CMD_MOVE;
231 aob->request.data = (u64) aobrq;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200232 scmrq->bdev = bdev;
233 scmrq->retries = 4;
234 scmrq->error = 0;
Sebastian Ottde88d0d2014-12-05 16:41:47 +0100235 /* We don't use all msbs - place aidaws at the end of the aob page. */
Sebastian Ott86223842014-12-05 16:47:17 +0100236 scmrq->next_aidaw = (void *) &aob->msb[nr_requests_per_io];
Sebastian Ott0d804b22012-08-28 16:51:19 +0200237 scm_request_cluster_init(scmrq);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200238}
239
240static void scm_ensure_queue_restart(struct scm_blk_dev *bdev)
241{
242 if (atomic_read(&bdev->queued_reqs)) {
243 /* Queue restart is triggered by the next interrupt. */
244 return;
245 }
246 blk_delay_queue(bdev->rq, SCM_QUEUE_DELAY);
247}
248
Sebastian Ott0d804b22012-08-28 16:51:19 +0200249void scm_request_requeue(struct scm_request *scmrq)
Sebastian Ottf30664e2012-08-28 16:50:38 +0200250{
251 struct scm_blk_dev *bdev = scmrq->bdev;
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100252 int i;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200253
Sebastian Ott0d804b22012-08-28 16:51:19 +0200254 scm_release_cluster(scmrq);
Sebastian Ott86223842014-12-05 16:47:17 +0100255 for (i = 0; i < nr_requests_per_io && scmrq->request[i]; i++)
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100256 blk_requeue_request(bdev->rq, scmrq->request[i]);
257
Sebastian Ott8360cb52013-02-28 12:07:27 +0100258 atomic_dec(&bdev->queued_reqs);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200259 scm_request_done(scmrq);
260 scm_ensure_queue_restart(bdev);
261}
262
Sebastian Ott0d804b22012-08-28 16:51:19 +0200263void scm_request_finish(struct scm_request *scmrq)
Sebastian Ottf30664e2012-08-28 16:50:38 +0200264{
Sebastian Ott8360cb52013-02-28 12:07:27 +0100265 struct scm_blk_dev *bdev = scmrq->bdev;
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100266 int i;
Sebastian Ott8360cb52013-02-28 12:07:27 +0100267
Sebastian Ott0d804b22012-08-28 16:51:19 +0200268 scm_release_cluster(scmrq);
Sebastian Ott86223842014-12-05 16:47:17 +0100269 for (i = 0; i < nr_requests_per_io && scmrq->request[i]; i++)
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100270 blk_end_request_all(scmrq->request[i], scmrq->error);
271
Sebastian Ott8360cb52013-02-28 12:07:27 +0100272 atomic_dec(&bdev->queued_reqs);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200273 scm_request_done(scmrq);
274}
275
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100276static int scm_request_start(struct scm_request *scmrq)
277{
278 struct scm_blk_dev *bdev = scmrq->bdev;
279 int ret;
280
281 atomic_inc(&bdev->queued_reqs);
282 if (!scmrq->aob->request.msb_count) {
283 scm_request_requeue(scmrq);
284 return -EINVAL;
285 }
286
287 ret = eadm_start_aob(scmrq->aob);
288 if (ret) {
289 SCM_LOG(5, "no subchannel");
290 scm_request_requeue(scmrq);
291 }
292 return ret;
293}
294
Sebastian Ottf30664e2012-08-28 16:50:38 +0200295static void scm_blk_request(struct request_queue *rq)
296{
297 struct scm_device *scmdev = rq->queuedata;
298 struct scm_blk_dev *bdev = dev_get_drvdata(&scmdev->dev);
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100299 struct scm_request *scmrq = NULL;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200300 struct request *req;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200301
302 while ((req = blk_peek_request(rq))) {
Steffen Maierde9587a2013-11-05 12:59:46 +0100303 if (req->cmd_type != REQ_TYPE_FS) {
304 blk_start_request(req);
305 blk_dump_rq_flags(req, KMSG_COMPONENT " bad request");
Sebastian Ottb707c65a2016-03-22 19:00:55 +0100306 __blk_end_request_all(req, -EIO);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200307 continue;
Steffen Maierde9587a2013-11-05 12:59:46 +0100308 }
Sebastian Ottf30664e2012-08-28 16:50:38 +0200309
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100310 if (!scm_permit_request(bdev, req))
311 goto out;
312
Sebastian Ottf30664e2012-08-28 16:50:38 +0200313 if (!scmrq) {
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100314 scmrq = scm_request_fetch();
315 if (!scmrq) {
316 SCM_LOG(5, "no request");
317 goto out;
318 }
319 scm_request_init(bdev, scmrq);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200320 }
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100321 scm_request_set(scmrq, req);
322
Sebastian Ott0d804b22012-08-28 16:51:19 +0200323 if (!scm_reserve_cluster(scmrq)) {
324 SCM_LOG(5, "cluster busy");
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100325 scm_request_set(scmrq, NULL);
326 if (scmrq->aob->request.msb_count)
327 goto out;
328
Sebastian Ott0d804b22012-08-28 16:51:19 +0200329 scm_request_done(scmrq);
330 return;
331 }
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100332
Sebastian Ott0d804b22012-08-28 16:51:19 +0200333 if (scm_need_cluster_request(scmrq)) {
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100334 if (scmrq->aob->request.msb_count) {
335 /* Start cluster requests separately. */
336 scm_request_set(scmrq, NULL);
337 if (scm_request_start(scmrq))
338 return;
339 } else {
340 atomic_inc(&bdev->queued_reqs);
341 blk_start_request(req);
342 scm_initiate_cluster_request(scmrq);
343 }
344 scmrq = NULL;
345 continue;
Sebastian Ott0d804b22012-08-28 16:51:19 +0200346 }
Sebastian Ott9d4df772014-12-05 16:32:13 +0100347
348 if (scm_request_prepare(scmrq)) {
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100349 SCM_LOG(5, "aidaw alloc failed");
350 scm_request_set(scmrq, NULL);
351 goto out;
Sebastian Ott9d4df772014-12-05 16:32:13 +0100352 }
Sebastian Ottf30664e2012-08-28 16:50:38 +0200353 blk_start_request(req);
354
Sebastian Ott86223842014-12-05 16:47:17 +0100355 if (scmrq->aob->request.msb_count < nr_requests_per_io)
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100356 continue;
357
358 if (scm_request_start(scmrq))
Sebastian Ottf30664e2012-08-28 16:50:38 +0200359 return;
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100360
361 scmrq = NULL;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200362 }
Sebastian Ottbbc610a2014-12-05 16:43:58 +0100363out:
364 if (scmrq)
365 scm_request_start(scmrq);
366 else
367 scm_ensure_queue_restart(bdev);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200368}
369
370static void __scmrq_log_error(struct scm_request *scmrq)
371{
372 struct aob *aob = scmrq->aob;
373
374 if (scmrq->error == -ETIMEDOUT)
375 SCM_LOG(1, "Request timeout");
376 else {
377 SCM_LOG(1, "Request error");
378 SCM_LOG_HEX(1, &aob->response, sizeof(aob->response));
379 }
380 if (scmrq->retries)
381 SCM_LOG(1, "Retry request");
382 else
383 pr_err("An I/O operation to SCM failed with rc=%d\n",
384 scmrq->error);
385}
386
387void scm_blk_irq(struct scm_device *scmdev, void *data, int error)
388{
389 struct scm_request *scmrq = data;
390 struct scm_blk_dev *bdev = scmrq->bdev;
391
392 scmrq->error = error;
393 if (error)
394 __scmrq_log_error(scmrq);
395
396 spin_lock(&bdev->lock);
397 list_add_tail(&scmrq->list, &bdev->finished_requests);
398 spin_unlock(&bdev->lock);
399 tasklet_hi_schedule(&bdev->tasklet);
400}
401
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100402static void scm_blk_handle_error(struct scm_request *scmrq)
403{
404 struct scm_blk_dev *bdev = scmrq->bdev;
405 unsigned long flags;
406
407 if (scmrq->error != -EIO)
408 goto restart;
409
410 /* For -EIO the response block is valid. */
411 switch (scmrq->aob->response.eqc) {
412 case EQC_WR_PROHIBIT:
413 spin_lock_irqsave(&bdev->lock, flags);
414 if (bdev->state != SCM_WR_PROHIBIT)
Sebastian Ott3bff6032013-03-18 16:01:30 +0100415 pr_info("%lx: Write access to the SCM increment is suspended\n",
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100416 (unsigned long) bdev->scmdev->address);
417 bdev->state = SCM_WR_PROHIBIT;
418 spin_unlock_irqrestore(&bdev->lock, flags);
419 goto requeue;
420 default:
421 break;
422 }
423
424restart:
Sebastian Ott605c3692013-11-14 10:44:56 +0100425 if (!eadm_start_aob(scmrq->aob))
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100426 return;
427
428requeue:
429 spin_lock_irqsave(&bdev->rq_lock, flags);
430 scm_request_requeue(scmrq);
431 spin_unlock_irqrestore(&bdev->rq_lock, flags);
432}
433
Sebastian Ottf30664e2012-08-28 16:50:38 +0200434static void scm_blk_tasklet(struct scm_blk_dev *bdev)
435{
436 struct scm_request *scmrq;
437 unsigned long flags;
438
439 spin_lock_irqsave(&bdev->lock, flags);
440 while (!list_empty(&bdev->finished_requests)) {
441 scmrq = list_first_entry(&bdev->finished_requests,
442 struct scm_request, list);
443 list_del(&scmrq->list);
444 spin_unlock_irqrestore(&bdev->lock, flags);
445
446 if (scmrq->error && scmrq->retries-- > 0) {
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100447 scm_blk_handle_error(scmrq);
448
Sebastian Ottf30664e2012-08-28 16:50:38 +0200449 /* Request restarted or requeued, handle next. */
450 spin_lock_irqsave(&bdev->lock, flags);
451 continue;
452 }
Sebastian Ott0d804b22012-08-28 16:51:19 +0200453
454 if (scm_test_cluster_request(scmrq)) {
455 scm_cluster_request_irq(scmrq);
456 spin_lock_irqsave(&bdev->lock, flags);
457 continue;
458 }
459
Sebastian Ottf30664e2012-08-28 16:50:38 +0200460 scm_request_finish(scmrq);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200461 spin_lock_irqsave(&bdev->lock, flags);
462 }
463 spin_unlock_irqrestore(&bdev->lock, flags);
464 /* Look out for more requests. */
465 blk_run_queue(bdev->rq);
466}
467
Sebastian Ott605c3692013-11-14 10:44:56 +0100468static const struct block_device_operations scm_blk_devops = {
469 .owner = THIS_MODULE,
470};
471
Sebastian Ottf30664e2012-08-28 16:50:38 +0200472int scm_blk_dev_setup(struct scm_blk_dev *bdev, struct scm_device *scmdev)
473{
474 struct request_queue *rq;
475 int len, ret = -ENOMEM;
476 unsigned int devindex, nr_max_blk;
477
478 devindex = atomic_inc_return(&nr_devices) - 1;
479 /* scma..scmz + scmaa..scmzz */
480 if (devindex > 701) {
481 ret = -ENODEV;
482 goto out;
483 }
484
485 bdev->scmdev = scmdev;
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100486 bdev->state = SCM_OPER;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200487 spin_lock_init(&bdev->rq_lock);
488 spin_lock_init(&bdev->lock);
489 INIT_LIST_HEAD(&bdev->finished_requests);
490 atomic_set(&bdev->queued_reqs, 0);
491 tasklet_init(&bdev->tasklet,
492 (void (*)(unsigned long)) scm_blk_tasklet,
493 (unsigned long) bdev);
494
495 rq = blk_init_queue(scm_blk_request, &bdev->rq_lock);
496 if (!rq)
497 goto out;
498
499 bdev->rq = rq;
500 nr_max_blk = min(scmdev->nr_max_block,
501 (unsigned int) (PAGE_SIZE / sizeof(struct aidaw)));
502
503 blk_queue_logical_block_size(rq, 1 << 12);
504 blk_queue_max_hw_sectors(rq, nr_max_blk << 3); /* 8 * 512 = blk_size */
505 blk_queue_max_segments(rq, nr_max_blk);
506 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, rq);
Mike Snitzerb277da02014-10-04 10:55:32 -0600507 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, rq);
Sebastian Ott0d804b22012-08-28 16:51:19 +0200508 scm_blk_dev_cluster_setup(bdev);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200509
510 bdev->gendisk = alloc_disk(SCM_NR_PARTS);
511 if (!bdev->gendisk)
512 goto out_queue;
513
514 rq->queuedata = scmdev;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200515 bdev->gendisk->private_data = scmdev;
516 bdev->gendisk->fops = &scm_blk_devops;
517 bdev->gendisk->queue = rq;
518 bdev->gendisk->major = scm_major;
519 bdev->gendisk->first_minor = devindex * SCM_NR_PARTS;
520
521 len = snprintf(bdev->gendisk->disk_name, DISK_NAME_LEN, "scm");
522 if (devindex > 25) {
523 len += snprintf(bdev->gendisk->disk_name + len,
524 DISK_NAME_LEN - len, "%c",
525 'a' + (devindex / 26) - 1);
526 devindex = devindex % 26;
527 }
528 snprintf(bdev->gendisk->disk_name + len, DISK_NAME_LEN - len, "%c",
529 'a' + devindex);
530
531 /* 512 byte sectors */
532 set_capacity(bdev->gendisk, scmdev->size >> 9);
Dan Williams0d52c7562016-06-15 19:44:20 -0700533 device_add_disk(&scmdev->dev, bdev->gendisk);
Sebastian Ottf30664e2012-08-28 16:50:38 +0200534 return 0;
535
536out_queue:
537 blk_cleanup_queue(rq);
538out:
539 atomic_dec(&nr_devices);
540 return ret;
541}
542
543void scm_blk_dev_cleanup(struct scm_blk_dev *bdev)
544{
545 tasklet_kill(&bdev->tasklet);
546 del_gendisk(bdev->gendisk);
547 blk_cleanup_queue(bdev->gendisk->queue);
548 put_disk(bdev->gendisk);
549}
550
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100551void scm_blk_set_available(struct scm_blk_dev *bdev)
552{
553 unsigned long flags;
554
555 spin_lock_irqsave(&bdev->lock, flags);
556 if (bdev->state == SCM_WR_PROHIBIT)
Sebastian Ott3bff6032013-03-18 16:01:30 +0100557 pr_info("%lx: Write access to the SCM increment is restored\n",
Sebastian Ott4fa3c012013-02-28 12:07:48 +0100558 (unsigned long) bdev->scmdev->address);
559 bdev->state = SCM_OPER;
560 spin_unlock_irqrestore(&bdev->lock, flags);
561}
562
Sebastian Ott86223842014-12-05 16:47:17 +0100563static bool __init scm_blk_params_valid(void)
564{
565 if (!nr_requests_per_io || nr_requests_per_io > 64)
566 return false;
567
568 return scm_cluster_size_valid();
569}
570
Sebastian Ottf30664e2012-08-28 16:50:38 +0200571static int __init scm_blk_init(void)
572{
Sebastian Ott0d804b22012-08-28 16:51:19 +0200573 int ret = -EINVAL;
574
Sebastian Ott86223842014-12-05 16:47:17 +0100575 if (!scm_blk_params_valid())
Sebastian Ott0d804b22012-08-28 16:51:19 +0200576 goto out;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200577
578 ret = register_blkdev(0, "scm");
579 if (ret < 0)
580 goto out;
581
582 scm_major = ret;
Wei Yongjun94f98522013-03-20 13:40:54 +0100583 ret = scm_alloc_rqs(nr_requests);
584 if (ret)
Sebastian Ottfff60fa2013-04-25 13:03:18 +0200585 goto out_free;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200586
587 scm_debug = debug_register("scm_log", 16, 1, 16);
Wei Yongjun94f98522013-03-20 13:40:54 +0100588 if (!scm_debug) {
589 ret = -ENOMEM;
Sebastian Ottf30664e2012-08-28 16:50:38 +0200590 goto out_free;
Wei Yongjun94f98522013-03-20 13:40:54 +0100591 }
Sebastian Ottf30664e2012-08-28 16:50:38 +0200592
593 debug_register_view(scm_debug, &debug_hex_ascii_view);
594 debug_set_level(scm_debug, 2);
595
596 ret = scm_drv_init();
597 if (ret)
598 goto out_dbf;
599
600 return ret;
601
602out_dbf:
603 debug_unregister(scm_debug);
604out_free:
605 scm_free_rqs();
Sebastian Ottf30664e2012-08-28 16:50:38 +0200606 unregister_blkdev(scm_major, "scm");
607out:
608 return ret;
609}
610module_init(scm_blk_init);
611
612static void __exit scm_blk_cleanup(void)
613{
614 scm_drv_cleanup();
615 debug_unregister(scm_debug);
616 scm_free_rqs();
617 unregister_blkdev(scm_major, "scm");
618}
619module_exit(scm_blk_cleanup);