[S390] dasd: fix online/offline race
[linux-2.6-block.git] / drivers / s390 / block / dasd_devmap.c
CommitLineData
1da177e4
LT
1/*
2 * File...........: linux/drivers/s390/block/dasd_devmap.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
8 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2001
9 *
10 * Device mapping and dasd= parameter parsing functions. All devmap
11 * functions may not be called from interrupt context. In particular
12 * dasd_get_device is a no-no from interrupt context.
13 *
1da177e4
LT
14 */
15
fc19f381
SH
16#define KMSG_COMPONENT "dasd"
17
1da177e4
LT
18#include <linux/ctype.h>
19#include <linux/init.h>
8d3b33f6 20#include <linux/module.h>
1da177e4
LT
21
22#include <asm/debug.h>
23#include <asm/uaccess.h>
7039d3a1 24#include <asm/ipl.h>
1da177e4
LT
25
26/* This is ugly... */
27#define PRINTK_HEADER "dasd_devmap:"
98df67b3 28#define DASD_BUS_ID_SIZE 20
1da177e4
LT
29
30#include "dasd_int.h"
31
e18b890b 32struct kmem_cache *dasd_page_cache;
40545573 33EXPORT_SYMBOL_GPL(dasd_page_cache);
1da177e4
LT
34
35/*
36 * dasd_devmap_t is used to store the features and the relation
37 * between device number and device index. To find a dasd_devmap_t
38 * that corresponds to a device number of a device index each
39 * dasd_devmap_t is added to two linked lists, one to search by
40 * the device number and one to search by the device index. As
41 * soon as big minor numbers are available the device index list
42 * can be removed since the device number will then be identical
43 * to the device index.
44 */
45struct dasd_devmap {
46 struct list_head list;
98df67b3 47 char bus_id[DASD_BUS_ID_SIZE];
1da177e4
LT
48 unsigned int devindex;
49 unsigned short features;
50 struct dasd_device *device;
3d052595 51 struct dasd_uid uid;
1da177e4
LT
52};
53
54/*
55 * Parameter parsing functions for dasd= parameter. The syntax is:
56 * <devno> : (0x)?[0-9a-fA-F]+
57 * <busid> : [0-0a-f]\.[0-9a-f]\.(0x)?[0-9a-fA-F]+
58 * <feature> : ro
59 * <feature_list> : \(<feature>(:<feature>)*\)
60 * <devno-range> : <devno>(-<devno>)?<feature_list>?
61 * <busid-range> : <busid>(-<busid>)?<feature_list>?
62 * <devices> : <devno-range>|<busid-range>
63 * <dasd_module> : dasd_diag_mod|dasd_eckd_mod|dasd_fba_mod
64 *
65 * <dasd> : autodetect|probeonly|<devices>(,<devices>)*
66 */
67
68int dasd_probeonly = 0; /* is true, when probeonly mode is active */
69int dasd_autodetect = 0; /* is true, when autodetection is active */
40545573
HH
70int dasd_nopav = 0; /* is true, when PAV is disabled */
71EXPORT_SYMBOL_GPL(dasd_nopav);
f3eb5384
SW
72int dasd_nofcx; /* disable High Performance Ficon */
73EXPORT_SYMBOL_GPL(dasd_nofcx);
1da177e4
LT
74
75/*
76 * char *dasd[] is intended to hold the ranges supplied by the dasd= statement
77 * it is named 'dasd' to directly be filled by insmod with the comma separated
78 * strings when running as a module.
79 */
80static char *dasd[256];
8d3b33f6
RR
81module_param_array(dasd, charp, NULL, 0);
82
1da177e4 83/*
d0710c7c 84 * Single spinlock to protect devmap and servermap structures and lists.
1da177e4
LT
85 */
86static DEFINE_SPINLOCK(dasd_devmap_lock);
87
88/*
89 * Hash lists for devmap structures.
90 */
91static struct list_head dasd_hashlists[256];
92int dasd_max_devindex;
93
69f90f6a 94static struct dasd_devmap *dasd_add_busid(const char *, int);
1da177e4
LT
95
96static inline int
69f90f6a 97dasd_hash_busid(const char *bus_id)
1da177e4
LT
98{
99 int hash, i;
100
101 hash = 0;
98df67b3 102 for (i = 0; (i < DASD_BUS_ID_SIZE) && *bus_id; i++, bus_id++)
1da177e4
LT
103 hash += *bus_id;
104 return hash & 0xff;
105}
106
107#ifndef MODULE
108/*
109 * The parameter parsing functions for builtin-drivers are called
110 * before kmalloc works. Store the pointers to the parameters strings
111 * into dasd[] for later processing.
112 */
113static int __init
114dasd_call_setup(char *str)
115{
116 static int count = 0;
117
118 if (count < 256)
119 dasd[count++] = str;
120 return 1;
121}
122
123__setup ("dasd=", dasd_call_setup);
124#endif /* #ifndef MODULE */
125
7039d3a1
PO
126#define DASD_IPLDEV "ipldev"
127
1da177e4
LT
128/*
129 * Read a device busid/devno from a string.
130 */
4d284cac 131static int
fc19f381 132
1da177e4
LT
133dasd_busid(char **str, int *id0, int *id1, int *devno)
134{
135 int val, old_style;
138c014d 136
7039d3a1
PO
137 /* Interpret ipldev busid */
138 if (strncmp(DASD_IPLDEV, *str, strlen(DASD_IPLDEV)) == 0) {
139 if (ipl_info.type != IPL_TYPE_CCW) {
fc19f381 140 pr_err("The IPL device is not a CCW device\n");
7039d3a1
PO
141 return -EINVAL;
142 }
143 *id0 = 0;
144 *id1 = ipl_info.data.ccw.dev_id.ssid;
145 *devno = ipl_info.data.ccw.dev_id.devno;
146 *str += strlen(DASD_IPLDEV);
147
148 return 0;
149 }
1da177e4
LT
150 /* check for leading '0x' */
151 old_style = 0;
152 if ((*str)[0] == '0' && (*str)[1] == 'x') {
153 *str += 2;
154 old_style = 1;
155 }
156 if (!isxdigit((*str)[0])) /* We require at least one hex digit */
157 return -EINVAL;
158 val = simple_strtoul(*str, str, 16);
159 if (old_style || (*str)[0] != '.') {
160 *id0 = *id1 = 0;
161 if (val < 0 || val > 0xffff)
162 return -EINVAL;
163 *devno = val;
164 return 0;
165 }
166 /* New style x.y.z busid */
167 if (val < 0 || val > 0xff)
168 return -EINVAL;
169 *id0 = val;
170 (*str)++;
171 if (!isxdigit((*str)[0])) /* We require at least one hex digit */
172 return -EINVAL;
173 val = simple_strtoul(*str, str, 16);
174 if (val < 0 || val > 0xff || (*str)++[0] != '.')
175 return -EINVAL;
176 *id1 = val;
177 if (!isxdigit((*str)[0])) /* We require at least one hex digit */
178 return -EINVAL;
179 val = simple_strtoul(*str, str, 16);
180 if (val < 0 || val > 0xffff)
181 return -EINVAL;
182 *devno = val;
183 return 0;
184}
185
186/*
187 * Read colon separated list of dasd features. Currently there is
188 * only one: "ro" for read-only devices. The default feature set
189 * is empty (value 0).
190 */
4d284cac 191static int
1da177e4
LT
192dasd_feature_list(char *str, char **endp)
193{
194 int features, len, rc;
195
196 rc = 0;
197 if (*str != '(') {
198 *endp = str;
199 return DASD_FEATURE_DEFAULT;
200 }
201 str++;
202 features = 0;
203
204 while (1) {
138c014d 205 for (len = 0;
1da177e4
LT
206 str[len] && str[len] != ':' && str[len] != ')'; len++);
207 if (len == 2 && !strncmp(str, "ro", 2))
208 features |= DASD_FEATURE_READONLY;
209 else if (len == 4 && !strncmp(str, "diag", 4))
210 features |= DASD_FEATURE_USEDIAG;
9575bf26
HH
211 else if (len == 6 && !strncmp(str, "erplog", 6))
212 features |= DASD_FEATURE_ERPLOG;
13de227b
HS
213 else if (len == 8 && !strncmp(str, "failfast", 8))
214 features |= DASD_FEATURE_FAILFAST;
1da177e4 215 else {
fc19f381
SH
216 pr_warning("%*s is not a supported device option\n",
217 len, str);
1da177e4
LT
218 rc = -EINVAL;
219 }
220 str += len;
221 if (*str != ':')
222 break;
223 str++;
224 }
225 if (*str != ')') {
fc19f381
SH
226 pr_warning("A closing parenthesis ')' is missing in the "
227 "dasd= parameter\n");
1da177e4
LT
228 rc = -EINVAL;
229 } else
230 str++;
231 *endp = str;
232 if (rc != 0)
233 return rc;
234 return features;
235}
236
237/*
238 * Try to match the first element on the comma separated parse string
239 * with one of the known keywords. If a keyword is found, take the approprate
240 * action and return a pointer to the residual string. If the first element
241 * could not be matched to any keyword then return an error code.
242 */
243static char *
244dasd_parse_keyword( char *parsestring ) {
245
246 char *nextcomma, *residual_str;
247 int length;
248
249 nextcomma = strchr(parsestring,',');
250 if (nextcomma) {
251 length = nextcomma - parsestring;
252 residual_str = nextcomma + 1;
253 } else {
254 length = strlen(parsestring);
255 residual_str = parsestring + length;
256 }
40545573 257 if (strncmp("autodetect", parsestring, length) == 0) {
1da177e4 258 dasd_autodetect = 1;
fc19f381 259 pr_info("The autodetection mode has been activated\n");
1da177e4
LT
260 return residual_str;
261 }
40545573 262 if (strncmp("probeonly", parsestring, length) == 0) {
1da177e4 263 dasd_probeonly = 1;
fc19f381 264 pr_info("The probeonly mode has been activated\n");
1da177e4
LT
265 return residual_str;
266 }
40545573 267 if (strncmp("nopav", parsestring, length) == 0) {
dcd707b4 268 if (MACHINE_IS_VM)
fc19f381 269 pr_info("'nopav' is not supported on z/VM\n");
dcd707b4
PO
270 else {
271 dasd_nopav = 1;
fc19f381 272 pr_info("PAV support has be deactivated\n");
dcd707b4 273 }
40545573
HH
274 return residual_str;
275 }
f3eb5384
SW
276 if (strncmp("nofcx", parsestring, length) == 0) {
277 dasd_nofcx = 1;
fc19f381
SH
278 pr_info("High Performance FICON support has been "
279 "deactivated\n");
f3eb5384
SW
280 return residual_str;
281 }
40545573 282 if (strncmp("fixedbuffers", parsestring, length) == 0) {
1da177e4
LT
283 if (dasd_page_cache)
284 return residual_str;
285 dasd_page_cache =
2f6c55fc
HC
286 kmem_cache_create("dasd_page_cache", PAGE_SIZE,
287 PAGE_SIZE, SLAB_CACHE_DMA,
20c2df83 288 NULL);
1da177e4 289 if (!dasd_page_cache)
fc19f381 290 DBF_EVENT(DBF_WARNING, "%s", "Failed to create slab, "
1da177e4
LT
291 "fixed buffer mode disabled.");
292 else
fc19f381 293 DBF_EVENT(DBF_INFO, "%s",
1da177e4
LT
294 "turning on fixed buffer mode");
295 return residual_str;
296 }
297 return ERR_PTR(-EINVAL);
298}
299
300/*
301 * Try to interprete the first element on the comma separated parse string
302 * as a device number or a range of devices. If the interpretation is
303 * successfull, create the matching dasd_devmap entries and return a pointer
304 * to the residual string.
305 * If interpretation fails or in case of an error, return an error code.
306 */
307static char *
308dasd_parse_range( char *parsestring ) {
309
310 struct dasd_devmap *devmap;
311 int from, from_id0, from_id1;
312 int to, to_id0, to_id1;
313 int features, rc;
98df67b3 314 char bus_id[DASD_BUS_ID_SIZE+1], *str;
1da177e4
LT
315
316 str = parsestring;
317 rc = dasd_busid(&str, &from_id0, &from_id1, &from);
318 if (rc == 0) {
319 to = from;
320 to_id0 = from_id0;
321 to_id1 = from_id1;
322 if (*str == '-') {
323 str++;
324 rc = dasd_busid(&str, &to_id0, &to_id1, &to);
325 }
326 }
327 if (rc == 0 &&
328 (from_id0 != to_id0 || from_id1 != to_id1 || from > to))
329 rc = -EINVAL;
330 if (rc) {
fc19f381 331 pr_err("%s is not a valid device range\n", parsestring);
1da177e4
LT
332 return ERR_PTR(rc);
333 }
334 features = dasd_feature_list(str, &str);
335 if (features < 0)
336 return ERR_PTR(-EINVAL);
40545573
HH
337 /* each device in dasd= parameter should be set initially online */
338 features |= DASD_FEATURE_INITIAL_ONLINE;
1da177e4
LT
339 while (from <= to) {
340 sprintf(bus_id, "%01x.%01x.%04x",
341 from_id0, from_id1, from++);
342 devmap = dasd_add_busid(bus_id, features);
343 if (IS_ERR(devmap))
344 return (char *)devmap;
345 }
346 if (*str == ',')
347 return str + 1;
348 if (*str == '\0')
349 return str;
fc19f381
SH
350 pr_warning("The dasd= parameter value %s has an invalid ending\n",
351 str);
1da177e4
LT
352 return ERR_PTR(-EINVAL);
353}
354
4d284cac 355static char *
1da177e4
LT
356dasd_parse_next_element( char *parsestring ) {
357 char * residual_str;
358 residual_str = dasd_parse_keyword(parsestring);
359 if (!IS_ERR(residual_str))
360 return residual_str;
361 residual_str = dasd_parse_range(parsestring);
362 return residual_str;
363}
364
365/*
366 * Parse parameters stored in dasd[]
367 * The 'dasd=...' parameter allows to specify a comma separated list of
368 * keywords and device ranges. When the dasd driver is build into the kernel,
369 * the complete list will be stored as one element of the dasd[] array.
370 * When the dasd driver is build as a module, then the list is broken into
371 * it's elements and each dasd[] entry contains one element.
372 */
373int
374dasd_parse(void)
375{
376 int rc, i;
377 char *parsestring;
378
379 rc = 0;
380 for (i = 0; i < 256; i++) {
381 if (dasd[i] == NULL)
382 break;
383 parsestring = dasd[i];
384 /* loop over the comma separated list in the parsestring */
385 while (*parsestring) {
386 parsestring = dasd_parse_next_element(parsestring);
387 if(IS_ERR(parsestring)) {
388 rc = PTR_ERR(parsestring);
389 break;
390 }
391 }
392 if (rc) {
393 DBF_EVENT(DBF_ALERT, "%s", "invalid range found");
394 break;
395 }
396 }
397 return rc;
398}
399
400/*
401 * Add a devmap for the device specified by busid. It is possible that
402 * the devmap already exists (dasd= parameter). The order of the devices
403 * added through this function will define the kdevs for the individual
138c014d 404 * devices.
1da177e4
LT
405 */
406static struct dasd_devmap *
69f90f6a 407dasd_add_busid(const char *bus_id, int features)
1da177e4
LT
408{
409 struct dasd_devmap *devmap, *new, *tmp;
410 int hash;
411
412 new = (struct dasd_devmap *)
138c014d 413 kzalloc(sizeof(struct dasd_devmap), GFP_KERNEL);
1da177e4
LT
414 if (!new)
415 return ERR_PTR(-ENOMEM);
416 spin_lock(&dasd_devmap_lock);
d2c993d8 417 devmap = NULL;
1da177e4
LT
418 hash = dasd_hash_busid(bus_id);
419 list_for_each_entry(tmp, &dasd_hashlists[hash], list)
98df67b3 420 if (strncmp(tmp->bus_id, bus_id, DASD_BUS_ID_SIZE) == 0) {
1da177e4
LT
421 devmap = tmp;
422 break;
423 }
424 if (!devmap) {
425 /* This bus_id is new. */
426 new->devindex = dasd_max_devindex++;
98df67b3 427 strncpy(new->bus_id, bus_id, DASD_BUS_ID_SIZE);
1da177e4 428 new->features = features;
d2c993d8 429 new->device = NULL;
1da177e4
LT
430 list_add(&new->list, &dasd_hashlists[hash]);
431 devmap = new;
d2c993d8 432 new = NULL;
1da177e4
LT
433 }
434 spin_unlock(&dasd_devmap_lock);
17fd682e 435 kfree(new);
1da177e4
LT
436 return devmap;
437}
438
439/*
440 * Find devmap for device with given bus_id.
441 */
442static struct dasd_devmap *
69f90f6a 443dasd_find_busid(const char *bus_id)
1da177e4
LT
444{
445 struct dasd_devmap *devmap, *tmp;
446 int hash;
447
448 spin_lock(&dasd_devmap_lock);
449 devmap = ERR_PTR(-ENODEV);
450 hash = dasd_hash_busid(bus_id);
451 list_for_each_entry(tmp, &dasd_hashlists[hash], list) {
98df67b3 452 if (strncmp(tmp->bus_id, bus_id, DASD_BUS_ID_SIZE) == 0) {
1da177e4
LT
453 devmap = tmp;
454 break;
455 }
456 }
457 spin_unlock(&dasd_devmap_lock);
458 return devmap;
459}
460
461/*
462 * Check if busid has been added to the list of dasd ranges.
463 */
464int
69f90f6a 465dasd_busid_known(const char *bus_id)
1da177e4
LT
466{
467 return IS_ERR(dasd_find_busid(bus_id)) ? -ENOENT : 0;
468}
469
470/*
471 * Forget all about the device numbers added so far.
472 * This may only be called at module unload or system shutdown.
473 */
474static void
475dasd_forget_ranges(void)
476{
477 struct dasd_devmap *devmap, *n;
478 int i;
479
480 spin_lock(&dasd_devmap_lock);
481 for (i = 0; i < 256; i++) {
482 list_for_each_entry_safe(devmap, n, &dasd_hashlists[i], list) {
606f4422 483 BUG_ON(devmap->device != NULL);
1da177e4
LT
484 list_del(&devmap->list);
485 kfree(devmap);
486 }
487 }
488 spin_unlock(&dasd_devmap_lock);
489}
490
491/*
492 * Find the device struct by its device index.
493 */
494struct dasd_device *
495dasd_device_from_devindex(int devindex)
496{
497 struct dasd_devmap *devmap, *tmp;
498 struct dasd_device *device;
499 int i;
500
501 spin_lock(&dasd_devmap_lock);
d2c993d8 502 devmap = NULL;
1da177e4
LT
503 for (i = 0; (i < 256) && !devmap; i++)
504 list_for_each_entry(tmp, &dasd_hashlists[i], list)
505 if (tmp->devindex == devindex) {
506 /* Found the devmap for the device. */
507 devmap = tmp;
508 break;
509 }
510 if (devmap && devmap->device) {
511 device = devmap->device;
512 dasd_get_device(device);
513 } else
514 device = ERR_PTR(-ENODEV);
515 spin_unlock(&dasd_devmap_lock);
516 return device;
517}
518
519/*
520 * Return devmap for cdev. If no devmap exists yet, create one and
521 * connect it to the cdev.
522 */
523static struct dasd_devmap *
524dasd_devmap_from_cdev(struct ccw_device *cdev)
525{
526 struct dasd_devmap *devmap;
527
2a0217d5 528 devmap = dasd_find_busid(dev_name(&cdev->dev));
1da177e4 529 if (IS_ERR(devmap))
2a0217d5 530 devmap = dasd_add_busid(dev_name(&cdev->dev),
1da177e4
LT
531 DASD_FEATURE_DEFAULT);
532 return devmap;
533}
534
535/*
536 * Create a dasd device structure for cdev.
537 */
538struct dasd_device *
539dasd_create_device(struct ccw_device *cdev)
540{
541 struct dasd_devmap *devmap;
542 struct dasd_device *device;
a00bfd71 543 unsigned long flags;
1da177e4
LT
544 int rc;
545
546 devmap = dasd_devmap_from_cdev(cdev);
547 if (IS_ERR(devmap))
548 return (void *) devmap;
1da177e4
LT
549
550 device = dasd_alloc_device();
551 if (IS_ERR(device))
552 return device;
a00bfd71 553 atomic_set(&device->ref_count, 3);
1da177e4
LT
554
555 spin_lock(&dasd_devmap_lock);
556 if (!devmap->device) {
557 devmap->device = device;
558 device->devindex = devmap->devindex;
c6eb7b77 559 device->features = devmap->features;
1da177e4
LT
560 get_device(&cdev->dev);
561 device->cdev = cdev;
562 rc = 0;
563 } else
564 /* Someone else was faster. */
565 rc = -EBUSY;
566 spin_unlock(&dasd_devmap_lock);
567
568 if (rc) {
569 dasd_free_device(device);
570 return ERR_PTR(rc);
571 }
a00bfd71
MS
572
573 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
faf16aa9 574 dev_set_drvdata(&cdev->dev, device);
a00bfd71
MS
575 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
576
1da177e4
LT
577 return device;
578}
579
580/*
581 * Wait queue for dasd_delete_device waits.
582 */
583static DECLARE_WAIT_QUEUE_HEAD(dasd_delete_wq);
584
585/*
586 * Remove a dasd device structure. The passed referenced
587 * is destroyed.
588 */
589void
590dasd_delete_device(struct dasd_device *device)
591{
592 struct ccw_device *cdev;
593 struct dasd_devmap *devmap;
a00bfd71 594 unsigned long flags;
1da177e4
LT
595
596 /* First remove device pointer from devmap. */
2a0217d5 597 devmap = dasd_find_busid(dev_name(&device->cdev->dev));
606f4422 598 BUG_ON(IS_ERR(devmap));
1da177e4
LT
599 spin_lock(&dasd_devmap_lock);
600 if (devmap->device != device) {
601 spin_unlock(&dasd_devmap_lock);
602 dasd_put_device(device);
603 return;
604 }
605 devmap->device = NULL;
606 spin_unlock(&dasd_devmap_lock);
607
a00bfd71
MS
608 /* Disconnect dasd_device structure from ccw_device structure. */
609 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
faf16aa9 610 dev_set_drvdata(&device->cdev->dev, NULL);
a00bfd71
MS
611 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
612
613 /*
614 * Drop ref_count by 3, one for the devmap reference, one for
615 * the cdev reference and one for the passed reference.
616 */
617 atomic_sub(3, &device->ref_count);
1da177e4
LT
618
619 /* Wait for reference counter to drop to zero. */
620 wait_event(dasd_delete_wq, atomic_read(&device->ref_count) == 0);
621
622 /* Disconnect dasd_device structure from ccw_device structure. */
623 cdev = device->cdev;
624 device->cdev = NULL;
625
1da177e4
LT
626 /* Put ccw_device structure. */
627 put_device(&cdev->dev);
628
629 /* Now the device structure can be freed. */
630 dasd_free_device(device);
631}
632
633/*
634 * Reference counter dropped to zero. Wake up waiter
635 * in dasd_delete_device.
636 */
637void
638dasd_put_device_wake(struct dasd_device *device)
639{
640 wake_up(&dasd_delete_wq);
641}
642
a00bfd71
MS
643/*
644 * Return dasd_device structure associated with cdev.
645 * This function needs to be called with the ccw device
646 * lock held. It can be used from interrupt context.
647 */
648struct dasd_device *
649dasd_device_from_cdev_locked(struct ccw_device *cdev)
650{
faf16aa9 651 struct dasd_device *device = dev_get_drvdata(&cdev->dev);
a00bfd71
MS
652
653 if (!device)
654 return ERR_PTR(-ENODEV);
655 dasd_get_device(device);
656 return device;
657}
658
1da177e4
LT
659/*
660 * Return dasd_device structure associated with cdev.
661 */
662struct dasd_device *
663dasd_device_from_cdev(struct ccw_device *cdev)
664{
1da177e4 665 struct dasd_device *device;
a00bfd71 666 unsigned long flags;
1da177e4 667
a00bfd71
MS
668 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
669 device = dasd_device_from_cdev_locked(cdev);
670 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1da177e4
LT
671 return device;
672}
673
674/*
675 * SECTION: files in sysfs
676 */
677
13de227b
HS
678/*
679 * failfast controls the behaviour, if no path is available
680 */
681static ssize_t dasd_ff_show(struct device *dev, struct device_attribute *attr,
682 char *buf)
683{
684 struct dasd_devmap *devmap;
685 int ff_flag;
686
ca0b4b7d 687 devmap = dasd_find_busid(dev_name(dev));
13de227b
HS
688 if (!IS_ERR(devmap))
689 ff_flag = (devmap->features & DASD_FEATURE_FAILFAST) != 0;
690 else
691 ff_flag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_FAILFAST) != 0;
692 return snprintf(buf, PAGE_SIZE, ff_flag ? "1\n" : "0\n");
693}
694
695static ssize_t dasd_ff_store(struct device *dev, struct device_attribute *attr,
696 const char *buf, size_t count)
697{
698 struct dasd_devmap *devmap;
699 int val;
700 char *endp;
701
702 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
703 if (IS_ERR(devmap))
704 return PTR_ERR(devmap);
705
706 val = simple_strtoul(buf, &endp, 0);
707 if (((endp + 1) < (buf + count)) || (val > 1))
708 return -EINVAL;
709
710 spin_lock(&dasd_devmap_lock);
711 if (val)
712 devmap->features |= DASD_FEATURE_FAILFAST;
713 else
714 devmap->features &= ~DASD_FEATURE_FAILFAST;
715 if (devmap->device)
716 devmap->device->features = devmap->features;
717 spin_unlock(&dasd_devmap_lock);
718 return count;
719}
720
721static DEVICE_ATTR(failfast, 0644, dasd_ff_show, dasd_ff_store);
722
1da177e4
LT
723/*
724 * readonly controls the readonly status of a dasd
725 */
726static ssize_t
e404e274 727dasd_ro_show(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
728{
729 struct dasd_devmap *devmap;
730 int ro_flag;
731
2a0217d5 732 devmap = dasd_find_busid(dev_name(dev));
1da177e4
LT
733 if (!IS_ERR(devmap))
734 ro_flag = (devmap->features & DASD_FEATURE_READONLY) != 0;
735 else
736 ro_flag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_READONLY) != 0;
737 return snprintf(buf, PAGE_SIZE, ro_flag ? "1\n" : "0\n");
738}
739
740static ssize_t
138c014d
HH
741dasd_ro_store(struct device *dev, struct device_attribute *attr,
742 const char *buf, size_t count)
1da177e4
LT
743{
744 struct dasd_devmap *devmap;
01376f44
HH
745 int val;
746 char *endp;
1da177e4
LT
747
748 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
749 if (IS_ERR(devmap))
750 return PTR_ERR(devmap);
01376f44
HH
751
752 val = simple_strtoul(buf, &endp, 0);
753 if (((endp + 1) < (buf + count)) || (val > 1))
754 return -EINVAL;
755
1da177e4 756 spin_lock(&dasd_devmap_lock);
01376f44 757 if (val)
1da177e4
LT
758 devmap->features |= DASD_FEATURE_READONLY;
759 else
760 devmap->features &= ~DASD_FEATURE_READONLY;
c6eb7b77
HH
761 if (devmap->device)
762 devmap->device->features = devmap->features;
8e09f215
SW
763 if (devmap->device && devmap->device->block
764 && devmap->device->block->gdp)
765 set_disk_ro(devmap->device->block->gdp, val);
1da177e4
LT
766 spin_unlock(&dasd_devmap_lock);
767 return count;
768}
769
770static DEVICE_ATTR(readonly, 0644, dasd_ro_show, dasd_ro_store);
9575bf26
HH
771/*
772 * erplog controls the logging of ERP related data
773 * (e.g. failing channel programs).
774 */
775static ssize_t
776dasd_erplog_show(struct device *dev, struct device_attribute *attr, char *buf)
777{
778 struct dasd_devmap *devmap;
779 int erplog;
780
2a0217d5 781 devmap = dasd_find_busid(dev_name(dev));
9575bf26
HH
782 if (!IS_ERR(devmap))
783 erplog = (devmap->features & DASD_FEATURE_ERPLOG) != 0;
784 else
785 erplog = (DASD_FEATURE_DEFAULT & DASD_FEATURE_ERPLOG) != 0;
786 return snprintf(buf, PAGE_SIZE, erplog ? "1\n" : "0\n");
787}
788
789static ssize_t
790dasd_erplog_store(struct device *dev, struct device_attribute *attr,
791 const char *buf, size_t count)
792{
793 struct dasd_devmap *devmap;
794 int val;
795 char *endp;
796
797 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
798 if (IS_ERR(devmap))
799 return PTR_ERR(devmap);
800
801 val = simple_strtoul(buf, &endp, 0);
802 if (((endp + 1) < (buf + count)) || (val > 1))
803 return -EINVAL;
804
805 spin_lock(&dasd_devmap_lock);
806 if (val)
807 devmap->features |= DASD_FEATURE_ERPLOG;
808 else
809 devmap->features &= ~DASD_FEATURE_ERPLOG;
810 if (devmap->device)
811 devmap->device->features = devmap->features;
812 spin_unlock(&dasd_devmap_lock);
813 return count;
814}
815
816static DEVICE_ATTR(erplog, 0644, dasd_erplog_show, dasd_erplog_store);
1da177e4
LT
817
818/*
819 * use_diag controls whether the driver should use diag rather than ssch
820 * to talk to the device
821 */
138c014d 822static ssize_t
e404e274 823dasd_use_diag_show(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
824{
825 struct dasd_devmap *devmap;
826 int use_diag;
827
2a0217d5 828 devmap = dasd_find_busid(dev_name(dev));
1da177e4
LT
829 if (!IS_ERR(devmap))
830 use_diag = (devmap->features & DASD_FEATURE_USEDIAG) != 0;
831 else
832 use_diag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_USEDIAG) != 0;
833 return sprintf(buf, use_diag ? "1\n" : "0\n");
834}
835
836static ssize_t
138c014d
HH
837dasd_use_diag_store(struct device *dev, struct device_attribute *attr,
838 const char *buf, size_t count)
1da177e4
LT
839{
840 struct dasd_devmap *devmap;
841 ssize_t rc;
01376f44
HH
842 int val;
843 char *endp;
1da177e4
LT
844
845 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
846 if (IS_ERR(devmap))
847 return PTR_ERR(devmap);
01376f44
HH
848
849 val = simple_strtoul(buf, &endp, 0);
850 if (((endp + 1) < (buf + count)) || (val > 1))
851 return -EINVAL;
852
1da177e4
LT
853 spin_lock(&dasd_devmap_lock);
854 /* Changing diag discipline flag is only allowed in offline state. */
855 rc = count;
856 if (!devmap->device) {
01376f44 857 if (val)
1da177e4
LT
858 devmap->features |= DASD_FEATURE_USEDIAG;
859 else
860 devmap->features &= ~DASD_FEATURE_USEDIAG;
861 } else
862 rc = -EPERM;
863 spin_unlock(&dasd_devmap_lock);
864 return rc;
865}
866
138c014d 867static DEVICE_ATTR(use_diag, 0644, dasd_use_diag_show, dasd_use_diag_store);
1da177e4
LT
868
869static ssize_t
138c014d
HH
870dasd_discipline_show(struct device *dev, struct device_attribute *attr,
871 char *buf)
1da177e4 872{
a00bfd71
MS
873 struct dasd_device *device;
874 ssize_t len;
1da177e4 875
a00bfd71
MS
876 device = dasd_device_from_cdev(to_ccwdev(dev));
877 if (!IS_ERR(device) && device->discipline) {
878 len = snprintf(buf, PAGE_SIZE, "%s\n",
879 device->discipline->name);
880 dasd_put_device(device);
881 } else
882 len = snprintf(buf, PAGE_SIZE, "none\n");
883 return len;
1da177e4
LT
884}
885
886static DEVICE_ATTR(discipline, 0444, dasd_discipline_show, NULL);
887
4dfd5c45
HH
888static ssize_t
889dasd_device_status_show(struct device *dev, struct device_attribute *attr,
890 char *buf)
891{
892 struct dasd_device *device;
893 ssize_t len;
894
895 device = dasd_device_from_cdev(to_ccwdev(dev));
896 if (!IS_ERR(device)) {
897 switch (device->state) {
898 case DASD_STATE_NEW:
899 len = snprintf(buf, PAGE_SIZE, "new\n");
900 break;
901 case DASD_STATE_KNOWN:
902 len = snprintf(buf, PAGE_SIZE, "detected\n");
903 break;
904 case DASD_STATE_BASIC:
905 len = snprintf(buf, PAGE_SIZE, "basic\n");
906 break;
907 case DASD_STATE_UNFMT:
908 len = snprintf(buf, PAGE_SIZE, "unformatted\n");
909 break;
910 case DASD_STATE_READY:
911 len = snprintf(buf, PAGE_SIZE, "ready\n");
912 break;
913 case DASD_STATE_ONLINE:
914 len = snprintf(buf, PAGE_SIZE, "online\n");
915 break;
916 default:
917 len = snprintf(buf, PAGE_SIZE, "no stat\n");
918 break;
919 }
920 dasd_put_device(device);
921 } else
922 len = snprintf(buf, PAGE_SIZE, "unknown\n");
923 return len;
924}
925
926static DEVICE_ATTR(status, 0444, dasd_device_status_show, NULL);
927
3d052595
HH
928static ssize_t
929dasd_alias_show(struct device *dev, struct device_attribute *attr, char *buf)
930{
931 struct dasd_devmap *devmap;
932 int alias;
933
2a0217d5 934 devmap = dasd_find_busid(dev_name(dev));
3d052595 935 spin_lock(&dasd_devmap_lock);
8e09f215
SW
936 if (IS_ERR(devmap) || strlen(devmap->uid.vendor) == 0) {
937 spin_unlock(&dasd_devmap_lock);
938 return sprintf(buf, "0\n");
939 }
940 if (devmap->uid.type == UA_BASE_PAV_ALIAS ||
941 devmap->uid.type == UA_HYPER_PAV_ALIAS)
942 alias = 1;
3d052595
HH
943 else
944 alias = 0;
945 spin_unlock(&dasd_devmap_lock);
3d052595
HH
946 return sprintf(buf, alias ? "1\n" : "0\n");
947}
948
949static DEVICE_ATTR(alias, 0444, dasd_alias_show, NULL);
950
951static ssize_t
952dasd_vendor_show(struct device *dev, struct device_attribute *attr, char *buf)
953{
954 struct dasd_devmap *devmap;
955 char *vendor;
956
2a0217d5 957 devmap = dasd_find_busid(dev_name(dev));
3d052595
HH
958 spin_lock(&dasd_devmap_lock);
959 if (!IS_ERR(devmap) && strlen(devmap->uid.vendor) > 0)
960 vendor = devmap->uid.vendor;
961 else
962 vendor = "";
963 spin_unlock(&dasd_devmap_lock);
964
965 return snprintf(buf, PAGE_SIZE, "%s\n", vendor);
966}
967
968static DEVICE_ATTR(vendor, 0444, dasd_vendor_show, NULL);
969
970#define UID_STRLEN ( /* vendor */ 3 + 1 + /* serial */ 14 + 1 +\
4abb08c2
SW
971 /* SSID */ 4 + 1 + /* unit addr */ 2 + 1 +\
972 /* vduit */ 32 + 1)
3d052595
HH
973
974static ssize_t
975dasd_uid_show(struct device *dev, struct device_attribute *attr, char *buf)
976{
977 struct dasd_devmap *devmap;
8e09f215
SW
978 char uid_string[UID_STRLEN];
979 char ua_string[3];
980 struct dasd_uid *uid;
3d052595 981
2a0217d5 982 devmap = dasd_find_busid(dev_name(dev));
3d052595 983 spin_lock(&dasd_devmap_lock);
8e09f215
SW
984 if (IS_ERR(devmap) || strlen(devmap->uid.vendor) == 0) {
985 spin_unlock(&dasd_devmap_lock);
986 return sprintf(buf, "\n");
987 }
988 uid = &devmap->uid;
989 switch (uid->type) {
990 case UA_BASE_DEVICE:
991 sprintf(ua_string, "%02x", uid->real_unit_addr);
992 break;
993 case UA_BASE_PAV_ALIAS:
994 sprintf(ua_string, "%02x", uid->base_unit_addr);
995 break;
996 case UA_HYPER_PAV_ALIAS:
997 sprintf(ua_string, "xx");
998 break;
999 default:
1000 /* should not happen, treat like base device */
1001 sprintf(ua_string, "%02x", uid->real_unit_addr);
1002 break;
1003 }
4abb08c2
SW
1004 if (strlen(uid->vduit) > 0)
1005 snprintf(uid_string, sizeof(uid_string),
1006 "%s.%s.%04x.%s.%s",
1007 uid->vendor, uid->serial,
1008 uid->ssid, ua_string,
1009 uid->vduit);
1010 else
1011 snprintf(uid_string, sizeof(uid_string),
1012 "%s.%s.%04x.%s",
1013 uid->vendor, uid->serial,
1014 uid->ssid, ua_string);
3d052595 1015 spin_unlock(&dasd_devmap_lock);
8e09f215 1016 return snprintf(buf, PAGE_SIZE, "%s\n", uid_string);
3d052595
HH
1017}
1018
1019static DEVICE_ATTR(uid, 0444, dasd_uid_show, NULL);
1020
20c64468
SW
1021/*
1022 * extended error-reporting
1023 */
1024static ssize_t
1025dasd_eer_show(struct device *dev, struct device_attribute *attr, char *buf)
1026{
1027 struct dasd_devmap *devmap;
1028 int eer_flag;
1029
2a0217d5 1030 devmap = dasd_find_busid(dev_name(dev));
20c64468
SW
1031 if (!IS_ERR(devmap) && devmap->device)
1032 eer_flag = dasd_eer_enabled(devmap->device);
1033 else
1034 eer_flag = 0;
1035 return snprintf(buf, PAGE_SIZE, eer_flag ? "1\n" : "0\n");
1036}
1037
1038static ssize_t
1039dasd_eer_store(struct device *dev, struct device_attribute *attr,
1040 const char *buf, size_t count)
1041{
1042 struct dasd_devmap *devmap;
01376f44
HH
1043 int val, rc;
1044 char *endp;
20c64468
SW
1045
1046 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
1047 if (IS_ERR(devmap))
1048 return PTR_ERR(devmap);
1049 if (!devmap->device)
01376f44
HH
1050 return -ENODEV;
1051
1052 val = simple_strtoul(buf, &endp, 0);
1053 if (((endp + 1) < (buf + count)) || (val > 1))
1054 return -EINVAL;
1055
645c98c8 1056 if (val) {
20c64468 1057 rc = dasd_eer_enable(devmap->device);
645c98c8
HH
1058 if (rc)
1059 return rc;
1060 } else
20c64468 1061 dasd_eer_disable(devmap->device);
645c98c8 1062 return count;
20c64468
SW
1063}
1064
1065static DEVICE_ATTR(eer_enabled, 0644, dasd_eer_show, dasd_eer_store);
1066
1da177e4
LT
1067static struct attribute * dasd_attrs[] = {
1068 &dev_attr_readonly.attr,
1069 &dev_attr_discipline.attr,
4dfd5c45 1070 &dev_attr_status.attr,
3d052595
HH
1071 &dev_attr_alias.attr,
1072 &dev_attr_vendor.attr,
1073 &dev_attr_uid.attr,
1da177e4 1074 &dev_attr_use_diag.attr,
20c64468 1075 &dev_attr_eer_enabled.attr,
9575bf26 1076 &dev_attr_erplog.attr,
13de227b 1077 &dev_attr_failfast.attr,
1da177e4
LT
1078 NULL,
1079};
1080
1081static struct attribute_group dasd_attr_group = {
1082 .attrs = dasd_attrs,
1083};
1084
3d052595
HH
1085/*
1086 * Return copy of the device unique identifier.
1087 */
1088int
1089dasd_get_uid(struct ccw_device *cdev, struct dasd_uid *uid)
1090{
1091 struct dasd_devmap *devmap;
1092
2a0217d5 1093 devmap = dasd_find_busid(dev_name(&cdev->dev));
3d052595
HH
1094 if (IS_ERR(devmap))
1095 return PTR_ERR(devmap);
1096 spin_lock(&dasd_devmap_lock);
1097 *uid = devmap->uid;
1098 spin_unlock(&dasd_devmap_lock);
1099 return 0;
1100}
d41dd122 1101EXPORT_SYMBOL_GPL(dasd_get_uid);
3d052595
HH
1102
1103/*
1104 * Register the given device unique identifier into devmap struct.
b18a60e7
PO
1105 * In addition check if the related storage server subsystem ID is already
1106 * contained in the dasd_server_ssid_list. If subsystem ID is not contained,
1107 * create new entry.
40545573
HH
1108 * Return 0 if server was already in serverlist,
1109 * 1 if the server was added successful
1110 * <0 in case of error.
3d052595
HH
1111 */
1112int
1113dasd_set_uid(struct ccw_device *cdev, struct dasd_uid *uid)
1114{
1115 struct dasd_devmap *devmap;
1116
2a0217d5 1117 devmap = dasd_find_busid(dev_name(&cdev->dev));
3d052595
HH
1118 if (IS_ERR(devmap))
1119 return PTR_ERR(devmap);
d0710c7c 1120
3d052595
HH
1121 spin_lock(&dasd_devmap_lock);
1122 devmap->uid = *uid;
1123 spin_unlock(&dasd_devmap_lock);
d0710c7c 1124
8e09f215 1125 return 0;
3d052595 1126}
40545573 1127EXPORT_SYMBOL_GPL(dasd_set_uid);
3d052595 1128
f24acd45
HH
1129/*
1130 * Return value of the specified feature.
1131 */
1132int
1133dasd_get_feature(struct ccw_device *cdev, int feature)
1134{
1135 struct dasd_devmap *devmap;
1136
2a0217d5 1137 devmap = dasd_find_busid(dev_name(&cdev->dev));
f24acd45 1138 if (IS_ERR(devmap))
40545573 1139 return PTR_ERR(devmap);
f24acd45
HH
1140
1141 return ((devmap->features & feature) != 0);
1142}
1143
1144/*
1145 * Set / reset given feature.
1146 * Flag indicates wether to set (!=0) or the reset (=0) the feature.
1147 */
1148int
1149dasd_set_feature(struct ccw_device *cdev, int feature, int flag)
1150{
1151 struct dasd_devmap *devmap;
1152
2a0217d5 1153 devmap = dasd_find_busid(dev_name(&cdev->dev));
f24acd45 1154 if (IS_ERR(devmap))
40545573 1155 return PTR_ERR(devmap);
f24acd45
HH
1156
1157 spin_lock(&dasd_devmap_lock);
1158 if (flag)
1159 devmap->features |= feature;
1160 else
1161 devmap->features &= ~feature;
c6eb7b77
HH
1162 if (devmap->device)
1163 devmap->device->features = devmap->features;
f24acd45
HH
1164 spin_unlock(&dasd_devmap_lock);
1165 return 0;
1166}
1167
1168
1da177e4
LT
1169int
1170dasd_add_sysfs_files(struct ccw_device *cdev)
1171{
1172 return sysfs_create_group(&cdev->dev.kobj, &dasd_attr_group);
1173}
1174
1175void
1176dasd_remove_sysfs_files(struct ccw_device *cdev)
1177{
1178 sysfs_remove_group(&cdev->dev.kobj, &dasd_attr_group);
1179}
1180
1181
1182int
1183dasd_devmap_init(void)
1184{
1185 int i;
1186
1187 /* Initialize devmap structures. */
1188 dasd_max_devindex = 0;
1189 for (i = 0; i < 256; i++)
1190 INIT_LIST_HEAD(&dasd_hashlists[i]);
40545573 1191 return 0;
1da177e4
LT
1192}
1193
1194void
1195dasd_devmap_exit(void)
1196{
1197 dasd_forget_ranges();
1198}