blob: 8c7f5bf81975a194123772830b135a84eeead716 [file] [log] [blame]
Matias Bjørlingca4b2a02018-07-06 19:38:39 +02001// SPDX-License-Identifier: GPL-2.0
2#include <linux/vmalloc.h>
3#include "null_blk.h"
4
5/* zone_size in MBs to sectors. */
6#define ZONE_SIZE_SHIFT 11
7
8static inline unsigned int null_zone_no(struct nullb_device *dev, sector_t sect)
9{
10 return sect >> ilog2(dev->zone_size_sects);
11}
12
13int null_zone_init(struct nullb_device *dev)
14{
15 sector_t dev_size = (sector_t)dev->size * 1024 * 1024;
16 sector_t sector = 0;
17 unsigned int i;
18
19 if (!is_power_of_2(dev->zone_size)) {
20 pr_err("null_blk: zone_size must be power-of-two\n");
21 return -EINVAL;
22 }
23
24 dev->zone_size_sects = dev->zone_size << ZONE_SIZE_SHIFT;
25 dev->nr_zones = dev_size >>
26 (SECTOR_SHIFT + ilog2(dev->zone_size_sects));
27 dev->zones = kvmalloc_array(dev->nr_zones, sizeof(struct blk_zone),
28 GFP_KERNEL | __GFP_ZERO);
29 if (!dev->zones)
30 return -ENOMEM;
31
Masato Suzukiea2c18e2018-10-30 16:14:05 +090032 if (dev->zone_nr_conv >= dev->nr_zones) {
33 dev->zone_nr_conv = dev->nr_zones - 1;
34 pr_info("null_blk: changed the number of conventional zones to %u",
35 dev->zone_nr_conv);
36 }
37
38 for (i = 0; i < dev->zone_nr_conv; i++) {
39 struct blk_zone *zone = &dev->zones[i];
40
41 zone->start = sector;
42 zone->len = dev->zone_size_sects;
43 zone->wp = zone->start + zone->len;
44 zone->type = BLK_ZONE_TYPE_CONVENTIONAL;
45 zone->cond = BLK_ZONE_COND_NOT_WP;
46
47 sector += dev->zone_size_sects;
48 }
49
50 for (i = dev->zone_nr_conv; i < dev->nr_zones; i++) {
Matias Bjørlingca4b2a02018-07-06 19:38:39 +020051 struct blk_zone *zone = &dev->zones[i];
52
53 zone->start = zone->wp = sector;
54 zone->len = dev->zone_size_sects;
55 zone->type = BLK_ZONE_TYPE_SEQWRITE_REQ;
56 zone->cond = BLK_ZONE_COND_EMPTY;
57
58 sector += dev->zone_size_sects;
59 }
60
61 return 0;
62}
63
64void null_zone_exit(struct nullb_device *dev)
65{
66 kvfree(dev->zones);
67}
68
Christoph Hellwige76239a2018-10-12 19:08:49 +090069int null_zone_report(struct gendisk *disk, sector_t sector,
Damien Le Moalbd976e52019-07-01 14:09:16 +090070 struct blk_zone *zones, unsigned int *nr_zones)
Matias Bjørlingca4b2a02018-07-06 19:38:39 +020071{
Christoph Hellwige76239a2018-10-12 19:08:49 +090072 struct nullb *nullb = disk->private_data;
Matias Bjørlingca4b2a02018-07-06 19:38:39 +020073 struct nullb_device *dev = nullb->dev;
Christoph Hellwige76239a2018-10-12 19:08:49 +090074 unsigned int zno, nrz = 0;
Matias Bjørlingca4b2a02018-07-06 19:38:39 +020075
Christoph Hellwige76239a2018-10-12 19:08:49 +090076 zno = null_zone_no(dev, sector);
77 if (zno < dev->nr_zones) {
78 nrz = min_t(unsigned int, *nr_zones, dev->nr_zones - zno);
79 memcpy(zones, &dev->zones[zno], nrz * sizeof(struct blk_zone));
80 }
81
82 *nr_zones = nrz;
83
84 return 0;
Matias Bjørlingca4b2a02018-07-06 19:38:39 +020085}
86
Jens Axboeb228ba12018-09-12 18:21:11 -060087void null_zone_write(struct nullb_cmd *cmd, sector_t sector,
88 unsigned int nr_sectors)
Matias Bjørlingca4b2a02018-07-06 19:38:39 +020089{
90 struct nullb_device *dev = cmd->nq->dev;
Matias Bjørlingca4b2a02018-07-06 19:38:39 +020091 unsigned int zno = null_zone_no(dev, sector);
92 struct blk_zone *zone = &dev->zones[zno];
93
94 switch (zone->cond) {
95 case BLK_ZONE_COND_FULL:
96 /* Cannot write to a full zone */
97 cmd->error = BLK_STS_IOERR;
98 break;
99 case BLK_ZONE_COND_EMPTY:
100 case BLK_ZONE_COND_IMP_OPEN:
101 /* Writes must be at the write pointer position */
Jens Axboeb228ba12018-09-12 18:21:11 -0600102 if (sector != zone->wp) {
Matias Bjørlingca4b2a02018-07-06 19:38:39 +0200103 cmd->error = BLK_STS_IOERR;
104 break;
105 }
106
107 if (zone->cond == BLK_ZONE_COND_EMPTY)
108 zone->cond = BLK_ZONE_COND_IMP_OPEN;
109
Jens Axboeb228ba12018-09-12 18:21:11 -0600110 zone->wp += nr_sectors;
Matias Bjørlingca4b2a02018-07-06 19:38:39 +0200111 if (zone->wp == zone->start + zone->len)
112 zone->cond = BLK_ZONE_COND_FULL;
113 break;
Masato Suzukiea2c18e2018-10-30 16:14:05 +0900114 case BLK_ZONE_COND_NOT_WP:
115 break;
Matias Bjørlingca4b2a02018-07-06 19:38:39 +0200116 default:
117 /* Invalid zone condition */
118 cmd->error = BLK_STS_IOERR;
119 break;
120 }
121}
122
Jens Axboeb228ba12018-09-12 18:21:11 -0600123void null_zone_reset(struct nullb_cmd *cmd, sector_t sector)
Matias Bjørlingca4b2a02018-07-06 19:38:39 +0200124{
125 struct nullb_device *dev = cmd->nq->dev;
Jens Axboeb228ba12018-09-12 18:21:11 -0600126 unsigned int zno = null_zone_no(dev, sector);
Matias Bjørlingca4b2a02018-07-06 19:38:39 +0200127 struct blk_zone *zone = &dev->zones[zno];
Chaitanya Kulkarnia61dbfb2019-08-01 10:26:38 -0700128 size_t i;
Matias Bjørlingca4b2a02018-07-06 19:38:39 +0200129
Chaitanya Kulkarnia61dbfb2019-08-01 10:26:38 -0700130 switch (req_op(cmd->rq)) {
131 case REQ_OP_ZONE_RESET_ALL:
132 for (i = 0; i < dev->nr_zones; i++) {
133 if (zone[i].type == BLK_ZONE_TYPE_CONVENTIONAL)
134 continue;
135 zone[i].cond = BLK_ZONE_COND_EMPTY;
136 zone[i].wp = zone[i].start;
137 }
138 break;
139 case REQ_OP_ZONE_RESET:
140 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL) {
141 cmd->error = BLK_STS_IOERR;
142 return;
143 }
144
145 zone->cond = BLK_ZONE_COND_EMPTY;
146 zone->wp = zone->start;
147 break;
148 default:
149 cmd->error = BLK_STS_NOTSUPP;
150 break;
Masato Suzukiea2c18e2018-10-30 16:14:05 +0900151 }
Matias Bjørlingca4b2a02018-07-06 19:38:39 +0200152}