blob: a340af797a850d68010ebb4b600318122fa0227d [file] [log] [blame]
Hannes Reinecke89d94752016-10-18 15:40:34 +09001/*
2 * SCSI Zoned Block commands
3 *
4 * Copyright (C) 2014-2015 SUSE Linux GmbH
5 * Written by: Hannes Reinecke <hare@suse.de>
6 * Modified by: Damien Le Moal <damien.lemoal@hgst.com>
7 * Modified by: Shaun Tancheff <shaun.tancheff@seagate.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version
11 * 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; see the file COPYING. If not, write to
20 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
21 * USA.
22 *
23 */
24
25#include <linux/blkdev.h>
26
27#include <asm/unaligned.h>
28
29#include <scsi/scsi.h>
30#include <scsi/scsi_cmnd.h>
Hannes Reinecke89d94752016-10-18 15:40:34 +090031
32#include "sd.h"
Hannes Reinecke89d94752016-10-18 15:40:34 +090033
34/**
Damien Le Moale98f42b2017-10-11 05:54:22 +090035 * sd_zbc_parse_report - Convert a zone descriptor to a struct blk_zone,
36 * @sdkp: The disk the report originated from
37 * @buf: Address of the report zone descriptor
38 * @zone: the destination zone structure
39 *
40 * All LBA sized values are converted to 512B sectors unit.
Hannes Reinecke89d94752016-10-18 15:40:34 +090041 */
Damien Le Moale98f42b2017-10-11 05:54:22 +090042static void sd_zbc_parse_report(struct scsi_disk *sdkp, u8 *buf,
Hannes Reinecke89d94752016-10-18 15:40:34 +090043 struct blk_zone *zone)
44{
45 struct scsi_device *sdp = sdkp->device;
46
47 memset(zone, 0, sizeof(struct blk_zone));
48
49 zone->type = buf[0] & 0x0f;
50 zone->cond = (buf[1] >> 4) & 0xf;
51 if (buf[1] & 0x01)
52 zone->reset = 1;
53 if (buf[1] & 0x02)
54 zone->non_seq = 1;
55
56 zone->len = logical_to_sectors(sdp, get_unaligned_be64(&buf[8]));
57 zone->start = logical_to_sectors(sdp, get_unaligned_be64(&buf[16]));
58 zone->wp = logical_to_sectors(sdp, get_unaligned_be64(&buf[24]));
59 if (zone->type != ZBC_ZONE_TYPE_CONV &&
60 zone->cond == ZBC_ZONE_COND_FULL)
61 zone->wp = zone->start + zone->len;
62}
63
64/**
Christoph Hellwige76239a2018-10-12 19:08:49 +090065 * sd_zbc_do_report_zones - Issue a REPORT ZONES scsi command.
Damien Le Moale98f42b2017-10-11 05:54:22 +090066 * @sdkp: The target disk
67 * @buf: Buffer to use for the reply
68 * @buflen: the buffer size
69 * @lba: Start LBA of the report
Damien Le Moald2e428e2018-10-12 19:08:41 +090070 * @partial: Do partial report
Damien Le Moale98f42b2017-10-11 05:54:22 +090071 *
72 * For internal use during device validation.
Damien Le Moald2e428e2018-10-12 19:08:41 +090073 * Using partial=true can significantly speed up execution of a report zones
74 * command because the disk does not have to count all possible report matching
75 * zones and will only report the count of zones fitting in the command reply
76 * buffer.
Hannes Reinecke89d94752016-10-18 15:40:34 +090077 */
Christoph Hellwige76239a2018-10-12 19:08:49 +090078static int sd_zbc_do_report_zones(struct scsi_disk *sdkp, unsigned char *buf,
79 unsigned int buflen, sector_t lba,
80 bool partial)
Hannes Reinecke89d94752016-10-18 15:40:34 +090081{
82 struct scsi_device *sdp = sdkp->device;
83 const int timeout = sdp->request_queue->rq_timeout;
84 struct scsi_sense_hdr sshdr;
85 unsigned char cmd[16];
86 unsigned int rep_len;
87 int result;
88
89 memset(cmd, 0, 16);
90 cmd[0] = ZBC_IN;
91 cmd[1] = ZI_REPORT_ZONES;
92 put_unaligned_be64(lba, &cmd[2]);
93 put_unaligned_be32(buflen, &cmd[10]);
Damien Le Moald2e428e2018-10-12 19:08:41 +090094 if (partial)
95 cmd[14] = ZBC_REPORT_ZONE_PARTIAL;
Hannes Reinecke89d94752016-10-18 15:40:34 +090096 memset(buf, 0, buflen);
97
98 result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
99 buf, buflen, &sshdr,
100 timeout, SD_MAX_RETRIES, NULL);
101 if (result) {
102 sd_printk(KERN_ERR, sdkp,
103 "REPORT ZONES lba %llu failed with %d/%d\n",
104 (unsigned long long)lba,
105 host_byte(result), driver_byte(result));
106 return -EIO;
107 }
108
109 rep_len = get_unaligned_be32(&buf[0]);
110 if (rep_len < 64) {
111 sd_printk(KERN_ERR, sdkp,
112 "REPORT ZONES report invalid length %u\n",
113 rep_len);
114 return -EIO;
115 }
116
117 return 0;
118}
119
Damien Le Moale98f42b2017-10-11 05:54:22 +0900120/**
Christoph Hellwige76239a2018-10-12 19:08:49 +0900121 * sd_zbc_report_zones - Disk report zones operation.
122 * @disk: The target disk
123 * @sector: Start 512B sector of the report
124 * @zones: Array of zone descriptors
125 * @nr_zones: Number of descriptors in the array
126 * @gfp_mask: Memory allocation mask
Damien Le Moale98f42b2017-10-11 05:54:22 +0900127 *
Christoph Hellwige76239a2018-10-12 19:08:49 +0900128 * Execute a report zones command on the target disk.
Damien Le Moale98f42b2017-10-11 05:54:22 +0900129 */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900130int sd_zbc_report_zones(struct gendisk *disk, sector_t sector,
131 struct blk_zone *zones, unsigned int *nr_zones,
132 gfp_t gfp_mask)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900133{
Christoph Hellwige76239a2018-10-12 19:08:49 +0900134 struct scsi_disk *sdkp = scsi_disk(disk);
135 unsigned int i, buflen, nrz = *nr_zones;
136 unsigned char *buf;
137 size_t offset = 0;
138 int ret = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900139
140 if (!sd_is_zoned(sdkp))
141 /* Not a zoned device */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900142 return -EOPNOTSUPP;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900143
Christoph Hellwige76239a2018-10-12 19:08:49 +0900144 /*
Masato Suzuki515ce602019-02-14 15:01:18 +0900145 * Get a reply buffer for the number of requested zones plus a header,
146 * without exceeding the device maximum command size. For ATA disks,
147 * buffers must be aligned to 512B.
Christoph Hellwige76239a2018-10-12 19:08:49 +0900148 */
Masato Suzuki515ce602019-02-14 15:01:18 +0900149 buflen = min(queue_max_hw_sectors(disk->queue) << 9,
150 roundup((nrz + 1) * 64, 512));
Christoph Hellwige76239a2018-10-12 19:08:49 +0900151 buf = kmalloc(buflen, gfp_mask);
152 if (!buf)
153 return -ENOMEM;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900154
Christoph Hellwige76239a2018-10-12 19:08:49 +0900155 ret = sd_zbc_do_report_zones(sdkp, buf, buflen,
156 sectors_to_logical(sdkp->device, sector), true);
157 if (ret)
158 goto out_free_buf;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900159
Christoph Hellwige76239a2018-10-12 19:08:49 +0900160 nrz = min(nrz, get_unaligned_be32(&buf[0]) / 64);
161 for (i = 0; i < nrz; i++) {
162 offset += 64;
163 sd_zbc_parse_report(sdkp, buf + offset, zones);
164 zones++;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900165 }
Christoph Hellwige76239a2018-10-12 19:08:49 +0900166
167 *nr_zones = nrz;
168
169out_free_buf:
170 kfree(buf);
171
172 return ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900173}
174
Damien Le Moale98f42b2017-10-11 05:54:22 +0900175/**
176 * sd_zbc_zone_sectors - Get the device zone size in number of 512B sectors.
177 * @sdkp: The target disk
178 */
Hannes Reinecke89d94752016-10-18 15:40:34 +0900179static inline sector_t sd_zbc_zone_sectors(struct scsi_disk *sdkp)
180{
181 return logical_to_sectors(sdkp->device, sdkp->zone_blocks);
182}
183
Damien Le Moale98f42b2017-10-11 05:54:22 +0900184/**
Damien Le Moale98f42b2017-10-11 05:54:22 +0900185 * sd_zbc_setup_reset_cmnd - Prepare a RESET WRITE POINTER scsi command.
186 * @cmd: the command to setup
187 *
188 * Called from sd_init_command() for a REQ_OP_ZONE_RESET request.
189 */
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100190blk_status_t sd_zbc_setup_reset_cmnd(struct scsi_cmnd *cmd)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900191{
192 struct request *rq = cmd->request;
193 struct scsi_disk *sdkp = scsi_disk(rq->rq_disk);
194 sector_t sector = blk_rq_pos(rq);
195 sector_t block = sectors_to_logical(sdkp->device, sector);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900196
197 if (!sd_is_zoned(sdkp))
198 /* Not a zoned device */
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100199 return BLK_STS_IOERR;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900200
201 if (sdkp->device->changed)
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100202 return BLK_STS_IOERR;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900203
204 if (sector & (sd_zbc_zone_sectors(sdkp) - 1))
205 /* Unaligned request */
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100206 return BLK_STS_IOERR;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900207
Hannes Reinecke89d94752016-10-18 15:40:34 +0900208 cmd->cmd_len = 16;
209 memset(cmd->cmnd, 0, cmd->cmd_len);
210 cmd->cmnd[0] = ZBC_OUT;
211 cmd->cmnd[1] = ZO_RESET_WRITE_POINTER;
212 put_unaligned_be64(block, &cmd->cmnd[2]);
213
214 rq->timeout = SD_TIMEOUT;
215 cmd->sc_data_direction = DMA_NONE;
216 cmd->transfersize = 0;
217 cmd->allowed = 0;
218
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100219 return BLK_STS_OK;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900220}
221
Damien Le Moale98f42b2017-10-11 05:54:22 +0900222/**
Damien Le Moale98f42b2017-10-11 05:54:22 +0900223 * sd_zbc_complete - ZBC command post processing.
224 * @cmd: Completed command
225 * @good_bytes: Command reply bytes
226 * @sshdr: command sense header
227 *
228 * Called from sd_done(). Process report zones reply and handle reset zone
229 * and write commands errors.
230 */
231void sd_zbc_complete(struct scsi_cmnd *cmd, unsigned int good_bytes,
Hannes Reinecke89d94752016-10-18 15:40:34 +0900232 struct scsi_sense_hdr *sshdr)
233{
234 int result = cmd->result;
235 struct request *rq = cmd->request;
236
237 switch (req_op(rq)) {
Damien Le Moal868ed5a2017-04-24 16:51:15 +0900238 case REQ_OP_ZONE_RESET:
239
240 if (result &&
241 sshdr->sense_key == ILLEGAL_REQUEST &&
242 sshdr->asc == 0x24)
243 /*
244 * INVALID FIELD IN CDB error: reset of a conventional
245 * zone was attempted. Nothing to worry about, so be
246 * quiet about the error.
247 */
248 rq->rq_flags |= RQF_QUIET;
249 break;
250
Hannes Reinecke89d94752016-10-18 15:40:34 +0900251 case REQ_OP_WRITE:
Christoph Hellwig02d26102017-04-05 19:21:02 +0200252 case REQ_OP_WRITE_ZEROES:
Hannes Reinecke89d94752016-10-18 15:40:34 +0900253 case REQ_OP_WRITE_SAME:
Hannes Reinecke89d94752016-10-18 15:40:34 +0900254 break;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900255 }
256}
257
258/**
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900259 * sd_zbc_check_zoned_characteristics - Check zoned block device characteristics
Damien Le Moale98f42b2017-10-11 05:54:22 +0900260 * @sdkp: Target disk
261 * @buf: Buffer where to store the VPD page data
262 *
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900263 * Read VPD page B6, get information and check that reads are unconstrained.
Hannes Reinecke89d94752016-10-18 15:40:34 +0900264 */
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900265static int sd_zbc_check_zoned_characteristics(struct scsi_disk *sdkp,
266 unsigned char *buf)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900267{
268
269 if (scsi_get_vpd_page(sdkp->device, 0xb6, buf, 64)) {
270 sd_printk(KERN_NOTICE, sdkp,
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900271 "Read zoned characteristics VPD page failed\n");
Hannes Reinecke89d94752016-10-18 15:40:34 +0900272 return -ENODEV;
273 }
274
275 if (sdkp->device->type != TYPE_ZBC) {
276 /* Host-aware */
277 sdkp->urswrz = 1;
Damien Le Moal4a109032017-10-11 05:54:25 +0900278 sdkp->zones_optimal_open = get_unaligned_be32(&buf[8]);
279 sdkp->zones_optimal_nonseq = get_unaligned_be32(&buf[12]);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900280 sdkp->zones_max_open = 0;
281 } else {
282 /* Host-managed */
283 sdkp->urswrz = buf[4] & 1;
284 sdkp->zones_optimal_open = 0;
285 sdkp->zones_optimal_nonseq = 0;
Damien Le Moal4a109032017-10-11 05:54:25 +0900286 sdkp->zones_max_open = get_unaligned_be32(&buf[16]);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900287 }
288
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900289 /*
290 * Check for unconstrained reads: host-managed devices with
291 * constrained reads (drives failing read after write pointer)
292 * are not supported.
293 */
294 if (!sdkp->urswrz) {
295 if (sdkp->first_scan)
296 sd_printk(KERN_NOTICE, sdkp,
297 "constrained reads devices are not supported\n");
298 return -ENODEV;
299 }
300
Hannes Reinecke89d94752016-10-18 15:40:34 +0900301 return 0;
302}
303
Damien Le Moale8c77ec2017-10-11 05:54:24 +0900304#define SD_ZBC_BUF_SIZE 131072U
Hannes Reinecke89d94752016-10-18 15:40:34 +0900305
Damien Le Moale98f42b2017-10-11 05:54:22 +0900306/**
Damien Le Moald2e428e2018-10-12 19:08:41 +0900307 * sd_zbc_check_zones - Check the device capacity and zone sizes
Damien Le Moale98f42b2017-10-11 05:54:22 +0900308 * @sdkp: Target disk
309 *
Damien Le Moald2e428e2018-10-12 19:08:41 +0900310 * Check that the device capacity as reported by READ CAPACITY matches the
311 * max_lba value (plus one)of the report zones command reply. Also check that
312 * all zones of the device have an equal size, only allowing the last zone of
313 * the disk to have a smaller size (runt zone). The zone size must also be a
314 * power of two.
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700315 *
Damien Le Moalf13cff62018-07-03 15:23:58 +0900316 * Returns the zone size in number of blocks upon success or an error code
317 * upon failure.
Damien Le Moale98f42b2017-10-11 05:54:22 +0900318 */
Damien Le Moal5f832a32018-10-12 19:08:42 +0900319static int sd_zbc_check_zones(struct scsi_disk *sdkp, u32 *zblocks)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900320{
Damien Le Moal4b433922018-03-02 07:19:28 +0900321 u64 zone_blocks = 0;
Damien Le Moald2e428e2018-10-12 19:08:41 +0900322 sector_t max_lba, block = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900323 unsigned char *buf;
324 unsigned char *rec;
325 unsigned int buf_len;
326 unsigned int list_length;
Damien Le Moal5f832a32018-10-12 19:08:42 +0900327 int ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900328 u8 same;
329
Hannes Reinecke89d94752016-10-18 15:40:34 +0900330 /* Get a buffer */
331 buf = kmalloc(SD_ZBC_BUF_SIZE, GFP_KERNEL);
332 if (!buf)
333 return -ENOMEM;
334
Damien Le Moald2e428e2018-10-12 19:08:41 +0900335 /* Do a report zone to get max_lba and the same field */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900336 ret = sd_zbc_do_report_zones(sdkp, buf, SD_ZBC_BUF_SIZE, 0, false);
Damien Le Moal4b433922018-03-02 07:19:28 +0900337 if (ret)
338 goto out_free;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900339
Damien Le Moald2e428e2018-10-12 19:08:41 +0900340 if (sdkp->rc_basis == 0) {
341 /* The max_lba field is the capacity of this device */
342 max_lba = get_unaligned_be64(&buf[8]);
343 if (sdkp->capacity != max_lba + 1) {
344 if (sdkp->first_scan)
345 sd_printk(KERN_WARNING, sdkp,
346 "Changing capacity from %llu to max LBA+1 %llu\n",
347 (unsigned long long)sdkp->capacity,
348 (unsigned long long)max_lba + 1);
349 sdkp->capacity = max_lba + 1;
350 }
351 }
352
353 /*
354 * Check same field: for any value other than 0, we know that all zones
355 * have the same size.
356 */
Hannes Reinecke89d94752016-10-18 15:40:34 +0900357 same = buf[4] & 0x0f;
358 if (same > 0) {
359 rec = &buf[64];
360 zone_blocks = get_unaligned_be64(&rec[8]);
361 goto out;
362 }
363
364 /*
365 * Check the size of all zones: all zones must be of
366 * equal size, except the last zone which can be smaller
367 * than other zones.
368 */
369 do {
370
371 /* Parse REPORT ZONES header */
372 list_length = get_unaligned_be32(&buf[0]) + 64;
373 rec = buf + 64;
Damien Le Moale8c77ec2017-10-11 05:54:24 +0900374 buf_len = min(list_length, SD_ZBC_BUF_SIZE);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900375
376 /* Parse zone descriptors */
377 while (rec < buf + buf_len) {
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700378 u64 this_zone_blocks = get_unaligned_be64(&rec[8]);
379
380 if (zone_blocks == 0) {
381 zone_blocks = this_zone_blocks;
382 } else if (this_zone_blocks != zone_blocks &&
383 (block + this_zone_blocks < sdkp->capacity
384 || this_zone_blocks > zone_blocks)) {
Damien Le Moal3aadbe22018-05-31 17:42:40 +0900385 zone_blocks = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900386 goto out;
387 }
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700388 block += this_zone_blocks;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900389 rec += 64;
390 }
391
392 if (block < sdkp->capacity) {
Christoph Hellwige76239a2018-10-12 19:08:49 +0900393 ret = sd_zbc_do_report_zones(sdkp, buf, SD_ZBC_BUF_SIZE,
394 block, true);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900395 if (ret)
Damien Le Moal4b433922018-03-02 07:19:28 +0900396 goto out_free;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900397 }
398
399 } while (block < sdkp->capacity);
400
Hannes Reinecke89d94752016-10-18 15:40:34 +0900401out:
Hannes Reinecke89d94752016-10-18 15:40:34 +0900402 if (!zone_blocks) {
403 if (sdkp->first_scan)
404 sd_printk(KERN_NOTICE, sdkp,
405 "Devices with non constant zone "
406 "size are not supported\n");
Damien Le Moal4b433922018-03-02 07:19:28 +0900407 ret = -ENODEV;
408 } else if (!is_power_of_2(zone_blocks)) {
Hannes Reinecke89d94752016-10-18 15:40:34 +0900409 if (sdkp->first_scan)
410 sd_printk(KERN_NOTICE, sdkp,
411 "Devices with non power of 2 zone "
412 "size are not supported\n");
Damien Le Moal4b433922018-03-02 07:19:28 +0900413 ret = -ENODEV;
414 } else if (logical_to_sectors(sdkp->device, zone_blocks) > UINT_MAX) {
Hannes Reinecke89d94752016-10-18 15:40:34 +0900415 if (sdkp->first_scan)
416 sd_printk(KERN_NOTICE, sdkp,
417 "Zone size too large\n");
Damien Le Moal5f832a32018-10-12 19:08:42 +0900418 ret = -EFBIG;
Damien Le Moal4b433922018-03-02 07:19:28 +0900419 } else {
Damien Le Moal5f832a32018-10-12 19:08:42 +0900420 *zblocks = zone_blocks;
421 ret = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900422 }
423
Damien Le Moal4b433922018-03-02 07:19:28 +0900424out_free:
425 kfree(buf);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900426
Damien Le Moal4b433922018-03-02 07:19:28 +0900427 return ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900428}
429
Damien Le Moale98f42b2017-10-11 05:54:22 +0900430int sd_zbc_read_zones(struct scsi_disk *sdkp, unsigned char *buf)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900431{
Damien Le Moalbf505452018-10-12 19:08:50 +0900432 struct gendisk *disk = sdkp->disk;
433 unsigned int nr_zones;
Damien Le Moal5f832a32018-10-12 19:08:42 +0900434 u32 zone_blocks;
Bart Van Asschef7053242017-04-24 16:51:14 +0900435 int ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900436
437 if (!sd_is_zoned(sdkp))
438 /*
439 * Device managed or normal SCSI disk,
440 * no special handling required
441 */
442 return 0;
443
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900444 /* Check zoned block device characteristics (unconstrained reads) */
445 ret = sd_zbc_check_zoned_characteristics(sdkp, buf);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900446 if (ret)
447 goto err;
448
Hannes Reinecke89d94752016-10-18 15:40:34 +0900449 /*
450 * Check zone size: only devices with a constant zone size (except
451 * an eventual last runt zone) that is a power of 2 are supported.
452 */
Damien Le Moal5f832a32018-10-12 19:08:42 +0900453 ret = sd_zbc_check_zones(sdkp, &zone_blocks);
454 if (ret != 0)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900455 goto err;
456
457 /* The drive satisfies the kernel restrictions: set it up */
Damien Le Moalbf505452018-10-12 19:08:50 +0900458 blk_queue_chunk_sectors(sdkp->disk->queue,
459 logical_to_sectors(sdkp->device, zone_blocks));
460 nr_zones = round_up(sdkp->capacity, zone_blocks) >> ilog2(zone_blocks);
461
462 /* READ16/WRITE16 is mandatory for ZBC disks */
463 sdkp->device->use_16_for_rw = 1;
464 sdkp->device->use_10_for_rw = 0;
465
466 /*
Damien Le Moal88fc41c2019-01-30 15:54:58 +0900467 * Revalidate the disk zone bitmaps once the block device capacity is
468 * set on the second revalidate execution during disk scan and if
469 * something changed when executing a normal revalidate.
Damien Le Moalbf505452018-10-12 19:08:50 +0900470 */
Damien Le Moal88fc41c2019-01-30 15:54:58 +0900471 if (sdkp->first_scan) {
472 sdkp->zone_blocks = zone_blocks;
473 sdkp->nr_zones = nr_zones;
Damien Le Moalbf505452018-10-12 19:08:50 +0900474 return 0;
Damien Le Moal88fc41c2019-01-30 15:54:58 +0900475 }
476
Damien Le Moalbf505452018-10-12 19:08:50 +0900477 if (sdkp->zone_blocks != zone_blocks ||
478 sdkp->nr_zones != nr_zones ||
479 disk->queue->nr_zones != nr_zones) {
480 ret = blk_revalidate_disk_zones(disk);
481 if (ret != 0)
482 goto err;
483 sdkp->zone_blocks = zone_blocks;
484 sdkp->nr_zones = nr_zones;
485 }
Hannes Reinecke89d94752016-10-18 15:40:34 +0900486
Hannes Reinecke89d94752016-10-18 15:40:34 +0900487 return 0;
488
489err:
490 sdkp->capacity = 0;
491
492 return ret;
493}
494
Hannes Reinecke89d94752016-10-18 15:40:34 +0900495void sd_zbc_print_zones(struct scsi_disk *sdkp)
496{
497 if (!sd_is_zoned(sdkp) || !sdkp->capacity)
498 return;
499
500 if (sdkp->capacity & (sdkp->zone_blocks - 1))
501 sd_printk(KERN_NOTICE, sdkp,
502 "%u zones of %u logical blocks + 1 runt zone\n",
503 sdkp->nr_zones - 1,
504 sdkp->zone_blocks);
505 else
506 sd_printk(KERN_NOTICE, sdkp,
507 "%u zones of %u logical blocks\n",
508 sdkp->nr_zones,
509 sdkp->zone_blocks);
510}