ide-disk.c 30.6 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3 4 5 6
 *  Copyright (C) 1994-1998	   Linus Torvalds & authors (see below)
 *  Copyright (C) 1998-2002	   Linux ATA Development
 *				      Andre Hedrick <andre@linux-ide.org>
 *  Copyright (C) 2003		   Red Hat <alan@redhat.com>
 *  Copyright (C) 2003-2005, 2007  Bartlomiej Zolnierkiewicz
L
Linus Torvalds 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 */

/*
 *  Mostly written by Mark Lord <mlord@pobox.com>
 *                and Gadi Oxman <gadio@netvision.net.il>
 *                and Andre Hedrick <andre@linux-ide.org>
 *
 * This is the IDE/ATA disk driver, as evolved from hd.c and ide.c.
 */

#define IDEDISK_VERSION	"1.18"

#include <linux/module.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/timer.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/major.h>
#include <linux/errno.h>
#include <linux/genhd.h>
#include <linux/slab.h>
#include <linux/delay.h>
31
#include <linux/mutex.h>
32
#include <linux/leds.h>
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43

#define _IDE_DISK

#include <linux/ide.h>

#include <asm/byteorder.h>
#include <asm/irq.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/div64.h>

44 45 46 47
#define IDE_DISK_PARTS		(1 << PARTN_BITS)
#define IDE_DISK_MINORS		IDE_DISK_PARTS
#define IDE_DISK_EXT_MINORS	(IDE_DISK_PARTS - IDE_DISK_MINORS)

L
Linus Torvalds 已提交
48 49 50 51 52
struct ide_disk_obj {
	ide_drive_t	*drive;
	ide_driver_t	*driver;
	struct gendisk	*disk;
	struct kref	kref;
53
	unsigned int	openers;	/* protected by BKL for now */
L
Linus Torvalds 已提交
54 55
};

56
static DEFINE_MUTEX(idedisk_ref_mutex);
L
Linus Torvalds 已提交
57 58 59 60 61 62

#define to_ide_disk(obj) container_of(obj, struct ide_disk_obj, kref)

#define ide_disk_g(disk) \
	container_of((disk)->private_data, struct ide_disk_obj, driver)

63 64
static void ide_disk_release(struct kref *);

L
Linus Torvalds 已提交
65 66 67 68
static struct ide_disk_obj *ide_disk_get(struct gendisk *disk)
{
	struct ide_disk_obj *idkp = NULL;

69
	mutex_lock(&idedisk_ref_mutex);
L
Linus Torvalds 已提交
70
	idkp = ide_disk_g(disk);
71
	if (idkp) {
72
		if (ide_device_get(idkp->drive))
73
			idkp = NULL;
74 75
		else
			kref_get(&idkp->kref);
76
	}
77
	mutex_unlock(&idedisk_ref_mutex);
L
Linus Torvalds 已提交
78 79 80 81 82
	return idkp;
}

static void ide_disk_put(struct ide_disk_obj *idkp)
{
83 84
	ide_drive_t *drive = idkp->drive;

85
	mutex_lock(&idedisk_ref_mutex);
L
Linus Torvalds 已提交
86
	kref_put(&idkp->kref, ide_disk_release);
87
	ide_device_put(drive);
88
	mutex_unlock(&idedisk_ref_mutex);
L
Linus Torvalds 已提交
89 90 91 92 93 94 95 96 97 98 99
}

/*
 * lba_capacity_is_ok() performs a sanity check on the claimed "lba_capacity"
 * value for this drive (from its reported identification information).
 *
 * Returns:	1 if lba_capacity looks sensible
 *		0 otherwise
 *
 * It is called only once for each drive.
 */
100
static int lba_capacity_is_ok(struct hd_driveid *id)
L
Linus Torvalds 已提交
101 102 103
{
	unsigned long lba_sects, chs_sects, head, tail;

104 105 106 107
	/* No non-LBA info .. so valid! */
	if (id->cyls == 0)
		return 1;

L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
	/*
	 * The ATA spec tells large drives to return
	 * C/H/S = 16383/16/63 independent of their size.
	 * Some drives can be jumpered to use 15 heads instead of 16.
	 * Some drives can be jumpered to use 4092 cyls instead of 16383.
	 */
	if ((id->cyls == 16383
	     || (id->cyls == 4092 && id->cur_cyls == 16383)) &&
	    id->sectors == 63 &&
	    (id->heads == 15 || id->heads == 16) &&
	    (id->lba_capacity >= 16383*63*id->heads))
		return 1;

	lba_sects   = id->lba_capacity;
	chs_sects   = id->cyls * id->heads * id->sectors;

	/* perform a rough sanity check on lba_sects:  within 10% is OK */
	if ((lba_sects - chs_sects) < chs_sects/10)
		return 1;

	/* some drives have the word order reversed */
	head = ((lba_sects >> 16) & 0xffff);
	tail = (lba_sects & 0xffff);
	lba_sects = (head | (tail << 16));
	if ((lba_sects - chs_sects) < chs_sects/10) {
		id->lba_capacity = lba_sects;
		return 1;	/* lba_capacity is (now) good */
	}

	return 0;	/* lba_capacity value may be bad */
}

140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
static const u8 ide_rw_cmds[] = {
	WIN_MULTREAD,
	WIN_MULTWRITE,
	WIN_MULTREAD_EXT,
	WIN_MULTWRITE_EXT,
	WIN_READ,
	WIN_WRITE,
	WIN_READ_EXT,
	WIN_WRITE_EXT,
	WIN_READDMA,
	WIN_WRITEDMA,
	WIN_READDMA_EXT,
	WIN_WRITEDMA_EXT,
};

static const u8 ide_data_phases[] = {
	TASKFILE_MULTI_IN,
	TASKFILE_MULTI_OUT,
	TASKFILE_IN,
	TASKFILE_OUT,
	TASKFILE_IN_DMA,
	TASKFILE_OUT_DMA,
};

static void ide_tf_set_cmd(ide_drive_t *drive, ide_task_t *task, u8 dma)
{
	u8 index, lba48, write;

	lba48 = (task->tf_flags & IDE_TFLAG_LBA48) ? 2 : 0;
	write = (task->tf_flags & IDE_TFLAG_WRITE) ? 1 : 0;

	if (dma)
172
		index = 8;
173 174 175 176 177 178 179 180 181 182 183
	else
		index = drive->mult_count ? 0 : 4;

	task->tf.command = ide_rw_cmds[index + lba48 + write];

	if (dma)
		index = 8; /* fixup index */

	task->data_phase = ide_data_phases[index / 2 + write];
}

L
Linus Torvalds 已提交
184 185 186 187
/*
 * __ide_do_rw_disk() issues READ and WRITE commands to a disk,
 * using LBA if supported, or CHS otherwise, to address sectors.
 */
188 189
static ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
					sector_t block)
L
Linus Torvalds 已提交
190 191 192
{
	ide_hwif_t *hwif	= HWIF(drive);
	unsigned int dma	= drive->using_dma;
193
	u16 nsectors		= (u16)rq->nr_sectors;
L
Linus Torvalds 已提交
194
	u8 lba48		= (drive->addressing == 1) ? 1 : 0;
195 196
	ide_task_t		task;
	struct ide_taskfile	*tf = &task.tf;
197
	ide_startstop_t		rc;
L
Linus Torvalds 已提交
198

199
	if ((hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA) && lba48 && dma) {
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208 209 210
		if (block + rq->nr_sectors > 1ULL << 28)
			dma = 0;
		else
			lba48 = 0;
	}

	if (!dma) {
		ide_init_sg_cmd(drive, rq);
		ide_map_sg(drive, rq);
	}

211
	memset(&task, 0, sizeof(task));
212
	task.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
213

L
Linus Torvalds 已提交
214 215
	if (drive->select.b.lba) {
		if (lba48) {
216 217
			pr_debug("%s: LBA=0x%012llx\n", drive->name,
					(unsigned long long)block);
L
Linus Torvalds 已提交
218

219
			tf->hob_nsect = (nsectors >> 8) & 0xff;
220 221 222 223
			tf->hob_lbal  = (u8)(block >> 24);
			if (sizeof(block) != 4) {
				tf->hob_lbam = (u8)((u64)block >> 32);
				tf->hob_lbah = (u8)((u64)block >> 40);
L
Linus Torvalds 已提交
224
			}
225

226
			tf->nsect  = nsectors & 0xff;
227 228 229
			tf->lbal   = (u8) block;
			tf->lbam   = (u8)(block >>  8);
			tf->lbah   = (u8)(block >> 16);
230

231
			task.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_HOB);
L
Linus Torvalds 已提交
232
		} else {
233
			tf->nsect  = nsectors & 0xff;
234 235 236 237
			tf->lbal   = block;
			tf->lbam   = block >>= 8;
			tf->lbah   = block >>= 8;
			tf->device = (block >> 8) & 0xf;
L
Linus Torvalds 已提交
238 239
		}
	} else {
240 241
		unsigned int sect, head, cyl, track;

L
Linus Torvalds 已提交
242 243 244 245 246 247 248
		track = (int)block / drive->sect;
		sect  = (int)block % drive->sect + 1;
		head  = track % drive->head;
		cyl   = track / drive->head;

		pr_debug("%s: CHS=%u/%u/%u\n", drive->name, cyl, head, sect);

249
		tf->nsect  = nsectors & 0xff;
250 251 252 253
		tf->lbal   = sect;
		tf->lbam   = cyl;
		tf->lbah   = cyl >> 8;
		tf->device = head;
L
Linus Torvalds 已提交
254 255
	}

256 257 258 259
	if (rq_data_dir(rq))
		task.tf_flags |= IDE_TFLAG_WRITE;

	ide_tf_set_cmd(drive, &task, dma);
260 261 262
	if (!dma)
		hwif->data_phase = task.data_phase;
	task.rq = rq;
263

264
	rc = do_rw_taskfile(drive, &task);
265

266
	if (rc == ide_stopped && dma) {
L
Linus Torvalds 已提交
267
		/* fallback to PIO */
268
		task.tf_flags |= IDE_TFLAG_DMA_PIO_FALLBACK;
269
		ide_tf_set_cmd(drive, &task, 0);
270
		hwif->data_phase = task.data_phase;
L
Linus Torvalds 已提交
271
		ide_init_sg_cmd(drive, rq);
272
		rc = do_rw_taskfile(drive, &task);
L
Linus Torvalds 已提交
273 274
	}

275
	return rc;
L
Linus Torvalds 已提交
276 277 278 279 280 281 282 283
}

/*
 * 268435455  == 137439 MB or 28bit limit
 * 320173056  == 163929 MB or 48bit addressing
 * 1073741822 == 549756 MB or 48bit addressing fake drive
 */

284 285
static ide_startstop_t ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
				      sector_t block)
L
Linus Torvalds 已提交
286 287 288 289 290 291 292 293 294 295 296
{
	ide_hwif_t *hwif = HWIF(drive);

	BUG_ON(drive->blocked);

	if (!blk_fs_request(rq)) {
		blk_dump_rq_flags(rq, "ide_do_rw_disk - bad command");
		ide_end_request(drive, 0, 0);
		return ide_stopped;
	}

297 298
	ledtrig_ide_activity();

L
Linus Torvalds 已提交
299 300
	pr_debug("%s: %sing: block=%llu, sectors=%lu, buffer=0x%08lx\n",
		 drive->name, rq_data_dir(rq) == READ ? "read" : "writ",
301 302
		 (unsigned long long)block, rq->nr_sectors,
		 (unsigned long)rq->buffer);
L
Linus Torvalds 已提交
303 304 305 306 307 308 309 310 311 312 313

	if (hwif->rw_disk)
		hwif->rw_disk(drive, rq);

	return __ide_do_rw_disk(drive, rq, block);
}

/*
 * Queries for true maximum capacity of the drive.
 * Returns maximum LBA address (> 0) of the drive, 0 if failed.
 */
314
static u64 idedisk_read_native_max_address(ide_drive_t *drive, int lba48)
L
Linus Torvalds 已提交
315 316
{
	ide_task_t args;
317
	struct ide_taskfile *tf = &args.tf;
318
	u64 addr = 0;
L
Linus Torvalds 已提交
319 320 321

	/* Create IDE/ATA command request structure */
	memset(&args, 0, sizeof(ide_task_t));
322 323 324 325
	if (lba48)
		tf->command = WIN_READ_NATIVE_MAX_EXT;
	else
		tf->command = WIN_READ_NATIVE_MAX;
326
	tf->device  = ATA_LBA;
327
	args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
328
	if (lba48)
329
		args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_HOB);
L
Linus Torvalds 已提交
330
	/* submit command request */
331
	ide_no_data_taskfile(drive, &args);
L
Linus Torvalds 已提交
332 333

	/* if OK, compute maximum address value */
334 335
	if ((tf->status & 0x01) == 0)
		addr = ide_get_lba_addr(tf, lba48) + 1;
336

L
Linus Torvalds 已提交
337 338 339 340 341 342 343
	return addr;
}

/*
 * Sets maximum virtual LBA address of the drive.
 * Returns new maximum virtual LBA address (> 0) or 0 on failure.
 */
344
static u64 idedisk_set_max_address(ide_drive_t *drive, u64 addr_req, int lba48)
L
Linus Torvalds 已提交
345 346
{
	ide_task_t args;
347
	struct ide_taskfile *tf = &args.tf;
348
	u64 addr_set = 0;
L
Linus Torvalds 已提交
349 350 351 352

	addr_req--;
	/* Create IDE/ATA command request structure */
	memset(&args, 0, sizeof(ide_task_t));
353 354 355
	tf->lbal     = (addr_req >>  0) & 0xff;
	tf->lbam     = (addr_req >>= 8) & 0xff;
	tf->lbah     = (addr_req >>= 8) & 0xff;
356 357 358 359 360 361 362 363 364 365
	if (lba48) {
		tf->hob_lbal = (addr_req >>= 8) & 0xff;
		tf->hob_lbam = (addr_req >>= 8) & 0xff;
		tf->hob_lbah = (addr_req >>= 8) & 0xff;
		tf->command  = WIN_SET_MAX_EXT;
	} else {
		tf->device   = (addr_req >>= 8) & 0x0f;
		tf->command  = WIN_SET_MAX;
	}
	tf->device |= ATA_LBA;
366
	args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
367
	if (lba48)
368
		args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_HOB);
L
Linus Torvalds 已提交
369
	/* submit command request */
370
	ide_no_data_taskfile(drive, &args);
L
Linus Torvalds 已提交
371
	/* if OK, compute maximum address value */
372 373
	if ((tf->status & 0x01) == 0)
		addr_set = ide_get_lba_addr(tf, lba48) + 1;
374

L
Linus Torvalds 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
	return addr_set;
}

static unsigned long long sectors_to_MB(unsigned long long n)
{
	n <<= 9;		/* make it bytes */
	do_div(n, 1000000);	/* make it MB */
	return n;
}

/*
 * Bits 10 of command_set_1 and cfs_enable_1 must be equal,
 * so on non-buggy drives we need test only one.
 * However, we should also check whether these fields are valid.
 */
static inline int idedisk_supports_hpa(const struct hd_driveid *id)
{
	return (id->command_set_1 & 0x0400) && (id->cfs_enable_1 & 0x0400);
}

/*
 * The same here.
 */
static inline int idedisk_supports_lba48(const struct hd_driveid *id)
{
	return (id->command_set_2 & 0x0400) && (id->cfs_enable_2 & 0x0400)
	       && id->lba_capacity_2;
}

404 405 406 407 408 409
/*
 * Some disks report total number of sectors instead of
 * maximum sector address.  We list them here.
 */
static const struct drive_list_entry hpa_list[] = {
	{ "ST340823A",	NULL },
410
	{ "ST320413A",	NULL },
411
	{ "ST310211A",	NULL },
412 413 414
	{ NULL,		NULL }
};

415
static void idedisk_check_hpa(ide_drive_t *drive)
L
Linus Torvalds 已提交
416 417 418 419 420
{
	unsigned long long capacity, set_max;
	int lba48 = idedisk_supports_lba48(drive->id);

	capacity = drive->capacity64;
421 422

	set_max = idedisk_read_native_max_address(drive, lba48);
L
Linus Torvalds 已提交
423

424 425 426 427 428 429 430 431 432
	if (ide_in_drive_list(drive->id, hpa_list)) {
		/*
		 * Since we are inclusive wrt to firmware revisions do this
		 * extra check and apply the workaround only when needed.
		 */
		if (set_max == capacity + 1)
			set_max--;
	}

L
Linus Torvalds 已提交
433 434 435 436 437 438 439 440 441 442
	if (set_max <= capacity)
		return;

	printk(KERN_INFO "%s: Host Protected Area detected.\n"
			 "\tcurrent capacity is %llu sectors (%llu MB)\n"
			 "\tnative  capacity is %llu sectors (%llu MB)\n",
			 drive->name,
			 capacity, sectors_to_MB(capacity),
			 set_max, sectors_to_MB(set_max));

443 444
	set_max = idedisk_set_max_address(drive, set_max, lba48);

L
Linus Torvalds 已提交
445 446 447 448 449 450 451
	if (set_max) {
		drive->capacity64 = set_max;
		printk(KERN_INFO "%s: Host Protected Area disabled.\n",
				 drive->name);
	}
}

452
static void init_idedisk_capacity(ide_drive_t *drive)
L
Linus Torvalds 已提交
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
{
	struct hd_driveid *id = drive->id;
	/*
	 * If this drive supports the Host Protected Area feature set,
	 * then we may need to change our opinion about the drive's capacity.
	 */
	int hpa = idedisk_supports_hpa(id);

	if (idedisk_supports_lba48(id)) {
		/* drive speaks 48-bit LBA */
		drive->select.b.lba = 1;
		drive->capacity64 = id->lba_capacity_2;
		if (hpa)
			idedisk_check_hpa(drive);
	} else if ((id->capability & 2) && lba_capacity_is_ok(id)) {
		/* drive speaks 28-bit LBA */
		drive->select.b.lba = 1;
		drive->capacity64 = id->lba_capacity;
		if (hpa)
			idedisk_check_hpa(drive);
	} else {
		/* drive speaks boring old 28-bit CHS */
		drive->capacity64 = drive->cyl * drive->head * drive->sect;
	}
}

479
static sector_t idedisk_capacity(ide_drive_t *drive)
L
Linus Torvalds 已提交
480 481 482 483
{
	return drive->capacity64 - drive->sect0;
}

484
#ifdef CONFIG_IDE_PROC_FS
L
Linus Torvalds 已提交
485 486 487
static int smart_enable(ide_drive_t *drive)
{
	ide_task_t args;
488
	struct ide_taskfile *tf = &args.tf;
L
Linus Torvalds 已提交
489 490

	memset(&args, 0, sizeof(ide_task_t));
491 492 493 494
	tf->feature = SMART_ENABLE;
	tf->lbam    = SMART_LCYL_PASS;
	tf->lbah    = SMART_HCYL_PASS;
	tf->command = WIN_SMART;
495
	args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
496
	return ide_no_data_taskfile(drive, &args);
L
Linus Torvalds 已提交
497 498
}

499
static int get_smart_data(ide_drive_t *drive, u8 *buf, u8 sub_cmd)
L
Linus Torvalds 已提交
500 501
{
	ide_task_t args;
502
	struct ide_taskfile *tf = &args.tf;
L
Linus Torvalds 已提交
503 504

	memset(&args, 0, sizeof(ide_task_t));
505 506 507 508 509
	tf->feature = sub_cmd;
	tf->nsect   = 0x01;
	tf->lbam    = SMART_LCYL_PASS;
	tf->lbah    = SMART_HCYL_PASS;
	tf->command = WIN_SMART;
510
	args.tf_flags	= IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
511
	args.data_phase	= TASKFILE_IN;
L
Linus Torvalds 已提交
512
	(void) smart_enable(drive);
513
	return ide_raw_taskfile(drive, &args, buf, 1);
L
Linus Torvalds 已提交
514 515 516 517 518 519 520 521 522 523
}

static int proc_idedisk_read_cache
	(char *page, char **start, off_t off, int count, int *eof, void *data)
{
	ide_drive_t	*drive = (ide_drive_t *) data;
	char		*out = page;
	int		len;

	if (drive->id_read)
524
		len = sprintf(out, "%i\n", drive->id->buf_size / 2);
L
Linus Torvalds 已提交
525
	else
526 527 528
		len = sprintf(out, "(none)\n");

	PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
L
Linus Torvalds 已提交
529 530 531 532 533 534 535 536
}

static int proc_idedisk_read_capacity
	(char *page, char **start, off_t off, int count, int *eof, void *data)
{
	ide_drive_t*drive = (ide_drive_t *)data;
	int len;

537 538 539
	len = sprintf(page, "%llu\n", (long long)idedisk_capacity(drive));

	PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
L
Linus Torvalds 已提交
540 541
}

542 543
static int proc_idedisk_read_smart(char *page, char **start, off_t off,
				   int count, int *eof, void *data, u8 sub_cmd)
L
Linus Torvalds 已提交
544 545 546 547
{
	ide_drive_t	*drive = (ide_drive_t *)data;
	int		len = 0, i = 0;

548
	if (get_smart_data(drive, page, sub_cmd) == 0) {
L
Linus Torvalds 已提交
549 550 551 552
		unsigned short *val = (unsigned short *) page;
		char *out = ((char *)val) + (SECTOR_WORDS * 4);
		page = out;
		do {
553 554
			out += sprintf(out, "%04x%c", le16_to_cpu(*val),
				       (++i & 7) ? ' ' : '\n');
L
Linus Torvalds 已提交
555 556 557 558
			val += 1;
		} while (i < (SECTOR_WORDS * 2));
		len = out - page;
	}
559 560

	PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
L
Linus Torvalds 已提交
561 562
}

563
static int proc_idedisk_read_sv
L
Linus Torvalds 已提交
564 565
	(char *page, char **start, off_t off, int count, int *eof, void *data)
{
566 567 568
	return proc_idedisk_read_smart(page, start, off, count, eof, data,
				       SMART_READ_VALUES);
}
L
Linus Torvalds 已提交
569

570 571 572 573 574
static int proc_idedisk_read_st
	(char *page, char **start, off_t off, int count, int *eof, void *data)
{
	return proc_idedisk_read_smart(page, start, off, count, eof, data,
				       SMART_READ_THRESHOLDS);
L
Linus Torvalds 已提交
575 576 577
}

static ide_proc_entry_t idedisk_proc[] = {
578 579 580 581 582
	{ "cache",	  S_IFREG|S_IRUGO, proc_idedisk_read_cache,    NULL },
	{ "capacity",	  S_IFREG|S_IRUGO, proc_idedisk_read_capacity, NULL },
	{ "geometry",	  S_IFREG|S_IRUGO, proc_ide_read_geometry,     NULL },
	{ "smart_values", S_IFREG|S_IRUSR, proc_idedisk_read_sv,       NULL },
	{ "smart_thresholds", S_IFREG|S_IRUSR, proc_idedisk_read_st,   NULL },
L
Linus Torvalds 已提交
583 584
	{ NULL, 0, NULL, NULL }
};
585
#endif	/* CONFIG_IDE_PROC_FS */
L
Linus Torvalds 已提交
586

587
static void idedisk_prepare_flush(struct request_queue *q, struct request *rq)
L
Linus Torvalds 已提交
588 589
{
	ide_drive_t *drive = q->queuedata;
590
	ide_task_t *task = kmalloc(sizeof(*task), GFP_ATOMIC);
L
Linus Torvalds 已提交
591

592 593 594 595
	/* FIXME: map struct ide_taskfile on rq->cmd[] */
	BUG_ON(task == NULL);

	memset(task, 0, sizeof(*task));
L
Linus Torvalds 已提交
596 597
	if (ide_id_has_flush_cache_ext(drive->id) &&
	    (drive->capacity64 >= (1UL << 28)))
598
		task->tf.command = WIN_FLUSH_CACHE_EXT;
L
Linus Torvalds 已提交
599
	else
600 601 602 603
		task->tf.command = WIN_FLUSH_CACHE;
	task->tf_flags	 = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE |
			   IDE_TFLAG_DYN;
	task->data_phase = TASKFILE_NO_DATA;
L
Linus Torvalds 已提交
604

605
	rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
606
	rq->cmd_flags |= REQ_SOFTBARRIER;
607
	rq->special = task;
L
Linus Torvalds 已提交
608 609 610 611 612 613 614 615
}

/*
 * This is tightly woven into the driver->do_special can not touch.
 * DON'T do it again until a total personality rewrite is committed.
 */
static int set_multcount(ide_drive_t *drive, int arg)
{
616 617
	struct request *rq;
	int error;
L
Linus Torvalds 已提交
618

619 620 621
	if (arg < 0 || arg > drive->id->max_multsect)
		return -EINVAL;

L
Linus Torvalds 已提交
622 623
	if (drive->special.b.set_multmode)
		return -EBUSY;
624

625 626
	rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
	rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
627

L
Linus Torvalds 已提交
628 629
	drive->mult_req = arg;
	drive->special.b.set_multmode = 1;
630 631
	error = blk_execute_rq(drive->queue, NULL, rq, 0);
	blk_put_request(rq);
632

L
Linus Torvalds 已提交
633 634 635 636 637
	return (drive->mult_count == arg) ? 0 : -EIO;
}

static int set_nowerr(ide_drive_t *drive, int arg)
{
638 639 640
	if (arg < 0 || arg > 1)
		return -EINVAL;

L
Linus Torvalds 已提交
641 642 643 644 645 646 647 648
	if (ide_spin_wait_hwgroup(drive))
		return -EBUSY;
	drive->nowerr = arg;
	drive->bad_wstat = arg ? BAD_R_STAT : BAD_W_STAT;
	spin_unlock_irq(&ide_lock);
	return 0;
}

649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
static void update_ordered(ide_drive_t *drive)
{
	struct hd_driveid *id = drive->id;
	unsigned ordered = QUEUE_ORDERED_NONE;
	prepare_flush_fn *prep_fn = NULL;

	if (drive->wcache) {
		unsigned long long capacity;
		int barrier;
		/*
		 * We must avoid issuing commands a drive does not
		 * understand or we may crash it. We check flush cache
		 * is supported. We also check we have the LBA48 flush
		 * cache if the drive capacity is too large. By this
		 * time we have trimmed the drive capacity if LBA48 is
		 * not available so we don't need to recheck that.
		 */
		capacity = idedisk_capacity(drive);
667
		barrier = ide_id_has_flush_cache(id) && !drive->noflush &&
668 669 670 671
			(drive->addressing == 0 || capacity <= (1ULL << 28) ||
			 ide_id_has_flush_cache_ext(id));

		printk(KERN_INFO "%s: cache flushes %ssupported\n",
672
		       drive->name, barrier ? "" : "not ");
673 674 675 676 677 678 679 680 681 682 683

		if (barrier) {
			ordered = QUEUE_ORDERED_DRAIN_FLUSH;
			prep_fn = idedisk_prepare_flush;
		}
	} else
		ordered = QUEUE_ORDERED_DRAIN;

	blk_queue_ordered(drive->queue, ordered, prep_fn);
}

L
Linus Torvalds 已提交
684 685 686
static int write_cache(ide_drive_t *drive, int arg)
{
	ide_task_t args;
687
	int err = 1;
L
Linus Torvalds 已提交
688

689 690 691
	if (arg < 0 || arg > 1)
		return -EINVAL;

692 693
	if (ide_id_has_flush_cache(drive->id)) {
		memset(&args, 0, sizeof(ide_task_t));
694
		args.tf.feature = arg ?
L
Linus Torvalds 已提交
695
			SETFEATURES_EN_WCACHE : SETFEATURES_DIS_WCACHE;
696
		args.tf.command = WIN_SETFEATURES;
697
		args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
698
		err = ide_no_data_taskfile(drive, &args);
699 700 701
		if (err == 0)
			drive->wcache = arg;
	}
L
Linus Torvalds 已提交
702

703
	update_ordered(drive);
L
Linus Torvalds 已提交
704

705
	return err;
L
Linus Torvalds 已提交
706 707
}

708
static int do_idedisk_flushcache(ide_drive_t *drive)
L
Linus Torvalds 已提交
709 710 711 712 713
{
	ide_task_t args;

	memset(&args, 0, sizeof(ide_task_t));
	if (ide_id_has_flush_cache_ext(drive->id))
714
		args.tf.command = WIN_FLUSH_CACHE_EXT;
L
Linus Torvalds 已提交
715
	else
716
		args.tf.command = WIN_FLUSH_CACHE;
717
	args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
718
	return ide_no_data_taskfile(drive, &args);
L
Linus Torvalds 已提交
719 720
}

721
static int set_acoustic(ide_drive_t *drive, int arg)
L
Linus Torvalds 已提交
722 723 724
{
	ide_task_t args;

725 726 727
	if (arg < 0 || arg > 254)
		return -EINVAL;

L
Linus Torvalds 已提交
728
	memset(&args, 0, sizeof(ide_task_t));
729 730 731
	args.tf.feature = arg ? SETFEATURES_EN_AAM : SETFEATURES_DIS_AAM;
	args.tf.nsect   = arg;
	args.tf.command = WIN_SETFEATURES;
732
	args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
733
	ide_no_data_taskfile(drive, &args);
L
Linus Torvalds 已提交
734 735 736 737 738 739 740 741 742 743 744 745
	drive->acoustic = arg;
	return 0;
}

/*
 * drive->addressing:
 *	0: 28-bit
 *	1: 48-bit
 *	2: 48-bit capable doing 28-bit
 */
static int set_lba_addressing(ide_drive_t *drive, int arg)
{
746 747 748
	if (arg < 0 || arg > 2)
		return -EINVAL;

L
Linus Torvalds 已提交
749 750
	drive->addressing =  0;

751
	if (drive->hwif->host_flags & IDE_HFLAG_NO_LBA48)
L
Linus Torvalds 已提交
752 753 754
		return 0;

	if (!idedisk_supports_lba48(drive->id))
755
		return -EIO;
L
Linus Torvalds 已提交
756 757 758 759
	drive->addressing = arg;
	return 0;
}

760
#ifdef CONFIG_IDE_PROC_FS
L
Linus Torvalds 已提交
761 762 763 764
static void idedisk_add_settings(ide_drive_t *drive)
{
	struct hd_driveid *id = drive->id;

765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
	ide_add_setting(drive, "bios_cyl", SETTING_RW, TYPE_INT, 0, 65535, 1, 1,
			&drive->bios_cyl, NULL);
	ide_add_setting(drive, "bios_head", SETTING_RW, TYPE_BYTE, 0, 255, 1, 1,
			&drive->bios_head, NULL);
	ide_add_setting(drive, "bios_sect", SETTING_RW, TYPE_BYTE, 0, 63, 1, 1,
			&drive->bios_sect, NULL);
	ide_add_setting(drive, "address", SETTING_RW, TYPE_BYTE, 0, 2, 1, 1,
			&drive->addressing, set_lba_addressing);
	ide_add_setting(drive, "multcount", SETTING_RW, TYPE_BYTE, 0,
			id->max_multsect, 1, 1, &drive->mult_count,
			set_multcount);
	ide_add_setting(drive, "nowerr", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1,
			&drive->nowerr, set_nowerr);
	ide_add_setting(drive, "lun", SETTING_RW, TYPE_INT, 0, 7, 1, 1,
			&drive->lun, NULL);
	ide_add_setting(drive, "wcache", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1,
			&drive->wcache, write_cache);
	ide_add_setting(drive, "acoustic", SETTING_RW, TYPE_BYTE, 0, 254, 1, 1,
			&drive->acoustic, set_acoustic);
	ide_add_setting(drive, "failures", SETTING_RW, TYPE_INT, 0, 65535, 1, 1,
			&drive->failures, NULL);
	ide_add_setting(drive, "max_failures", SETTING_RW, TYPE_INT, 0, 65535,
			1, 1, &drive->max_failures, NULL);
L
Linus Torvalds 已提交
788
}
789 790 791
#else
static inline void idedisk_add_settings(ide_drive_t *drive) { ; }
#endif
L
Linus Torvalds 已提交
792

793
static void idedisk_setup(ide_drive_t *drive)
L
Linus Torvalds 已提交
794
{
795
	ide_hwif_t *hwif = drive->hwif;
L
Linus Torvalds 已提交
796 797 798 799 800 801 802 803
	struct hd_driveid *id = drive->id;
	unsigned long long capacity;

	idedisk_add_settings(drive);

	if (drive->id_read == 0)
		return;

804
	if (drive->removable) {
L
Linus Torvalds 已提交
805
		/*
806
		 * Removable disks (eg. SYQUEST); ignore 'WD' drives
L
Linus Torvalds 已提交
807
		 */
808
		if (id->model[0] != 'W' || id->model[1] != 'D')
L
Linus Torvalds 已提交
809 810 811 812 813 814 815 816 817 818 819 820 821 822
			drive->doorlocking = 1;
	}

	(void)set_lba_addressing(drive, 1);

	if (drive->addressing == 1) {
		int max_s = 2048;

		if (max_s > hwif->rqsize)
			max_s = hwif->rqsize;

		blk_queue_max_sectors(drive->queue, max_s);
	}

823 824
	printk(KERN_INFO "%s: max request size: %dKiB\n", drive->name,
			 drive->queue->max_sectors / 2);
L
Linus Torvalds 已提交
825 826

	/* calculate drive capacity, and select LBA if possible */
827
	init_idedisk_capacity(drive);
L
Linus Torvalds 已提交
828 829 830 831 832 833 834 835 836 837

	/* limit drive capacity to 137GB if LBA48 cannot be used */
	if (drive->addressing == 0 && drive->capacity64 > 1ULL << 28) {
		printk(KERN_WARNING "%s: cannot use LBA48 - full capacity "
		       "%llu sectors (%llu MB)\n",
		       drive->name, (unsigned long long)drive->capacity64,
		       sectors_to_MB(drive->capacity64));
		drive->capacity64 = 1ULL << 28;
	}

838
	if ((hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA) && drive->addressing) {
L
Linus Torvalds 已提交
839
		if (drive->capacity64 > 1ULL << 28) {
840 841 842
			printk(KERN_INFO "%s: cannot use LBA48 DMA - PIO mode"
					 " will be used for accessing sectors "
					 "> %u\n", drive->name, 1 << 28);
L
Linus Torvalds 已提交
843 844 845 846 847 848 849 850
		} else
			drive->addressing = 0;
	}

	/*
	 * if possible, give fdisk access to more of the drive,
	 * by correcting bios_cyls:
	 */
851 852
	capacity = idedisk_capacity(drive);

L
Linus Torvalds 已提交
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
	if (!drive->forced_geom) {

		if (idedisk_supports_lba48(drive->id)) {
			/* compatibility */
			drive->bios_sect = 63;
			drive->bios_head = 255;
		}

		if (drive->bios_sect && drive->bios_head) {
			unsigned int cap0 = capacity; /* truncate to 32 bits */
			unsigned int cylsz, cyl;

			if (cap0 != capacity)
				drive->bios_cyl = 65535;
			else {
				cylsz = drive->bios_sect * drive->bios_head;
				cyl = cap0 / cylsz;
				if (cyl > 65535)
					cyl = 65535;
				if (cyl > drive->bios_cyl)
					drive->bios_cyl = cyl;
			}
		}
	}
	printk(KERN_INFO "%s: %llu sectors (%llu MB)",
			 drive->name, capacity, sectors_to_MB(capacity));

	/* Only print cache size when it was specified */
	if (id->buf_size)
882
		printk(KERN_CONT " w/%dKiB Cache", id->buf_size / 2);
L
Linus Torvalds 已提交
883

884 885
	printk(KERN_CONT ", CHS=%d/%d/%d\n",
			 drive->bios_cyl, drive->bios_head, drive->bios_sect);
L
Linus Torvalds 已提交
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902

	/* write cache enabled? */
	if ((id->csfo & 1) || (id->cfs_enable_1 & (1 << 5)))
		drive->wcache = 1;

	write_cache(drive, 1);
}

static void ide_cacheflush_p(ide_drive_t *drive)
{
	if (!drive->wcache || !ide_id_has_flush_cache(drive->id))
		return;

	if (do_idedisk_flushcache(drive))
		printk(KERN_INFO "%s: wcache flush failed!\n", drive->name);
}

903
static void ide_disk_remove(ide_drive_t *drive)
L
Linus Torvalds 已提交
904 905 906 907
{
	struct ide_disk_obj *idkp = drive->driver_data;
	struct gendisk *g = idkp->disk;

908
	ide_proc_unregister_driver(drive, idkp->driver);
909

L
Linus Torvalds 已提交
910 911
	del_gendisk(g);

912 913
	ide_cacheflush_p(drive);

L
Linus Torvalds 已提交
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
	ide_disk_put(idkp);
}

static void ide_disk_release(struct kref *kref)
{
	struct ide_disk_obj *idkp = to_ide_disk(kref);
	ide_drive_t *drive = idkp->drive;
	struct gendisk *g = idkp->disk;

	drive->driver_data = NULL;
	g->private_data = NULL;
	put_disk(g);
	kfree(idkp);
}

929
static int ide_disk_probe(ide_drive_t *drive);
L
Linus Torvalds 已提交
930

L
Lee Trager 已提交
931 932 933 934 935 936 937 938 939 940 941
/*
 * On HPA drives the capacity needs to be
 * reinitilized on resume otherwise the disk
 * can not be used and a hard reset is required
 */
static void ide_disk_resume(ide_drive_t *drive)
{
	if (idedisk_supports_hpa(drive->id))
		init_idedisk_capacity(drive);
}

942
static void ide_device_shutdown(ide_drive_t *drive)
L
Linus Torvalds 已提交
943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
{
#ifdef	CONFIG_ALPHA
	/* On Alpha, halt(8) doesn't actually turn the machine off,
	   it puts you into the sort of firmware monitor. Typically,
	   it's used to boot another kernel image, so it's not much
	   different from reboot(8). Therefore, we don't need to
	   spin down the disk in this case, especially since Alpha
	   firmware doesn't handle disks in standby mode properly.
	   On the other hand, it's reasonably safe to turn the power
	   off when the shutdown process reaches the firmware prompt,
	   as the firmware initialization takes rather long time -
	   at least 10 seconds, which should be sufficient for
	   the disk to expire its write cache. */
	if (system_state != SYSTEM_POWER_OFF) {
#else
	if (system_state == SYSTEM_RESTART) {
#endif
		ide_cacheflush_p(drive);
		return;
	}

964 965
	printk(KERN_INFO "Shutdown: %s\n", drive->name);

966
	drive->gendev.bus->suspend(&drive->gendev, PMSG_SUSPEND);
L
Linus Torvalds 已提交
967 968 969 970
}

static ide_driver_t idedisk_driver = {
	.gen_driver = {
971
		.owner		= THIS_MODULE,
972 973
		.name		= "ide-disk",
		.bus		= &ide_bus_type,
L
Linus Torvalds 已提交
974
	},
975 976
	.probe			= ide_disk_probe,
	.remove			= ide_disk_remove,
L
Lee Trager 已提交
977
	.resume			= ide_disk_resume,
978
	.shutdown		= ide_device_shutdown,
L
Linus Torvalds 已提交
979 980 981 982 983 984
	.version		= IDEDISK_VERSION,
	.media			= ide_disk,
	.supports_dsc_overlap	= 0,
	.do_request		= ide_do_rw_disk,
	.end_request		= ide_end_request,
	.error			= __ide_error,
985
#ifdef CONFIG_IDE_PROC_FS
L
Linus Torvalds 已提交
986
	.proc			= idedisk_proc,
987
#endif
L
Linus Torvalds 已提交
988 989
};

990 991 992 993 994 995
static int idedisk_set_doorlock(ide_drive_t *drive, int on)
{
	ide_task_t task;

	memset(&task, 0, sizeof(task));
	task.tf.command = on ? WIN_DOORLOCK : WIN_DOORUNLOCK;
996
	task.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
997 998 999 1000

	return ide_no_data_taskfile(drive, &task);
}

L
Linus Torvalds 已提交
1001 1002 1003 1004 1005 1006
static int idedisk_open(struct inode *inode, struct file *filp)
{
	struct gendisk *disk = inode->i_bdev->bd_disk;
	struct ide_disk_obj *idkp;
	ide_drive_t *drive;

1007 1008
	idkp = ide_disk_get(disk);
	if (idkp == NULL)
L
Linus Torvalds 已提交
1009 1010 1011 1012
		return -ENXIO;

	drive = idkp->drive;

1013 1014 1015
	idkp->openers++;

	if (drive->removable && idkp->openers == 1) {
L
Linus Torvalds 已提交
1016 1017 1018 1019 1020 1021
		check_disk_change(inode->i_bdev);
		/*
		 * Ignore the return code from door_lock,
		 * since the open() has already succeeded,
		 * and the door_lock is irrelevant at this point.
		 */
1022
		if (drive->doorlocking && idedisk_set_doorlock(drive, 1))
L
Linus Torvalds 已提交
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
			drive->doorlocking = 0;
	}
	return 0;
}

static int idedisk_release(struct inode *inode, struct file *filp)
{
	struct gendisk *disk = inode->i_bdev->bd_disk;
	struct ide_disk_obj *idkp = ide_disk_g(disk);
	ide_drive_t *drive = idkp->drive;

1034
	if (idkp->openers == 1)
L
Linus Torvalds 已提交
1035
		ide_cacheflush_p(drive);
1036 1037

	if (drive->removable && idkp->openers == 1) {
1038
		if (drive->doorlocking && idedisk_set_doorlock(drive, 0))
L
Linus Torvalds 已提交
1039 1040
			drive->doorlocking = 0;
	}
1041 1042

	idkp->openers--;
L
Linus Torvalds 已提交
1043 1044 1045 1046 1047 1048

	ide_disk_put(idkp);

	return 0;
}

1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
static int idedisk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
{
	struct ide_disk_obj *idkp = ide_disk_g(bdev->bd_disk);
	ide_drive_t *drive = idkp->drive;

	geo->heads = drive->bios_head;
	geo->sectors = drive->bios_sect;
	geo->cylinders = (u16)drive->bios_cyl; /* truncate */
	return 0;
}

L
Linus Torvalds 已提交
1060 1061 1062
static int idedisk_ioctl(struct inode *inode, struct file *file,
			unsigned int cmd, unsigned long arg)
{
1063
	unsigned long flags;
L
Linus Torvalds 已提交
1064 1065
	struct block_device *bdev = inode->i_bdev;
	struct ide_disk_obj *idkp = ide_disk_g(bdev->bd_disk);
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
	ide_drive_t *drive = idkp->drive;
	int err, (*setfunc)(ide_drive_t *, int);
	u8 *val;

	switch (cmd) {
	case HDIO_GET_ADDRESS:	 val = &drive->addressing;	goto read_val;
	case HDIO_GET_MULTCOUNT: val = &drive->mult_count;	goto read_val;
	case HDIO_GET_NOWERR:	 val = &drive->nowerr;		goto read_val;
	case HDIO_GET_WCACHE:	 val = &drive->wcache;		goto read_val;
	case HDIO_GET_ACOUSTIC:	 val = &drive->acoustic;	goto read_val;
	case HDIO_SET_ADDRESS:	 setfunc = set_lba_addressing;	goto set_val;
	case HDIO_SET_MULTCOUNT: setfunc = set_multcount;	goto set_val;
	case HDIO_SET_NOWERR:	 setfunc = set_nowerr;		goto set_val;
	case HDIO_SET_WCACHE:	 setfunc = write_cache;		goto set_val;
	case HDIO_SET_ACOUSTIC:	 setfunc = set_acoustic;	goto set_val;
	}

	return generic_ide_ioctl(drive, file, bdev, cmd, arg);

read_val:
1086
	mutex_lock(&ide_setting_mtx);
1087 1088 1089
	spin_lock_irqsave(&ide_lock, flags);
	err = *val;
	spin_unlock_irqrestore(&ide_lock, flags);
1090
	mutex_unlock(&ide_setting_mtx);
1091 1092 1093 1094 1095 1096 1097 1098 1099
	return err >= 0 ? put_user(err, (long __user *)arg) : err;

set_val:
	if (bdev != bdev->bd_contains)
		err = -EINVAL;
	else {
		if (!capable(CAP_SYS_ADMIN))
			err = -EACCES;
		else {
1100
			mutex_lock(&ide_setting_mtx);
1101
			err = setfunc(drive, arg);
1102
			mutex_unlock(&ide_setting_mtx);
1103 1104 1105
		}
	}
	return err;
L
Linus Torvalds 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
}

static int idedisk_media_changed(struct gendisk *disk)
{
	struct ide_disk_obj *idkp = ide_disk_g(disk);
	ide_drive_t *drive = idkp->drive;

	/* do not scan partitions twice if this is a removable device */
	if (drive->attach) {
		drive->attach = 0;
		return 0;
	}
	/* if removable, always assume it was changed */
	return drive->removable;
}

static int idedisk_revalidate_disk(struct gendisk *disk)
{
	struct ide_disk_obj *idkp = ide_disk_g(disk);
	set_capacity(disk, idedisk_capacity(idkp->drive));
	return 0;
}

static struct block_device_operations idedisk_ops = {
1130 1131 1132 1133 1134 1135 1136
	.owner			= THIS_MODULE,
	.open			= idedisk_open,
	.release		= idedisk_release,
	.ioctl			= idedisk_ioctl,
	.getgeo			= idedisk_getgeo,
	.media_changed		= idedisk_media_changed,
	.revalidate_disk	= idedisk_revalidate_disk
L
Linus Torvalds 已提交
1137 1138 1139 1140
};

MODULE_DESCRIPTION("ATA DISK Driver");

1141
static int ide_disk_probe(ide_drive_t *drive)
L
Linus Torvalds 已提交
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
{
	struct ide_disk_obj *idkp;
	struct gendisk *g;

	/* strstr("foo", "") is non-NULL */
	if (!strstr("ide-disk", drive->driver_req))
		goto failed;
	if (!drive->present)
		goto failed;
	if (drive->media != ide_disk)
		goto failed;

1154
	idkp = kzalloc(sizeof(*idkp), GFP_KERNEL);
L
Linus Torvalds 已提交
1155 1156 1157
	if (!idkp)
		goto failed;

1158 1159
	g = alloc_disk_ext_node(IDE_DISK_MINORS, IDE_DISK_EXT_MINORS,
				hwif_to_node(drive->hwif));
L
Linus Torvalds 已提交
1160 1161 1162 1163 1164
	if (!g)
		goto out_free_idkp;

	ide_init_disk(g, drive);

1165
	ide_proc_register_driver(drive, &idedisk_driver);
L
Linus Torvalds 已提交
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183

	kref_init(&idkp->kref);

	idkp->drive = drive;
	idkp->driver = &idedisk_driver;
	idkp->disk = g;

	g->private_data = &idkp->driver;

	drive->driver_data = idkp;

	idedisk_setup(drive);
	if ((!drive->head || drive->head > 16) && !drive->select.b.lba) {
		printk(KERN_ERR "%s: INVALID GEOMETRY: %d PHYSICAL HEADS?\n",
			drive->name, drive->head);
		drive->attach = 0;
	} else
		drive->attach = 1;
1184

1185 1186
	g->minors = IDE_DISK_MINORS;
	g->ext_minors = IDE_DISK_EXT_MINORS;
L
Linus Torvalds 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
	g->driverfs_dev = &drive->gendev;
	g->flags = drive->removable ? GENHD_FL_REMOVABLE : 0;
	set_capacity(g, idedisk_capacity(drive));
	g->fops = &idedisk_ops;
	add_disk(g);
	return 0;

out_free_idkp:
	kfree(idkp);
failed:
1197
	return -ENODEV;
L
Linus Torvalds 已提交
1198 1199
}

1200
static void __exit idedisk_exit(void)
L
Linus Torvalds 已提交
1201
{
1202
	driver_unregister(&idedisk_driver.gen_driver);
L
Linus Torvalds 已提交
1203 1204
}

1205
static int __init idedisk_init(void)
L
Linus Torvalds 已提交
1206
{
1207
	return driver_register(&idedisk_driver.gen_driver);
L
Linus Torvalds 已提交
1208 1209
}

1210
MODULE_ALIAS("ide:*m-disk*");
L
Linus Torvalds 已提交
1211 1212 1213
module_init(idedisk_init);
module_exit(idedisk_exit);
MODULE_LICENSE("GPL");