Horst Hummel | 138c014 | 2006-06-29 14:58:12 +0200 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * File...........: linux/drivers/s390/block/dasd_diag.c |
| 3 | * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com> |
| 4 | * Based on.......: linux/drivers/s390/block/mdisk.c |
| 5 | * ...............: by Hartmunt Penner <hpenner@de.ibm.com> |
| 6 | * Bugreports.to..: <Linux390@de.ibm.com> |
| 7 | * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000 |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 11 | #define KMSG_COMPONENT "dasd" |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/stddef.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/slab.h> |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 16 | #include <linux/hdreg.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/bio.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/init.h> |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 20 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include <asm/dasd.h> |
| 23 | #include <asm/debug.h> |
| 24 | #include <asm/ebcdic.h> |
| 25 | #include <asm/io.h> |
| 26 | #include <asm/s390_ext.h> |
Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 27 | #include <asm/vtoc.h> |
Michael Holzheu | 0a87c5c | 2007-08-22 13:51:40 +0200 | [diff] [blame] | 28 | #include <asm/diag.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | #include "dasd_int.h" |
| 31 | #include "dasd_diag.h" |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #define PRINTK_HEADER "dasd(diag):" |
| 34 | |
| 35 | MODULE_LICENSE("GPL"); |
| 36 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 37 | /* The maximum number of blocks per request (max_blocks) is dependent on the |
| 38 | * amount of storage that is available in the static I/O buffer for each |
| 39 | * device. Currently each device gets 2 pages. We want to fit two requests |
| 40 | * into the available memory so that we can immediately start the next if one |
| 41 | * finishes. */ |
| 42 | #define DIAG_MAX_BLOCKS (((2 * PAGE_SIZE - sizeof(struct dasd_ccw_req) - \ |
| 43 | sizeof(struct dasd_diag_req)) / \ |
| 44 | sizeof(struct dasd_diag_bio)) / 2) |
| 45 | #define DIAG_MAX_RETRIES 32 |
| 46 | #define DIAG_TIMEOUT 50 * HZ |
| 47 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 48 | static struct dasd_discipline dasd_diag_discipline; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | struct dasd_diag_private { |
| 51 | struct dasd_diag_characteristics rdc_data; |
| 52 | struct dasd_diag_rw_io iob; |
| 53 | struct dasd_diag_init_io iib; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 54 | blocknum_t pt_block; |
Cornelia Huck | 9a92fe4 | 2007-05-10 15:45:42 +0200 | [diff] [blame] | 55 | struct ccw_dev_id dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | struct dasd_diag_req { |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 59 | unsigned int block_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | struct dasd_diag_bio bio[0]; |
| 61 | }; |
| 62 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 63 | static const u8 DASD_DIAG_CMS1[] = { 0xc3, 0xd4, 0xe2, 0xf1 };/* EBCDIC CMS1 */ |
| 64 | |
| 65 | /* Perform DIAG250 call with block I/O parameter list iob (input and output) |
| 66 | * and function code cmd. |
| 67 | * In case of an exception return 3. Otherwise return result of bitwise OR of |
| 68 | * resulting condition code and DIAG return code. */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 69 | static inline int dia250(void *iob, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Peter Oberparleiter | 0443969 | 2007-03-26 20:42:38 +0200 | [diff] [blame] | 71 | register unsigned long reg2 asm ("2") = (unsigned long) iob; |
Peter Oberparleiter | 86b368a | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 72 | typedef union { |
| 73 | struct dasd_diag_init_io init_io; |
| 74 | struct dasd_diag_rw_io rw_io; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 75 | } addr_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | int rc; |
| 77 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 78 | rc = 3; |
| 79 | asm volatile( |
Peter Oberparleiter | 0443969 | 2007-03-26 20:42:38 +0200 | [diff] [blame] | 80 | " diag 2,%2,0x250\n" |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 81 | "0: ipm %0\n" |
| 82 | " srl %0,28\n" |
Peter Oberparleiter | 0443969 | 2007-03-26 20:42:38 +0200 | [diff] [blame] | 83 | " or %0,3\n" |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 84 | "1:\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 85 | EX_TABLE(0b,1b) |
| 86 | : "+d" (rc), "=m" (*(addr_type *) iob) |
Peter Oberparleiter | 0443969 | 2007-03-26 20:42:38 +0200 | [diff] [blame] | 87 | : "d" (cmd), "d" (reg2), "m" (*(addr_type *) iob) |
| 88 | : "3", "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | return rc; |
| 90 | } |
| 91 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 92 | /* Initialize block I/O to DIAG device using the specified blocksize and |
| 93 | * block offset. On success, return zero and set end_block to contain the |
| 94 | * number of blocks on the device minus the specified offset. Return non-zero |
| 95 | * otherwise. */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 96 | static inline int |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 97 | mdsk_init_io(struct dasd_device *device, unsigned int blocksize, |
| 98 | blocknum_t offset, blocknum_t *end_block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
| 100 | struct dasd_diag_private *private; |
| 101 | struct dasd_diag_init_io *iib; |
| 102 | int rc; |
| 103 | |
| 104 | private = (struct dasd_diag_private *) device->private; |
| 105 | iib = &private->iib; |
| 106 | memset(iib, 0, sizeof (struct dasd_diag_init_io)); |
| 107 | |
Cornelia Huck | 9a92fe4 | 2007-05-10 15:45:42 +0200 | [diff] [blame] | 108 | iib->dev_nr = private->dev_id.devno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | iib->block_size = blocksize; |
| 110 | iib->offset = offset; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 111 | iib->flaga = DASD_DIAG_FLAGA_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | rc = dia250(iib, INIT_BIO); |
| 114 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 115 | if ((rc & 3) == 0 && end_block) |
| 116 | *end_block = iib->end_block; |
| 117 | |
| 118 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 121 | /* Remove block I/O environment for device. Return zero on success, non-zero |
| 122 | * otherwise. */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 123 | static inline int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | mdsk_term_io(struct dasd_device * device) |
| 125 | { |
| 126 | struct dasd_diag_private *private; |
| 127 | struct dasd_diag_init_io *iib; |
| 128 | int rc; |
| 129 | |
| 130 | private = (struct dasd_diag_private *) device->private; |
| 131 | iib = &private->iib; |
| 132 | memset(iib, 0, sizeof (struct dasd_diag_init_io)); |
Cornelia Huck | 9a92fe4 | 2007-05-10 15:45:42 +0200 | [diff] [blame] | 133 | iib->dev_nr = private->dev_id.devno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | rc = dia250(iib, TERM_BIO); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 135 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 138 | /* Error recovery for failed DIAG requests - try to reestablish the DIAG |
| 139 | * environment. */ |
| 140 | static void |
| 141 | dasd_diag_erp(struct dasd_device *device) |
| 142 | { |
| 143 | int rc; |
| 144 | |
| 145 | mdsk_term_io(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 146 | rc = mdsk_init_io(device, device->block->bp_block, 0, NULL); |
Stefan Weinhuber | 22825ab | 2009-12-07 12:51:48 +0100 | [diff] [blame] | 147 | if (rc == 4) { |
Stefan Weinhuber | 33b62a3 | 2010-03-08 12:26:24 +0100 | [diff] [blame^] | 148 | if (!(test_and_set_bit(DASD_FLAG_DEVICE_RO, &device->flags))) |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 149 | pr_warning("%s: The access mode of a DIAG device " |
| 150 | "changed to read-only\n", |
| 151 | dev_name(&device->cdev->dev)); |
Stefan Weinhuber | 22825ab | 2009-12-07 12:51:48 +0100 | [diff] [blame] | 152 | rc = 0; |
| 153 | } |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 154 | if (rc) |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 155 | pr_warning("%s: DIAG ERP failed with " |
| 156 | "rc=%d\n", dev_name(&device->cdev->dev), rc); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | /* Start a given request at the device. Return zero on success, non-zero |
| 160 | * otherwise. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | static int |
| 162 | dasd_start_diag(struct dasd_ccw_req * cqr) |
| 163 | { |
| 164 | struct dasd_device *device; |
| 165 | struct dasd_diag_private *private; |
| 166 | struct dasd_diag_req *dreq; |
| 167 | int rc; |
| 168 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 169 | device = cqr->startdev; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 170 | if (cqr->retries < 0) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 171 | DBF_DEV_EVENT(DBF_ERR, device, "DIAG start_IO: request %p " |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 172 | "- no retry left)", cqr); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 173 | cqr->status = DASD_CQR_ERROR; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 174 | return -EIO; |
| 175 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | private = (struct dasd_diag_private *) device->private; |
| 177 | dreq = (struct dasd_diag_req *) cqr->data; |
| 178 | |
Cornelia Huck | 9a92fe4 | 2007-05-10 15:45:42 +0200 | [diff] [blame] | 179 | private->iob.dev_nr = private->dev_id.devno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | private->iob.key = 0; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 181 | private->iob.flags = DASD_DIAG_RWFLAG_ASYNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | private->iob.block_count = dreq->block_count; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 183 | private->iob.interrupt_params = (addr_t) cqr; |
Peter Oberparleiter | 86b368a | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 184 | private->iob.bio_list = dreq->bio; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 185 | private->iob.flaga = DASD_DIAG_FLAGA_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | cqr->startclk = get_clock(); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 188 | cqr->starttime = jiffies; |
| 189 | cqr->retries--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | rc = dia250(&private->iob, RW_BIO); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 192 | switch (rc) { |
| 193 | case 0: /* Synchronous I/O finished successfully */ |
| 194 | cqr->stopclk = get_clock(); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 195 | cqr->status = DASD_CQR_SUCCESS; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 196 | /* Indicate to calling function that only a dasd_schedule_bh() |
| 197 | and no timer is needed */ |
| 198 | rc = -EACCES; |
| 199 | break; |
| 200 | case 8: /* Asynchronous I/O was started */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | cqr->status = DASD_CQR_IN_IO; |
| 202 | rc = 0; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 203 | break; |
| 204 | default: /* Error condition */ |
| 205 | cqr->status = DASD_CQR_QUEUED; |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 206 | DBF_DEV_EVENT(DBF_WARNING, device, "dia250 returned rc=%d", rc); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 207 | dasd_diag_erp(device); |
| 208 | rc = -EIO; |
| 209 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
Stefan Weinhuber | 6cc7f16 | 2009-06-12 10:26:39 +0200 | [diff] [blame] | 211 | cqr->intrc = rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | return rc; |
| 213 | } |
| 214 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 215 | /* Terminate given request at the device. */ |
| 216 | static int |
| 217 | dasd_diag_term_IO(struct dasd_ccw_req * cqr) |
| 218 | { |
| 219 | struct dasd_device *device; |
| 220 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 221 | device = cqr->startdev; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 222 | mdsk_term_io(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 223 | mdsk_init_io(device, device->block->bp_block, 0, NULL); |
| 224 | cqr->status = DASD_CQR_CLEAR_PENDING; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 225 | cqr->stopclk = get_clock(); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 226 | dasd_schedule_device_bh(device); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | /* Handle external interruption. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | static void |
Heiko Carstens | 5a489b98 | 2006-10-06 16:38:35 +0200 | [diff] [blame] | 232 | dasd_ext_handler(__u16 code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
| 234 | struct dasd_ccw_req *cqr, *next; |
| 235 | struct dasd_device *device; |
| 236 | unsigned long long expires; |
| 237 | unsigned long flags; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 238 | u8 int_code, status; |
| 239 | addr_t ip; |
| 240 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 242 | int_code = *((u8 *) DASD_DIAG_LC_INT_CODE); |
| 243 | status = *((u8 *) DASD_DIAG_LC_INT_STATUS); |
| 244 | switch (int_code) { |
| 245 | case DASD_DIAG_CODE_31BIT: |
| 246 | ip = (addr_t) *((u32 *) DASD_DIAG_LC_INT_PARM_31BIT); |
| 247 | break; |
| 248 | case DASD_DIAG_CODE_64BIT: |
| 249 | ip = (addr_t) *((u64 *) DASD_DIAG_LC_INT_PARM_64BIT); |
| 250 | break; |
| 251 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | return; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 253 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | if (!ip) { /* no intparm: unsolicited interrupt */ |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 255 | DBF_EVENT(DBF_NOTICE, "%s", "caught unsolicited " |
| 256 | "interrupt"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | return; |
| 258 | } |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 259 | cqr = (struct dasd_ccw_req *) ip; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 260 | device = (struct dasd_device *) cqr->startdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 262 | DBF_DEV_EVENT(DBF_WARNING, device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | " magic number of dasd_ccw_req 0x%08X doesn't" |
| 264 | " match discipline 0x%08X", |
| 265 | cqr->magic, *(int *) (&device->discipline->name)); |
| 266 | return; |
| 267 | } |
| 268 | |
| 269 | /* get irq lock to modify request queue */ |
| 270 | spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags); |
| 271 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 272 | /* Check for a pending clear operation */ |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 273 | if (cqr->status == DASD_CQR_CLEAR_PENDING) { |
| 274 | cqr->status = DASD_CQR_CLEARED; |
| 275 | dasd_device_clear_timer(device); |
| 276 | dasd_schedule_device_bh(device); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 277 | spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags); |
| 278 | return; |
| 279 | } |
| 280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | cqr->stopclk = get_clock(); |
| 282 | |
| 283 | expires = 0; |
| 284 | if (status == 0) { |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 285 | cqr->status = DASD_CQR_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | /* Start first request on queue if possible -> fast_io. */ |
| 287 | if (!list_empty(&device->ccw_queue)) { |
| 288 | next = list_entry(device->ccw_queue.next, |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 289 | struct dasd_ccw_req, devlist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | if (next->status == DASD_CQR_QUEUED) { |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 291 | rc = dasd_start_diag(next); |
| 292 | if (rc == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | expires = next->expires; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | } |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 296 | } else { |
| 297 | cqr->status = DASD_CQR_QUEUED; |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 298 | DBF_DEV_EVENT(DBF_DEBUG, device, "interrupt status for " |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 299 | "request %p was %d (%d retries left)", cqr, status, |
| 300 | cqr->retries); |
| 301 | dasd_diag_erp(device); |
| 302 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
| 304 | if (expires != 0) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 305 | dasd_device_set_timer(device, expires); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | else |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 307 | dasd_device_clear_timer(device); |
| 308 | dasd_schedule_device_bh(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
| 310 | spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags); |
| 311 | } |
| 312 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 313 | /* Check whether device can be controlled by DIAG discipline. Return zero on |
| 314 | * success, non-zero otherwise. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | static int |
| 316 | dasd_diag_check_device(struct dasd_device *device) |
| 317 | { |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 318 | struct dasd_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | struct dasd_diag_private *private; |
| 320 | struct dasd_diag_characteristics *rdc_data; |
| 321 | struct dasd_diag_bio bio; |
Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 322 | struct vtoc_cms_label *label; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 323 | blocknum_t end_block; |
| 324 | unsigned int sb, bsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | int rc; |
| 326 | |
| 327 | private = (struct dasd_diag_private *) device->private; |
| 328 | if (private == NULL) { |
Horst Hummel | 138c014 | 2006-06-29 14:58:12 +0200 | [diff] [blame] | 329 | private = kzalloc(sizeof(struct dasd_diag_private),GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | if (private == NULL) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 331 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
| 332 | "Allocating memory for private DASD data " |
| 333 | "failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | return -ENOMEM; |
| 335 | } |
Cornelia Huck | 9a92fe4 | 2007-05-10 15:45:42 +0200 | [diff] [blame] | 336 | ccw_device_get_id(device->cdev, &private->dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | device->private = (void *) private; |
| 338 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 339 | block = dasd_alloc_block(); |
| 340 | if (IS_ERR(block)) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 341 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 342 | "could not allocate dasd block structure"); |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 343 | device->private = NULL; |
| 344 | kfree(private); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 345 | return PTR_ERR(block); |
| 346 | } |
| 347 | device->block = block; |
| 348 | block->base = device; |
| 349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | /* Read Device Characteristics */ |
| 351 | rdc_data = (void *) &(private->rdc_data); |
Cornelia Huck | 9a92fe4 | 2007-05-10 15:45:42 +0200 | [diff] [blame] | 352 | rdc_data->dev_nr = private->dev_id.devno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | rdc_data->rdc_len = sizeof (struct dasd_diag_characteristics); |
| 354 | |
| 355 | rc = diag210((struct diag210 *) rdc_data); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 356 | if (rc) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 357 | DBF_DEV_EVENT(DBF_WARNING, device, "failed to retrieve device " |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 358 | "information (rc=%d)", rc); |
Stefan Haberland | 8586cb6 | 2008-07-17 17:16:49 +0200 | [diff] [blame] | 359 | rc = -EOPNOTSUPP; |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 360 | goto out; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 361 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
| 363 | /* Figure out position of label block */ |
| 364 | switch (private->rdc_data.vdev_class) { |
| 365 | case DEV_CLASS_FBA: |
| 366 | private->pt_block = 1; |
| 367 | break; |
| 368 | case DEV_CLASS_ECKD: |
| 369 | private->pt_block = 2; |
| 370 | break; |
| 371 | default: |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 372 | pr_warning("%s: Device type %d is not supported " |
| 373 | "in DIAG mode\n", dev_name(&device->cdev->dev), |
| 374 | private->rdc_data.vdev_class); |
Stefan Haberland | 8586cb6 | 2008-07-17 17:16:49 +0200 | [diff] [blame] | 375 | rc = -EOPNOTSUPP; |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 376 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | DBF_DEV_EVENT(DBF_INFO, device, |
| 380 | "%04X: %04X on real %04X/%02X", |
| 381 | rdc_data->dev_nr, |
| 382 | rdc_data->vdev_type, |
| 383 | rdc_data->rdev_type, rdc_data->rdev_model); |
| 384 | |
| 385 | /* terminate all outstanding operations */ |
| 386 | mdsk_term_io(device); |
| 387 | |
| 388 | /* figure out blocksize of device */ |
Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 389 | label = (struct vtoc_cms_label *) get_zeroed_page(GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | if (label == NULL) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 391 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | "No memory to allocate initialization request"); |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 393 | rc = -ENOMEM; |
| 394 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 396 | rc = 0; |
| 397 | end_block = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | /* try all sizes - needed for ECKD devices */ |
| 399 | for (bsize = 512; bsize <= PAGE_SIZE; bsize <<= 1) { |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 400 | mdsk_init_io(device, bsize, 0, &end_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | memset(&bio, 0, sizeof (struct dasd_diag_bio)); |
| 402 | bio.type = MDSK_READ_REQ; |
| 403 | bio.block_number = private->pt_block + 1; |
Peter Oberparleiter | 86b368a | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 404 | bio.buffer = label; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | memset(&private->iob, 0, sizeof (struct dasd_diag_rw_io)); |
| 406 | private->iob.dev_nr = rdc_data->dev_nr; |
| 407 | private->iob.key = 0; |
| 408 | private->iob.flags = 0; /* do synchronous io */ |
| 409 | private->iob.block_count = 1; |
| 410 | private->iob.interrupt_params = 0; |
Peter Oberparleiter | 86b368a | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 411 | private->iob.bio_list = &bio; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 412 | private->iob.flaga = DASD_DIAG_FLAGA_DEFAULT; |
| 413 | rc = dia250(&private->iob, RW_BIO); |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 414 | if (rc == 3) { |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 415 | pr_warning("%s: A 64-bit DIAG call failed\n", |
| 416 | dev_name(&device->cdev->dev)); |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 417 | rc = -EOPNOTSUPP; |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 418 | goto out_label; |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 419 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | mdsk_term_io(device); |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 421 | if (rc == 0) |
| 422 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 424 | if (bsize > PAGE_SIZE) { |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 425 | pr_warning("%s: Accessing the DASD failed because of an " |
| 426 | "incorrect format (rc=%d)\n", |
| 427 | dev_name(&device->cdev->dev), rc); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 428 | rc = -EIO; |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 429 | goto out_label; |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 430 | } |
| 431 | /* check for label block */ |
| 432 | if (memcmp(label->label_id, DASD_DIAG_CMS1, |
| 433 | sizeof(DASD_DIAG_CMS1)) == 0) { |
| 434 | /* get formatted blocksize from label block */ |
| 435 | bsize = (unsigned int) label->block_size; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 436 | block->blocks = (unsigned long) label->block_count; |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 437 | } else |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 438 | block->blocks = end_block; |
| 439 | block->bp_block = bsize; |
| 440 | block->s2b_shift = 0; /* bits to shift 512 to get a block */ |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 441 | for (sb = 512; sb < bsize; sb = sb << 1) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 442 | block->s2b_shift++; |
| 443 | rc = mdsk_init_io(device, block->bp_block, 0, NULL); |
Stefan Weinhuber | 22825ab | 2009-12-07 12:51:48 +0100 | [diff] [blame] | 444 | if (rc && (rc != 4)) { |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 445 | pr_warning("%s: DIAG initialization failed with rc=%d\n", |
| 446 | dev_name(&device->cdev->dev), rc); |
Peter Oberparleiter | 1e0291b | 2005-11-07 00:59:08 -0800 | [diff] [blame] | 447 | rc = -EIO; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 448 | } else { |
Stefan Weinhuber | 22825ab | 2009-12-07 12:51:48 +0100 | [diff] [blame] | 449 | if (rc == 4) |
Stefan Weinhuber | 33b62a3 | 2010-03-08 12:26:24 +0100 | [diff] [blame^] | 450 | set_bit(DASD_FLAG_DEVICE_RO, &device->flags); |
Stefan Haberland | ea05854 | 2009-12-18 17:43:16 +0100 | [diff] [blame] | 451 | pr_info("%s: New DASD with %ld byte/block, total size %ld " |
| 452 | "KB%s\n", dev_name(&device->cdev->dev), |
| 453 | (unsigned long) block->bp_block, |
| 454 | (unsigned long) (block->blocks << |
| 455 | block->s2b_shift) >> 1, |
| 456 | (rc == 4) ? ", read-only device" : ""); |
Stefan Weinhuber | 22825ab | 2009-12-07 12:51:48 +0100 | [diff] [blame] | 457 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 459 | out_label: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | free_page((long) label); |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 461 | out: |
| 462 | if (rc) { |
| 463 | device->block = NULL; |
| 464 | dasd_free_block(block); |
| 465 | device->private = NULL; |
| 466 | kfree(private); |
| 467 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | return rc; |
| 469 | } |
| 470 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 471 | /* Fill in virtual disk geometry for device. Return zero on success, non-zero |
| 472 | * otherwise. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | static int |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 474 | dasd_diag_fill_geometry(struct dasd_block *block, struct hd_geometry *geo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | { |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 476 | if (dasd_check_blocksize(block->bp_block) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | return -EINVAL; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 478 | geo->cylinders = (block->blocks << block->s2b_shift) >> 10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | geo->heads = 16; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 480 | geo->sectors = 128 >> block->s2b_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | return 0; |
| 482 | } |
| 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | static dasd_erp_fn_t |
| 485 | dasd_diag_erp_action(struct dasd_ccw_req * cqr) |
| 486 | { |
| 487 | return dasd_default_erp_action; |
| 488 | } |
| 489 | |
| 490 | static dasd_erp_fn_t |
| 491 | dasd_diag_erp_postaction(struct dasd_ccw_req * cqr) |
| 492 | { |
| 493 | return dasd_default_erp_postaction; |
| 494 | } |
| 495 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 496 | /* Create DASD request from block device request. Return pointer to new |
| 497 | * request on success, ERR_PTR otherwise. */ |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 498 | static struct dasd_ccw_req *dasd_diag_build_cp(struct dasd_device *memdev, |
| 499 | struct dasd_block *block, |
| 500 | struct request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | { |
| 502 | struct dasd_ccw_req *cqr; |
| 503 | struct dasd_diag_req *dreq; |
| 504 | struct dasd_diag_bio *dbio; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 505 | struct req_iterator iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | struct bio_vec *bv; |
| 507 | char *dst; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 508 | unsigned int count, datasize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | sector_t recid, first_rec, last_rec; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 510 | unsigned int blksize, off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | unsigned char rw_cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
| 513 | if (rq_data_dir(req) == READ) |
| 514 | rw_cmd = MDSK_READ_REQ; |
| 515 | else if (rq_data_dir(req) == WRITE) |
| 516 | rw_cmd = MDSK_WRITE_REQ; |
| 517 | else |
| 518 | return ERR_PTR(-EINVAL); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 519 | blksize = block->bp_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | /* Calculate record id of first and last block. */ |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 521 | first_rec = blk_rq_pos(req) >> block->s2b_shift; |
| 522 | last_rec = |
| 523 | (blk_rq_pos(req) + blk_rq_sectors(req) - 1) >> block->s2b_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | /* Check struct bio and count the number of blocks for the request. */ |
| 525 | count = 0; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 526 | rq_for_each_segment(bv, req, iter) { |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 527 | if (bv->bv_len & (blksize - 1)) |
| 528 | /* Fba can only do full blocks. */ |
| 529 | return ERR_PTR(-EINVAL); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 530 | count += bv->bv_len >> (block->s2b_shift + 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | /* Paranoia. */ |
| 533 | if (count != last_rec - first_rec + 1) |
| 534 | return ERR_PTR(-EINVAL); |
| 535 | /* Build the request */ |
| 536 | datasize = sizeof(struct dasd_diag_req) + |
| 537 | count*sizeof(struct dasd_diag_bio); |
Stefan Haberland | 68b781f | 2009-09-11 10:28:29 +0200 | [diff] [blame] | 538 | cqr = dasd_smalloc_request(DASD_DIAG_MAGIC, 0, datasize, memdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | if (IS_ERR(cqr)) |
| 540 | return cqr; |
Horst Hummel | 138c014 | 2006-06-29 14:58:12 +0200 | [diff] [blame] | 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | dreq = (struct dasd_diag_req *) cqr->data; |
| 543 | dreq->block_count = count; |
| 544 | dbio = dreq->bio; |
| 545 | recid = first_rec; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 546 | rq_for_each_segment(bv, req, iter) { |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 547 | dst = page_address(bv->bv_page) + bv->bv_offset; |
| 548 | for (off = 0; off < bv->bv_len; off += blksize) { |
| 549 | memset(dbio, 0, sizeof (struct dasd_diag_bio)); |
| 550 | dbio->type = rw_cmd; |
| 551 | dbio->block_number = recid + 1; |
| 552 | dbio->buffer = dst; |
| 553 | dbio++; |
| 554 | dst += blksize; |
| 555 | recid++; |
| 556 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 558 | cqr->retries = DIAG_MAX_RETRIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | cqr->buildclk = get_clock(); |
Holger Smolinski | 13de227 | 2009-01-09 12:14:51 +0100 | [diff] [blame] | 560 | if (blk_noretry_request(req) || |
| 561 | block->base->features & DASD_FEATURE_FAILFAST) |
Horst Hummel | 1c01b8a | 2006-01-06 00:19:15 -0800 | [diff] [blame] | 562 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 563 | cqr->startdev = memdev; |
| 564 | cqr->memdev = memdev; |
| 565 | cqr->block = block; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 566 | cqr->expires = DIAG_TIMEOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | cqr->status = DASD_CQR_FILLED; |
| 568 | return cqr; |
| 569 | } |
| 570 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 571 | /* Release DASD request. Return non-zero if request was successful, zero |
| 572 | * otherwise. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | static int |
| 574 | dasd_diag_free_cp(struct dasd_ccw_req *cqr, struct request *req) |
| 575 | { |
| 576 | int status; |
| 577 | |
| 578 | status = cqr->status == DASD_CQR_DONE; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 579 | dasd_sfree_request(cqr, cqr->memdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | return status; |
| 581 | } |
| 582 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 583 | static void dasd_diag_handle_terminated_request(struct dasd_ccw_req *cqr) |
| 584 | { |
| 585 | cqr->status = DASD_CQR_FILLED; |
| 586 | }; |
| 587 | |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 588 | /* Fill in IOCTL data for device. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | static int |
| 590 | dasd_diag_fill_info(struct dasd_device * device, |
| 591 | struct dasd_information2_t * info) |
| 592 | { |
| 593 | struct dasd_diag_private *private; |
| 594 | |
| 595 | private = (struct dasd_diag_private *) device->private; |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 596 | info->label_block = (unsigned int) private->pt_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | info->FBA_layout = 1; |
| 598 | info->format = DASD_FORMAT_LDL; |
| 599 | info->characteristics_size = sizeof (struct dasd_diag_characteristics); |
| 600 | memcpy(info->characteristics, |
| 601 | &((struct dasd_diag_private *) device->private)->rdc_data, |
| 602 | sizeof (struct dasd_diag_characteristics)); |
| 603 | info->confdata_size = 0; |
| 604 | return 0; |
| 605 | } |
| 606 | |
| 607 | static void |
| 608 | dasd_diag_dump_sense(struct dasd_device *device, struct dasd_ccw_req * req, |
| 609 | struct irb *stat) |
| 610 | { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 611 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | "dump sense not available for DIAG data"); |
| 613 | } |
| 614 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 615 | static struct dasd_discipline dasd_diag_discipline = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | .owner = THIS_MODULE, |
| 617 | .name = "DIAG", |
| 618 | .ebcname = "DIAG", |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 619 | .max_blocks = DIAG_MAX_BLOCKS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | .check_device = dasd_diag_check_device, |
| 621 | .fill_geometry = dasd_diag_fill_geometry, |
| 622 | .start_IO = dasd_start_diag, |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 623 | .term_IO = dasd_diag_term_IO, |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 624 | .handle_terminated_request = dasd_diag_handle_terminated_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | .erp_action = dasd_diag_erp_action, |
| 626 | .erp_postaction = dasd_diag_erp_postaction, |
| 627 | .build_cp = dasd_diag_build_cp, |
| 628 | .free_cp = dasd_diag_free_cp, |
| 629 | .dump_sense = dasd_diag_dump_sense, |
| 630 | .fill_info = dasd_diag_fill_info, |
| 631 | }; |
| 632 | |
| 633 | static int __init |
| 634 | dasd_diag_init(void) |
| 635 | { |
| 636 | if (!MACHINE_IS_VM) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 637 | pr_info("Discipline %s cannot be used without z/VM\n", |
| 638 | dasd_diag_discipline.name); |
Horst Hummel | fd49f41 | 2005-09-03 15:58:00 -0700 | [diff] [blame] | 639 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } |
| 641 | ASCEBC(dasd_diag_discipline.ebcname, 4); |
| 642 | |
| 643 | ctl_set_bit(0, 9); |
| 644 | register_external_interrupt(0x2603, dasd_ext_handler); |
| 645 | dasd_diag_discipline_pointer = &dasd_diag_discipline; |
| 646 | return 0; |
| 647 | } |
| 648 | |
| 649 | static void __exit |
| 650 | dasd_diag_cleanup(void) |
| 651 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | unregister_external_interrupt(0x2603, dasd_ext_handler); |
| 653 | ctl_clear_bit(0, 9); |
| 654 | dasd_diag_discipline_pointer = NULL; |
| 655 | } |
| 656 | |
| 657 | module_init(dasd_diag_init); |
| 658 | module_exit(dasd_diag_cleanup); |