dasd_devmap.c 40.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
 *		    Horst Hummel <Horst.Hummel@de.ibm.com>
 *		    Carsten Otte <Cotte@de.ibm.com>
 *		    Martin Schwidefsky <schwidefsky@de.ibm.com>
 * Bugreports.to..: <Linux390@de.ibm.com>
7
 * Copyright IBM Corp. 1999,2001
L
Linus Torvalds 已提交
8 9 10 11 12 13 14
 *
 * Device mapping and dasd= parameter parsing functions. All devmap
 * functions may not be called from interrupt context. In particular
 * dasd_get_device is a no-no from interrupt context.
 *
 */

S
Stefan Haberland 已提交
15 16
#define KMSG_COMPONENT "dasd"

L
Linus Torvalds 已提交
17 18
#include <linux/ctype.h>
#include <linux/init.h>
R
Rusty Russell 已提交
19
#include <linux/module.h>
20
#include <linux/slab.h>
L
Linus Torvalds 已提交
21 22

#include <asm/debug.h>
23
#include <linux/uaccess.h>
24
#include <asm/ipl.h>
L
Linus Torvalds 已提交
25 26 27

/* This is ugly... */
#define PRINTK_HEADER "dasd_devmap:"
28
#define DASD_BUS_ID_SIZE 20
29
#define DASD_MAX_PARAMS 256
L
Linus Torvalds 已提交
30 31 32

#include "dasd_int.h"

33
struct kmem_cache *dasd_page_cache;
34
EXPORT_SYMBOL_GPL(dasd_page_cache);
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47

/*
 * dasd_devmap_t is used to store the features and the relation
 * between device number and device index. To find a dasd_devmap_t
 * that corresponds to a device number of a device index each
 * dasd_devmap_t is added to two linked lists, one to search by
 * the device number and one to search by the device index. As
 * soon as big minor numbers are available the device index list
 * can be removed since the device number will then be identical
 * to the device index.
 */
struct dasd_devmap {
	struct list_head list;
48
	char bus_id[DASD_BUS_ID_SIZE];
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
        unsigned int devindex;
        unsigned short features;
	struct dasd_device *device;
};

/*
 * Parameter parsing functions for dasd= parameter. The syntax is:
 *   <devno>		: (0x)?[0-9a-fA-F]+
 *   <busid>		: [0-0a-f]\.[0-9a-f]\.(0x)?[0-9a-fA-F]+
 *   <feature>		: ro
 *   <feature_list>	: \(<feature>(:<feature>)*\)
 *   <devno-range>	: <devno>(-<devno>)?<feature_list>?
 *   <busid-range>	: <busid>(-<busid>)?<feature_list>?
 *   <devices>		: <devno-range>|<busid-range>
 *   <dasd_module>	: dasd_diag_mod|dasd_eckd_mod|dasd_fba_mod
 *
 *   <dasd>		: autodetect|probeonly|<devices>(,<devices>)*
 */

int dasd_probeonly =  0;	/* is true, when probeonly mode is active */
int dasd_autodetect = 0;	/* is true, when autodetection is active */
70 71
int dasd_nopav = 0;		/* is true, when PAV is disabled */
EXPORT_SYMBOL_GPL(dasd_nopav);
72 73
int dasd_nofcx;			/* disable High Performance Ficon */
EXPORT_SYMBOL_GPL(dasd_nofcx);
L
Linus Torvalds 已提交
74 75 76 77 78 79

/*
 * char *dasd[] is intended to hold the ranges supplied by the dasd= statement
 * it is named 'dasd' to directly be filled by insmod with the comma separated
 * strings when running as a module.
 */
80
static char *dasd[DASD_MAX_PARAMS];
81
module_param_array(dasd, charp, NULL, S_IRUGO);
R
Rusty Russell 已提交
82

L
Linus Torvalds 已提交
83
/*
84
 * Single spinlock to protect devmap and servermap structures and lists.
L
Linus Torvalds 已提交
85 86 87 88 89 90 91 92 93
 */
static DEFINE_SPINLOCK(dasd_devmap_lock);

/*
 * Hash lists for devmap structures.
 */
static struct list_head dasd_hashlists[256];
int dasd_max_devindex;

94
static struct dasd_devmap *dasd_add_busid(const char *, int);
L
Linus Torvalds 已提交
95 96

static inline int
97
dasd_hash_busid(const char *bus_id)
L
Linus Torvalds 已提交
98 99 100 101
{
	int hash, i;

	hash = 0;
102
	for (i = 0; (i < DASD_BUS_ID_SIZE) && *bus_id; i++, bus_id++)
L
Linus Torvalds 已提交
103 104 105 106 107
		hash += *bus_id;
	return hash & 0xff;
}

#ifndef MODULE
108
static int __init dasd_call_setup(char *opt)
L
Linus Torvalds 已提交
109
{
110
	static int i __initdata;
111 112 113 114 115 116 117 118 119
	char *tmp;

	while (i < DASD_MAX_PARAMS) {
		tmp = strsep(&opt, ",");
		if (!tmp)
			break;

		dasd[i++] = tmp;
	}
L
Linus Torvalds 已提交
120 121 122 123 124 125 126

	return 1;
}

__setup ("dasd=", dasd_call_setup);
#endif	/* #ifndef MODULE */

127 128
#define	DASD_IPLDEV	"ipldev"

L
Linus Torvalds 已提交
129 130 131
/*
 * Read a device busid/devno from a string.
 */
132
static int __init dasd_busid(char *str, int *id0, int *id1, int *devno)
L
Linus Torvalds 已提交
133
{
134 135
	unsigned int val;
	char *tok;
136

137
	/* Interpret ipldev busid */
138
	if (strncmp(DASD_IPLDEV, str, strlen(DASD_IPLDEV)) == 0) {
139
		if (ipl_info.type != IPL_TYPE_CCW) {
S
Stefan Haberland 已提交
140
			pr_err("The IPL device is not a CCW device\n");
141 142 143 144 145 146 147 148
			return -EINVAL;
		}
		*id0 = 0;
		*id1 = ipl_info.data.ccw.dev_id.ssid;
		*devno = ipl_info.data.ccw.dev_id.devno;

		return 0;
	}
149 150 151

	/* Old style 0xXXXX or XXXX */
	if (!kstrtouint(str, 16, &val)) {
L
Linus Torvalds 已提交
152
		*id0 = *id1 = 0;
S
Sebastian Ott 已提交
153
		if (val > 0xffff)
L
Linus Torvalds 已提交
154 155 156 157
			return -EINVAL;
		*devno = val;
		return 0;
	}
158

L
Linus Torvalds 已提交
159
	/* New style x.y.z busid */
160 161
	tok = strsep(&str, ".");
	if (kstrtouint(tok, 16, &val) || val > 0xff)
L
Linus Torvalds 已提交
162 163
		return -EINVAL;
	*id0 = val;
164 165 166

	tok = strsep(&str, ".");
	if (kstrtouint(tok, 16, &val) || val > 0xff)
L
Linus Torvalds 已提交
167 168
		return -EINVAL;
	*id1 = val;
169 170 171

	tok = strsep(&str, ".");
	if (kstrtouint(tok, 16, &val) || val > 0xffff)
L
Linus Torvalds 已提交
172 173
		return -EINVAL;
	*devno = val;
174

L
Linus Torvalds 已提交
175 176 177 178
	return 0;
}

/*
179
 * Read colon separated list of dasd features.
L
Linus Torvalds 已提交
180
 */
181
static int __init dasd_feature_list(char *str)
L
Linus Torvalds 已提交
182 183 184
{
	int features, len, rc;

185
	features = 0;
L
Linus Torvalds 已提交
186
	rc = 0;
187 188

	if (!str)
L
Linus Torvalds 已提交
189 190 191
		return DASD_FEATURE_DEFAULT;

	while (1) {
192
		for (len = 0;
L
Linus Torvalds 已提交
193 194 195 196 197
		     str[len] && str[len] != ':' && str[len] != ')'; len++);
		if (len == 2 && !strncmp(str, "ro", 2))
			features |= DASD_FEATURE_READONLY;
		else if (len == 4 && !strncmp(str, "diag", 4))
			features |= DASD_FEATURE_USEDIAG;
198 199
		else if (len == 3 && !strncmp(str, "raw", 3))
			features |= DASD_FEATURE_USERAW;
200 201
		else if (len == 6 && !strncmp(str, "erplog", 6))
			features |= DASD_FEATURE_ERPLOG;
202 203
		else if (len == 8 && !strncmp(str, "failfast", 8))
			features |= DASD_FEATURE_FAILFAST;
L
Linus Torvalds 已提交
204
		else {
205 206
			pr_warn("%*s is not a supported device option\n",
				len, str);
L
Linus Torvalds 已提交
207 208 209 210 211 212 213
			rc = -EINVAL;
		}
		str += len;
		if (*str != ':')
			break;
		str++;
	}
214 215

	return rc ? : features;
L
Linus Torvalds 已提交
216 217 218 219 220 221 222 223
}

/*
 * Try to match the first element on the comma separated parse string
 * with one of the known keywords. If a keyword is found, take the approprate
 * action and return a pointer to the residual string. If the first element
 * could not be matched to any keyword then return an error code.
 */
224 225 226
static int __init dasd_parse_keyword(char *keyword)
{
	int length = strlen(keyword);
L
Linus Torvalds 已提交
227

228
	if (strncmp("autodetect", keyword, length) == 0) {
L
Linus Torvalds 已提交
229
		dasd_autodetect = 1;
S
Stefan Haberland 已提交
230
		pr_info("The autodetection mode has been activated\n");
231
		return 0;
L
Linus Torvalds 已提交
232
        }
233
	if (strncmp("probeonly", keyword, length) == 0) {
L
Linus Torvalds 已提交
234
		dasd_probeonly = 1;
S
Stefan Haberland 已提交
235
		pr_info("The probeonly mode has been activated\n");
236
		return 0;
L
Linus Torvalds 已提交
237
        }
238
	if (strncmp("nopav", keyword, length) == 0) {
239
		if (MACHINE_IS_VM)
S
Stefan Haberland 已提交
240
			pr_info("'nopav' is not supported on z/VM\n");
241 242
		else {
			dasd_nopav = 1;
S
Stefan Haberland 已提交
243
			pr_info("PAV support has be deactivated\n");
244
		}
245
		return 0;
246
	}
247
	if (strncmp("nofcx", keyword, length) == 0) {
248
		dasd_nofcx = 1;
S
Stefan Haberland 已提交
249 250
		pr_info("High Performance FICON support has been "
			"deactivated\n");
251
		return 0;
252
	}
253
	if (strncmp("fixedbuffers", keyword, length) == 0) {
L
Linus Torvalds 已提交
254
		if (dasd_page_cache)
255
			return 0;
L
Linus Torvalds 已提交
256
		dasd_page_cache =
257 258
			kmem_cache_create("dasd_page_cache", PAGE_SIZE,
					  PAGE_SIZE, SLAB_CACHE_DMA,
259
					  NULL);
L
Linus Torvalds 已提交
260
		if (!dasd_page_cache)
S
Stefan Haberland 已提交
261
			DBF_EVENT(DBF_WARNING, "%s", "Failed to create slab, "
L
Linus Torvalds 已提交
262 263
				"fixed buffer mode disabled.");
		else
S
Stefan Haberland 已提交
264
			DBF_EVENT(DBF_INFO, "%s",
L
Linus Torvalds 已提交
265
				 "turning on fixed buffer mode");
266 267 268 269
		return 0;
	}

	return -EINVAL;
L
Linus Torvalds 已提交
270 271 272
}

/*
273 274 275 276 277 278
 * Split a string of a device range into its pieces and return the from, to, and
 * feature parts separately.
 * e.g.:
 * 0.0.1234-0.0.5678(ro:erplog) -> from: 0.0.1234 to: 0.0.5678 features: ro:erplog
 * 0.0.8765(raw) -> from: 0.0.8765 to: null features: raw
 * 0x4321 -> from: 0x4321 to: null features: null
L
Linus Torvalds 已提交
279
 */
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
static int __init dasd_evaluate_range_param(char *range, char **from_str,
					    char **to_str, char **features_str)
{
	int rc = 0;

	/* Do we have a range or a single device? */
	if (strchr(range, '-')) {
		*from_str = strsep(&range, "-");
		*to_str = strsep(&range, "(");
		*features_str = strsep(&range, ")");
	} else {
		*from_str = strsep(&range, "(");
		*features_str = strsep(&range, ")");
	}

	if (*features_str && !range) {
		pr_warn("A closing parenthesis ')' is missing in the dasd= parameter\n");
		rc = -EINVAL;
	}
L
Linus Torvalds 已提交
299

300 301 302 303 304 305 306 307 308 309
	return rc;
}

/*
 * Try to interprete the range string as a device number or a range of devices.
 * If the interpretation is successful, create the matching dasd_devmap entries.
 * If interpretation fails or in case of an error, return an error code.
 */
static int __init dasd_parse_range(const char *range)
{
L
Linus Torvalds 已提交
310 311 312
	struct dasd_devmap *devmap;
	int from, from_id0, from_id1;
	int to, to_id0, to_id1;
313 314 315 316 317
	int features;
	char bus_id[DASD_BUS_ID_SIZE + 1];
	char *features_str = NULL;
	char *from_str = NULL;
	char *to_str = NULL;
318 319
	int rc = 0;
	char *tmp;
320

321 322 323
	tmp = kstrdup(range, GFP_KERNEL);
	if (!tmp)
		return -ENOMEM;
324

325 326 327 328
	if (dasd_evaluate_range_param(tmp, &from_str, &to_str, &features_str)) {
		rc = -EINVAL;
		goto out;
	}
329

330 331 332 333
	if (dasd_busid(from_str, &from_id0, &from_id1, &from)) {
		rc = -EINVAL;
		goto out;
	}
334 335 336 337 338

	to = from;
	to_id0 = from_id0;
	to_id1 = from_id1;
	if (to_str) {
339 340 341 342
		if (dasd_busid(to_str, &to_id0, &to_id1, &to)) {
			rc = -EINVAL;
			goto out;
		}
343 344
		if (from_id0 != to_id0 || from_id1 != to_id1 || from > to) {
			pr_err("%s is not a valid device range\n", range);
345 346
			rc = -EINVAL;
			goto out;
L
Linus Torvalds 已提交
347 348
		}
	}
349 350

	features = dasd_feature_list(features_str);
351 352 353 354
	if (features < 0) {
		rc = -EINVAL;
		goto out;
	}
355 356
	/* each device in dasd= parameter should be set initially online */
	features |= DASD_FEATURE_INITIAL_ONLINE;
L
Linus Torvalds 已提交
357
	while (from <= to) {
358
		sprintf(bus_id, "%01x.%01x.%04x", from_id0, from_id1, from++);
L
Linus Torvalds 已提交
359
		devmap = dasd_add_busid(bus_id, features);
360 361 362 363
		if (IS_ERR(devmap)) {
			rc = PTR_ERR(devmap);
			goto out;
		}
L
Linus Torvalds 已提交
364 365
	}

366 367
out:
	kfree(tmp);
368

369
	return rc;
L
Linus Torvalds 已提交
370 371 372 373 374
}

/*
 * Parse parameters stored in dasd[]
 * The 'dasd=...' parameter allows to specify a comma separated list of
375 376
 * keywords and device ranges. The parameters in that list will be stored as
 * separate elementes in dasd[].
L
Linus Torvalds 已提交
377
 */
378
int __init dasd_parse(void)
L
Linus Torvalds 已提交
379 380
{
	int rc, i;
381
	char *cur;
L
Linus Torvalds 已提交
382 383

	rc = 0;
384
	for (i = 0; i < DASD_MAX_PARAMS; i++) {
385 386
		cur = dasd[i];
		if (!cur)
L
Linus Torvalds 已提交
387
			break;
388 389 390 391 392 393 394 395
		if (*cur == '\0')
			continue;

		rc = dasd_parse_keyword(cur);
		if (rc)
			rc = dasd_parse_range(cur);

		if (rc)
L
Linus Torvalds 已提交
396 397
			break;
	}
398

L
Linus Torvalds 已提交
399 400 401 402 403 404 405
	return rc;
}

/*
 * Add a devmap for the device specified by busid. It is possible that
 * the devmap already exists (dasd= parameter). The order of the devices
 * added through this function will define the kdevs for the individual
406
 * devices.
L
Linus Torvalds 已提交
407 408
 */
static struct dasd_devmap *
409
dasd_add_busid(const char *bus_id, int features)
L
Linus Torvalds 已提交
410 411 412 413
{
	struct dasd_devmap *devmap, *new, *tmp;
	int hash;

414
	new = kzalloc(sizeof(struct dasd_devmap), GFP_KERNEL);
L
Linus Torvalds 已提交
415 416 417
	if (!new)
		return ERR_PTR(-ENOMEM);
	spin_lock(&dasd_devmap_lock);
H
Heiko Carstens 已提交
418
	devmap = NULL;
L
Linus Torvalds 已提交
419 420
	hash = dasd_hash_busid(bus_id);
	list_for_each_entry(tmp, &dasd_hashlists[hash], list)
421
		if (strncmp(tmp->bus_id, bus_id, DASD_BUS_ID_SIZE) == 0) {
L
Linus Torvalds 已提交
422 423 424 425 426 427
			devmap = tmp;
			break;
		}
	if (!devmap) {
		/* This bus_id is new. */
		new->devindex = dasd_max_devindex++;
428
		strncpy(new->bus_id, bus_id, DASD_BUS_ID_SIZE);
L
Linus Torvalds 已提交
429
		new->features = features;
H
Heiko Carstens 已提交
430
		new->device = NULL;
L
Linus Torvalds 已提交
431 432
		list_add(&new->list, &dasd_hashlists[hash]);
		devmap = new;
H
Heiko Carstens 已提交
433
		new = NULL;
L
Linus Torvalds 已提交
434 435
	}
	spin_unlock(&dasd_devmap_lock);
J
Jesper Juhl 已提交
436
	kfree(new);
L
Linus Torvalds 已提交
437 438 439 440 441 442 443
	return devmap;
}

/*
 * Find devmap for device with given bus_id.
 */
static struct dasd_devmap *
444
dasd_find_busid(const char *bus_id)
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452
{
	struct dasd_devmap *devmap, *tmp;
	int hash;

	spin_lock(&dasd_devmap_lock);
	devmap = ERR_PTR(-ENODEV);
	hash = dasd_hash_busid(bus_id);
	list_for_each_entry(tmp, &dasd_hashlists[hash], list) {
453
		if (strncmp(tmp->bus_id, bus_id, DASD_BUS_ID_SIZE) == 0) {
L
Linus Torvalds 已提交
454 455 456 457 458 459 460 461 462 463 464 465
			devmap = tmp;
			break;
		}
	}
	spin_unlock(&dasd_devmap_lock);
	return devmap;
}

/*
 * Check if busid has been added to the list of dasd ranges.
 */
int
466
dasd_busid_known(const char *bus_id)
L
Linus Torvalds 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
{
	return IS_ERR(dasd_find_busid(bus_id)) ? -ENOENT : 0;
}

/*
 * Forget all about the device numbers added so far.
 * This may only be called at module unload or system shutdown.
 */
static void
dasd_forget_ranges(void)
{
	struct dasd_devmap *devmap, *n;
	int i;

	spin_lock(&dasd_devmap_lock);
	for (i = 0; i < 256; i++) {
		list_for_each_entry_safe(devmap, n, &dasd_hashlists[i], list) {
484
			BUG_ON(devmap->device != NULL);
L
Linus Torvalds 已提交
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
			list_del(&devmap->list);
			kfree(devmap);
		}
	}
	spin_unlock(&dasd_devmap_lock);
}

/*
 * Find the device struct by its device index.
 */
struct dasd_device *
dasd_device_from_devindex(int devindex)
{
	struct dasd_devmap *devmap, *tmp;
	struct dasd_device *device;
	int i;

	spin_lock(&dasd_devmap_lock);
H
Heiko Carstens 已提交
503
	devmap = NULL;
L
Linus Torvalds 已提交
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
	for (i = 0; (i < 256) && !devmap; i++)
		list_for_each_entry(tmp, &dasd_hashlists[i], list)
			if (tmp->devindex == devindex) {
				/* Found the devmap for the device. */
				devmap = tmp;
				break;
			}
	if (devmap && devmap->device) {
		device = devmap->device;
		dasd_get_device(device);
	} else
		device = ERR_PTR(-ENODEV);
	spin_unlock(&dasd_devmap_lock);
	return device;
}

/*
 * Return devmap for cdev. If no devmap exists yet, create one and
 * connect it to the cdev.
 */
static struct dasd_devmap *
dasd_devmap_from_cdev(struct ccw_device *cdev)
{
	struct dasd_devmap *devmap;

529
	devmap = dasd_find_busid(dev_name(&cdev->dev));
L
Linus Torvalds 已提交
530
	if (IS_ERR(devmap))
531
		devmap = dasd_add_busid(dev_name(&cdev->dev),
L
Linus Torvalds 已提交
532 533 534 535 536 537 538 539 540 541 542 543
					DASD_FEATURE_DEFAULT);
	return devmap;
}

/*
 * Create a dasd device structure for cdev.
 */
struct dasd_device *
dasd_create_device(struct ccw_device *cdev)
{
	struct dasd_devmap *devmap;
	struct dasd_device *device;
544
	unsigned long flags;
L
Linus Torvalds 已提交
545 546 547 548 549 550 551 552 553
	int rc;

	devmap = dasd_devmap_from_cdev(cdev);
	if (IS_ERR(devmap))
		return (void *) devmap;

	device = dasd_alloc_device();
	if (IS_ERR(device))
		return device;
554
	atomic_set(&device->ref_count, 3);
L
Linus Torvalds 已提交
555 556 557 558 559

	spin_lock(&dasd_devmap_lock);
	if (!devmap->device) {
		devmap->device = device;
		device->devindex = devmap->devindex;
560
		device->features = devmap->features;
L
Linus Torvalds 已提交
561 562 563 564 565 566 567 568 569 570 571 572
		get_device(&cdev->dev);
		device->cdev = cdev;
		rc = 0;
	} else
		/* Someone else was faster. */
		rc = -EBUSY;
	spin_unlock(&dasd_devmap_lock);

	if (rc) {
		dasd_free_device(device);
		return ERR_PTR(rc);
	}
573 574

	spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
575
	dev_set_drvdata(&cdev->dev, device);
576 577
	spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);

L
Linus Torvalds 已提交
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
	return device;
}

/*
 * Wait queue for dasd_delete_device waits.
 */
static DECLARE_WAIT_QUEUE_HEAD(dasd_delete_wq);

/*
 * Remove a dasd device structure. The passed referenced
 * is destroyed.
 */
void
dasd_delete_device(struct dasd_device *device)
{
	struct ccw_device *cdev;
	struct dasd_devmap *devmap;
595
	unsigned long flags;
L
Linus Torvalds 已提交
596 597

	/* First remove device pointer from devmap. */
598
	devmap = dasd_find_busid(dev_name(&device->cdev->dev));
599
	BUG_ON(IS_ERR(devmap));
L
Linus Torvalds 已提交
600 601 602 603 604 605 606 607 608
	spin_lock(&dasd_devmap_lock);
	if (devmap->device != device) {
		spin_unlock(&dasd_devmap_lock);
		dasd_put_device(device);
		return;
	}
	devmap->device = NULL;
	spin_unlock(&dasd_devmap_lock);

609 610
	/* Disconnect dasd_device structure from ccw_device structure. */
	spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
611
	dev_set_drvdata(&device->cdev->dev, NULL);
612 613 614 615 616 617 618
	spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);

	/*
	 * Drop ref_count by 3, one for the devmap reference, one for
	 * the cdev reference and one for the passed reference.
	 */
	atomic_sub(3, &device->ref_count);
L
Linus Torvalds 已提交
619 620 621 622

	/* Wait for reference counter to drop to zero. */
	wait_event(dasd_delete_wq, atomic_read(&device->ref_count) == 0);

623
	dasd_generic_free_discipline(device);
L
Linus Torvalds 已提交
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
	/* Disconnect dasd_device structure from ccw_device structure. */
	cdev = device->cdev;
	device->cdev = NULL;

	/* Put ccw_device structure. */
	put_device(&cdev->dev);

	/* Now the device structure can be freed. */
	dasd_free_device(device);
}

/*
 * Reference counter dropped to zero. Wake up waiter
 * in dasd_delete_device.
 */
void
dasd_put_device_wake(struct dasd_device *device)
{
	wake_up(&dasd_delete_wq);
}
644
EXPORT_SYMBOL_GPL(dasd_put_device_wake);
L
Linus Torvalds 已提交
645

646 647 648 649 650 651 652 653
/*
 * Return dasd_device structure associated with cdev.
 * This function needs to be called with the ccw device
 * lock held. It can be used from interrupt context.
 */
struct dasd_device *
dasd_device_from_cdev_locked(struct ccw_device *cdev)
{
654
	struct dasd_device *device = dev_get_drvdata(&cdev->dev);
655 656 657 658 659 660 661

	if (!device)
		return ERR_PTR(-ENODEV);
	dasd_get_device(device);
	return device;
}

L
Linus Torvalds 已提交
662 663 664 665 666 667 668
/*
 * Return dasd_device structure associated with cdev.
 */
struct dasd_device *
dasd_device_from_cdev(struct ccw_device *cdev)
{
	struct dasd_device *device;
669
	unsigned long flags;
L
Linus Torvalds 已提交
670

671 672 673
	spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
	device = dasd_device_from_cdev_locked(cdev);
	spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
L
Linus Torvalds 已提交
674 675 676
	return device;
}

677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
void dasd_add_link_to_gendisk(struct gendisk *gdp, struct dasd_device *device)
{
	struct dasd_devmap *devmap;

	devmap = dasd_find_busid(dev_name(&device->cdev->dev));
	if (IS_ERR(devmap))
		return;
	spin_lock(&dasd_devmap_lock);
	gdp->private_data = devmap;
	spin_unlock(&dasd_devmap_lock);
}

struct dasd_device *dasd_device_from_gendisk(struct gendisk *gdp)
{
	struct dasd_device *device;
	struct dasd_devmap *devmap;

	if (!gdp->private_data)
		return NULL;
	device = NULL;
	spin_lock(&dasd_devmap_lock);
	devmap = gdp->private_data;
	if (devmap && devmap->device) {
		device = devmap->device;
		dasd_get_device(device);
	}
	spin_unlock(&dasd_devmap_lock);
	return device;
}

L
Linus Torvalds 已提交
707 708 709 710
/*
 * SECTION: files in sysfs
 */

711 712 713 714 715 716 717 718 719
/*
 * failfast controls the behaviour, if no path is available
 */
static ssize_t dasd_ff_show(struct device *dev, struct device_attribute *attr,
			    char *buf)
{
	struct dasd_devmap *devmap;
	int ff_flag;

720
	devmap = dasd_find_busid(dev_name(dev));
721 722 723 724 725 726 727 728 729 730
	if (!IS_ERR(devmap))
		ff_flag = (devmap->features & DASD_FEATURE_FAILFAST) != 0;
	else
		ff_flag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_FAILFAST) != 0;
	return snprintf(buf, PAGE_SIZE, ff_flag ? "1\n" : "0\n");
}

static ssize_t dasd_ff_store(struct device *dev, struct device_attribute *attr,
	      const char *buf, size_t count)
{
731
	unsigned int val;
732
	int rc;
733

734
	if (kstrtouint(buf, 0, &val) || val > 1)
735 736
		return -EINVAL;

737 738 739
	rc = dasd_set_feature(to_ccwdev(dev), DASD_FEATURE_FAILFAST, val);

	return rc ? : count;
740 741 742 743
}

static DEVICE_ATTR(failfast, 0644, dasd_ff_show, dasd_ff_store);

L
Linus Torvalds 已提交
744 745 746 747
/*
 * readonly controls the readonly status of a dasd
 */
static ssize_t
748
dasd_ro_show(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
749 750
{
	struct dasd_devmap *devmap;
751 752
	struct dasd_device *device;
	int ro_flag = 0;
L
Linus Torvalds 已提交
753

754
	devmap = dasd_find_busid(dev_name(dev));
755 756 757 758 759 760 761 762 763 764 765 766
	if (IS_ERR(devmap))
		goto out;

	ro_flag = !!(devmap->features & DASD_FEATURE_READONLY);

	spin_lock(&dasd_devmap_lock);
	device = devmap->device;
	if (device)
		ro_flag |= test_bit(DASD_FLAG_DEVICE_RO, &device->flags);
	spin_unlock(&dasd_devmap_lock);

out:
L
Linus Torvalds 已提交
767 768 769 770
	return snprintf(buf, PAGE_SIZE, ro_flag ? "1\n" : "0\n");
}

static ssize_t
771 772
dasd_ro_store(struct device *dev, struct device_attribute *attr,
	      const char *buf, size_t count)
L
Linus Torvalds 已提交
773
{
774
	struct ccw_device *cdev = to_ccwdev(dev);
775
	struct dasd_device *device;
776
	unsigned long flags;
777
	unsigned int val;
778
	int rc;
779

780
	if (kstrtouint(buf, 0, &val) || val > 1)
781 782
		return -EINVAL;

783 784 785 786 787 788
	rc = dasd_set_feature(cdev, DASD_FEATURE_READONLY, val);
	if (rc)
		return rc;

	device = dasd_device_from_cdev(cdev);
	if (IS_ERR(device))
789
		return count;
790

791
	spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
792 793
	val = val || test_bit(DASD_FLAG_DEVICE_RO, &device->flags);

794 795 796 797 798 799 800 801 802 803 804 805 806
	if (!device->block || !device->block->gdp ||
	    test_bit(DASD_FLAG_OFFLINE, &device->flags)) {
		spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
		goto out;
	}
	/* Increase open_count to avoid losing the block device */
	atomic_inc(&device->block->open_count);
	spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);

	set_disk_ro(device->block->gdp, val);
	atomic_dec(&device->block->open_count);

out:
807 808
	dasd_put_device(device);

L
Linus Torvalds 已提交
809 810 811 812
	return count;
}

static DEVICE_ATTR(readonly, 0644, dasd_ro_show, dasd_ro_store);
813 814 815 816 817 818 819 820 821 822
/*
 * erplog controls the logging of ERP related data
 * (e.g. failing channel programs).
 */
static ssize_t
dasd_erplog_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct dasd_devmap *devmap;
	int erplog;

823
	devmap = dasd_find_busid(dev_name(dev));
824 825 826 827 828 829 830 831 832 833 834
	if (!IS_ERR(devmap))
		erplog = (devmap->features & DASD_FEATURE_ERPLOG) != 0;
	else
		erplog = (DASD_FEATURE_DEFAULT & DASD_FEATURE_ERPLOG) != 0;
	return snprintf(buf, PAGE_SIZE, erplog ? "1\n" : "0\n");
}

static ssize_t
dasd_erplog_store(struct device *dev, struct device_attribute *attr,
	      const char *buf, size_t count)
{
835
	unsigned int val;
836
	int rc;
837

838
	if (kstrtouint(buf, 0, &val) || val > 1)
839 840
		return -EINVAL;

841 842 843
	rc = dasd_set_feature(to_ccwdev(dev), DASD_FEATURE_ERPLOG, val);

	return rc ? : count;
844 845 846
}

static DEVICE_ATTR(erplog, 0644, dasd_erplog_show, dasd_erplog_store);
L
Linus Torvalds 已提交
847 848 849 850 851

/*
 * use_diag controls whether the driver should use diag rather than ssch
 * to talk to the device
 */
852
static ssize_t
853
dasd_use_diag_show(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
854 855 856 857
{
	struct dasd_devmap *devmap;
	int use_diag;

858
	devmap = dasd_find_busid(dev_name(dev));
L
Linus Torvalds 已提交
859 860 861 862 863 864 865 866
	if (!IS_ERR(devmap))
		use_diag = (devmap->features & DASD_FEATURE_USEDIAG) != 0;
	else
		use_diag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_USEDIAG) != 0;
	return sprintf(buf, use_diag ? "1\n" : "0\n");
}

static ssize_t
867 868
dasd_use_diag_store(struct device *dev, struct device_attribute *attr,
		    const char *buf, size_t count)
L
Linus Torvalds 已提交
869 870
{
	struct dasd_devmap *devmap;
871
	unsigned int val;
L
Linus Torvalds 已提交
872 873 874 875 876
	ssize_t rc;

	devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
	if (IS_ERR(devmap))
		return PTR_ERR(devmap);
877

878
	if (kstrtouint(buf, 0, &val) || val > 1)
879 880
		return -EINVAL;

L
Linus Torvalds 已提交
881 882 883
	spin_lock(&dasd_devmap_lock);
	/* Changing diag discipline flag is only allowed in offline state. */
	rc = count;
884
	if (!devmap->device && !(devmap->features & DASD_FEATURE_USERAW)) {
885
		if (val)
L
Linus Torvalds 已提交
886 887 888 889 890 891 892 893 894
			devmap->features |= DASD_FEATURE_USEDIAG;
		else
			devmap->features &= ~DASD_FEATURE_USEDIAG;
	} else
		rc = -EPERM;
	spin_unlock(&dasd_devmap_lock);
	return rc;
}

895
static DEVICE_ATTR(use_diag, 0644, dasd_use_diag_show, dasd_use_diag_store);
L
Linus Torvalds 已提交
896

897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
/*
 * use_raw controls whether the driver should give access to raw eckd data or
 * operate in standard mode
 */
static ssize_t
dasd_use_raw_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct dasd_devmap *devmap;
	int use_raw;

	devmap = dasd_find_busid(dev_name(dev));
	if (!IS_ERR(devmap))
		use_raw = (devmap->features & DASD_FEATURE_USERAW) != 0;
	else
		use_raw = (DASD_FEATURE_DEFAULT & DASD_FEATURE_USERAW) != 0;
	return sprintf(buf, use_raw ? "1\n" : "0\n");
}

static ssize_t
dasd_use_raw_store(struct device *dev, struct device_attribute *attr,
		    const char *buf, size_t count)
{
	struct dasd_devmap *devmap;
	ssize_t rc;
	unsigned long val;

	devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
	if (IS_ERR(devmap))
		return PTR_ERR(devmap);

927
	if ((kstrtoul(buf, 10, &val) != 0) || val > 1)
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
		return -EINVAL;

	spin_lock(&dasd_devmap_lock);
	/* Changing diag discipline flag is only allowed in offline state. */
	rc = count;
	if (!devmap->device && !(devmap->features & DASD_FEATURE_USEDIAG)) {
		if (val)
			devmap->features |= DASD_FEATURE_USERAW;
		else
			devmap->features &= ~DASD_FEATURE_USERAW;
	} else
		rc = -EPERM;
	spin_unlock(&dasd_devmap_lock);
	return rc;
}

static DEVICE_ATTR(raw_track_access, 0644, dasd_use_raw_show,
		   dasd_use_raw_store);

947 948 949 950 951 952
static ssize_t
dasd_safe_offline_store(struct device *dev, struct device_attribute *attr,
			const char *buf, size_t count)
{
	struct ccw_device *cdev = to_ccwdev(dev);
	struct dasd_device *device;
953
	unsigned long flags;
954 955
	int rc;

956 957
	spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
	device = dasd_device_from_cdev_locked(cdev);
958 959
	if (IS_ERR(device)) {
		rc = PTR_ERR(device);
960
		spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
961 962 963 964 965 966 967
		goto out;
	}

	if (test_bit(DASD_FLAG_OFFLINE, &device->flags) ||
	    test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
		/* Already doing offline processing */
		dasd_put_device(device);
968
		spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
969 970 971 972 973 974
		rc = -EBUSY;
		goto out;
	}

	set_bit(DASD_FLAG_SAFE_OFFLINE, &device->flags);
	dasd_put_device(device);
975
	spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
976 977 978 979 980 981 982 983 984

	rc = ccw_device_set_offline(cdev);

out:
	return rc ? rc : count;
}

static DEVICE_ATTR(safe_offline, 0200, NULL, dasd_safe_offline_store);

985 986 987 988 989 990 991 992 993 994 995 996
static ssize_t
dasd_access_show(struct device *dev, struct device_attribute *attr,
		 char *buf)
{
	struct ccw_device *cdev = to_ccwdev(dev);
	struct dasd_device *device;
	int count;

	device = dasd_device_from_cdev(cdev);
	if (IS_ERR(device))
		return PTR_ERR(device);

997 998 999
	if (!device->discipline)
		count = -ENODEV;
	else if (!device->discipline->host_access_count)
1000
		count = -EOPNOTSUPP;
1001 1002
	else
		count = device->discipline->host_access_count(device);
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012

	dasd_put_device(device);
	if (count < 0)
		return count;

	return sprintf(buf, "%d\n", count);
}

static DEVICE_ATTR(host_access_count, 0444, dasd_access_show, NULL);

L
Linus Torvalds 已提交
1013
static ssize_t
1014 1015
dasd_discipline_show(struct device *dev, struct device_attribute *attr,
		     char *buf)
L
Linus Torvalds 已提交
1016
{
1017 1018
	struct dasd_device *device;
	ssize_t len;
L
Linus Torvalds 已提交
1019

1020
	device = dasd_device_from_cdev(to_ccwdev(dev));
S
Stefan Haberland 已提交
1021 1022 1023 1024 1025 1026
	if (IS_ERR(device))
		goto out;
	else if (!device->discipline) {
		dasd_put_device(device);
		goto out;
	} else {
1027 1028 1029
		len = snprintf(buf, PAGE_SIZE, "%s\n",
			       device->discipline->name);
		dasd_put_device(device);
S
Stefan Haberland 已提交
1030 1031 1032 1033
		return len;
	}
out:
	len = snprintf(buf, PAGE_SIZE, "none\n");
1034
	return len;
L
Linus Torvalds 已提交
1035 1036 1037 1038
}

static DEVICE_ATTR(discipline, 0444, dasd_discipline_show, NULL);

1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
static ssize_t
dasd_device_status_show(struct device *dev, struct device_attribute *attr,
		     char *buf)
{
	struct dasd_device *device;
	ssize_t len;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (!IS_ERR(device)) {
		switch (device->state) {
		case DASD_STATE_NEW:
			len = snprintf(buf, PAGE_SIZE, "new\n");
			break;
		case DASD_STATE_KNOWN:
			len = snprintf(buf, PAGE_SIZE, "detected\n");
			break;
		case DASD_STATE_BASIC:
			len = snprintf(buf, PAGE_SIZE, "basic\n");
			break;
		case DASD_STATE_UNFMT:
			len = snprintf(buf, PAGE_SIZE, "unformatted\n");
			break;
		case DASD_STATE_READY:
			len = snprintf(buf, PAGE_SIZE, "ready\n");
			break;
		case DASD_STATE_ONLINE:
			len = snprintf(buf, PAGE_SIZE, "online\n");
			break;
		default:
			len = snprintf(buf, PAGE_SIZE, "no stat\n");
			break;
		}
		dasd_put_device(device);
	} else
		len = snprintf(buf, PAGE_SIZE, "unknown\n");
	return len;
}

static DEVICE_ATTR(status, 0444, dasd_device_status_show, NULL);

1079 1080
static ssize_t dasd_alias_show(struct device *dev,
			       struct device_attribute *attr, char *buf)
1081
{
1082 1083
	struct dasd_device *device;
	struct dasd_uid uid;
1084

1085 1086
	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
1087
		return sprintf(buf, "0\n");
1088 1089 1090 1091

	if (device->discipline && device->discipline->get_uid &&
	    !device->discipline->get_uid(device, &uid)) {
		if (uid.type == UA_BASE_PAV_ALIAS ||
S
Stefan Haberland 已提交
1092 1093
		    uid.type == UA_HYPER_PAV_ALIAS) {
			dasd_put_device(device);
1094
			return sprintf(buf, "1\n");
S
Stefan Haberland 已提交
1095
		}
1096
	}
1097 1098 1099
	dasd_put_device(device);

	return sprintf(buf, "0\n");
1100 1101 1102 1103
}

static DEVICE_ATTR(alias, 0444, dasd_alias_show, NULL);

1104 1105
static ssize_t dasd_vendor_show(struct device *dev,
				struct device_attribute *attr, char *buf)
1106
{
1107 1108
	struct dasd_device *device;
	struct dasd_uid uid;
1109 1110
	char *vendor;

1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
	device = dasd_device_from_cdev(to_ccwdev(dev));
	vendor = "";
	if (IS_ERR(device))
		return snprintf(buf, PAGE_SIZE, "%s\n", vendor);

	if (device->discipline && device->discipline->get_uid &&
	    !device->discipline->get_uid(device, &uid))
			vendor = uid.vendor;

	dasd_put_device(device);
1121 1122 1123 1124 1125 1126 1127

	return snprintf(buf, PAGE_SIZE, "%s\n", vendor);
}

static DEVICE_ATTR(vendor, 0444, dasd_vendor_show, NULL);

#define UID_STRLEN ( /* vendor */ 3 + 1 + /* serial    */ 14 + 1 +\
1128 1129
		     /* SSID   */ 4 + 1 + /* unit addr */ 2 + 1 +\
		     /* vduit */ 32 + 1)
1130 1131 1132 1133

static ssize_t
dasd_uid_show(struct device *dev, struct device_attribute *attr, char *buf)
{
1134 1135
	struct dasd_device *device;
	struct dasd_uid uid;
1136 1137
	char uid_string[UID_STRLEN];
	char ua_string[3];
1138

1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
	device = dasd_device_from_cdev(to_ccwdev(dev));
	uid_string[0] = 0;
	if (IS_ERR(device))
		return snprintf(buf, PAGE_SIZE, "%s\n", uid_string);

	if (device->discipline && device->discipline->get_uid &&
	    !device->discipline->get_uid(device, &uid)) {
		switch (uid.type) {
		case UA_BASE_DEVICE:
			snprintf(ua_string, sizeof(ua_string), "%02x",
				 uid.real_unit_addr);
			break;
		case UA_BASE_PAV_ALIAS:
			snprintf(ua_string, sizeof(ua_string), "%02x",
				 uid.base_unit_addr);
			break;
		case UA_HYPER_PAV_ALIAS:
			snprintf(ua_string, sizeof(ua_string), "xx");
			break;
		default:
			/* should not happen, treat like base device */
			snprintf(ua_string, sizeof(ua_string), "%02x",
				 uid.real_unit_addr);
			break;
		}

		if (strlen(uid.vduit) > 0)
			snprintf(uid_string, sizeof(uid_string),
				 "%s.%s.%04x.%s.%s",
				 uid.vendor, uid.serial, uid.ssid, ua_string,
				 uid.vduit);
		else
			snprintf(uid_string, sizeof(uid_string),
				 "%s.%s.%04x.%s",
				 uid.vendor, uid.serial, uid.ssid, ua_string);
1174
	}
1175 1176
	dasd_put_device(device);

1177
	return snprintf(buf, PAGE_SIZE, "%s\n", uid_string);
1178 1179 1180
}
static DEVICE_ATTR(uid, 0444, dasd_uid_show, NULL);

1181 1182 1183 1184 1185 1186 1187 1188 1189
/*
 * extended error-reporting
 */
static ssize_t
dasd_eer_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct dasd_devmap *devmap;
	int eer_flag;

1190
	devmap = dasd_find_busid(dev_name(dev));
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
	if (!IS_ERR(devmap) && devmap->device)
		eer_flag = dasd_eer_enabled(devmap->device);
	else
		eer_flag = 0;
	return snprintf(buf, PAGE_SIZE, eer_flag ? "1\n" : "0\n");
}

static ssize_t
dasd_eer_store(struct device *dev, struct device_attribute *attr,
	       const char *buf, size_t count)
{
1202
	struct dasd_device *device;
1203
	unsigned int val;
1204
	int rc = 0;
1205

1206 1207 1208
	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return PTR_ERR(device);
1209

1210
	if (kstrtouint(buf, 0, &val) || val > 1)
1211 1212
		return -EINVAL;

1213 1214 1215 1216 1217 1218 1219 1220
	if (val)
		rc = dasd_eer_enable(device);
	else
		dasd_eer_disable(device);

	dasd_put_device(device);

	return rc ? : count;
1221 1222 1223 1224
}

static DEVICE_ATTR(eer_enabled, 0644, dasd_eer_show, dasd_eer_store);

1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
/*
 * expiration time for default requests
 */
static ssize_t
dasd_expires_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct dasd_device *device;
	int len;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;
	len = snprintf(buf, PAGE_SIZE, "%lu\n", device->default_expires);
	dasd_put_device(device);
	return len;
}

static ssize_t
dasd_expires_store(struct device *dev, struct device_attribute *attr,
	       const char *buf, size_t count)
{
	struct dasd_device *device;
	unsigned long val;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;

1253
	if ((kstrtoul(buf, 10, &val) != 0) ||
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
	    (val > DASD_EXPIRES_MAX) || val == 0) {
		dasd_put_device(device);
		return -EINVAL;
	}

	if (val)
		device->default_expires = val;

	dasd_put_device(device);
	return count;
}

static DEVICE_ATTR(expires, 0644, dasd_expires_show, dasd_expires_store);

1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
static ssize_t
dasd_retries_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct dasd_device *device;
	int len;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;
	len = snprintf(buf, PAGE_SIZE, "%lu\n", device->default_retries);
	dasd_put_device(device);
	return len;
}

static ssize_t
dasd_retries_store(struct device *dev, struct device_attribute *attr,
		   const char *buf, size_t count)
{
	struct dasd_device *device;
	unsigned long val;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;

1293
	if ((kstrtoul(buf, 10, &val) != 0) ||
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
	    (val > DASD_RETRIES_MAX)) {
		dasd_put_device(device);
		return -EINVAL;
	}

	if (val)
		device->default_retries = val;

	dasd_put_device(device);
	return count;
}

static DEVICE_ATTR(retries, 0644, dasd_retries_show, dasd_retries_store);

1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
static ssize_t
dasd_timeout_show(struct device *dev, struct device_attribute *attr,
		  char *buf)
{
	struct dasd_device *device;
	int len;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;
	len = snprintf(buf, PAGE_SIZE, "%lu\n", device->blk_timeout);
	dasd_put_device(device);
	return len;
}

static ssize_t
dasd_timeout_store(struct device *dev, struct device_attribute *attr,
		   const char *buf, size_t count)
{
	struct dasd_device *device;
	struct request_queue *q;
	unsigned long val, flags;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device) || !device->block)
		return -ENODEV;

1335
	if ((kstrtoul(buf, 10, &val) != 0) ||
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
	    val > UINT_MAX / HZ) {
		dasd_put_device(device);
		return -EINVAL;
	}
	q = device->block->request_queue;
	if (!q) {
		dasd_put_device(device);
		return -ENODEV;
	}
	spin_lock_irqsave(&device->block->request_queue_lock, flags);
	if (!val)
		blk_queue_rq_timed_out(q, NULL);
	else
		blk_queue_rq_timed_out(q, dasd_times_out);

	device->blk_timeout = val;

	blk_queue_rq_timeout(q, device->blk_timeout * HZ);
	spin_unlock_irqrestore(&device->block->request_queue_lock, flags);

	dasd_put_device(device);
	return count;
}

static DEVICE_ATTR(timeout, 0644,
		   dasd_timeout_show, dasd_timeout_store);

1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406

static ssize_t
dasd_path_reset_store(struct device *dev, struct device_attribute *attr,
		      const char *buf, size_t count)
{
	struct dasd_device *device;
	unsigned int val;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;

	if ((kstrtouint(buf, 16, &val) != 0) || val > 0xff)
		val = 0;

	if (device->discipline && device->discipline->reset_path)
		device->discipline->reset_path(device, (__u8) val);

	dasd_put_device(device);
	return count;
}

static DEVICE_ATTR(path_reset, 0200, NULL, dasd_path_reset_store);

static ssize_t dasd_hpf_show(struct device *dev, struct device_attribute *attr,
			     char *buf)
{
	struct dasd_device *device;
	int hpf;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;
	if (!device->discipline || !device->discipline->hpf_enabled) {
		dasd_put_device(device);
		return snprintf(buf, PAGE_SIZE, "%d\n", dasd_nofcx);
	}
	hpf = device->discipline->hpf_enabled(device);
	dasd_put_device(device);
	return snprintf(buf, PAGE_SIZE, "%d\n", hpf);
}

static DEVICE_ATTR(hpf, 0444, dasd_hpf_show, NULL);

1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
static ssize_t dasd_reservation_policy_show(struct device *dev,
					    struct device_attribute *attr,
					    char *buf)
{
	struct dasd_devmap *devmap;
	int rc = 0;

	devmap = dasd_find_busid(dev_name(dev));
	if (IS_ERR(devmap)) {
		rc = snprintf(buf, PAGE_SIZE, "ignore\n");
	} else {
		spin_lock(&dasd_devmap_lock);
		if (devmap->features & DASD_FEATURE_FAILONSLCK)
			rc = snprintf(buf, PAGE_SIZE, "fail\n");
		else
			rc = snprintf(buf, PAGE_SIZE, "ignore\n");
		spin_unlock(&dasd_devmap_lock);
	}
	return rc;
}

static ssize_t dasd_reservation_policy_store(struct device *dev,
					     struct device_attribute *attr,
					     const char *buf, size_t count)
{
1432
	struct ccw_device *cdev = to_ccwdev(dev);
1433 1434 1435
	int rc;

	if (sysfs_streq("ignore", buf))
1436
		rc = dasd_set_feature(cdev, DASD_FEATURE_FAILONSLCK, 0);
1437
	else if (sysfs_streq("fail", buf))
1438
		rc = dasd_set_feature(cdev, DASD_FEATURE_FAILONSLCK, 1);
1439 1440
	else
		rc = -EINVAL;
1441 1442

	return rc ? : count;
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
}

static DEVICE_ATTR(reservation_policy, 0644,
		   dasd_reservation_policy_show, dasd_reservation_policy_store);

static ssize_t dasd_reservation_state_show(struct device *dev,
					   struct device_attribute *attr,
					   char *buf)
{
	struct dasd_device *device;
	int rc = 0;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return snprintf(buf, PAGE_SIZE, "none\n");

	if (test_bit(DASD_FLAG_IS_RESERVED, &device->flags))
		rc = snprintf(buf, PAGE_SIZE, "reserved\n");
	else if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags))
		rc = snprintf(buf, PAGE_SIZE, "lost\n");
	else
		rc = snprintf(buf, PAGE_SIZE, "none\n");
	dasd_put_device(device);
	return rc;
}

static ssize_t dasd_reservation_state_store(struct device *dev,
					    struct device_attribute *attr,
					    const char *buf, size_t count)
{
	struct dasd_device *device;
	int rc = 0;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;
	if (sysfs_streq("reset", buf))
		clear_bit(DASD_FLAG_LOCK_STOLEN, &device->flags);
	else
		rc = -EINVAL;
	dasd_put_device(device);

	if (rc)
		return rc;
	else
		return count;
}

static DEVICE_ATTR(last_known_reservation_state, 0644,
		   dasd_reservation_state_show, dasd_reservation_state_store);

1494 1495 1496 1497
static ssize_t dasd_pm_show(struct device *dev,
			      struct device_attribute *attr, char *buf)
{
	struct dasd_device *device;
1498
	u8 opm, nppm, cablepm, cuirpm, hpfpm, ifccpm;
1499 1500 1501 1502 1503

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return sprintf(buf, "0\n");

1504 1505 1506 1507 1508
	opm = dasd_path_get_opm(device);
	nppm = dasd_path_get_nppm(device);
	cablepm = dasd_path_get_cablepm(device);
	cuirpm = dasd_path_get_cuirpm(device);
	hpfpm = dasd_path_get_hpfpm(device);
1509
	ifccpm = dasd_path_get_ifccpm(device);
1510 1511
	dasd_put_device(device);

1512 1513
	return sprintf(buf, "%02x %02x %02x %02x %02x %02x\n", opm, nppm,
		       cablepm, cuirpm, hpfpm, ifccpm);
1514 1515 1516 1517
}

static DEVICE_ATTR(path_masks, 0444, dasd_pm_show, NULL);

1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
/*
 * threshold value for IFCC/CCC errors
 */
static ssize_t
dasd_path_threshold_show(struct device *dev,
			  struct device_attribute *attr, char *buf)
{
	struct dasd_device *device;
	int len;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;
	len = snprintf(buf, PAGE_SIZE, "%lu\n", device->path_thrhld);
	dasd_put_device(device);
	return len;
}

static ssize_t
dasd_path_threshold_store(struct device *dev, struct device_attribute *attr,
			   const char *buf, size_t count)
{
	struct dasd_device *device;
	unsigned long flags;
	unsigned long val;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;

1548
	if (kstrtoul(buf, 10, &val) != 0 || val > DASD_THRHLD_MAX) {
1549 1550 1551 1552
		dasd_put_device(device);
		return -EINVAL;
	}
	spin_lock_irqsave(get_ccwdev_lock(to_ccwdev(dev)), flags);
1553
	device->path_thrhld = val;
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
	spin_unlock_irqrestore(get_ccwdev_lock(to_ccwdev(dev)), flags);
	dasd_put_device(device);
	return count;
}

static DEVICE_ATTR(path_threshold, 0644, dasd_path_threshold_show,
		   dasd_path_threshold_store);
/*
 * interval for IFCC/CCC checks
 * meaning time with no IFCC/CCC error before the error counter
 * gets reset
 */
static ssize_t
dasd_path_interval_show(struct device *dev,
			struct device_attribute *attr, char *buf)
{
	struct dasd_device *device;
	int len;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;
	len = snprintf(buf, PAGE_SIZE, "%lu\n", device->path_interval);
	dasd_put_device(device);
	return len;
}

static ssize_t
dasd_path_interval_store(struct device *dev, struct device_attribute *attr,
	       const char *buf, size_t count)
{
	struct dasd_device *device;
	unsigned long flags;
	unsigned long val;

	device = dasd_device_from_cdev(to_ccwdev(dev));
	if (IS_ERR(device))
		return -ENODEV;

	if ((kstrtoul(buf, 10, &val) != 0) ||
	    (val > DASD_INTERVAL_MAX) || val == 0) {
		dasd_put_device(device);
		return -EINVAL;
	}
	spin_lock_irqsave(get_ccwdev_lock(to_ccwdev(dev)), flags);
	if (val)
		device->path_interval = val;
	spin_unlock_irqrestore(get_ccwdev_lock(to_ccwdev(dev)), flags);
	dasd_put_device(device);
	return count;
}

static DEVICE_ATTR(path_interval, 0644, dasd_path_interval_show,
		   dasd_path_interval_store);


L
Linus Torvalds 已提交
1610 1611 1612
static struct attribute * dasd_attrs[] = {
	&dev_attr_readonly.attr,
	&dev_attr_discipline.attr,
1613
	&dev_attr_status.attr,
1614 1615 1616
	&dev_attr_alias.attr,
	&dev_attr_vendor.attr,
	&dev_attr_uid.attr,
L
Linus Torvalds 已提交
1617
	&dev_attr_use_diag.attr,
1618
	&dev_attr_raw_track_access.attr,
1619
	&dev_attr_eer_enabled.attr,
1620
	&dev_attr_erplog.attr,
1621
	&dev_attr_failfast.attr,
1622
	&dev_attr_expires.attr,
1623
	&dev_attr_retries.attr,
1624
	&dev_attr_timeout.attr,
1625 1626
	&dev_attr_reservation_policy.attr,
	&dev_attr_last_known_reservation_state.attr,
1627
	&dev_attr_safe_offline.attr,
1628
	&dev_attr_host_access_count.attr,
1629
	&dev_attr_path_masks.attr,
1630 1631 1632 1633
	&dev_attr_path_threshold.attr,
	&dev_attr_path_interval.attr,
	&dev_attr_path_reset.attr,
	&dev_attr_hpf.attr,
L
Linus Torvalds 已提交
1634 1635 1636
	NULL,
};

1637
static const struct attribute_group dasd_attr_group = {
L
Linus Torvalds 已提交
1638 1639 1640
	.attrs = dasd_attrs,
};

1641 1642 1643 1644 1645 1646 1647 1648
/*
 * Return value of the specified feature.
 */
int
dasd_get_feature(struct ccw_device *cdev, int feature)
{
	struct dasd_devmap *devmap;

1649
	devmap = dasd_find_busid(dev_name(&cdev->dev));
1650
	if (IS_ERR(devmap))
1651
		return PTR_ERR(devmap);
1652 1653 1654 1655 1656 1657

	return ((devmap->features & feature) != 0);
}

/*
 * Set / reset given feature.
1658
 * Flag indicates whether to set (!=0) or the reset (=0) the feature.
1659 1660 1661 1662 1663 1664
 */
int
dasd_set_feature(struct ccw_device *cdev, int feature, int flag)
{
	struct dasd_devmap *devmap;

1665
	devmap = dasd_devmap_from_cdev(cdev);
1666
	if (IS_ERR(devmap))
1667
		return PTR_ERR(devmap);
1668 1669 1670 1671 1672 1673

	spin_lock(&dasd_devmap_lock);
	if (flag)
		devmap->features |= feature;
	else
		devmap->features &= ~feature;
1674 1675
	if (devmap->device)
		devmap->device->features = devmap->features;
1676 1677 1678 1679 1680
	spin_unlock(&dasd_devmap_lock);
	return 0;
}


L
Linus Torvalds 已提交
1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
int
dasd_add_sysfs_files(struct ccw_device *cdev)
{
	return sysfs_create_group(&cdev->dev.kobj, &dasd_attr_group);
}

void
dasd_remove_sysfs_files(struct ccw_device *cdev)
{
	sysfs_remove_group(&cdev->dev.kobj, &dasd_attr_group);
}


int
dasd_devmap_init(void)
{
	int i;

	/* Initialize devmap structures. */
	dasd_max_devindex = 0;
	for (i = 0; i < 256; i++)
		INIT_LIST_HEAD(&dasd_hashlists[i]);
1703
	return 0;
L
Linus Torvalds 已提交
1704 1705 1706 1707 1708 1709 1710
}

void
dasd_devmap_exit(void)
{
	dasd_forget_ranges();
}