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 | * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com> |
| 3 | * Bugreports.to..: <Linux390@de.ibm.com> |
Stefan Haberland | d41dd12 | 2009-06-16 10:30:25 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999, 2009 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
Stefan Haberland | ca99dab | 2009-09-11 10:28:30 +0200 | [diff] [blame] | 7 | #define KMSG_COMPONENT "dasd-fba" |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/stddef.h> |
| 10 | #include <linux/kernel.h> |
| 11 | #include <asm/debug.h> |
| 12 | |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/hdreg.h> /* HDIO_GETGEO */ |
| 15 | #include <linux/bio.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/init.h> |
| 18 | |
| 19 | #include <asm/idals.h> |
| 20 | #include <asm/ebcdic.h> |
| 21 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/ccwdev.h> |
| 23 | |
| 24 | #include "dasd_int.h" |
| 25 | #include "dasd_fba.h" |
| 26 | |
| 27 | #ifdef PRINTK_HEADER |
| 28 | #undef PRINTK_HEADER |
| 29 | #endif /* PRINTK_HEADER */ |
| 30 | #define PRINTK_HEADER "dasd(fba):" |
| 31 | |
Hannes Reinecke | 1f1ee9a | 2013-01-30 09:26:12 +0000 | [diff] [blame] | 32 | #define FBA_DEFAULT_RETRIES 32 |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #define DASD_FBA_CCW_WRITE 0x41 |
| 35 | #define DASD_FBA_CCW_READ 0x42 |
| 36 | #define DASD_FBA_CCW_LOCATE 0x43 |
| 37 | #define DASD_FBA_CCW_DEFINE_EXTENT 0x63 |
| 38 | |
| 39 | MODULE_LICENSE("GPL"); |
| 40 | |
| 41 | static struct dasd_discipline dasd_fba_discipline; |
| 42 | |
| 43 | struct dasd_fba_private { |
| 44 | struct dasd_fba_characteristics rdc_data; |
| 45 | }; |
| 46 | |
| 47 | static struct ccw_device_id dasd_fba_ids[] = { |
Heiko Carstens | d2c993d | 2006-07-12 16:41:55 +0200 | [diff] [blame] | 48 | { CCW_DEVICE_DEVTYPE (0x6310, 0, 0x9336, 0), .driver_info = 0x1}, |
| 49 | { CCW_DEVICE_DEVTYPE (0x3880, 0, 0x3370, 0), .driver_info = 0x2}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { /* end of list */ }, |
| 51 | }; |
| 52 | |
| 53 | MODULE_DEVICE_TABLE(ccw, dasd_fba_ids); |
| 54 | |
| 55 | static struct ccw_driver dasd_fba_driver; /* see below */ |
| 56 | static int |
| 57 | dasd_fba_probe(struct ccw_device *cdev) |
| 58 | { |
Horst Hummel | 4054557 | 2006-06-29 15:08:18 +0200 | [diff] [blame] | 59 | return dasd_generic_probe(cdev, &dasd_fba_discipline); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static int |
| 63 | dasd_fba_set_online(struct ccw_device *cdev) |
| 64 | { |
Horst Hummel | 4054557 | 2006-06-29 15:08:18 +0200 | [diff] [blame] | 65 | return dasd_generic_set_online(cdev, &dasd_fba_discipline); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | static struct ccw_driver dasd_fba_driver = { |
Sebastian Ott | 3bda058 | 2011-03-23 10:16:02 +0100 | [diff] [blame] | 69 | .driver = { |
| 70 | .name = "dasd-fba", |
| 71 | .owner = THIS_MODULE, |
| 72 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | .ids = dasd_fba_ids, |
| 74 | .probe = dasd_fba_probe, |
| 75 | .remove = dasd_generic_remove, |
| 76 | .set_offline = dasd_generic_set_offline, |
| 77 | .set_online = dasd_fba_set_online, |
| 78 | .notify = dasd_generic_notify, |
Stefan Weinhuber | a4d26c6 | 2011-01-05 12:48:03 +0100 | [diff] [blame] | 79 | .path_event = dasd_generic_path_event, |
Stefan Haberland | d41dd12 | 2009-06-16 10:30:25 +0200 | [diff] [blame] | 80 | .freeze = dasd_generic_pm_freeze, |
| 81 | .thaw = dasd_generic_restore_device, |
| 82 | .restore = dasd_generic_restore_device, |
Heiko Carstens | 420f42e | 2013-01-02 15:18:18 +0100 | [diff] [blame] | 83 | .int_class = IRQIO_DAS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 86 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | define_extent(struct ccw1 * ccw, struct DE_fba_data *data, int rw, |
| 88 | int blksize, int beg, int nr) |
| 89 | { |
| 90 | ccw->cmd_code = DASD_FBA_CCW_DEFINE_EXTENT; |
| 91 | ccw->flags = 0; |
| 92 | ccw->count = 16; |
| 93 | ccw->cda = (__u32) __pa(data); |
| 94 | memset(data, 0, sizeof (struct DE_fba_data)); |
| 95 | if (rw == WRITE) |
| 96 | (data->mask).perm = 0x0; |
| 97 | else if (rw == READ) |
| 98 | (data->mask).perm = 0x1; |
| 99 | else |
| 100 | data->mask.perm = 0x2; |
| 101 | data->blk_size = blksize; |
| 102 | data->ext_loc = beg; |
| 103 | data->ext_end = nr - 1; |
| 104 | } |
| 105 | |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 106 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | locate_record(struct ccw1 * ccw, struct LO_fba_data *data, int rw, |
| 108 | int block_nr, int block_ct) |
| 109 | { |
| 110 | ccw->cmd_code = DASD_FBA_CCW_LOCATE; |
| 111 | ccw->flags = 0; |
| 112 | ccw->count = 8; |
| 113 | ccw->cda = (__u32) __pa(data); |
| 114 | memset(data, 0, sizeof (struct LO_fba_data)); |
| 115 | if (rw == WRITE) |
| 116 | data->operation.cmd = 0x5; |
| 117 | else if (rw == READ) |
| 118 | data->operation.cmd = 0x6; |
| 119 | else |
| 120 | data->operation.cmd = 0x8; |
| 121 | data->blk_nr = block_nr; |
| 122 | data->blk_ct = block_ct; |
| 123 | } |
| 124 | |
| 125 | static int |
| 126 | dasd_fba_check_characteristics(struct dasd_device *device) |
| 127 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 128 | struct dasd_fba_private *private = device->private; |
Horst Hummel | 138c014 | 2006-06-29 14:58:12 +0200 | [diff] [blame] | 129 | struct ccw_device *cdev = device->cdev; |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 130 | struct dasd_block *block; |
| 131 | int readonly, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Sebastian Ott | 92636b1 | 2009-06-12 10:26:37 +0200 | [diff] [blame] | 133 | if (!private) { |
| 134 | private = kzalloc(sizeof(*private), GFP_KERNEL | GFP_DMA); |
| 135 | if (!private) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 136 | dev_warn(&device->cdev->dev, |
| 137 | "Allocating memory for private DASD " |
| 138 | "data failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | return -ENOMEM; |
| 140 | } |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 141 | device->private = private; |
Sebastian Ott | 92636b1 | 2009-06-12 10:26:37 +0200 | [diff] [blame] | 142 | } else { |
| 143 | memset(private, 0, sizeof(*private)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 145 | block = dasd_alloc_block(); |
| 146 | if (IS_ERR(block)) { |
Stefan Haberland | b8ed5dd | 2009-12-07 12:51:52 +0100 | [diff] [blame] | 147 | DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s", "could not allocate " |
| 148 | "dasd block structure"); |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 149 | device->private = NULL; |
| 150 | kfree(private); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 151 | return PTR_ERR(block); |
| 152 | } |
| 153 | device->block = block; |
| 154 | block->base = device; |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | /* Read Device Characteristics */ |
Stefan Haberland | 68b781f | 2009-09-11 10:28:29 +0200 | [diff] [blame] | 157 | rc = dasd_generic_read_dev_chars(device, DASD_FBA_MAGIC, |
| 158 | &private->rdc_data, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | if (rc) { |
Stefan Haberland | b8ed5dd | 2009-12-07 12:51:52 +0100 | [diff] [blame] | 160 | DBF_EVENT_DEVID(DBF_WARNING, cdev, "Read device " |
| 161 | "characteristics returned error %d", rc); |
Cornelia Huck | 7337194 | 2008-07-17 17:16:43 +0200 | [diff] [blame] | 162 | device->block = NULL; |
| 163 | dasd_free_block(block); |
| 164 | device->private = NULL; |
| 165 | kfree(private); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | return rc; |
| 167 | } |
| 168 | |
Stefan Haberland | 7c8faa8 | 2010-08-09 18:13:00 +0200 | [diff] [blame] | 169 | device->default_expires = DASD_EXPIRES; |
Hannes Reinecke | 1f1ee9a | 2013-01-30 09:26:12 +0000 | [diff] [blame] | 170 | device->default_retries = FBA_DEFAULT_RETRIES; |
Stefan Haberland | c934615 | 2016-08-08 15:53:54 +0200 | [diff] [blame] | 171 | dasd_path_set_opm(device, LPM_ANYPATH); |
Stefan Haberland | 7c8faa8 | 2010-08-09 18:13:00 +0200 | [diff] [blame] | 172 | |
Stefan Weinhuber | 33b62a3 | 2010-03-08 12:26:24 +0100 | [diff] [blame] | 173 | readonly = dasd_device_is_ro(device); |
| 174 | if (readonly) |
| 175 | set_bit(DASD_FLAG_DEVICE_RO, &device->flags); |
| 176 | |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 177 | dev_info(&device->cdev->dev, |
| 178 | "New FBA DASD %04X/%02X (CU %04X/%02X) with %d MB " |
Stefan Weinhuber | 33b62a3 | 2010-03-08 12:26:24 +0100 | [diff] [blame] | 179 | "and %d B/blk%s\n", |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 180 | cdev->id.dev_type, |
| 181 | cdev->id.dev_model, |
| 182 | cdev->id.cu_type, |
| 183 | cdev->id.cu_model, |
| 184 | ((private->rdc_data.blk_bdsa * |
| 185 | (private->rdc_data.blk_size >> 9)) >> 11), |
Stefan Weinhuber | 33b62a3 | 2010-03-08 12:26:24 +0100 | [diff] [blame] | 186 | private->rdc_data.blk_size, |
| 187 | readonly ? ", read-only device" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | return 0; |
| 189 | } |
| 190 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 191 | static int dasd_fba_do_analysis(struct dasd_block *block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 193 | struct dasd_fba_private *private = block->base->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | int sb, rc; |
| 195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | rc = dasd_check_blocksize(private->rdc_data.blk_size); |
| 197 | if (rc) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 198 | DBF_DEV_EVENT(DBF_WARNING, block->base, "unknown blocksize %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | private->rdc_data.blk_size); |
| 200 | return rc; |
| 201 | } |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 202 | block->blocks = private->rdc_data.blk_bdsa; |
| 203 | block->bp_block = private->rdc_data.blk_size; |
| 204 | block->s2b_shift = 0; /* bits to shift 512 to get a block */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | for (sb = 512; sb < private->rdc_data.blk_size; sb = sb << 1) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 206 | block->s2b_shift++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 210 | static int dasd_fba_fill_geometry(struct dasd_block *block, |
| 211 | struct hd_geometry *geo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 213 | if (dasd_check_blocksize(block->bp_block) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return -EINVAL; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 215 | geo->cylinders = (block->blocks << block->s2b_shift) >> 10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | geo->heads = 16; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 217 | geo->sectors = 128 >> block->s2b_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | static dasd_erp_fn_t |
| 222 | dasd_fba_erp_action(struct dasd_ccw_req * cqr) |
| 223 | { |
| 224 | return dasd_default_erp_action; |
| 225 | } |
| 226 | |
| 227 | static dasd_erp_fn_t |
| 228 | dasd_fba_erp_postaction(struct dasd_ccw_req * cqr) |
| 229 | { |
| 230 | if (cqr->function == dasd_default_erp_action) |
| 231 | return dasd_default_erp_postaction; |
| 232 | |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 233 | DBF_DEV_EVENT(DBF_WARNING, cqr->startdev, "unknown ERP action %p", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | cqr->function); |
| 235 | return NULL; |
| 236 | } |
| 237 | |
Stefan Weinhuber | 5a27e60 | 2011-01-05 12:48:04 +0100 | [diff] [blame] | 238 | static void dasd_fba_check_for_device_change(struct dasd_device *device, |
| 239 | struct dasd_ccw_req *cqr, |
| 240 | struct irb *irb) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 241 | { |
| 242 | char mask; |
| 243 | |
| 244 | /* first of all check for state change pending interrupt */ |
| 245 | mask = DEV_STAT_ATTENTION | DEV_STAT_DEV_END | DEV_STAT_UNIT_EXCEP; |
Stefan Weinhuber | 5a27e60 | 2011-01-05 12:48:04 +0100 | [diff] [blame] | 246 | if ((irb->scsw.cmd.dstat & mask) == mask) |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 247 | dasd_generic_handle_state_change(device); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 248 | }; |
| 249 | |
| 250 | static struct dasd_ccw_req *dasd_fba_build_cp(struct dasd_device * memdev, |
| 251 | struct dasd_block *block, |
| 252 | struct request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 254 | struct dasd_fba_private *private = block->base->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | unsigned long *idaws; |
| 256 | struct LO_fba_data *LO_data; |
| 257 | struct dasd_ccw_req *cqr; |
| 258 | struct ccw1 *ccw; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 259 | struct req_iterator iter; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 260 | struct bio_vec bv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | char *dst; |
| 262 | int count, cidaw, cplength, datasize; |
| 263 | sector_t recid, first_rec, last_rec; |
| 264 | unsigned int blksize, off; |
| 265 | unsigned char cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | if (rq_data_dir(req) == READ) { |
| 268 | cmd = DASD_FBA_CCW_READ; |
| 269 | } else if (rq_data_dir(req) == WRITE) { |
| 270 | cmd = DASD_FBA_CCW_WRITE; |
| 271 | } else |
| 272 | return ERR_PTR(-EINVAL); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 273 | blksize = block->bp_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* Calculate record id of first and last block. */ |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 275 | first_rec = blk_rq_pos(req) >> block->s2b_shift; |
| 276 | last_rec = |
| 277 | (blk_rq_pos(req) + blk_rq_sectors(req) - 1) >> block->s2b_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | /* Check struct bio and count the number of blocks for the request. */ |
| 279 | count = 0; |
| 280 | cidaw = 0; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 281 | rq_for_each_segment(bv, req, iter) { |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 282 | if (bv.bv_len & (blksize - 1)) |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 283 | /* Fba can only do full blocks. */ |
| 284 | return ERR_PTR(-EINVAL); |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 285 | count += bv.bv_len >> (block->s2b_shift + 9); |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 286 | if (idal_is_needed (page_address(bv.bv_page), bv.bv_len)) |
| 287 | cidaw += bv.bv_len / blksize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
| 289 | /* Paranoia. */ |
| 290 | if (count != last_rec - first_rec + 1) |
| 291 | return ERR_PTR(-EINVAL); |
| 292 | /* 1x define extent + 1x locate record + number of blocks */ |
| 293 | cplength = 2 + count; |
| 294 | /* 1x define extent + 1x locate record */ |
| 295 | datasize = sizeof(struct DE_fba_data) + sizeof(struct LO_fba_data) + |
| 296 | cidaw * sizeof(unsigned long); |
| 297 | /* |
| 298 | * Find out number of additional locate record ccws if the device |
| 299 | * can't do data chaining. |
| 300 | */ |
| 301 | if (private->rdc_data.mode.bits.data_chain == 0) { |
| 302 | cplength += count - 1; |
| 303 | datasize += (count - 1)*sizeof(struct LO_fba_data); |
| 304 | } |
| 305 | /* Allocate the ccw request. */ |
Stefan Haberland | 68b781f | 2009-09-11 10:28:29 +0200 | [diff] [blame] | 306 | cqr = dasd_smalloc_request(DASD_FBA_MAGIC, cplength, datasize, memdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | if (IS_ERR(cqr)) |
| 308 | return cqr; |
| 309 | ccw = cqr->cpaddr; |
| 310 | /* First ccw is define extent. */ |
| 311 | define_extent(ccw++, cqr->data, rq_data_dir(req), |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 312 | block->bp_block, blk_rq_pos(req), blk_rq_sectors(req)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | /* Build locate_record + read/write ccws. */ |
| 314 | idaws = (unsigned long *) (cqr->data + sizeof(struct DE_fba_data)); |
| 315 | LO_data = (struct LO_fba_data *) (idaws + cidaw); |
| 316 | /* Locate record for all blocks for smart devices. */ |
| 317 | if (private->rdc_data.mode.bits.data_chain != 0) { |
| 318 | ccw[-1].flags |= CCW_FLAG_CC; |
| 319 | locate_record(ccw++, LO_data++, rq_data_dir(req), 0, count); |
| 320 | } |
| 321 | recid = first_rec; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 322 | rq_for_each_segment(bv, req, iter) { |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 323 | dst = page_address(bv.bv_page) + bv.bv_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | if (dasd_page_cache) { |
| 325 | char *copy = kmem_cache_alloc(dasd_page_cache, |
Christoph Lameter | 441e143 | 2006-12-06 20:33:19 -0800 | [diff] [blame] | 326 | GFP_DMA | __GFP_NOWARN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | if (copy && rq_data_dir(req) == WRITE) |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 328 | memcpy(copy + bv.bv_offset, dst, bv.bv_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | if (copy) |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 330 | dst = copy + bv.bv_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | } |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 332 | for (off = 0; off < bv.bv_len; off += blksize) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | /* Locate record for stupid devices. */ |
| 334 | if (private->rdc_data.mode.bits.data_chain == 0) { |
| 335 | ccw[-1].flags |= CCW_FLAG_CC; |
| 336 | locate_record(ccw, LO_data++, |
| 337 | rq_data_dir(req), |
| 338 | recid - first_rec, 1); |
| 339 | ccw->flags = CCW_FLAG_CC; |
| 340 | ccw++; |
| 341 | } else { |
| 342 | if (recid > first_rec) |
| 343 | ccw[-1].flags |= CCW_FLAG_DC; |
| 344 | else |
| 345 | ccw[-1].flags |= CCW_FLAG_CC; |
| 346 | } |
| 347 | ccw->cmd_code = cmd; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 348 | ccw->count = block->bp_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | if (idal_is_needed(dst, blksize)) { |
| 350 | ccw->cda = (__u32)(addr_t) idaws; |
| 351 | ccw->flags = CCW_FLAG_IDA; |
| 352 | idaws = idal_create_words(idaws, dst, blksize); |
| 353 | } else { |
| 354 | ccw->cda = (__u32)(addr_t) dst; |
| 355 | ccw->flags = 0; |
| 356 | } |
| 357 | ccw++; |
| 358 | dst += blksize; |
| 359 | recid++; |
| 360 | } |
| 361 | } |
Holger Smolinski | 13de227 | 2009-01-09 12:14:51 +0100 | [diff] [blame] | 362 | if (blk_noretry_request(req) || |
| 363 | block->base->features & DASD_FEATURE_FAILFAST) |
Horst Hummel | 1c01b8a | 2006-01-06 00:19:15 -0800 | [diff] [blame] | 364 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 365 | cqr->startdev = memdev; |
| 366 | cqr->memdev = memdev; |
| 367 | cqr->block = block; |
Stefan Haberland | 7c8faa8 | 2010-08-09 18:13:00 +0200 | [diff] [blame] | 368 | cqr->expires = memdev->default_expires * HZ; /* default 5 minutes */ |
Hannes Reinecke | 1f1ee9a | 2013-01-30 09:26:12 +0000 | [diff] [blame] | 369 | cqr->retries = memdev->default_retries; |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 370 | cqr->buildclk = get_tod_clock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | cqr->status = DASD_CQR_FILLED; |
| 372 | return cqr; |
| 373 | } |
| 374 | |
| 375 | static int |
| 376 | dasd_fba_free_cp(struct dasd_ccw_req *cqr, struct request *req) |
| 377 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 378 | struct dasd_fba_private *private = cqr->block->base->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | struct ccw1 *ccw; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 380 | struct req_iterator iter; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 381 | struct bio_vec bv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | char *dst, *cda; |
| 383 | unsigned int blksize, off; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 384 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
| 386 | if (!dasd_page_cache) |
| 387 | goto out; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 388 | blksize = cqr->block->bp_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | ccw = cqr->cpaddr; |
| 390 | /* Skip over define extent & locate record. */ |
| 391 | ccw++; |
| 392 | if (private->rdc_data.mode.bits.data_chain != 0) |
| 393 | ccw++; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 394 | rq_for_each_segment(bv, req, iter) { |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 395 | dst = page_address(bv.bv_page) + bv.bv_offset; |
| 396 | for (off = 0; off < bv.bv_len; off += blksize) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* Skip locate record. */ |
| 398 | if (private->rdc_data.mode.bits.data_chain == 0) |
| 399 | ccw++; |
| 400 | if (dst) { |
| 401 | if (ccw->flags & CCW_FLAG_IDA) |
| 402 | cda = *((char **)((addr_t) ccw->cda)); |
| 403 | else |
| 404 | cda = (char *)((addr_t) ccw->cda); |
| 405 | if (dst != cda) { |
| 406 | if (rq_data_dir(req) == READ) |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 407 | memcpy(dst, cda, bv.bv_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | kmem_cache_free(dasd_page_cache, |
| 409 | (void *)((addr_t)cda & PAGE_MASK)); |
| 410 | } |
| 411 | dst = NULL; |
| 412 | } |
| 413 | ccw++; |
| 414 | } |
| 415 | } |
| 416 | out: |
| 417 | status = cqr->status == DASD_CQR_DONE; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 418 | dasd_sfree_request(cqr, cqr->memdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | return status; |
| 420 | } |
| 421 | |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 422 | static void dasd_fba_handle_terminated_request(struct dasd_ccw_req *cqr) |
| 423 | { |
Hannes Reinecke | a2ace46 | 2013-01-30 09:26:14 +0000 | [diff] [blame] | 424 | if (cqr->retries < 0) |
| 425 | cqr->status = DASD_CQR_FAILED; |
| 426 | else |
| 427 | cqr->status = DASD_CQR_FILLED; |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 428 | }; |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | static int |
| 431 | dasd_fba_fill_info(struct dasd_device * device, |
| 432 | struct dasd_information2_t * info) |
| 433 | { |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 434 | struct dasd_fba_private *private = device->private; |
| 435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | info->label_block = 1; |
| 437 | info->FBA_layout = 1; |
| 438 | info->format = DASD_FORMAT_LDL; |
Sebastian Ott | 543691a4 | 2016-03-04 10:34:05 +0100 | [diff] [blame] | 439 | info->characteristics_size = sizeof(private->rdc_data); |
| 440 | memcpy(info->characteristics, &private->rdc_data, |
| 441 | sizeof(private->rdc_data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | info->confdata_size = 0; |
| 443 | return 0; |
| 444 | } |
| 445 | |
| 446 | static void |
Stefan Haberland | aeec92c | 2009-07-07 16:37:06 +0200 | [diff] [blame] | 447 | dasd_fba_dump_sense_dbf(struct dasd_device *device, struct irb *irb, |
| 448 | char *reason) |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 449 | { |
Stefan Haberland | aeec92c | 2009-07-07 16:37:06 +0200 | [diff] [blame] | 450 | u64 *sense; |
| 451 | |
| 452 | sense = (u64 *) dasd_get_sense(irb); |
| 453 | if (sense) { |
| 454 | DBF_DEV_EVENT(DBF_EMERG, device, |
| 455 | "%s: %s %02x%02x%02x %016llx %016llx %016llx " |
| 456 | "%016llx", reason, |
| 457 | scsw_is_tm(&irb->scsw) ? "t" : "c", |
| 458 | scsw_cc(&irb->scsw), scsw_cstat(&irb->scsw), |
| 459 | scsw_dstat(&irb->scsw), sense[0], sense[1], |
| 460 | sense[2], sense[3]); |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 461 | } else { |
| 462 | DBF_DEV_EVENT(DBF_EMERG, device, "%s", |
| 463 | "SORRY - NO VALID SENSE AVAILABLE\n"); |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | |
| 468 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | dasd_fba_dump_sense(struct dasd_device *device, struct dasd_ccw_req * req, |
| 470 | struct irb *irb) |
| 471 | { |
| 472 | char *page; |
| 473 | struct ccw1 *act, *end, *last; |
| 474 | int len, sl, sct, count; |
| 475 | |
| 476 | page = (char *) get_zeroed_page(GFP_ATOMIC); |
| 477 | if (page == NULL) { |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 478 | DBF_DEV_EVENT(DBF_WARNING, device, "%s", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | "No memory to dump sense data"); |
| 480 | return; |
| 481 | } |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 482 | len = sprintf(page, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | " I/O status report for device %s:\n", |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 484 | dev_name(&device->cdev->dev)); |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 485 | len += sprintf(page + len, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | " in req: %p CS: 0x%02X DS: 0x%02X\n", req, |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 487 | irb->scsw.cmd.cstat, irb->scsw.cmd.dstat); |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 488 | len += sprintf(page + len, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | " device %s: Failing CCW: %p\n", |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 490 | dev_name(&device->cdev->dev), |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 491 | (void *) (addr_t) irb->scsw.cmd.cpa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | if (irb->esw.esw0.erw.cons) { |
| 493 | for (sl = 0; sl < 4; sl++) { |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 494 | len += sprintf(page + len, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | " Sense(hex) %2d-%2d:", |
| 496 | (8 * sl), ((8 * sl) + 7)); |
| 497 | |
| 498 | for (sct = 0; sct < 8; sct++) { |
| 499 | len += sprintf(page + len, " %02x", |
| 500 | irb->ecw[8 * sl + sct]); |
| 501 | } |
| 502 | len += sprintf(page + len, "\n"); |
| 503 | } |
| 504 | } else { |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 505 | len += sprintf(page + len, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | " SORRY - NO VALID SENSE AVAILABLE\n"); |
| 507 | } |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 508 | printk(KERN_ERR "%s", page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | /* dump the Channel Program */ |
| 511 | /* print first CCWs (maximum 8) */ |
| 512 | act = req->cpaddr; |
| 513 | for (last = act; last->flags & (CCW_FLAG_CC | CCW_FLAG_DC); last++); |
| 514 | end = min(act + 8, last); |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 515 | len = sprintf(page, PRINTK_HEADER " Related CP in req: %p\n", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | while (act <= end) { |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 517 | len += sprintf(page + len, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | " CCW %p: %08X %08X DAT:", |
| 519 | act, ((int *) act)[0], ((int *) act)[1]); |
| 520 | for (count = 0; count < 32 && count < act->count; |
| 521 | count += sizeof(int)) |
| 522 | len += sprintf(page + len, " %08X", |
| 523 | ((int *) (addr_t) act->cda) |
| 524 | [(count>>2)]); |
| 525 | len += sprintf(page + len, "\n"); |
| 526 | act++; |
| 527 | } |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 528 | printk(KERN_ERR "%s", page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
| 530 | |
| 531 | /* print failing CCW area */ |
| 532 | len = 0; |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 533 | if (act < ((struct ccw1 *)(addr_t) irb->scsw.cmd.cpa) - 2) { |
| 534 | act = ((struct ccw1 *)(addr_t) irb->scsw.cmd.cpa) - 2; |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 535 | len += sprintf(page + len, PRINTK_HEADER "......\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 537 | end = min((struct ccw1 *)(addr_t) irb->scsw.cmd.cpa + 2, last); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | while (act <= end) { |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 539 | len += sprintf(page + len, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | " CCW %p: %08X %08X DAT:", |
| 541 | act, ((int *) act)[0], ((int *) act)[1]); |
| 542 | for (count = 0; count < 32 && count < act->count; |
| 543 | count += sizeof(int)) |
| 544 | len += sprintf(page + len, " %08X", |
| 545 | ((int *) (addr_t) act->cda) |
| 546 | [(count>>2)]); |
| 547 | len += sprintf(page + len, "\n"); |
| 548 | act++; |
| 549 | } |
| 550 | |
| 551 | /* print last CCWs */ |
| 552 | if (act < last - 2) { |
| 553 | act = last - 2; |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 554 | len += sprintf(page + len, PRINTK_HEADER "......\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } |
| 556 | while (act <= last) { |
Sebastian Ott | 773bab4 | 2012-10-23 20:28:37 +0200 | [diff] [blame] | 557 | len += sprintf(page + len, PRINTK_HEADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | " CCW %p: %08X %08X DAT:", |
| 559 | act, ((int *) act)[0], ((int *) act)[1]); |
| 560 | for (count = 0; count < 32 && count < act->count; |
| 561 | count += sizeof(int)) |
| 562 | len += sprintf(page + len, " %08X", |
| 563 | ((int *) (addr_t) act->cda) |
| 564 | [(count>>2)]); |
| 565 | len += sprintf(page + len, "\n"); |
| 566 | act++; |
| 567 | } |
| 568 | if (len > 0) |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 569 | printk(KERN_ERR "%s", page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | free_page((unsigned long) page); |
| 571 | } |
| 572 | |
| 573 | /* |
| 574 | * max_blocks is dependent on the amount of storage that is available |
| 575 | * in the static io buffer for each device. Currently each device has |
| 576 | * 8192 bytes (=2 pages). For 64 bit one dasd_mchunkt_t structure has |
| 577 | * 24 bytes, the struct dasd_ccw_req has 136 bytes and each block can use |
| 578 | * up to 16 bytes (8 for the ccw and 8 for the idal pointer). In |
Horst Hummel | 138c014 | 2006-06-29 14:58:12 +0200 | [diff] [blame] | 579 | * addition we have one define extent ccw + 16 bytes of data and a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | * locate record ccw for each block (stupid devices!) + 16 bytes of data. |
| 581 | * That makes: |
| 582 | * (8192 - 24 - 136 - 8 - 16) / 40 = 200.2 blocks at maximum. |
| 583 | * We want to fit two into the available memory so that we can immediately |
| 584 | * start the next request if one finishes off. That makes 100.1 blocks |
| 585 | * for one request. Give a little safety and the result is 96. |
| 586 | */ |
| 587 | static struct dasd_discipline dasd_fba_discipline = { |
| 588 | .owner = THIS_MODULE, |
| 589 | .name = "FBA ", |
| 590 | .ebcname = "FBA ", |
| 591 | .max_blocks = 96, |
| 592 | .check_device = dasd_fba_check_characteristics, |
| 593 | .do_analysis = dasd_fba_do_analysis, |
Stefan Weinhuber | a4d26c6 | 2011-01-05 12:48:03 +0100 | [diff] [blame] | 594 | .verify_path = dasd_generic_verify_path, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | .fill_geometry = dasd_fba_fill_geometry, |
| 596 | .start_IO = dasd_start_IO, |
| 597 | .term_IO = dasd_term_IO, |
Stefan Weinhuber | 8e09f21 | 2008-01-26 14:11:23 +0100 | [diff] [blame] | 598 | .handle_terminated_request = dasd_fba_handle_terminated_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | .erp_action = dasd_fba_erp_action, |
| 600 | .erp_postaction = dasd_fba_erp_postaction, |
Stefan Weinhuber | 5a27e60 | 2011-01-05 12:48:04 +0100 | [diff] [blame] | 601 | .check_for_device_change = dasd_fba_check_for_device_change, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | .build_cp = dasd_fba_build_cp, |
| 603 | .free_cp = dasd_fba_free_cp, |
| 604 | .dump_sense = dasd_fba_dump_sense, |
Stefan Haberland | fc19f38 | 2009-03-26 15:23:49 +0100 | [diff] [blame] | 605 | .dump_sense_dbf = dasd_fba_dump_sense_dbf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | .fill_info = dasd_fba_fill_info, |
| 607 | }; |
| 608 | |
| 609 | static int __init |
| 610 | dasd_fba_init(void) |
| 611 | { |
Sebastian Ott | 736e6ea | 2009-06-12 10:26:38 +0200 | [diff] [blame] | 612 | int ret; |
| 613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | ASCEBC(dasd_fba_discipline.ebcname, 4); |
Sebastian Ott | 736e6ea | 2009-06-12 10:26:38 +0200 | [diff] [blame] | 615 | ret = ccw_driver_register(&dasd_fba_driver); |
| 616 | if (!ret) |
| 617 | wait_for_device_probe(); |
| 618 | |
| 619 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | static void __exit |
| 623 | dasd_fba_cleanup(void) |
| 624 | { |
| 625 | ccw_driver_unregister(&dasd_fba_driver); |
| 626 | } |
| 627 | |
| 628 | module_init(dasd_fba_init); |
| 629 | module_exit(dasd_fba_cleanup); |