]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * Copyright (C) 1991, 1992 Linus Torvalds | |
3 | * | |
4 | * This is the low-level hd interrupt support. It traverses the | |
5 | * request-list, using interrupts to jump between functions. As | |
6 | * all the functions are called within interrupts, we may not | |
7 | * sleep. Special care is recommended. | |
8 | * | |
9 | * modified by Drew Eckhardt to check nr of hd's from the CMOS. | |
10 | * | |
11 | * Thanks to Branko Lankester, [email protected], who found a bug | |
12 | * in the early extended-partition checks and added DM partitions | |
13 | * | |
14 | * IRQ-unmask, drive-id, multiple-mode, support for ">16 heads", | |
15 | * and general streamlining by Mark Lord. | |
16 | * | |
17 | * Removed 99% of above. Use Mark's ide driver for those options. | |
18 | * This is now a lightweight ST-506 driver. (Paul Gortmaker) | |
19 | * | |
20 | * Modified 1995 Russell King for ARM processor. | |
21 | * | |
22 | * Bugfix: max_sectors must be <= 255 or the wheels tend to come | |
23 | * off in a hurry once you queue things up - Paul G. 02/2001 | |
24 | */ | |
25 | ||
26 | /* Uncomment the following if you want verbose error reports. */ | |
27 | /* #define VERBOSE_ERRORS */ | |
28 | ||
29 | #include <linux/blkdev.h> | |
30 | #include <linux/errno.h> | |
31 | #include <linux/signal.h> | |
32 | #include <linux/interrupt.h> | |
33 | #include <linux/timer.h> | |
34 | #include <linux/fs.h> | |
35 | #include <linux/kernel.h> | |
36 | #include <linux/genhd.h> | |
1da177e4 LT |
37 | #include <linux/string.h> |
38 | #include <linux/ioport.h> | |
1da177e4 LT |
39 | #include <linux/init.h> |
40 | #include <linux/blkpg.h> | |
f26b3d75 | 41 | #include <linux/ata.h> |
1da177e4 LT |
42 | #include <linux/hdreg.h> |
43 | ||
4fe6e306 BZ |
44 | #define HD_IRQ 14 |
45 | ||
1da177e4 LT |
46 | #define REALLY_SLOW_IO |
47 | #include <asm/system.h> | |
48 | #include <asm/io.h> | |
49 | #include <asm/uaccess.h> | |
50 | ||
51 | #ifdef __arm__ | |
52 | #undef HD_IRQ | |
53 | #endif | |
54 | #include <asm/irq.h> | |
55 | #ifdef __arm__ | |
56 | #define HD_IRQ IRQ_HARDDISK | |
57 | #endif | |
58 | ||
59 | /* Hd controller regster ports */ | |
60 | ||
61 | #define HD_DATA 0x1f0 /* _CTL when writing */ | |
62 | #define HD_ERROR 0x1f1 /* see err-bits */ | |
63 | #define HD_NSECTOR 0x1f2 /* nr of sectors to read/write */ | |
64 | #define HD_SECTOR 0x1f3 /* starting sector */ | |
65 | #define HD_LCYL 0x1f4 /* starting cylinder */ | |
66 | #define HD_HCYL 0x1f5 /* high byte of starting cyl */ | |
67 | #define HD_CURRENT 0x1f6 /* 101dhhhh , d=drive, hhhh=head */ | |
68 | #define HD_STATUS 0x1f7 /* see status-bits */ | |
69 | #define HD_FEATURE HD_ERROR /* same io address, read=error, write=feature */ | |
70 | #define HD_PRECOMP HD_FEATURE /* obsolete use of this port - predates IDE */ | |
71 | #define HD_COMMAND HD_STATUS /* same io address, read=status, write=cmd */ | |
72 | ||
73 | #define HD_CMD 0x3f6 /* used for resets */ | |
74 | #define HD_ALTSTATUS 0x3f6 /* same as HD_STATUS but doesn't clear irq */ | |
75 | ||
76 | /* Bits of HD_STATUS */ | |
77 | #define ERR_STAT 0x01 | |
78 | #define INDEX_STAT 0x02 | |
79 | #define ECC_STAT 0x04 /* Corrected error */ | |
80 | #define DRQ_STAT 0x08 | |
81 | #define SEEK_STAT 0x10 | |
82 | #define SERVICE_STAT SEEK_STAT | |
83 | #define WRERR_STAT 0x20 | |
84 | #define READY_STAT 0x40 | |
85 | #define BUSY_STAT 0x80 | |
86 | ||
87 | /* Bits for HD_ERROR */ | |
88 | #define MARK_ERR 0x01 /* Bad address mark */ | |
89 | #define TRK0_ERR 0x02 /* couldn't find track 0 */ | |
90 | #define ABRT_ERR 0x04 /* Command aborted */ | |
91 | #define MCR_ERR 0x08 /* media change request */ | |
92 | #define ID_ERR 0x10 /* ID field not found */ | |
93 | #define MC_ERR 0x20 /* media changed */ | |
94 | #define ECC_ERR 0x40 /* Uncorrectable ECC error */ | |
95 | #define BBD_ERR 0x80 /* pre-EIDE meaning: block marked bad */ | |
96 | #define ICRC_ERR 0x80 /* new meaning: CRC error during transfer */ | |
97 | ||
98 | static DEFINE_SPINLOCK(hd_lock); | |
99 | static struct request_queue *hd_queue; | |
8a12c4a4 | 100 | static struct request *hd_req; |
1da177e4 | 101 | |
1da177e4 LT |
102 | #define TIMEOUT_VALUE (6*HZ) |
103 | #define HD_DELAY 0 | |
104 | ||
105 | #define MAX_ERRORS 16 /* Max read/write errors/sector */ | |
106 | #define RESET_FREQ 8 /* Reset controller every 8th retry */ | |
107 | #define RECAL_FREQ 4 /* Recalibrate every 4th retry */ | |
108 | #define MAX_HD 2 | |
109 | ||
110 | #define STAT_OK (READY_STAT|SEEK_STAT) | |
111 | #define OK_STATUS(s) (((s)&(STAT_OK|(BUSY_STAT|WRERR_STAT|ERR_STAT)))==STAT_OK) | |
112 | ||
113 | static void recal_intr(void); | |
114 | static void bad_rw_intr(void); | |
115 | ||
116 | static int reset; | |
117 | static int hd_error; | |
118 | ||
119 | /* | |
120 | * This struct defines the HD's and their types. | |
121 | */ | |
122 | struct hd_i_struct { | |
ec29782b | 123 | unsigned int head, sect, cyl, wpcom, lzone, ctl; |
1da177e4 LT |
124 | int unit; |
125 | int recalibrate; | |
126 | int special_op; | |
127 | }; | |
ec29782b | 128 | |
1da177e4 LT |
129 | #ifdef HD_TYPE |
130 | static struct hd_i_struct hd_info[] = { HD_TYPE }; | |
ecea5730 | 131 | static int NR_HD = ARRAY_SIZE(hd_info); |
1da177e4 LT |
132 | #else |
133 | static struct hd_i_struct hd_info[MAX_HD]; | |
134 | static int NR_HD; | |
135 | #endif | |
136 | ||
137 | static struct gendisk *hd_gendisk[MAX_HD]; | |
138 | ||
139 | static struct timer_list device_timer; | |
140 | ||
141 | #define TIMEOUT_VALUE (6*HZ) | |
142 | ||
143 | #define SET_TIMER \ | |
144 | do { \ | |
145 | mod_timer(&device_timer, jiffies + TIMEOUT_VALUE); \ | |
146 | } while (0) | |
147 | ||
148 | static void (*do_hd)(void) = NULL; | |
149 | #define SET_HANDLER(x) \ | |
150 | if ((do_hd = (x)) != NULL) \ | |
151 | SET_TIMER; \ | |
152 | else \ | |
153 | del_timer(&device_timer); | |
154 | ||
155 | ||
156 | #if (HD_DELAY > 0) | |
306e440d IM |
157 | |
158 | #include <asm/i8253.h> | |
159 | ||
1da177e4 LT |
160 | unsigned long last_req; |
161 | ||
162 | unsigned long read_timer(void) | |
163 | { | |
1da177e4 LT |
164 | unsigned long t, flags; |
165 | int i; | |
166 | ||
ced918eb | 167 | raw_spin_lock_irqsave(&i8253_lock, flags); |
1da177e4 | 168 | t = jiffies * 11932; |
ec29782b | 169 | outb_p(0, 0x43); |
1da177e4 LT |
170 | i = inb_p(0x40); |
171 | i |= inb(0x40) << 8; | |
ced918eb | 172 | raw_spin_unlock_irqrestore(&i8253_lock, flags); |
1da177e4 LT |
173 | return(t - i); |
174 | } | |
175 | #endif | |
176 | ||
177 | static void __init hd_setup(char *str, int *ints) | |
178 | { | |
179 | int hdind = 0; | |
180 | ||
181 | if (ints[0] != 3) | |
182 | return; | |
183 | if (hd_info[0].head != 0) | |
ec29782b | 184 | hdind = 1; |
1da177e4 LT |
185 | hd_info[hdind].head = ints[2]; |
186 | hd_info[hdind].sect = ints[3]; | |
187 | hd_info[hdind].cyl = ints[1]; | |
188 | hd_info[hdind].wpcom = 0; | |
189 | hd_info[hdind].lzone = ints[1]; | |
190 | hd_info[hdind].ctl = (ints[2] > 8 ? 8 : 0); | |
191 | NR_HD = hdind+1; | |
192 | } | |
193 | ||
8a12c4a4 TH |
194 | static bool hd_end_request(int err, unsigned int bytes) |
195 | { | |
196 | if (__blk_end_request(hd_req, err, bytes)) | |
197 | return true; | |
198 | hd_req = NULL; | |
199 | return false; | |
200 | } | |
201 | ||
202 | static bool hd_end_request_cur(int err) | |
203 | { | |
204 | return hd_end_request(err, blk_rq_cur_bytes(hd_req)); | |
205 | } | |
206 | ||
ec29782b | 207 | static void dump_status(const char *msg, unsigned int stat) |
1da177e4 LT |
208 | { |
209 | char *name = "hd?"; | |
8a12c4a4 TH |
210 | if (hd_req) |
211 | name = hd_req->rq_disk->disk_name; | |
1da177e4 LT |
212 | |
213 | #ifdef VERBOSE_ERRORS | |
214 | printk("%s: %s: status=0x%02x { ", name, msg, stat & 0xff); | |
215 | if (stat & BUSY_STAT) printk("Busy "); | |
216 | if (stat & READY_STAT) printk("DriveReady "); | |
217 | if (stat & WRERR_STAT) printk("WriteFault "); | |
218 | if (stat & SEEK_STAT) printk("SeekComplete "); | |
219 | if (stat & DRQ_STAT) printk("DataRequest "); | |
220 | if (stat & ECC_STAT) printk("CorrectedError "); | |
221 | if (stat & INDEX_STAT) printk("Index "); | |
222 | if (stat & ERR_STAT) printk("Error "); | |
223 | printk("}\n"); | |
224 | if ((stat & ERR_STAT) == 0) { | |
225 | hd_error = 0; | |
226 | } else { | |
227 | hd_error = inb(HD_ERROR); | |
228 | printk("%s: %s: error=0x%02x { ", name, msg, hd_error & 0xff); | |
229 | if (hd_error & BBD_ERR) printk("BadSector "); | |
230 | if (hd_error & ECC_ERR) printk("UncorrectableError "); | |
231 | if (hd_error & ID_ERR) printk("SectorIdNotFound "); | |
232 | if (hd_error & ABRT_ERR) printk("DriveStatusError "); | |
233 | if (hd_error & TRK0_ERR) printk("TrackZeroNotFound "); | |
234 | if (hd_error & MARK_ERR) printk("AddrMarkNotFound "); | |
235 | printk("}"); | |
236 | if (hd_error & (BBD_ERR|ECC_ERR|ID_ERR|MARK_ERR)) { | |
237 | printk(", CHS=%d/%d/%d", (inb(HD_HCYL)<<8) + inb(HD_LCYL), | |
238 | inb(HD_CURRENT) & 0xf, inb(HD_SECTOR)); | |
8a12c4a4 TH |
239 | if (hd_req) |
240 | printk(", sector=%ld", blk_rq_pos(hd_req)); | |
1da177e4 LT |
241 | } |
242 | printk("\n"); | |
243 | } | |
244 | #else | |
245 | printk("%s: %s: status=0x%02x.\n", name, msg, stat & 0xff); | |
246 | if ((stat & ERR_STAT) == 0) { | |
247 | hd_error = 0; | |
248 | } else { | |
249 | hd_error = inb(HD_ERROR); | |
250 | printk("%s: %s: error=0x%02x.\n", name, msg, hd_error & 0xff); | |
251 | } | |
252 | #endif | |
253 | } | |
254 | ||
255 | static void check_status(void) | |
256 | { | |
257 | int i = inb_p(HD_STATUS); | |
258 | ||
259 | if (!OK_STATUS(i)) { | |
260 | dump_status("check_status", i); | |
261 | bad_rw_intr(); | |
262 | } | |
263 | } | |
264 | ||
265 | static int controller_busy(void) | |
266 | { | |
267 | int retries = 100000; | |
268 | unsigned char status; | |
269 | ||
270 | do { | |
271 | status = inb_p(HD_STATUS); | |
272 | } while ((status & BUSY_STAT) && --retries); | |
273 | return status; | |
274 | } | |
275 | ||
276 | static int status_ok(void) | |
277 | { | |
278 | unsigned char status = inb_p(HD_STATUS); | |
279 | ||
280 | if (status & BUSY_STAT) | |
281 | return 1; /* Ancient, but does it make sense??? */ | |
282 | if (status & WRERR_STAT) | |
283 | return 0; | |
284 | if (!(status & READY_STAT)) | |
285 | return 0; | |
286 | if (!(status & SEEK_STAT)) | |
287 | return 0; | |
288 | return 1; | |
289 | } | |
290 | ||
291 | static int controller_ready(unsigned int drive, unsigned int head) | |
292 | { | |
293 | int retry = 100; | |
294 | ||
295 | do { | |
296 | if (controller_busy() & BUSY_STAT) | |
297 | return 0; | |
298 | outb_p(0xA0 | (drive<<4) | head, HD_CURRENT); | |
299 | if (status_ok()) | |
300 | return 1; | |
301 | } while (--retry); | |
302 | return 0; | |
303 | } | |
304 | ||
1da177e4 LT |
305 | static void hd_out(struct hd_i_struct *disk, |
306 | unsigned int nsect, | |
307 | unsigned int sect, | |
308 | unsigned int head, | |
309 | unsigned int cyl, | |
310 | unsigned int cmd, | |
311 | void (*intr_addr)(void)) | |
312 | { | |
313 | unsigned short port; | |
314 | ||
315 | #if (HD_DELAY > 0) | |
316 | while (read_timer() - last_req < HD_DELAY) | |
317 | /* nothing */; | |
318 | #endif | |
319 | if (reset) | |
320 | return; | |
321 | if (!controller_ready(disk->unit, head)) { | |
322 | reset = 1; | |
323 | return; | |
324 | } | |
325 | SET_HANDLER(intr_addr); | |
ec29782b PC |
326 | outb_p(disk->ctl, HD_CMD); |
327 | port = HD_DATA; | |
328 | outb_p(disk->wpcom >> 2, ++port); | |
329 | outb_p(nsect, ++port); | |
330 | outb_p(sect, ++port); | |
331 | outb_p(cyl, ++port); | |
332 | outb_p(cyl >> 8, ++port); | |
333 | outb_p(0xA0 | (disk->unit << 4) | head, ++port); | |
334 | outb_p(cmd, ++port); | |
1da177e4 LT |
335 | } |
336 | ||
337 | static void hd_request (void); | |
338 | ||
339 | static int drive_busy(void) | |
340 | { | |
341 | unsigned int i; | |
342 | unsigned char c; | |
343 | ||
344 | for (i = 0; i < 500000 ; i++) { | |
345 | c = inb_p(HD_STATUS); | |
346 | if ((c & (BUSY_STAT | READY_STAT | SEEK_STAT)) == STAT_OK) | |
347 | return 0; | |
348 | } | |
349 | dump_status("reset timed out", c); | |
350 | return 1; | |
351 | } | |
352 | ||
353 | static void reset_controller(void) | |
354 | { | |
355 | int i; | |
356 | ||
ec29782b PC |
357 | outb_p(4, HD_CMD); |
358 | for (i = 0; i < 1000; i++) barrier(); | |
359 | outb_p(hd_info[0].ctl & 0x0f, HD_CMD); | |
360 | for (i = 0; i < 1000; i++) barrier(); | |
1da177e4 LT |
361 | if (drive_busy()) |
362 | printk("hd: controller still busy\n"); | |
363 | else if ((hd_error = inb(HD_ERROR)) != 1) | |
ec29782b | 364 | printk("hd: controller reset failed: %02x\n", hd_error); |
1da177e4 LT |
365 | } |
366 | ||
367 | static void reset_hd(void) | |
368 | { | |
369 | static int i; | |
370 | ||
371 | repeat: | |
372 | if (reset) { | |
373 | reset = 0; | |
374 | i = -1; | |
375 | reset_controller(); | |
376 | } else { | |
377 | check_status(); | |
378 | if (reset) | |
379 | goto repeat; | |
380 | } | |
381 | if (++i < NR_HD) { | |
382 | struct hd_i_struct *disk = &hd_info[i]; | |
383 | disk->special_op = disk->recalibrate = 1; | |
ec29782b | 384 | hd_out(disk, disk->sect, disk->sect, disk->head-1, |
f26b3d75 | 385 | disk->cyl, ATA_CMD_INIT_DEV_PARAMS, &reset_hd); |
1da177e4 LT |
386 | if (reset) |
387 | goto repeat; | |
388 | } else | |
389 | hd_request(); | |
390 | } | |
391 | ||
392 | /* | |
393 | * Ok, don't know what to do with the unexpected interrupts: on some machines | |
394 | * doing a reset and a retry seems to result in an eternal loop. Right now I | |
395 | * ignore it, and just set the timeout. | |
396 | * | |
397 | * On laptops (and "green" PCs), an unexpected interrupt occurs whenever the | |
398 | * drive enters "idle", "standby", or "sleep" mode, so if the status looks | |
399 | * "good", we just ignore the interrupt completely. | |
400 | */ | |
401 | static void unexpected_hd_interrupt(void) | |
402 | { | |
403 | unsigned int stat = inb_p(HD_STATUS); | |
404 | ||
405 | if (stat & (BUSY_STAT|DRQ_STAT|ECC_STAT|ERR_STAT)) { | |
ec29782b | 406 | dump_status("unexpected interrupt", stat); |
1da177e4 LT |
407 | SET_TIMER; |
408 | } | |
409 | } | |
410 | ||
411 | /* | |
412 | * bad_rw_intr() now tries to be a bit smarter and does things | |
413 | * according to the error returned by the controller. | |
414 | * -Mika Liljeberg ([email protected]) | |
415 | */ | |
416 | static void bad_rw_intr(void) | |
417 | { | |
8a12c4a4 TH |
418 | struct request *req = hd_req; |
419 | ||
1da177e4 LT |
420 | if (req != NULL) { |
421 | struct hd_i_struct *disk = req->rq_disk->private_data; | |
422 | if (++req->errors >= MAX_ERRORS || (hd_error & BBD_ERR)) { | |
8a12c4a4 | 423 | hd_end_request_cur(-EIO); |
1da177e4 LT |
424 | disk->special_op = disk->recalibrate = 1; |
425 | } else if (req->errors % RESET_FREQ == 0) | |
426 | reset = 1; | |
427 | else if ((hd_error & TRK0_ERR) || req->errors % RECAL_FREQ == 0) | |
428 | disk->special_op = disk->recalibrate = 1; | |
429 | /* Otherwise just retry */ | |
430 | } | |
431 | } | |
432 | ||
433 | static inline int wait_DRQ(void) | |
434 | { | |
b004223d AM |
435 | int retries; |
436 | int stat; | |
1da177e4 | 437 | |
b004223d AM |
438 | for (retries = 0; retries < 100000; retries++) { |
439 | stat = inb_p(HD_STATUS); | |
440 | if (stat & DRQ_STAT) | |
1da177e4 | 441 | return 0; |
b004223d | 442 | } |
1da177e4 LT |
443 | dump_status("wait_DRQ", stat); |
444 | return -1; | |
445 | } | |
446 | ||
447 | static void read_intr(void) | |
448 | { | |
449 | struct request *req; | |
450 | int i, retries = 100000; | |
451 | ||
452 | do { | |
453 | i = (unsigned) inb_p(HD_STATUS); | |
454 | if (i & BUSY_STAT) | |
455 | continue; | |
456 | if (!OK_STATUS(i)) | |
457 | break; | |
458 | if (i & DRQ_STAT) | |
459 | goto ok_to_read; | |
460 | } while (--retries > 0); | |
461 | dump_status("read_intr", i); | |
462 | bad_rw_intr(); | |
463 | hd_request(); | |
464 | return; | |
e091eb67 | 465 | |
1da177e4 | 466 | ok_to_read: |
8a12c4a4 | 467 | req = hd_req; |
ec29782b | 468 | insw(HD_DATA, req->buffer, 256); |
1da177e4 | 469 | #ifdef DEBUG |
83096ebf TH |
470 | printk("%s: read: sector %ld, remaining = %u, buffer=%p\n", |
471 | req->rq_disk->disk_name, blk_rq_pos(req) + 1, | |
472 | blk_rq_sectors(req) - 1, req->buffer+512); | |
1da177e4 | 473 | #endif |
8a12c4a4 | 474 | if (hd_end_request(0, 512)) { |
1da177e4 LT |
475 | SET_HANDLER(&read_intr); |
476 | return; | |
477 | } | |
e091eb67 | 478 | |
1da177e4 LT |
479 | (void) inb_p(HD_STATUS); |
480 | #if (HD_DELAY > 0) | |
481 | last_req = read_timer(); | |
482 | #endif | |
e091eb67 | 483 | hd_request(); |
1da177e4 LT |
484 | } |
485 | ||
486 | static void write_intr(void) | |
487 | { | |
8a12c4a4 | 488 | struct request *req = hd_req; |
1da177e4 LT |
489 | int i; |
490 | int retries = 100000; | |
491 | ||
492 | do { | |
493 | i = (unsigned) inb_p(HD_STATUS); | |
494 | if (i & BUSY_STAT) | |
495 | continue; | |
496 | if (!OK_STATUS(i)) | |
497 | break; | |
83096ebf | 498 | if ((blk_rq_sectors(req) <= 1) || (i & DRQ_STAT)) |
1da177e4 LT |
499 | goto ok_to_write; |
500 | } while (--retries > 0); | |
501 | dump_status("write_intr", i); | |
502 | bad_rw_intr(); | |
503 | hd_request(); | |
504 | return; | |
e091eb67 | 505 | |
1da177e4 | 506 | ok_to_write: |
8a12c4a4 | 507 | if (hd_end_request(0, 512)) { |
1da177e4 | 508 | SET_HANDLER(&write_intr); |
ec29782b | 509 | outsw(HD_DATA, req->buffer, 256); |
e091eb67 TH |
510 | return; |
511 | } | |
512 | ||
1da177e4 | 513 | #if (HD_DELAY > 0) |
e091eb67 | 514 | last_req = read_timer(); |
1da177e4 | 515 | #endif |
e091eb67 | 516 | hd_request(); |
1da177e4 LT |
517 | } |
518 | ||
519 | static void recal_intr(void) | |
520 | { | |
521 | check_status(); | |
522 | #if (HD_DELAY > 0) | |
523 | last_req = read_timer(); | |
524 | #endif | |
525 | hd_request(); | |
526 | } | |
527 | ||
528 | /* | |
529 | * This is another of the error-routines I don't know what to do with. The | |
530 | * best idea seems to just set reset, and start all over again. | |
531 | */ | |
532 | static void hd_times_out(unsigned long dummy) | |
533 | { | |
534 | char *name; | |
535 | ||
536 | do_hd = NULL; | |
537 | ||
8a12c4a4 | 538 | if (!hd_req) |
1da177e4 LT |
539 | return; |
540 | ||
e93b9fb7 | 541 | spin_lock_irq(hd_queue->queue_lock); |
1da177e4 | 542 | reset = 1; |
8a12c4a4 | 543 | name = hd_req->rq_disk->disk_name; |
1da177e4 | 544 | printk("%s: timeout\n", name); |
8a12c4a4 | 545 | if (++hd_req->errors >= MAX_ERRORS) { |
1da177e4 LT |
546 | #ifdef DEBUG |
547 | printk("%s: too many errors\n", name); | |
548 | #endif | |
8a12c4a4 | 549 | hd_end_request_cur(-EIO); |
1da177e4 | 550 | } |
1da177e4 | 551 | hd_request(); |
e93b9fb7 | 552 | spin_unlock_irq(hd_queue->queue_lock); |
1da177e4 LT |
553 | } |
554 | ||
555 | static int do_special_op(struct hd_i_struct *disk, struct request *req) | |
556 | { | |
557 | if (disk->recalibrate) { | |
558 | disk->recalibrate = 0; | |
f26b3d75 | 559 | hd_out(disk, disk->sect, 0, 0, 0, ATA_CMD_RESTORE, &recal_intr); |
1da177e4 LT |
560 | return reset; |
561 | } | |
562 | if (disk->head > 16) { | |
ec29782b | 563 | printk("%s: cannot handle device with more than 16 heads - giving up\n", req->rq_disk->disk_name); |
8a12c4a4 | 564 | hd_end_request_cur(-EIO); |
1da177e4 LT |
565 | } |
566 | disk->special_op = 0; | |
567 | return 1; | |
568 | } | |
569 | ||
570 | /* | |
571 | * The driver enables interrupts as much as possible. In order to do this, | |
572 | * (a) the device-interrupt is disabled before entering hd_request(), | |
573 | * and (b) the timeout-interrupt is disabled before the sti(). | |
574 | * | |
575 | * Interrupts are still masked (by default) whenever we are exchanging | |
576 | * data/cmds with a drive, because some drives seem to have very poor | |
577 | * tolerance for latency during I/O. The IDE driver has support to unmask | |
578 | * interrupts for non-broken hardware, so use that driver if required. | |
579 | */ | |
580 | static void hd_request(void) | |
581 | { | |
582 | unsigned int block, nsect, sec, track, head, cyl; | |
583 | struct hd_i_struct *disk; | |
584 | struct request *req; | |
585 | ||
586 | if (do_hd) | |
587 | return; | |
588 | repeat: | |
589 | del_timer(&device_timer); | |
1da177e4 | 590 | |
8a12c4a4 | 591 | if (!hd_req) { |
9934c8c0 | 592 | hd_req = blk_fetch_request(hd_queue); |
8a12c4a4 TH |
593 | if (!hd_req) { |
594 | do_hd = NULL; | |
595 | return; | |
596 | } | |
1da177e4 | 597 | } |
8a12c4a4 | 598 | req = hd_req; |
1da177e4 LT |
599 | |
600 | if (reset) { | |
1da177e4 LT |
601 | reset_hd(); |
602 | return; | |
603 | } | |
604 | disk = req->rq_disk->private_data; | |
83096ebf TH |
605 | block = blk_rq_pos(req); |
606 | nsect = blk_rq_sectors(req); | |
1da177e4 LT |
607 | if (block >= get_capacity(req->rq_disk) || |
608 | ((block+nsect) > get_capacity(req->rq_disk))) { | |
609 | printk("%s: bad access: block=%d, count=%d\n", | |
610 | req->rq_disk->disk_name, block, nsect); | |
8a12c4a4 | 611 | hd_end_request_cur(-EIO); |
1da177e4 LT |
612 | goto repeat; |
613 | } | |
614 | ||
615 | if (disk->special_op) { | |
616 | if (do_special_op(disk, req)) | |
617 | goto repeat; | |
618 | return; | |
619 | } | |
620 | sec = block % disk->sect + 1; | |
621 | track = block / disk->sect; | |
622 | head = track % disk->head; | |
623 | cyl = track / disk->head; | |
624 | #ifdef DEBUG | |
625 | printk("%s: %sing: CHS=%d/%d/%d, sectors=%d, buffer=%p\n", | |
e654bc43 BH |
626 | req->rq_disk->disk_name, |
627 | req_data_dir(req) == READ ? "read" : "writ", | |
1da177e4 LT |
628 | cyl, head, sec, nsect, req->buffer); |
629 | #endif | |
33659ebb | 630 | if (req->cmd_type == REQ_TYPE_FS) { |
1da177e4 LT |
631 | switch (rq_data_dir(req)) { |
632 | case READ: | |
f26b3d75 | 633 | hd_out(disk, nsect, sec, head, cyl, ATA_CMD_PIO_READ, |
ec29782b | 634 | &read_intr); |
1da177e4 LT |
635 | if (reset) |
636 | goto repeat; | |
637 | break; | |
638 | case WRITE: | |
f26b3d75 | 639 | hd_out(disk, nsect, sec, head, cyl, ATA_CMD_PIO_WRITE, |
ec29782b | 640 | &write_intr); |
1da177e4 LT |
641 | if (reset) |
642 | goto repeat; | |
643 | if (wait_DRQ()) { | |
644 | bad_rw_intr(); | |
645 | goto repeat; | |
646 | } | |
ec29782b | 647 | outsw(HD_DATA, req->buffer, 256); |
1da177e4 LT |
648 | break; |
649 | default: | |
650 | printk("unknown hd-command\n"); | |
8a12c4a4 | 651 | hd_end_request_cur(-EIO); |
1da177e4 LT |
652 | break; |
653 | } | |
654 | } | |
655 | } | |
656 | ||
ec29782b | 657 | static void do_hd_request(struct request_queue *q) |
1da177e4 | 658 | { |
1da177e4 | 659 | hd_request(); |
1da177e4 LT |
660 | } |
661 | ||
a885c8c4 | 662 | static int hd_getgeo(struct block_device *bdev, struct hd_geometry *geo) |
1da177e4 | 663 | { |
a885c8c4 CH |
664 | struct hd_i_struct *disk = bdev->bd_disk->private_data; |
665 | ||
666 | geo->heads = disk->head; | |
667 | geo->sectors = disk->sect; | |
668 | geo->cylinders = disk->cyl; | |
669 | return 0; | |
1da177e4 LT |
670 | } |
671 | ||
672 | /* | |
673 | * Releasing a block device means we sync() it, so that it can safely | |
674 | * be forgotten about... | |
675 | */ | |
676 | ||
7d12e780 | 677 | static irqreturn_t hd_interrupt(int irq, void *dev_id) |
1da177e4 LT |
678 | { |
679 | void (*handler)(void) = do_hd; | |
680 | ||
e93b9fb7 TH |
681 | spin_lock(hd_queue->queue_lock); |
682 | ||
1da177e4 LT |
683 | do_hd = NULL; |
684 | del_timer(&device_timer); | |
685 | if (!handler) | |
686 | handler = unexpected_hd_interrupt; | |
687 | handler(); | |
e93b9fb7 TH |
688 | |
689 | spin_unlock(hd_queue->queue_lock); | |
690 | ||
1da177e4 LT |
691 | return IRQ_HANDLED; |
692 | } | |
693 | ||
83d5cde4 | 694 | static const struct block_device_operations hd_fops = { |
a885c8c4 | 695 | .getgeo = hd_getgeo, |
1da177e4 LT |
696 | }; |
697 | ||
698 | /* | |
362537b9 | 699 | * This is the hard disk IRQ description. The IRQF_DISABLED in sa_flags |
1da177e4 LT |
700 | * means we run the IRQ-handler with interrupts disabled: this is bad for |
701 | * interrupt latency, but anything else has led to problems on some | |
702 | * machines. | |
703 | * | |
704 | * We enable interrupts in some of the routines after making sure it's | |
705 | * safe. | |
706 | */ | |
707 | ||
708 | static int __init hd_init(void) | |
709 | { | |
710 | int drive; | |
711 | ||
ddeb9c3e | 712 | if (register_blkdev(HD_MAJOR, "hd")) |
1da177e4 LT |
713 | return -1; |
714 | ||
715 | hd_queue = blk_init_queue(do_hd_request, &hd_lock); | |
716 | if (!hd_queue) { | |
ddeb9c3e | 717 | unregister_blkdev(HD_MAJOR, "hd"); |
1da177e4 LT |
718 | return -ENOMEM; |
719 | } | |
720 | ||
086fa5ff | 721 | blk_queue_max_hw_sectors(hd_queue, 255); |
1da177e4 LT |
722 | init_timer(&device_timer); |
723 | device_timer.function = hd_times_out; | |
e1defc4f | 724 | blk_queue_logical_block_size(hd_queue, 512); |
1da177e4 | 725 | |
1da177e4 | 726 | if (!NR_HD) { |
48dd643c PA |
727 | /* |
728 | * We don't know anything about the drive. This means | |
1da177e4 LT |
729 | * that you *MUST* specify the drive parameters to the |
730 | * kernel yourself. | |
48dd643c PA |
731 | * |
732 | * If we were on an i386, we used to read this info from | |
733 | * the BIOS or CMOS. This doesn't work all that well, | |
734 | * since this assumes that this is a primary or secondary | |
735 | * drive, and if we're using this legacy driver, it's | |
736 | * probably an auxilliary controller added to recover | |
737 | * legacy data off an ST-506 drive. Either way, it's | |
738 | * definitely safest to have the user explicitly specify | |
739 | * the information. | |
1da177e4 LT |
740 | */ |
741 | printk("hd: no drives specified - use hd=cyl,head,sectors" | |
742 | " on kernel command line\n"); | |
1da177e4 | 743 | goto out; |
48dd643c | 744 | } |
1da177e4 | 745 | |
ec29782b | 746 | for (drive = 0 ; drive < NR_HD ; drive++) { |
1da177e4 LT |
747 | struct gendisk *disk = alloc_disk(64); |
748 | struct hd_i_struct *p = &hd_info[drive]; | |
749 | if (!disk) | |
750 | goto Enomem; | |
ddeb9c3e | 751 | disk->major = HD_MAJOR; |
1da177e4 LT |
752 | disk->first_minor = drive << 6; |
753 | disk->fops = &hd_fops; | |
754 | sprintf(disk->disk_name, "hd%c", 'a'+drive); | |
755 | disk->private_data = p; | |
756 | set_capacity(disk, p->head * p->sect * p->cyl); | |
757 | disk->queue = hd_queue; | |
758 | p->unit = drive; | |
759 | hd_gendisk[drive] = disk; | |
ec29782b | 760 | printk("%s: %luMB, CHS=%d/%d/%d\n", |
1da177e4 LT |
761 | disk->disk_name, (unsigned long)get_capacity(disk)/2048, |
762 | p->cyl, p->head, p->sect); | |
763 | } | |
764 | ||
362537b9 | 765 | if (request_irq(HD_IRQ, hd_interrupt, IRQF_DISABLED, "hd", NULL)) { |
1da177e4 LT |
766 | printk("hd: unable to get IRQ%d for the hard disk driver\n", |
767 | HD_IRQ); | |
768 | goto out1; | |
769 | } | |
770 | if (!request_region(HD_DATA, 8, "hd")) { | |
771 | printk(KERN_WARNING "hd: port 0x%x busy\n", HD_DATA); | |
772 | goto out2; | |
773 | } | |
774 | if (!request_region(HD_CMD, 1, "hd(cmd)")) { | |
775 | printk(KERN_WARNING "hd: port 0x%x busy\n", HD_CMD); | |
776 | goto out3; | |
777 | } | |
778 | ||
779 | /* Let them fly */ | |
ec29782b | 780 | for (drive = 0; drive < NR_HD; drive++) |
1da177e4 LT |
781 | add_disk(hd_gendisk[drive]); |
782 | ||
783 | return 0; | |
784 | ||
785 | out3: | |
786 | release_region(HD_DATA, 8); | |
787 | out2: | |
788 | free_irq(HD_IRQ, NULL); | |
789 | out1: | |
790 | for (drive = 0; drive < NR_HD; drive++) | |
791 | put_disk(hd_gendisk[drive]); | |
792 | NR_HD = 0; | |
793 | out: | |
794 | del_timer(&device_timer); | |
ddeb9c3e | 795 | unregister_blkdev(HD_MAJOR, "hd"); |
1da177e4 LT |
796 | blk_cleanup_queue(hd_queue); |
797 | return -1; | |
798 | Enomem: | |
799 | while (drive--) | |
800 | put_disk(hd_gendisk[drive]); | |
801 | goto out; | |
802 | } | |
803 | ||
ec29782b PC |
804 | static int __init parse_hd_setup(char *line) |
805 | { | |
1da177e4 LT |
806 | int ints[6]; |
807 | ||
808 | (void) get_options(line, ARRAY_SIZE(ints), ints); | |
809 | hd_setup(NULL, ints); | |
810 | ||
811 | return 1; | |
812 | } | |
813 | __setup("hd=", parse_hd_setup); | |
814 | ||
01c22bfc | 815 | late_initcall(hd_init); |