hd.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:21k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/hd.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  */
  6. /*
  7.  * This is the low-level hd interrupt support. It traverses the
  8.  * request-list, using interrupts to jump between functions. As
  9.  * all the functions are called within interrupts, we may not
  10.  * sleep. Special care is recommended.
  11.  * 
  12.  *  modified by Drew Eckhardt to check nr of hd's from the CMOS.
  13.  *
  14.  *  Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
  15.  *  in the early extended-partition checks and added DM partitions
  16.  *
  17.  *  IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
  18.  *  and general streamlining by Mark Lord.
  19.  *
  20.  *  Removed 99% of above. Use Mark's ide driver for those options.
  21.  *  This is now a lightweight ST-506 driver. (Paul Gortmaker)
  22.  *
  23.  *  Modified 1995 Russell King for ARM processor.
  24.  *
  25.  *  Bugfix: max_sectors must be <= 255 or the wheels tend to come
  26.  *  off in a hurry once you queue things up - Paul G. 02/2001
  27.  */
  28.   
  29. /* Uncomment the following if you want verbose error reports. */
  30. /* #define VERBOSE_ERRORS */
  31.   
  32. #include <linux/errno.h>
  33. #include <linux/signal.h>
  34. #include <linux/sched.h>
  35. #include <linux/timer.h>
  36. #include <linux/fs.h>
  37. #include <linux/devfs_fs_kernel.h>
  38. #include <linux/kernel.h>
  39. #include <linux/hdreg.h>
  40. #include <linux/genhd.h>
  41. #include <linux/slab.h>
  42. #include <linux/string.h>
  43. #include <linux/ioport.h>
  44. #include <linux/mc146818rtc.h> /* CMOS defines */
  45. #include <linux/init.h>
  46. #include <linux/blkpg.h>
  47. #define REALLY_SLOW_IO
  48. #include <asm/system.h>
  49. #include <asm/io.h>
  50. #include <asm/uaccess.h>
  51. #define MAJOR_NR HD_MAJOR
  52. #include <linux/blk.h>
  53. #ifdef __arm__
  54. #undef  HD_IRQ
  55. #endif
  56. #include <asm/irq.h>
  57. #ifdef __arm__
  58. #define HD_IRQ IRQ_HARDDISK
  59. #endif
  60. static int revalidate_hddisk(kdev_t, int);
  61. #define HD_DELAY 0
  62. #define MAX_ERRORS     16 /* Max read/write errors/sector */
  63. #define RESET_FREQ      8 /* Reset controller every 8th retry */
  64. #define RECAL_FREQ      4 /* Recalibrate every 4th retry */
  65. #define MAX_HD 2
  66. #define STAT_OK (READY_STAT|SEEK_STAT)
  67. #define OK_STATUS(s) (((s)&(STAT_OK|(BUSY_STAT|WRERR_STAT|ERR_STAT)))==STAT_OK)
  68. static void recal_intr(void);
  69. static void bad_rw_intr(void);
  70. static char recalibrate[MAX_HD];
  71. static char special_op[MAX_HD];
  72. static int access_count[MAX_HD];
  73. static char busy[MAX_HD];
  74. static DECLARE_WAIT_QUEUE_HEAD(busy_wait);
  75. static int reset;
  76. static int hd_error;
  77. #define SUBSECTOR(block) (CURRENT->current_nr_sectors > 0)
  78. /*
  79.  *  This struct defines the HD's and their types.
  80.  */
  81. struct hd_i_struct {
  82. unsigned int head,sect,cyl,wpcom,lzone,ctl;
  83. };
  84. #ifdef HD_TYPE
  85. static struct hd_i_struct hd_info[] = { HD_TYPE };
  86. static int NR_HD = ((sizeof (hd_info))/(sizeof (struct hd_i_struct)));
  87. #else
  88. static struct hd_i_struct hd_info[MAX_HD];
  89. static int NR_HD;
  90. #endif
  91. static struct hd_struct hd[MAX_HD<<6];
  92. static int hd_sizes[MAX_HD<<6];
  93. static int hd_blocksizes[MAX_HD<<6];
  94. static int hd_hardsectsizes[MAX_HD<<6];
  95. static int hd_maxsect[MAX_HD<<6];
  96. static struct timer_list device_timer;
  97. #define SET_TIMER 
  98. do {
  99. mod_timer(&device_timer, jiffies + TIMEOUT_VALUE);
  100. } while (0)
  101. #define CLEAR_TIMER del_timer(&device_timer);
  102. #undef SET_INTR
  103. #define SET_INTR(x) 
  104. if ((DEVICE_INTR = (x)) != NULL) 
  105. SET_TIMER; 
  106. else 
  107. CLEAR_TIMER;
  108. #if (HD_DELAY > 0)
  109. unsigned long last_req;
  110. unsigned long read_timer(void)
  111. {
  112. unsigned long t, flags;
  113. int i;
  114. save_flags(flags);
  115. cli();
  116. t = jiffies * 11932;
  117.      outb_p(0, 0x43);
  118. i = inb_p(0x40);
  119. i |= inb(0x40) << 8;
  120. restore_flags(flags);
  121. return(t - i);
  122. }
  123. #endif
  124. void __init hd_setup(char *str, int *ints)
  125. {
  126. int hdind = 0;
  127. if (ints[0] != 3)
  128. return;
  129. if (hd_info[0].head != 0)
  130. hdind=1;
  131. hd_info[hdind].head = ints[2];
  132. hd_info[hdind].sect = ints[3];
  133. hd_info[hdind].cyl = ints[1];
  134. hd_info[hdind].wpcom = 0;
  135. hd_info[hdind].lzone = ints[1];
  136. hd_info[hdind].ctl = (ints[2] > 8 ? 8 : 0);
  137. NR_HD = hdind+1;
  138. }
  139. static void dump_status (const char *msg, unsigned int stat)
  140. {
  141. unsigned long flags;
  142. char devc;
  143. devc = !QUEUE_EMPTY ? 'a' + DEVICE_NR(CURRENT->rq_dev) : '?';
  144. save_flags (flags);
  145. sti();
  146. #ifdef VERBOSE_ERRORS
  147. printk("hd%c: %s: status=0x%02x { ", devc, msg, stat & 0xff);
  148. if (stat & BUSY_STAT) printk("Busy ");
  149. if (stat & READY_STAT) printk("DriveReady ");
  150. if (stat & WRERR_STAT) printk("WriteFault ");
  151. if (stat & SEEK_STAT) printk("SeekComplete ");
  152. if (stat & DRQ_STAT) printk("DataRequest ");
  153. if (stat & ECC_STAT) printk("CorrectedError ");
  154. if (stat & INDEX_STAT) printk("Index ");
  155. if (stat & ERR_STAT) printk("Error ");
  156. printk("}n");
  157. if ((stat & ERR_STAT) == 0) {
  158. hd_error = 0;
  159. } else {
  160. hd_error = inb(HD_ERROR);
  161. printk("hd%c: %s: error=0x%02x { ", devc, msg, hd_error & 0xff);
  162. if (hd_error & BBD_ERR) printk("BadSector ");
  163. if (hd_error & ECC_ERR) printk("UncorrectableError ");
  164. if (hd_error & ID_ERR) printk("SectorIdNotFound ");
  165. if (hd_error & ABRT_ERR) printk("DriveStatusError ");
  166. if (hd_error & TRK0_ERR) printk("TrackZeroNotFound ");
  167. if (hd_error & MARK_ERR) printk("AddrMarkNotFound ");
  168. printk("}");
  169. if (hd_error & (BBD_ERR|ECC_ERR|ID_ERR|MARK_ERR)) {
  170. printk(", CHS=%d/%d/%d", (inb(HD_HCYL)<<8) + inb(HD_LCYL),
  171. inb(HD_CURRENT) & 0xf, inb(HD_SECTOR));
  172. if (!QUEUE_EMPTY)
  173. printk(", sector=%ld", CURRENT->sector);
  174. }
  175. printk("n");
  176. }
  177. #else
  178. printk("hd%c: %s: status=0x%02x.n", devc, msg, stat & 0xff);
  179. if ((stat & ERR_STAT) == 0) {
  180. hd_error = 0;
  181. } else {
  182. hd_error = inb(HD_ERROR);
  183. printk("hd%c: %s: error=0x%02x.n", devc, msg, hd_error & 0xff);
  184. }
  185. #endif /* verbose errors */
  186. restore_flags (flags);
  187. }
  188. void check_status(void)
  189. {
  190. int i = inb_p(HD_STATUS);
  191. if (!OK_STATUS(i)) {
  192. dump_status("check_status", i);
  193. bad_rw_intr();
  194. }
  195. }
  196. static int controller_busy(void)
  197. {
  198. int retries = 100000;
  199. unsigned char status;
  200. do {
  201. status = inb_p(HD_STATUS);
  202. } while ((status & BUSY_STAT) && --retries);
  203. return status;
  204. }
  205. static int status_ok(void)
  206. {
  207. unsigned char status = inb_p(HD_STATUS);
  208. if (status & BUSY_STAT)
  209. return 1; /* Ancient, but does it make sense??? */
  210. if (status & WRERR_STAT)
  211. return 0;
  212. if (!(status & READY_STAT))
  213. return 0;
  214. if (!(status & SEEK_STAT))
  215. return 0;
  216. return 1;
  217. }
  218. static int controller_ready(unsigned int drive, unsigned int head)
  219. {
  220. int retry = 100;
  221. do {
  222. if (controller_busy() & BUSY_STAT)
  223. return 0;
  224. outb_p(0xA0 | (drive<<4) | head, HD_CURRENT);
  225. if (status_ok())
  226. return 1;
  227. } while (--retry);
  228. return 0;
  229. }
  230. static void hd_out(unsigned int drive,unsigned int nsect,unsigned int sect,
  231. unsigned int head,unsigned int cyl,unsigned int cmd,
  232. void (*intr_addr)(void))
  233. {
  234. unsigned short port;
  235. #if (HD_DELAY > 0)
  236. while (read_timer() - last_req < HD_DELAY)
  237. /* nothing */;
  238. #endif
  239. if (reset)
  240. return;
  241. if (!controller_ready(drive, head)) {
  242. reset = 1;
  243. return;
  244. }
  245. SET_INTR(intr_addr);
  246. outb_p(hd_info[drive].ctl,HD_CMD);
  247. port=HD_DATA;
  248. outb_p(hd_info[drive].wpcom>>2,++port);
  249. outb_p(nsect,++port);
  250. outb_p(sect,++port);
  251. outb_p(cyl,++port);
  252. outb_p(cyl>>8,++port);
  253. outb_p(0xA0|(drive<<4)|head,++port);
  254. outb_p(cmd,++port);
  255. }
  256. static void hd_request (void);
  257. static int drive_busy(void)
  258. {
  259. unsigned int i;
  260. unsigned char c;
  261. for (i = 0; i < 500000 ; i++) {
  262. c = inb_p(HD_STATUS);
  263. if ((c & (BUSY_STAT | READY_STAT | SEEK_STAT)) == STAT_OK)
  264. return 0;
  265. }
  266. dump_status("reset timed out", c);
  267. return 1;
  268. }
  269. static void reset_controller(void)
  270. {
  271. int i;
  272. outb_p(4,HD_CMD);
  273. for(i = 0; i < 1000; i++) barrier();
  274. outb_p(hd_info[0].ctl & 0x0f,HD_CMD);
  275. for(i = 0; i < 1000; i++) barrier();
  276. if (drive_busy())
  277. printk("hd: controller still busyn");
  278. else if ((hd_error = inb(HD_ERROR)) != 1)
  279. printk("hd: controller reset failed: %02xn",hd_error);
  280. }
  281. static void reset_hd(void)
  282. {
  283. static int i;
  284. repeat:
  285. if (reset) {
  286. reset = 0;
  287. i = -1;
  288. reset_controller();
  289. } else {
  290. check_status();
  291. if (reset)
  292. goto repeat;
  293. }
  294. if (++i < NR_HD) {
  295. special_op[i] = recalibrate[i] = 1;
  296. hd_out(i,hd_info[i].sect,hd_info[i].sect,hd_info[i].head-1,
  297. hd_info[i].cyl,WIN_SPECIFY,&reset_hd);
  298. if (reset)
  299. goto repeat;
  300. } else
  301. hd_request();
  302. }
  303. /*
  304.  * Ok, don't know what to do with the unexpected interrupts: on some machines
  305.  * doing a reset and a retry seems to result in an eternal loop. Right now I
  306.  * ignore it, and just set the timeout.
  307.  *
  308.  * On laptops (and "green" PCs), an unexpected interrupt occurs whenever the
  309.  * drive enters "idle", "standby", or "sleep" mode, so if the status looks
  310.  * "good", we just ignore the interrupt completely.
  311.  */
  312. void unexpected_hd_interrupt(void)
  313. {
  314. unsigned int stat = inb_p(HD_STATUS);
  315. if (stat & (BUSY_STAT|DRQ_STAT|ECC_STAT|ERR_STAT)) {
  316. dump_status ("unexpected interrupt", stat);
  317. SET_TIMER;
  318. }
  319. }
  320. /*
  321.  * bad_rw_intr() now tries to be a bit smarter and does things
  322.  * according to the error returned by the controller.
  323.  * -Mika Liljeberg (liljeber@cs.Helsinki.FI)
  324.  */
  325. static void bad_rw_intr(void)
  326. {
  327. int dev;
  328. if (QUEUE_EMPTY)
  329. return;
  330. dev = DEVICE_NR(CURRENT->rq_dev);
  331. if (++CURRENT->errors >= MAX_ERRORS || (hd_error & BBD_ERR)) {
  332. end_request(0);
  333. special_op[dev] = recalibrate[dev] = 1;
  334. } else if (CURRENT->errors % RESET_FREQ == 0)
  335. reset = 1;
  336. else if ((hd_error & TRK0_ERR) || CURRENT->errors % RECAL_FREQ == 0)
  337. special_op[dev] = recalibrate[dev] = 1;
  338. /* Otherwise just retry */
  339. }
  340. static inline int wait_DRQ(void)
  341. {
  342. int retries = 100000, stat;
  343. while (--retries > 0)
  344. if ((stat = inb_p(HD_STATUS)) & DRQ_STAT)
  345. return 0;
  346. dump_status("wait_DRQ", stat);
  347. return -1;
  348. }
  349. static void read_intr(void)
  350. {
  351. int i, retries = 100000;
  352. do {
  353. i = (unsigned) inb_p(HD_STATUS);
  354. if (i & BUSY_STAT)
  355. continue;
  356. if (!OK_STATUS(i))
  357. break;
  358. if (i & DRQ_STAT)
  359. goto ok_to_read;
  360. } while (--retries > 0);
  361. dump_status("read_intr", i);
  362. bad_rw_intr();
  363. hd_request();
  364. return;
  365. ok_to_read:
  366. insw(HD_DATA,CURRENT->buffer,256);
  367. CURRENT->sector++;
  368. CURRENT->buffer += 512;
  369. CURRENT->errors = 0;
  370. i = --CURRENT->nr_sectors;
  371. --CURRENT->current_nr_sectors;
  372. #ifdef DEBUG
  373. printk("hd%c: read: sector %ld, remaining = %ld, buffer=0x%08lxn",
  374. dev+'a', CURRENT->sector, CURRENT->nr_sectors,
  375. (unsigned long) CURRENT->buffer+512));
  376. #endif
  377. if (CURRENT->current_nr_sectors <= 0)
  378. end_request(1);
  379. if (i > 0) {
  380. SET_INTR(&read_intr);
  381. return;
  382. }
  383. (void) inb_p(HD_STATUS);
  384. #if (HD_DELAY > 0)
  385. last_req = read_timer();
  386. #endif
  387. if (!QUEUE_EMPTY)
  388. hd_request();
  389. return;
  390. }
  391. static void write_intr(void)
  392. {
  393. int i;
  394. int retries = 100000;
  395. do {
  396. i = (unsigned) inb_p(HD_STATUS);
  397. if (i & BUSY_STAT)
  398. continue;
  399. if (!OK_STATUS(i))
  400. break;
  401. if ((CURRENT->nr_sectors <= 1) || (i & DRQ_STAT))
  402. goto ok_to_write;
  403. } while (--retries > 0);
  404. dump_status("write_intr", i);
  405. bad_rw_intr();
  406. hd_request();
  407. return;
  408. ok_to_write:
  409. CURRENT->sector++;
  410. i = --CURRENT->nr_sectors;
  411. --CURRENT->current_nr_sectors;
  412. CURRENT->buffer += 512;
  413. if (!i || (CURRENT->bh && !SUBSECTOR(i)))
  414. end_request(1);
  415. if (i > 0) {
  416. SET_INTR(&write_intr);
  417. outsw(HD_DATA,CURRENT->buffer,256);
  418. sti();
  419. } else {
  420. #if (HD_DELAY > 0)
  421. last_req = read_timer();
  422. #endif
  423. hd_request();
  424. }
  425. return;
  426. }
  427. static void recal_intr(void)
  428. {
  429. check_status();
  430. #if (HD_DELAY > 0)
  431. last_req = read_timer();
  432. #endif
  433. hd_request();
  434. }
  435. /*
  436.  * This is another of the error-routines I don't know what to do with. The
  437.  * best idea seems to just set reset, and start all over again.
  438.  */
  439. static void hd_times_out(unsigned long dummy)
  440. {
  441. unsigned int dev;
  442. DEVICE_INTR = NULL;
  443. if (QUEUE_EMPTY)
  444. return;
  445. disable_irq(HD_IRQ);
  446. sti();
  447. reset = 1;
  448. dev = DEVICE_NR(CURRENT->rq_dev);
  449. printk("hd%c: timeoutn", dev+'a');
  450. if (++CURRENT->errors >= MAX_ERRORS) {
  451. #ifdef DEBUG
  452. printk("hd%c: too many errorsn", dev+'a');
  453. #endif
  454. end_request(0);
  455. }
  456. cli();
  457. hd_request();
  458. enable_irq(HD_IRQ);
  459. }
  460. int do_special_op (unsigned int dev)
  461. {
  462. if (recalibrate[dev]) {
  463. recalibrate[dev] = 0;
  464. hd_out(dev,hd_info[dev].sect,0,0,0,WIN_RESTORE,&recal_intr);
  465. return reset;
  466. }
  467. if (hd_info[dev].head > 16) {
  468. printk ("hd%c: cannot handle device with more than 16 heads - giving upn", dev+'a');
  469. end_request(0);
  470. }
  471. special_op[dev] = 0;
  472. return 1;
  473. }
  474. /*
  475.  * The driver enables interrupts as much as possible.  In order to do this,
  476.  * (a) the device-interrupt is disabled before entering hd_request(),
  477.  * and (b) the timeout-interrupt is disabled before the sti().
  478.  *
  479.  * Interrupts are still masked (by default) whenever we are exchanging
  480.  * data/cmds with a drive, because some drives seem to have very poor
  481.  * tolerance for latency during I/O. The IDE driver has support to unmask
  482.  * interrupts for non-broken hardware, so use that driver if required.
  483.  */
  484. static void hd_request(void)
  485. {
  486. unsigned int dev, block, nsect, sec, track, head, cyl;
  487. if (!QUEUE_EMPTY && CURRENT->rq_status == RQ_INACTIVE) return;
  488. if (DEVICE_INTR)
  489. return;
  490. repeat:
  491. del_timer(&device_timer);
  492. sti();
  493. INIT_REQUEST;
  494. if (reset) {
  495. cli();
  496. reset_hd();
  497. return;
  498. }
  499. dev = MINOR(CURRENT->rq_dev);
  500. block = CURRENT->sector;
  501. nsect = CURRENT->nr_sectors;
  502. if (dev >= (NR_HD<<6) || block >= hd[dev].nr_sects || ((block+nsect) > hd[dev].nr_sects)) {
  503. #ifdef DEBUG
  504. if (dev >= (NR_HD<<6))
  505. printk("hd: bad minor number: device=%sn",
  506.        kdevname(CURRENT->rq_dev));
  507. else
  508. printk("hd%c: bad access: block=%d, count=%dn",
  509. (MINOR(CURRENT->rq_dev)>>6)+'a', block, nsect);
  510. #endif
  511. end_request(0);
  512. goto repeat;
  513. }
  514. block += hd[dev].start_sect;
  515. dev >>= 6;
  516. if (special_op[dev]) {
  517. if (do_special_op(dev))
  518. goto repeat;
  519. return;
  520. }
  521. sec   = block % hd_info[dev].sect + 1;
  522. track = block / hd_info[dev].sect;
  523. head  = track % hd_info[dev].head;
  524. cyl   = track / hd_info[dev].head;
  525. #ifdef DEBUG
  526. printk("hd%c: %sing: CHS=%d/%d/%d, sectors=%d, buffer=0x%08lxn",
  527. dev+'a', (CURRENT->cmd == READ)?"read":"writ",
  528. cyl, head, sec, nsect, (unsigned long) CURRENT->buffer);
  529. #endif
  530. if (CURRENT->cmd == READ) {
  531. hd_out(dev,nsect,sec,head,cyl,WIN_READ,&read_intr);
  532. if (reset)
  533. goto repeat;
  534. return;
  535. }
  536. if (CURRENT->cmd == WRITE) {
  537. hd_out(dev,nsect,sec,head,cyl,WIN_WRITE,&write_intr);
  538. if (reset)
  539. goto repeat;
  540. if (wait_DRQ()) {
  541. bad_rw_intr();
  542. goto repeat;
  543. }
  544. outsw(HD_DATA,CURRENT->buffer,256);
  545. return;
  546. }
  547. panic("unknown hd-command");
  548. }
  549. static void do_hd_request (request_queue_t * q)
  550. {
  551. disable_irq(HD_IRQ);
  552. hd_request();
  553. enable_irq(HD_IRQ);
  554. }
  555. static int hd_ioctl(struct inode * inode, struct file * file,
  556. unsigned int cmd, unsigned long arg)
  557. {
  558. struct hd_geometry *loc = (struct hd_geometry *) arg;
  559. int dev;
  560. if ((!inode) || !(inode->i_rdev))
  561. return -EINVAL;
  562. dev = DEVICE_NR(inode->i_rdev);
  563. if (dev >= NR_HD)
  564. return -EINVAL;
  565. switch (cmd) {
  566. case HDIO_GETGEO:
  567. {
  568. struct hd_geometry g; 
  569. if (!loc)  return -EINVAL;
  570. g.heads = hd_info[dev].head;
  571. g.sectors = hd_info[dev].sect;
  572. g.cylinders = hd_info[dev].cyl;
  573. g.start = hd[MINOR(inode->i_rdev)].start_sect;
  574. return copy_to_user(loc, &g, sizeof g) ? -EFAULT : 0; 
  575. }
  576.           case BLKGETSIZE:   /* Return device size */
  577. return put_user(hd[MINOR(inode->i_rdev)].nr_sects, 
  578. (unsigned long *) arg);
  579.           case BLKGETSIZE64:
  580. return put_user((u64)hd[MINOR(inode->i_rdev)].nr_sects << 9, 
  581. (u64 *) arg);
  582. case BLKRRPART: /* Re-read partition tables */
  583. if (!capable(CAP_SYS_ADMIN))
  584. return -EACCES;
  585. return revalidate_hddisk(inode->i_rdev, 1);
  586. case BLKROSET:
  587. case BLKROGET:
  588. case BLKRASET:
  589. case BLKRAGET:
  590. case BLKFLSBUF:
  591. case BLKPG:
  592. return blk_ioctl(inode->i_rdev, cmd, arg);
  593. default:
  594. return -EINVAL;
  595. }
  596. }
  597. static int hd_open(struct inode * inode, struct file * filp)
  598. {
  599. int target;
  600. target =  DEVICE_NR(inode->i_rdev);
  601. if (target >= NR_HD)
  602. return -ENODEV;
  603. while (busy[target])
  604. sleep_on(&busy_wait);
  605. access_count[target]++;
  606. return 0;
  607. }
  608. /*
  609.  * Releasing a block device means we sync() it, so that it can safely
  610.  * be forgotten about...
  611.  */
  612. static int hd_release(struct inode * inode, struct file * file)
  613. {
  614.         int target =  DEVICE_NR(inode->i_rdev);
  615. access_count[target]--;
  616. return 0;
  617. }
  618. extern struct block_device_operations hd_fops;
  619. static struct gendisk hd_gendisk = {
  620. major: MAJOR_NR,
  621. major_name: "hd",
  622. minor_shift: 6,
  623. max_p: 1 << 6,
  624. part: hd,
  625. sizes: hd_sizes,
  626. fops: &hd_fops,
  627. };
  628. static void hd_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  629. {
  630. void (*handler)(void) = DEVICE_INTR;
  631. DEVICE_INTR = NULL;
  632. del_timer(&device_timer);
  633. if (!handler)
  634. handler = unexpected_hd_interrupt;
  635. handler();
  636. sti();
  637. }
  638. static struct block_device_operations hd_fops = {
  639. open: hd_open,
  640. release: hd_release,
  641. ioctl: hd_ioctl,
  642. };
  643. /*
  644.  * This is the hard disk IRQ description. The SA_INTERRUPT in sa_flags
  645.  * means we run the IRQ-handler with interrupts disabled:  this is bad for
  646.  * interrupt latency, but anything else has led to problems on some
  647.  * machines.
  648.  *
  649.  * We enable interrupts in some of the routines after making sure it's
  650.  * safe.
  651.  */
  652. static void __init hd_geninit(void)
  653. {
  654. int drive;
  655. for(drive=0; drive < (MAX_HD << 6); drive++) {
  656. hd_blocksizes[drive] = 1024;
  657. hd_hardsectsizes[drive] = 512;
  658. hd_maxsect[drive]=255;
  659. }
  660. blksize_size[MAJOR_NR] = hd_blocksizes;
  661. hardsect_size[MAJOR_NR] = hd_hardsectsizes;
  662. max_sectors[MAJOR_NR] = hd_maxsect;
  663. #ifdef __i386__
  664. if (!NR_HD) {
  665. extern struct drive_info drive_info;
  666. unsigned char *BIOS = (unsigned char *) &drive_info;
  667. unsigned long flags;
  668. int cmos_disks;
  669. for (drive=0 ; drive<2 ; drive++) {
  670. hd_info[drive].cyl = *(unsigned short *) BIOS;
  671. hd_info[drive].head = *(2+BIOS);
  672. hd_info[drive].wpcom = *(unsigned short *) (5+BIOS);
  673. hd_info[drive].ctl = *(8+BIOS);
  674. hd_info[drive].lzone = *(unsigned short *) (12+BIOS);
  675. hd_info[drive].sect = *(14+BIOS);
  676. #ifdef does_not_work_for_everybody_with_scsi_but_helps_ibm_vp
  677. if (hd_info[drive].cyl && NR_HD == drive)
  678. NR_HD++;
  679. #endif
  680. BIOS += 16;
  681. }
  682. /*
  683. We query CMOS about hard disks : it could be that 
  684. we have a SCSI/ESDI/etc controller that is BIOS
  685. compatible with ST-506, and thus showing up in our
  686. BIOS table, but not register compatible, and therefore
  687. not present in CMOS.
  688. Furthermore, we will assume that our ST-506 drives
  689. <if any> are the primary drives in the system, and 
  690. the ones reflected as drive 1 or 2.
  691. The first drive is stored in the high nibble of CMOS
  692. byte 0x12, the second in the low nibble.  This will be
  693. either a 4 bit drive type or 0xf indicating use byte 0x19 
  694. for an 8 bit type, drive 1, 0x1a for drive 2 in CMOS.
  695. Needless to say, a non-zero value means we have 
  696. an AT controller hard disk for that drive.
  697. Currently the rtc_lock is a bit academic since this
  698. driver is non-modular, but someday... ?         Paul G.
  699. */
  700. spin_lock_irqsave(&rtc_lock, flags);
  701. cmos_disks = CMOS_READ(0x12);
  702. spin_unlock_irqrestore(&rtc_lock, flags);
  703. if (cmos_disks & 0xf0) {
  704. if (cmos_disks & 0x0f)
  705. NR_HD = 2;
  706. else
  707. NR_HD = 1;
  708. }
  709. }
  710. #endif /* __i386__ */
  711. #ifdef __arm__
  712. if (!NR_HD) {
  713. /* We don't know anything about the drive.  This means
  714.  * that you *MUST* specify the drive parameters to the
  715.  * kernel yourself.
  716.  */
  717. printk("hd: no drives specified - use hd=cyl,head,sectors"
  718. " on kernel command linen");
  719. }
  720. #endif
  721. for (drive=0 ; drive < NR_HD ; drive++) {
  722. hd[drive<<6].nr_sects = hd_info[drive].head *
  723. hd_info[drive].sect * hd_info[drive].cyl;
  724. printk ("hd%c: %ldMB, CHS=%d/%d/%dn", drive+'a',
  725. hd[drive<<6].nr_sects / 2048, hd_info[drive].cyl,
  726. hd_info[drive].head, hd_info[drive].sect);
  727. }
  728. if (!NR_HD)
  729. return;
  730. if (request_irq(HD_IRQ, hd_interrupt, SA_INTERRUPT, "hd", NULL)) {
  731. printk("hd: unable to get IRQ%d for the hard disk drivern",
  732. HD_IRQ);
  733. NR_HD = 0;
  734. return;
  735. }
  736. request_region(HD_DATA, 8, "hd");
  737. request_region(HD_CMD, 1, "hd(cmd)");
  738. hd_gendisk.nr_real = NR_HD;
  739. for(drive=0; drive < NR_HD; drive++)
  740. register_disk(&hd_gendisk, MKDEV(MAJOR_NR,drive<<6), 1<<6,
  741. &hd_fops, hd_info[drive].head * hd_info[drive].sect *
  742. hd_info[drive].cyl);
  743. }
  744. int __init hd_init(void)
  745. {
  746. if (devfs_register_blkdev(MAJOR_NR,"hd",&hd_fops)) {
  747. printk("hd: unable to get major %d for hard diskn",MAJOR_NR);
  748. return -1;
  749. }
  750. blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR), DEVICE_REQUEST);
  751. read_ahead[MAJOR_NR] = 8; /* 8 sector (4kB) read-ahead */
  752. add_gendisk(&hd_gendisk);
  753. init_timer(&device_timer);
  754. device_timer.function = hd_times_out;
  755. hd_geninit();
  756. return 0;
  757. }
  758. #define DEVICE_BUSY busy[target]
  759. #define USAGE access_count[target]
  760. #define CAPACITY (hd_info[target].head*hd_info[target].sect*hd_info[target].cyl)
  761. /* We assume that the BIOS parameters do not change, so the disk capacity
  762.    will not change */
  763. #undef MAYBE_REINIT
  764. #define GENDISK_STRUCT hd_gendisk
  765. /*
  766.  * This routine is called to flush all partitions and partition tables
  767.  * for a changed disk, and then re-read the new partition table.
  768.  * If we are revalidating a disk because of a media change, then we
  769.  * enter with usage == 0.  If we are using an ioctl, we automatically have
  770.  * usage == 1 (we need an open channel to use an ioctl :-), so this
  771.  * is our limit.
  772.  */
  773. static int revalidate_hddisk(kdev_t dev, int maxusage)
  774. {
  775. int target;
  776. struct gendisk * gdev;
  777. int max_p;
  778. int start;
  779. int i;
  780. long flags;
  781. target = DEVICE_NR(dev);
  782. gdev = &GENDISK_STRUCT;
  783. save_flags(flags);
  784. cli();
  785. if (DEVICE_BUSY || USAGE > maxusage) {
  786. restore_flags(flags);
  787. return -EBUSY;
  788. }
  789. DEVICE_BUSY = 1;
  790. restore_flags(flags);
  791. max_p = gdev->max_p;
  792. start = target << gdev->minor_shift;
  793. for (i=max_p - 1; i >=0 ; i--) {
  794. int minor = start + i;
  795. invalidate_device(MKDEV(MAJOR_NR, minor), 1);
  796. gdev->part[minor].start_sect = 0;
  797. gdev->part[minor].nr_sects = 0;
  798. }
  799. #ifdef MAYBE_REINIT
  800. MAYBE_REINIT;
  801. #endif
  802. grok_partitions(gdev, target, 1<<6, CAPACITY);
  803. DEVICE_BUSY = 0;
  804. wake_up(&busy_wait);
  805. return 0;
  806. }
  807. static int parse_hd_setup (char *line) {
  808. int ints[6];
  809. (void) get_options(line, ARRAY_SIZE(ints), ints);
  810. hd_setup(NULL, ints);
  811. return 1;
  812. }
  813. __setup("hd=", parse_hd_setup);