blob: 97abc91db7d09aed2014a2b33a9902addd47f629 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/ide/ide-disk.c Version 1.18 Mar 05, 2003
3 *
4 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
5 * Copyright (C) 1998-2002 Linux ATA Development
6 * Andre Hedrick <andre@linux-ide.org>
7 * Copyright (C) 2003 Red Hat <alan@redhat.com>
8 */
9
10/*
11 * Mostly written by Mark Lord <mlord@pobox.com>
12 * and Gadi Oxman <gadio@netvision.net.il>
13 * and Andre Hedrick <andre@linux-ide.org>
14 *
15 * This is the IDE/ATA disk driver, as evolved from hd.c and ide.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
18#define IDEDISK_VERSION "1.18"
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020//#define DEBUG
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/timer.h>
27#include <linux/mm.h>
28#include <linux/interrupt.h>
29#include <linux/major.h>
30#include <linux/errno.h>
31#include <linux/genhd.h>
32#include <linux/slab.h>
33#include <linux/delay.h>
Arjan van de Vencf8b8972006-03-23 03:00:45 -080034#include <linux/mutex.h>
Richard Purdie2bfb6462006-03-31 02:31:16 -080035#include <linux/leds.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#define _IDE_DISK
38
39#include <linux/ide.h>
40
41#include <asm/byteorder.h>
42#include <asm/irq.h>
43#include <asm/uaccess.h>
44#include <asm/io.h>
45#include <asm/div64.h>
46
47struct ide_disk_obj {
48 ide_drive_t *drive;
49 ide_driver_t *driver;
50 struct gendisk *disk;
51 struct kref kref;
Bartlomiej Zolnierkiewiczc94964a2007-02-17 02:40:24 +010052 unsigned int openers; /* protected by BKL for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
Arjan van de Vencf8b8972006-03-23 03:00:45 -080055static DEFINE_MUTEX(idedisk_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define to_ide_disk(obj) container_of(obj, struct ide_disk_obj, kref)
58
59#define ide_disk_g(disk) \
60 container_of((disk)->private_data, struct ide_disk_obj, driver)
61
62static struct ide_disk_obj *ide_disk_get(struct gendisk *disk)
63{
64 struct ide_disk_obj *idkp = NULL;
65
Arjan van de Vencf8b8972006-03-23 03:00:45 -080066 mutex_lock(&idedisk_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 idkp = ide_disk_g(disk);
68 if (idkp)
69 kref_get(&idkp->kref);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080070 mutex_unlock(&idedisk_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return idkp;
72}
73
74static void ide_disk_release(struct kref *);
75
76static void ide_disk_put(struct ide_disk_obj *idkp)
77{
Arjan van de Vencf8b8972006-03-23 03:00:45 -080078 mutex_lock(&idedisk_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 kref_put(&idkp->kref, ide_disk_release);
Arjan van de Vencf8b8972006-03-23 03:00:45 -080080 mutex_unlock(&idedisk_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83/*
84 * lba_capacity_is_ok() performs a sanity check on the claimed "lba_capacity"
85 * value for this drive (from its reported identification information).
86 *
87 * Returns: 1 if lba_capacity looks sensible
88 * 0 otherwise
89 *
90 * It is called only once for each drive.
91 */
92static int lba_capacity_is_ok (struct hd_driveid *id)
93{
94 unsigned long lba_sects, chs_sects, head, tail;
95
Alan Cox6efd9362005-06-27 15:24:22 -070096 /* No non-LBA info .. so valid! */
97 if (id->cyls == 0)
98 return 1;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /*
101 * The ATA spec tells large drives to return
102 * C/H/S = 16383/16/63 independent of their size.
103 * Some drives can be jumpered to use 15 heads instead of 16.
104 * Some drives can be jumpered to use 4092 cyls instead of 16383.
105 */
106 if ((id->cyls == 16383
107 || (id->cyls == 4092 && id->cur_cyls == 16383)) &&
108 id->sectors == 63 &&
109 (id->heads == 15 || id->heads == 16) &&
110 (id->lba_capacity >= 16383*63*id->heads))
111 return 1;
112
113 lba_sects = id->lba_capacity;
114 chs_sects = id->cyls * id->heads * id->sectors;
115
116 /* perform a rough sanity check on lba_sects: within 10% is OK */
117 if ((lba_sects - chs_sects) < chs_sects/10)
118 return 1;
119
120 /* some drives have the word order reversed */
121 head = ((lba_sects >> 16) & 0xffff);
122 tail = (lba_sects & 0xffff);
123 lba_sects = (head | (tail << 16));
124 if ((lba_sects - chs_sects) < chs_sects/10) {
125 id->lba_capacity = lba_sects;
126 return 1; /* lba_capacity is (now) good */
127 }
128
129 return 0; /* lba_capacity value may be bad */
130}
131
Bartlomiej Zolnierkiewiczba76ae32008-01-25 22:17:16 +0100132static const u8 ide_rw_cmds[] = {
133 WIN_MULTREAD,
134 WIN_MULTWRITE,
135 WIN_MULTREAD_EXT,
136 WIN_MULTWRITE_EXT,
137 WIN_READ,
138 WIN_WRITE,
139 WIN_READ_EXT,
140 WIN_WRITE_EXT,
141 WIN_READDMA,
142 WIN_WRITEDMA,
143 WIN_READDMA_EXT,
144 WIN_WRITEDMA_EXT,
145};
146
147static const u8 ide_data_phases[] = {
148 TASKFILE_MULTI_IN,
149 TASKFILE_MULTI_OUT,
150 TASKFILE_IN,
151 TASKFILE_OUT,
152 TASKFILE_IN_DMA,
153 TASKFILE_OUT_DMA,
154};
155
156static void ide_tf_set_cmd(ide_drive_t *drive, ide_task_t *task, u8 dma)
157{
158 u8 index, lba48, write;
159
160 lba48 = (task->tf_flags & IDE_TFLAG_LBA48) ? 2 : 0;
161 write = (task->tf_flags & IDE_TFLAG_WRITE) ? 1 : 0;
162
163 if (dma)
164 index = drive->vdma ? 4 : 8;
165 else
166 index = drive->mult_count ? 0 : 4;
167
168 task->tf.command = ide_rw_cmds[index + lba48 + write];
169
170 if (dma)
171 index = 8; /* fixup index */
172
173 task->data_phase = ide_data_phases[index / 2 + write];
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
177 * __ide_do_rw_disk() issues READ and WRITE commands to a disk,
178 * using LBA if supported, or CHS otherwise, to address sectors.
179 */
180static ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq, sector_t block)
181{
182 ide_hwif_t *hwif = HWIF(drive);
183 unsigned int dma = drive->using_dma;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100184 u16 nsectors = (u16)rq->nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 u8 lba48 = (drive->addressing == 1) ? 1 : 0;
Bartlomiej Zolnierkiewicz9e422372008-01-25 22:17:07 +0100186 ide_task_t task;
187 struct ide_taskfile *tf = &task.tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bartlomiej Zolnierkiewicz238e4f12007-10-19 00:30:07 +0200189 if ((hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA) && lba48 && dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (block + rq->nr_sectors > 1ULL << 28)
191 dma = 0;
192 else
193 lba48 = 0;
194 }
195
196 if (!dma) {
197 ide_init_sg_cmd(drive, rq);
198 ide_map_sg(drive, rq);
199 }
200
Bartlomiej Zolnierkiewicz9e422372008-01-25 22:17:07 +0100201 memset(&task, 0, sizeof(task));
202 task.tf_flags = IDE_TFLAG_NO_SELECT_MASK; /* FIXME? */
Bartlomiej Zolnierkiewicz807e35d2008-01-25 22:17:10 +0100203 task.tf_flags |= (IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE);
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (drive->select.b.lba) {
206 if (lba48) {
Michael Richardsonc2f83112006-02-07 12:58:33 -0800207 pr_debug("%s: LBA=0x%012llx\n", drive->name,
208 (unsigned long long)block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100210 tf->hob_nsect = (nsectors >> 8) & 0xff;
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100211 tf->hob_lbal = (u8)(block >> 24);
212 if (sizeof(block) != 4) {
213 tf->hob_lbam = (u8)((u64)block >> 32);
214 tf->hob_lbah = (u8)((u64)block >> 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100216
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100217 tf->nsect = nsectors & 0xff;
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100218 tf->lbal = (u8) block;
219 tf->lbam = (u8)(block >> 8);
220 tf->lbah = (u8)(block >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#ifdef DEBUG
222 printk("%s: 0x%02x%02x 0x%02x%02x%02x%02x%02x%02x\n",
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100223 drive->name, tf->hob_nsect, tf->nsect,
224 tf->hob_lbah, tf->hob_lbam, tf->hob_lbal,
225 tf->lbah, tf->lbam, tf->lbal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#endif
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100227 task.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_OUT_HOB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 } else {
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100229 tf->nsect = nsectors & 0xff;
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100230 tf->lbal = block;
231 tf->lbam = block >>= 8;
232 tf->lbah = block >>= 8;
233 tf->device = (block >> 8) & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235 } else {
236 unsigned int sect,head,cyl,track;
237 track = (int)block / drive->sect;
238 sect = (int)block % drive->sect + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 head = track % drive->head;
240 cyl = track / drive->head;
241
242 pr_debug("%s: CHS=%u/%u/%u\n", drive->name, cyl, head, sect);
243
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100244 tf->nsect = nsectors & 0xff;
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100245 tf->lbal = sect;
246 tf->lbam = cyl;
247 tf->lbah = cyl >> 8;
248 tf->device = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
Bartlomiej Zolnierkiewiczba76ae32008-01-25 22:17:16 +0100251 if (rq_data_dir(rq))
252 task.tf_flags |= IDE_TFLAG_WRITE;
253
254 ide_tf_set_cmd(drive, &task, dma);
255
Bartlomiej Zolnierkiewicz9e422372008-01-25 22:17:07 +0100256 ide_tf_load(drive, &task);
Bartlomiej Zolnierkiewicz2bd06b22008-01-25 22:17:06 +0100257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (dma) {
259 if (!hwif->dma_setup(drive)) {
Bartlomiej Zolnierkiewiczba76ae32008-01-25 22:17:16 +0100260 hwif->dma_exec_cmd(drive, tf->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 hwif->dma_start(drive);
262 return ide_started;
263 }
264 /* fallback to PIO */
Bartlomiej Zolnierkiewiczba76ae32008-01-25 22:17:16 +0100265 ide_tf_set_cmd(drive, &task, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 ide_init_sg_cmd(drive, rq);
267 }
268
Bartlomiej Zolnierkiewiczba76ae32008-01-25 22:17:16 +0100269 hwif->data_phase = task.data_phase;
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (rq_data_dir(rq) == READ) {
Bartlomiej Zolnierkiewiczba76ae32008-01-25 22:17:16 +0100272 ide_execute_command(drive, tf->command, &task_in_intr,
Bartlomiej Zolnierkiewiczc52ea912008-01-25 22:17:16 +0100273 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return ide_started;
275 } else {
Bartlomiej Zolnierkiewiczba76ae32008-01-25 22:17:16 +0100276 hwif->OUTBSYNC(drive, tf->command, IDE_COMMAND_REG);
Bartlomiej Zolnierkiewicza7bbd202008-01-25 22:17:15 +0100277 ndelay(400); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 return pre_task_out_intr(drive, rq);
280 }
281}
282
283/*
284 * 268435455 == 137439 MB or 28bit limit
285 * 320173056 == 163929 MB or 48bit addressing
286 * 1073741822 == 549756 MB or 48bit addressing fake drive
287 */
288
289static ide_startstop_t ide_do_rw_disk (ide_drive_t *drive, struct request *rq, sector_t block)
290{
291 ide_hwif_t *hwif = HWIF(drive);
292
293 BUG_ON(drive->blocked);
294
295 if (!blk_fs_request(rq)) {
296 blk_dump_rq_flags(rq, "ide_do_rw_disk - bad command");
297 ide_end_request(drive, 0, 0);
298 return ide_stopped;
299 }
300
Richard Purdie2bfb6462006-03-31 02:31:16 -0800301 ledtrig_ide_activity();
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 pr_debug("%s: %sing: block=%llu, sectors=%lu, buffer=0x%08lx\n",
304 drive->name, rq_data_dir(rq) == READ ? "read" : "writ",
Michael Richardsonc2f83112006-02-07 12:58:33 -0800305 (unsigned long long)block, rq->nr_sectors,
306 (unsigned long)rq->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 if (hwif->rw_disk)
309 hwif->rw_disk(drive, rq);
310
311 return __ide_do_rw_disk(drive, rq, block);
312}
313
314/*
315 * Queries for true maximum capacity of the drive.
316 * Returns maximum LBA address (> 0) of the drive, 0 if failed.
317 */
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100318static u64 idedisk_read_native_max_address(ide_drive_t *drive, int lba48)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 ide_task_t args;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100321 struct ide_taskfile *tf = &args.tf;
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100322 u64 addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* Create IDE/ATA command request structure */
325 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100326 if (lba48)
327 tf->command = WIN_READ_NATIVE_MAX_EXT;
328 else
329 tf->command = WIN_READ_NATIVE_MAX;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100330 tf->device = ATA_LBA;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100331 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
332 if (lba48)
333 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_OUT_HOB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* submit command request */
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100335 ide_no_data_taskfile(drive, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* if OK, compute maximum address value */
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100338 if ((tf->status & 0x01) == 0) {
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100339 u32 high, low;
340
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100341 if (lba48)
342 high = (tf->hob_lbah << 16) | (tf->hob_lbam << 8) |
343 tf->hob_lbal;
344 else
345 high = tf->device & 0xf;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100346 low = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 addr = ((__u64)high << 24) | low;
348 addr++; /* since the return value is (maxlba - 1), we add 1 */
349 }
350 return addr;
351}
352
353/*
354 * Sets maximum virtual LBA address of the drive.
355 * Returns new maximum virtual LBA address (> 0) or 0 on failure.
356 */
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100357static u64 idedisk_set_max_address(ide_drive_t *drive, u64 addr_req, int lba48)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 ide_task_t args;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100360 struct ide_taskfile *tf = &args.tf;
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100361 u64 addr_set = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 addr_req--;
364 /* Create IDE/ATA command request structure */
365 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100366 tf->lbal = (addr_req >> 0) & 0xff;
367 tf->lbam = (addr_req >>= 8) & 0xff;
368 tf->lbah = (addr_req >>= 8) & 0xff;
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100369 if (lba48) {
370 tf->hob_lbal = (addr_req >>= 8) & 0xff;
371 tf->hob_lbam = (addr_req >>= 8) & 0xff;
372 tf->hob_lbah = (addr_req >>= 8) & 0xff;
373 tf->command = WIN_SET_MAX_EXT;
374 } else {
375 tf->device = (addr_req >>= 8) & 0x0f;
376 tf->command = WIN_SET_MAX;
377 }
378 tf->device |= ATA_LBA;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100379 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
380 if (lba48)
381 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_OUT_HOB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* submit command request */
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100383 ide_no_data_taskfile(drive, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* if OK, compute maximum address value */
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100385 if ((tf->status & 0x01) == 0) {
386 u32 high, low;
387
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100388 if (lba48)
389 high = (tf->hob_lbah << 16) | (tf->hob_lbam << 8) |
390 tf->hob_lbal;
391 else
392 high = tf->device & 0xf;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100393 low = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 addr_set = ((__u64)high << 24) | low;
395 addr_set++;
396 }
397 return addr_set;
398}
399
400static unsigned long long sectors_to_MB(unsigned long long n)
401{
402 n <<= 9; /* make it bytes */
403 do_div(n, 1000000); /* make it MB */
404 return n;
405}
406
407/*
408 * Bits 10 of command_set_1 and cfs_enable_1 must be equal,
409 * so on non-buggy drives we need test only one.
410 * However, we should also check whether these fields are valid.
411 */
412static inline int idedisk_supports_hpa(const struct hd_driveid *id)
413{
414 return (id->command_set_1 & 0x0400) && (id->cfs_enable_1 & 0x0400);
415}
416
417/*
418 * The same here.
419 */
420static inline int idedisk_supports_lba48(const struct hd_driveid *id)
421{
422 return (id->command_set_2 & 0x0400) && (id->cfs_enable_2 & 0x0400)
423 && id->lba_capacity_2;
424}
425
Bartlomiej Zolnierkiewiczb0244a02007-08-20 22:42:57 +0200426/*
427 * Some disks report total number of sectors instead of
428 * maximum sector address. We list them here.
429 */
430static const struct drive_list_entry hpa_list[] = {
431 { "ST340823A", NULL },
Jorge Juan Chico7062cdc2007-09-17 12:35:30 +0200432 { "ST320413A", NULL },
Bartlomiej Zolnierkiewiczb0244a02007-08-20 22:42:57 +0200433 { NULL, NULL }
434};
435
Arjan van de Ven858119e2006-01-14 13:20:43 -0800436static void idedisk_check_hpa(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 unsigned long long capacity, set_max;
439 int lba48 = idedisk_supports_lba48(drive->id);
440
441 capacity = drive->capacity64;
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100442
443 set_max = idedisk_read_native_max_address(drive, lba48);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Bartlomiej Zolnierkiewiczb0244a02007-08-20 22:42:57 +0200445 if (ide_in_drive_list(drive->id, hpa_list)) {
446 /*
447 * Since we are inclusive wrt to firmware revisions do this
448 * extra check and apply the workaround only when needed.
449 */
450 if (set_max == capacity + 1)
451 set_max--;
452 }
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (set_max <= capacity)
455 return;
456
457 printk(KERN_INFO "%s: Host Protected Area detected.\n"
458 "\tcurrent capacity is %llu sectors (%llu MB)\n"
459 "\tnative capacity is %llu sectors (%llu MB)\n",
460 drive->name,
461 capacity, sectors_to_MB(capacity),
462 set_max, sectors_to_MB(set_max));
463
Bartlomiej Zolnierkiewicz7a3b7512008-01-25 22:17:06 +0100464 set_max = idedisk_set_max_address(drive, set_max, lba48);
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (set_max) {
467 drive->capacity64 = set_max;
468 printk(KERN_INFO "%s: Host Protected Area disabled.\n",
469 drive->name);
470 }
471}
472
473/*
474 * Compute drive->capacity, the full capacity of the drive
475 * Called with drive->id != NULL.
476 *
477 * To compute capacity, this uses either of
478 *
479 * 1. CHS value set by user (whatever user sets will be trusted)
480 * 2. LBA value from target drive (require new ATA feature)
481 * 3. LBA value from system BIOS (new one is OK, old one may break)
482 * 4. CHS value from system BIOS (traditional style)
483 *
484 * in above order (i.e., if value of higher priority is available,
485 * reset will be ignored).
486 */
487static void init_idedisk_capacity (ide_drive_t *drive)
488{
489 struct hd_driveid *id = drive->id;
490 /*
491 * If this drive supports the Host Protected Area feature set,
492 * then we may need to change our opinion about the drive's capacity.
493 */
494 int hpa = idedisk_supports_hpa(id);
495
496 if (idedisk_supports_lba48(id)) {
497 /* drive speaks 48-bit LBA */
498 drive->select.b.lba = 1;
499 drive->capacity64 = id->lba_capacity_2;
500 if (hpa)
501 idedisk_check_hpa(drive);
502 } else if ((id->capability & 2) && lba_capacity_is_ok(id)) {
503 /* drive speaks 28-bit LBA */
504 drive->select.b.lba = 1;
505 drive->capacity64 = id->lba_capacity;
506 if (hpa)
507 idedisk_check_hpa(drive);
508 } else {
509 /* drive speaks boring old 28-bit CHS */
510 drive->capacity64 = drive->cyl * drive->head * drive->sect;
511 }
512}
513
514static sector_t idedisk_capacity (ide_drive_t *drive)
515{
516 return drive->capacity64 - drive->sect0;
517}
518
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200519#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static int smart_enable(ide_drive_t *drive)
521{
522 ide_task_t args;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100523 struct ide_taskfile *tf = &args.tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100526 tf->feature = SMART_ENABLE;
527 tf->lbam = SMART_LCYL_PASS;
528 tf->lbah = SMART_HCYL_PASS;
529 tf->command = WIN_SMART;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100530 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100531 return ide_no_data_taskfile(drive, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Bartlomiej Zolnierkiewicz43e7c0c2007-10-20 00:32:37 +0200534static int get_smart_data(ide_drive_t *drive, u8 *buf, u8 sub_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 ide_task_t args;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100537 struct ide_taskfile *tf = &args.tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100540 tf->feature = sub_cmd;
541 tf->nsect = 0x01;
542 tf->lbam = SMART_LCYL_PASS;
543 tf->lbah = SMART_HCYL_PASS;
544 tf->command = WIN_SMART;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100545 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
546 args.data_phase = TASKFILE_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 (void) smart_enable(drive);
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100548 return ide_raw_taskfile(drive, &args, buf, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
551static int proc_idedisk_read_cache
552 (char *page, char **start, off_t off, int count, int *eof, void *data)
553{
554 ide_drive_t *drive = (ide_drive_t *) data;
555 char *out = page;
556 int len;
557
558 if (drive->id_read)
559 len = sprintf(out,"%i\n", drive->id->buf_size / 2);
560 else
561 len = sprintf(out,"(none)\n");
562 PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
563}
564
565static int proc_idedisk_read_capacity
566 (char *page, char **start, off_t off, int count, int *eof, void *data)
567{
568 ide_drive_t*drive = (ide_drive_t *)data;
569 int len;
570
571 len = sprintf(page,"%llu\n", (long long)idedisk_capacity(drive));
572 PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
573}
574
575static int proc_idedisk_read_smart_thresholds
576 (char *page, char **start, off_t off, int count, int *eof, void *data)
577{
578 ide_drive_t *drive = (ide_drive_t *)data;
579 int len = 0, i = 0;
580
Bartlomiej Zolnierkiewicz43e7c0c2007-10-20 00:32:37 +0200581 if (get_smart_data(drive, page, SMART_READ_THRESHOLDS) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 unsigned short *val = (unsigned short *) page;
583 char *out = ((char *)val) + (SECTOR_WORDS * 4);
584 page = out;
585 do {
586 out += sprintf(out, "%04x%c", le16_to_cpu(*val), (++i & 7) ? ' ' : '\n');
587 val += 1;
588 } while (i < (SECTOR_WORDS * 2));
589 len = out - page;
590 }
591 PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
592}
593
594static int proc_idedisk_read_smart_values
595 (char *page, char **start, off_t off, int count, int *eof, void *data)
596{
597 ide_drive_t *drive = (ide_drive_t *)data;
598 int len = 0, i = 0;
599
Bartlomiej Zolnierkiewicz43e7c0c2007-10-20 00:32:37 +0200600 if (get_smart_data(drive, page, SMART_READ_VALUES) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 unsigned short *val = (unsigned short *) page;
602 char *out = ((char *)val) + (SECTOR_WORDS * 4);
603 page = out;
604 do {
605 out += sprintf(out, "%04x%c", le16_to_cpu(*val), (++i & 7) ? ' ' : '\n');
606 val += 1;
607 } while (i < (SECTOR_WORDS * 2));
608 len = out - page;
609 }
610 PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
611}
612
613static ide_proc_entry_t idedisk_proc[] = {
614 { "cache", S_IFREG|S_IRUGO, proc_idedisk_read_cache, NULL },
615 { "capacity", S_IFREG|S_IRUGO, proc_idedisk_read_capacity, NULL },
616 { "geometry", S_IFREG|S_IRUGO, proc_ide_read_geometry, NULL },
617 { "smart_values", S_IFREG|S_IRUSR, proc_idedisk_read_smart_values, NULL },
618 { "smart_thresholds", S_IFREG|S_IRUSR, proc_idedisk_read_smart_thresholds, NULL },
619 { NULL, 0, NULL, NULL }
620};
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200621#endif /* CONFIG_IDE_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Jens Axboe165125e2007-07-24 09:28:11 +0200623static void idedisk_prepare_flush(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 ide_drive_t *drive = q->queuedata;
Bartlomiej Zolnierkiewicz813a0eb2008-01-25 22:17:10 +0100626 ide_task_t task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Bartlomiej Zolnierkiewicz813a0eb2008-01-25 22:17:10 +0100628 memset(&task, 0, sizeof(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (ide_id_has_flush_cache_ext(drive->id) &&
630 (drive->capacity64 >= (1UL << 28)))
Bartlomiej Zolnierkiewicz813a0eb2008-01-25 22:17:10 +0100631 task.tf.command = WIN_FLUSH_CACHE_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 else
Bartlomiej Zolnierkiewicz813a0eb2008-01-25 22:17:10 +0100633 task.tf.command = WIN_FLUSH_CACHE;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100634 task.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
635 task.data_phase = TASKFILE_NO_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Bartlomiej Zolnierkiewicz813a0eb2008-01-25 22:17:10 +0100637 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200638 rq->cmd_flags |= REQ_SOFTBARRIER;
Bartlomiej Zolnierkiewicz813a0eb2008-01-25 22:17:10 +0100639 rq->special = &task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642/*
643 * This is tightly woven into the driver->do_special can not touch.
644 * DON'T do it again until a total personality rewrite is committed.
645 */
646static int set_multcount(ide_drive_t *drive, int arg)
647{
648 struct request rq;
649
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200650 if (arg < 0 || arg > drive->id->max_multsect)
651 return -EINVAL;
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (drive->special.b.set_multmode)
654 return -EBUSY;
655 ide_init_drive_cmd (&rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200656 rq.cmd_type = REQ_TYPE_ATA_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 drive->mult_req = arg;
658 drive->special.b.set_multmode = 1;
659 (void) ide_do_drive_cmd (drive, &rq, ide_wait);
660 return (drive->mult_count == arg) ? 0 : -EIO;
661}
662
663static int set_nowerr(ide_drive_t *drive, int arg)
664{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200665 if (arg < 0 || arg > 1)
666 return -EINVAL;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (ide_spin_wait_hwgroup(drive))
669 return -EBUSY;
670 drive->nowerr = arg;
671 drive->bad_wstat = arg ? BAD_R_STAT : BAD_W_STAT;
672 spin_unlock_irq(&ide_lock);
673 return 0;
674}
675
Tejun Heo3e087b52006-01-06 09:57:31 +0100676static void update_ordered(ide_drive_t *drive)
677{
678 struct hd_driveid *id = drive->id;
679 unsigned ordered = QUEUE_ORDERED_NONE;
680 prepare_flush_fn *prep_fn = NULL;
Tejun Heo3e087b52006-01-06 09:57:31 +0100681
682 if (drive->wcache) {
683 unsigned long long capacity;
684 int barrier;
685 /*
686 * We must avoid issuing commands a drive does not
687 * understand or we may crash it. We check flush cache
688 * is supported. We also check we have the LBA48 flush
689 * cache if the drive capacity is too large. By this
690 * time we have trimmed the drive capacity if LBA48 is
691 * not available so we don't need to recheck that.
692 */
693 capacity = idedisk_capacity(drive);
Jens Axboe36193482006-07-28 08:54:59 +0200694 barrier = ide_id_has_flush_cache(id) && !drive->noflush &&
Tejun Heo3e087b52006-01-06 09:57:31 +0100695 (drive->addressing == 0 || capacity <= (1ULL << 28) ||
696 ide_id_has_flush_cache_ext(id));
697
698 printk(KERN_INFO "%s: cache flushes %ssupported\n",
Jean Delvaref7ad8362006-02-03 03:04:57 -0800699 drive->name, barrier ? "" : "not ");
Tejun Heo3e087b52006-01-06 09:57:31 +0100700
701 if (barrier) {
702 ordered = QUEUE_ORDERED_DRAIN_FLUSH;
703 prep_fn = idedisk_prepare_flush;
Tejun Heo3e087b52006-01-06 09:57:31 +0100704 }
705 } else
706 ordered = QUEUE_ORDERED_DRAIN;
707
708 blk_queue_ordered(drive->queue, ordered, prep_fn);
Tejun Heo3e087b52006-01-06 09:57:31 +0100709}
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711static int write_cache(ide_drive_t *drive, int arg)
712{
713 ide_task_t args;
Tejun Heo3e087b52006-01-06 09:57:31 +0100714 int err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200716 if (arg < 0 || arg > 1)
717 return -EINVAL;
718
Tejun Heo3e087b52006-01-06 09:57:31 +0100719 if (ide_id_has_flush_cache(drive->id)) {
720 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100721 args.tf.feature = arg ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 SETFEATURES_EN_WCACHE : SETFEATURES_DIS_WCACHE;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100723 args.tf.command = WIN_SETFEATURES;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100724 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100725 err = ide_no_data_taskfile(drive, &args);
Tejun Heo3e087b52006-01-06 09:57:31 +0100726 if (err == 0)
727 drive->wcache = arg;
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Tejun Heo3e087b52006-01-06 09:57:31 +0100730 update_ordered(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Tejun Heo3e087b52006-01-06 09:57:31 +0100732 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735static int do_idedisk_flushcache (ide_drive_t *drive)
736{
737 ide_task_t args;
738
739 memset(&args, 0, sizeof(ide_task_t));
740 if (ide_id_has_flush_cache_ext(drive->id))
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100741 args.tf.command = WIN_FLUSH_CACHE_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 else
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100743 args.tf.command = WIN_FLUSH_CACHE;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100744 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100745 return ide_no_data_taskfile(drive, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748static int set_acoustic (ide_drive_t *drive, int arg)
749{
750 ide_task_t args;
751
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200752 if (arg < 0 || arg > 254)
753 return -EINVAL;
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100756 args.tf.feature = arg ? SETFEATURES_EN_AAM : SETFEATURES_DIS_AAM;
757 args.tf.nsect = arg;
758 args.tf.command = WIN_SETFEATURES;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100759 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100760 ide_no_data_taskfile(drive, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 drive->acoustic = arg;
762 return 0;
763}
764
765/*
766 * drive->addressing:
767 * 0: 28-bit
768 * 1: 48-bit
769 * 2: 48-bit capable doing 28-bit
770 */
771static int set_lba_addressing(ide_drive_t *drive, int arg)
772{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200773 if (arg < 0 || arg > 2)
774 return -EINVAL;
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 drive->addressing = 0;
777
Bartlomiej Zolnierkiewicz238e4f12007-10-19 00:30:07 +0200778 if (drive->hwif->host_flags & IDE_HFLAG_NO_LBA48)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780
781 if (!idedisk_supports_lba48(drive->id))
782 return -EIO;
783 drive->addressing = arg;
784 return 0;
785}
786
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200787#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788static void idedisk_add_settings(ide_drive_t *drive)
789{
790 struct hd_driveid *id = drive->id;
791
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200792 ide_add_setting(drive, "bios_cyl", SETTING_RW, TYPE_INT, 0, 65535, 1, 1, &drive->bios_cyl, NULL);
793 ide_add_setting(drive, "bios_head", SETTING_RW, TYPE_BYTE, 0, 255, 1, 1, &drive->bios_head, NULL);
794 ide_add_setting(drive, "bios_sect", SETTING_RW, TYPE_BYTE, 0, 63, 1, 1, &drive->bios_sect, NULL);
795 ide_add_setting(drive, "address", SETTING_RW, TYPE_BYTE, 0, 2, 1, 1, &drive->addressing, set_lba_addressing);
796 ide_add_setting(drive, "bswap", SETTING_READ, TYPE_BYTE, 0, 1, 1, 1, &drive->bswap, NULL);
797 ide_add_setting(drive, "multcount", SETTING_RW, TYPE_BYTE, 0, id->max_multsect, 1, 1, &drive->mult_count, set_multcount);
798 ide_add_setting(drive, "nowerr", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->nowerr, set_nowerr);
799 ide_add_setting(drive, "lun", SETTING_RW, TYPE_INT, 0, 7, 1, 1, &drive->lun, NULL);
800 ide_add_setting(drive, "wcache", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->wcache, write_cache);
801 ide_add_setting(drive, "acoustic", SETTING_RW, TYPE_BYTE, 0, 254, 1, 1, &drive->acoustic, set_acoustic);
802 ide_add_setting(drive, "failures", SETTING_RW, TYPE_INT, 0, 65535, 1, 1, &drive->failures, NULL);
803 ide_add_setting(drive, "max_failures", SETTING_RW, TYPE_INT, 0, 65535, 1, 1, &drive->max_failures, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200805#else
806static inline void idedisk_add_settings(ide_drive_t *drive) { ; }
807#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809static void idedisk_setup (ide_drive_t *drive)
810{
Bartlomiej Zolnierkiewicz238e4f12007-10-19 00:30:07 +0200811 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 struct hd_driveid *id = drive->id;
813 unsigned long long capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 idedisk_add_settings(drive);
816
817 if (drive->id_read == 0)
818 return;
819
Richard Purdie98109332006-02-03 03:04:55 -0800820 if (drive->removable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /*
822 * Removable disks (eg. SYQUEST); ignore 'WD' drives
823 */
824 if (id->model[0] != 'W' || id->model[1] != 'D') {
825 drive->doorlocking = 1;
826 }
827 }
828
829 (void)set_lba_addressing(drive, 1);
830
831 if (drive->addressing == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 int max_s = 2048;
833
834 if (max_s > hwif->rqsize)
835 max_s = hwif->rqsize;
836
837 blk_queue_max_sectors(drive->queue, max_s);
838 }
839
840 printk(KERN_INFO "%s: max request size: %dKiB\n", drive->name, drive->queue->max_sectors / 2);
841
842 /* calculate drive capacity, and select LBA if possible */
843 init_idedisk_capacity (drive);
844
845 /* limit drive capacity to 137GB if LBA48 cannot be used */
846 if (drive->addressing == 0 && drive->capacity64 > 1ULL << 28) {
847 printk(KERN_WARNING "%s: cannot use LBA48 - full capacity "
848 "%llu sectors (%llu MB)\n",
849 drive->name, (unsigned long long)drive->capacity64,
850 sectors_to_MB(drive->capacity64));
851 drive->capacity64 = 1ULL << 28;
852 }
853
Bartlomiej Zolnierkiewicz238e4f12007-10-19 00:30:07 +0200854 if ((hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA) && drive->addressing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (drive->capacity64 > 1ULL << 28) {
856 printk(KERN_INFO "%s: cannot use LBA48 DMA - PIO mode will"
857 " be used for accessing sectors > %u\n",
858 drive->name, 1 << 28);
859 } else
860 drive->addressing = 0;
861 }
862
863 /*
864 * if possible, give fdisk access to more of the drive,
865 * by correcting bios_cyls:
866 */
867 capacity = idedisk_capacity (drive);
868 if (!drive->forced_geom) {
869
870 if (idedisk_supports_lba48(drive->id)) {
871 /* compatibility */
872 drive->bios_sect = 63;
873 drive->bios_head = 255;
874 }
875
876 if (drive->bios_sect && drive->bios_head) {
877 unsigned int cap0 = capacity; /* truncate to 32 bits */
878 unsigned int cylsz, cyl;
879
880 if (cap0 != capacity)
881 drive->bios_cyl = 65535;
882 else {
883 cylsz = drive->bios_sect * drive->bios_head;
884 cyl = cap0 / cylsz;
885 if (cyl > 65535)
886 cyl = 65535;
887 if (cyl > drive->bios_cyl)
888 drive->bios_cyl = cyl;
889 }
890 }
891 }
892 printk(KERN_INFO "%s: %llu sectors (%llu MB)",
893 drive->name, capacity, sectors_to_MB(capacity));
894
895 /* Only print cache size when it was specified */
896 if (id->buf_size)
897 printk (" w/%dKiB Cache", id->buf_size/2);
898
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +0100899 printk(KERN_CONT ", CHS=%d/%d/%d\n",
900 drive->bios_cyl, drive->bios_head, drive->bios_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /* write cache enabled? */
903 if ((id->csfo & 1) || (id->cfs_enable_1 & (1 << 5)))
904 drive->wcache = 1;
905
906 write_cache(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909static void ide_cacheflush_p(ide_drive_t *drive)
910{
911 if (!drive->wcache || !ide_id_has_flush_cache(drive->id))
912 return;
913
914 if (do_idedisk_flushcache(drive))
915 printk(KERN_INFO "%s: wcache flush failed!\n", drive->name);
916}
917
Russell King4031bbe2006-01-06 11:41:00 +0000918static void ide_disk_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
920 struct ide_disk_obj *idkp = drive->driver_data;
921 struct gendisk *g = idkp->disk;
922
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200923 ide_proc_unregister_driver(drive, idkp->driver);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 del_gendisk(g);
926
Bartlomiej Zolnierkiewiczd36fef62005-12-15 02:19:20 +0100927 ide_cacheflush_p(drive);
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 ide_disk_put(idkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
932static void ide_disk_release(struct kref *kref)
933{
934 struct ide_disk_obj *idkp = to_ide_disk(kref);
935 ide_drive_t *drive = idkp->drive;
936 struct gendisk *g = idkp->disk;
937
938 drive->driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 g->private_data = NULL;
940 put_disk(g);
941 kfree(idkp);
942}
943
Russell King4031bbe2006-01-06 11:41:00 +0000944static int ide_disk_probe(ide_drive_t *drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Lee Trager0d2157f2007-06-08 15:14:30 +0200946/*
947 * On HPA drives the capacity needs to be
948 * reinitilized on resume otherwise the disk
949 * can not be used and a hard reset is required
950 */
951static void ide_disk_resume(ide_drive_t *drive)
952{
953 if (idedisk_supports_hpa(drive->id))
954 init_idedisk_capacity(drive);
955}
956
Russell King4031bbe2006-01-06 11:41:00 +0000957static void ide_device_shutdown(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959#ifdef CONFIG_ALPHA
960 /* On Alpha, halt(8) doesn't actually turn the machine off,
961 it puts you into the sort of firmware monitor. Typically,
962 it's used to boot another kernel image, so it's not much
963 different from reboot(8). Therefore, we don't need to
964 spin down the disk in this case, especially since Alpha
965 firmware doesn't handle disks in standby mode properly.
966 On the other hand, it's reasonably safe to turn the power
967 off when the shutdown process reaches the firmware prompt,
968 as the firmware initialization takes rather long time -
969 at least 10 seconds, which should be sufficient for
970 the disk to expire its write cache. */
971 if (system_state != SYSTEM_POWER_OFF) {
972#else
973 if (system_state == SYSTEM_RESTART) {
974#endif
975 ide_cacheflush_p(drive);
976 return;
977 }
978
979 printk("Shutdown: %s\n", drive->name);
Russell King4031bbe2006-01-06 11:41:00 +0000980 drive->gendev.bus->suspend(&drive->gendev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983static ide_driver_t idedisk_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +0100985 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200986 .name = "ide-disk",
987 .bus = &ide_bus_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 },
Russell King4031bbe2006-01-06 11:41:00 +0000989 .probe = ide_disk_probe,
990 .remove = ide_disk_remove,
Lee Trager0d2157f2007-06-08 15:14:30 +0200991 .resume = ide_disk_resume,
Russell King4031bbe2006-01-06 11:41:00 +0000992 .shutdown = ide_device_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 .version = IDEDISK_VERSION,
994 .media = ide_disk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 .supports_dsc_overlap = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 .do_request = ide_do_rw_disk,
997 .end_request = ide_end_request,
998 .error = __ide_error,
999 .abort = __ide_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001000#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 .proc = idedisk_proc,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001002#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003};
1004
1005static int idedisk_open(struct inode *inode, struct file *filp)
1006{
1007 struct gendisk *disk = inode->i_bdev->bd_disk;
1008 struct ide_disk_obj *idkp;
1009 ide_drive_t *drive;
1010
1011 if (!(idkp = ide_disk_get(disk)))
1012 return -ENXIO;
1013
1014 drive = idkp->drive;
1015
Bartlomiej Zolnierkiewiczc94964a2007-02-17 02:40:24 +01001016 idkp->openers++;
1017
1018 if (drive->removable && idkp->openers == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 ide_task_t args;
1020 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +01001021 args.tf.command = WIN_DOORLOCK;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +01001022 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 check_disk_change(inode->i_bdev);
1024 /*
1025 * Ignore the return code from door_lock,
1026 * since the open() has already succeeded,
1027 * and the door_lock is irrelevant at this point.
1028 */
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +01001029 if (drive->doorlocking && ide_no_data_taskfile(drive, &args))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 drive->doorlocking = 0;
1031 }
1032 return 0;
1033}
1034
1035static int idedisk_release(struct inode *inode, struct file *filp)
1036{
1037 struct gendisk *disk = inode->i_bdev->bd_disk;
1038 struct ide_disk_obj *idkp = ide_disk_g(disk);
1039 ide_drive_t *drive = idkp->drive;
1040
Bartlomiej Zolnierkiewiczc94964a2007-02-17 02:40:24 +01001041 if (idkp->openers == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ide_cacheflush_p(drive);
Bartlomiej Zolnierkiewiczc94964a2007-02-17 02:40:24 +01001043
1044 if (drive->removable && idkp->openers == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 ide_task_t args;
1046 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +01001047 args.tf.command = WIN_DOORUNLOCK;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +01001048 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +01001049 if (drive->doorlocking && ide_no_data_taskfile(drive, &args))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 drive->doorlocking = 0;
1051 }
Bartlomiej Zolnierkiewiczc94964a2007-02-17 02:40:24 +01001052
1053 idkp->openers--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 ide_disk_put(idkp);
1056
1057 return 0;
1058}
1059
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08001060static int idedisk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1061{
1062 struct ide_disk_obj *idkp = ide_disk_g(bdev->bd_disk);
1063 ide_drive_t *drive = idkp->drive;
1064
1065 geo->heads = drive->bios_head;
1066 geo->sectors = drive->bios_sect;
1067 geo->cylinders = (u16)drive->bios_cyl; /* truncate */
1068 return 0;
1069}
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071static int idedisk_ioctl(struct inode *inode, struct file *file,
1072 unsigned int cmd, unsigned long arg)
1073{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001074 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 struct block_device *bdev = inode->i_bdev;
1076 struct ide_disk_obj *idkp = ide_disk_g(bdev->bd_disk);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001077 ide_drive_t *drive = idkp->drive;
1078 int err, (*setfunc)(ide_drive_t *, int);
1079 u8 *val;
1080
1081 switch (cmd) {
1082 case HDIO_GET_ADDRESS: val = &drive->addressing; goto read_val;
1083 case HDIO_GET_MULTCOUNT: val = &drive->mult_count; goto read_val;
1084 case HDIO_GET_NOWERR: val = &drive->nowerr; goto read_val;
1085 case HDIO_GET_WCACHE: val = &drive->wcache; goto read_val;
1086 case HDIO_GET_ACOUSTIC: val = &drive->acoustic; goto read_val;
1087 case HDIO_SET_ADDRESS: setfunc = set_lba_addressing; goto set_val;
1088 case HDIO_SET_MULTCOUNT: setfunc = set_multcount; goto set_val;
1089 case HDIO_SET_NOWERR: setfunc = set_nowerr; goto set_val;
1090 case HDIO_SET_WCACHE: setfunc = write_cache; goto set_val;
1091 case HDIO_SET_ACOUSTIC: setfunc = set_acoustic; goto set_val;
1092 }
1093
1094 return generic_ide_ioctl(drive, file, bdev, cmd, arg);
1095
1096read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001097 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001098 spin_lock_irqsave(&ide_lock, flags);
1099 err = *val;
1100 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001101 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001102 return err >= 0 ? put_user(err, (long __user *)arg) : err;
1103
1104set_val:
1105 if (bdev != bdev->bd_contains)
1106 err = -EINVAL;
1107 else {
1108 if (!capable(CAP_SYS_ADMIN))
1109 err = -EACCES;
1110 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001111 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001112 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001113 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001114 }
1115 }
1116 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119static int idedisk_media_changed(struct gendisk *disk)
1120{
1121 struct ide_disk_obj *idkp = ide_disk_g(disk);
1122 ide_drive_t *drive = idkp->drive;
1123
1124 /* do not scan partitions twice if this is a removable device */
1125 if (drive->attach) {
1126 drive->attach = 0;
1127 return 0;
1128 }
1129 /* if removable, always assume it was changed */
1130 return drive->removable;
1131}
1132
1133static int idedisk_revalidate_disk(struct gendisk *disk)
1134{
1135 struct ide_disk_obj *idkp = ide_disk_g(disk);
1136 set_capacity(disk, idedisk_capacity(idkp->drive));
1137 return 0;
1138}
1139
1140static struct block_device_operations idedisk_ops = {
1141 .owner = THIS_MODULE,
1142 .open = idedisk_open,
1143 .release = idedisk_release,
1144 .ioctl = idedisk_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08001145 .getgeo = idedisk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 .media_changed = idedisk_media_changed,
1147 .revalidate_disk= idedisk_revalidate_disk
1148};
1149
1150MODULE_DESCRIPTION("ATA DISK Driver");
1151
Russell King4031bbe2006-01-06 11:41:00 +00001152static int ide_disk_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 struct ide_disk_obj *idkp;
1155 struct gendisk *g;
1156
1157 /* strstr("foo", "") is non-NULL */
1158 if (!strstr("ide-disk", drive->driver_req))
1159 goto failed;
1160 if (!drive->present)
1161 goto failed;
1162 if (drive->media != ide_disk)
1163 goto failed;
1164
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -08001165 idkp = kzalloc(sizeof(*idkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (!idkp)
1167 goto failed;
1168
Christoph Lameter19460892005-06-23 00:08:19 -07001169 g = alloc_disk_node(1 << PARTN_BITS,
Christoph Lameter86b37862005-08-09 19:59:21 -07001170 hwif_to_node(drive->hwif));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (!g)
1172 goto out_free_idkp;
1173
1174 ide_init_disk(g, drive);
1175
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001176 ide_proc_register_driver(drive, &idedisk_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 kref_init(&idkp->kref);
1179
1180 idkp->drive = drive;
1181 idkp->driver = &idedisk_driver;
1182 idkp->disk = g;
1183
1184 g->private_data = &idkp->driver;
1185
1186 drive->driver_data = idkp;
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 idedisk_setup(drive);
1189 if ((!drive->head || drive->head > 16) && !drive->select.b.lba) {
1190 printk(KERN_ERR "%s: INVALID GEOMETRY: %d PHYSICAL HEADS?\n",
1191 drive->name, drive->head);
1192 drive->attach = 0;
1193 } else
1194 drive->attach = 1;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 g->minors = 1 << PARTN_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 g->driverfs_dev = &drive->gendev;
1198 g->flags = drive->removable ? GENHD_FL_REMOVABLE : 0;
1199 set_capacity(g, idedisk_capacity(drive));
1200 g->fops = &idedisk_ops;
1201 add_disk(g);
1202 return 0;
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204out_free_idkp:
1205 kfree(idkp);
1206failed:
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001207 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210static void __exit idedisk_exit (void)
1211{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001212 driver_unregister(&idedisk_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Bartlomiej Zolnierkiewicz17514e82005-11-19 22:24:35 +01001215static int __init idedisk_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001217 return driver_register(&idedisk_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Kay Sievers263756e2005-12-12 18:03:44 +01001220MODULE_ALIAS("ide:*m-disk*");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221module_init(idedisk_init);
1222module_exit(idedisk_exit);
1223MODULE_LICENSE("GPL");