ps2esdi.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:30k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* ps2esdi driver based on assembler code by Arindam Banerji,
  2.    written by Peter De Schrijver */
  3. /* Reassuring note to IBM : This driver was NOT developed by vice-versa
  4.    engineering the PS/2's BIOS */
  5. /* Dedicated to Wannes, Tofke, Ykke, Godot, Killroy and all those 
  6.    other lovely fish out there... */
  7. /* This code was written during the long and boring WINA 
  8.    elections 1994 */
  9. /* Thanks to Arindam Banerij for giving me the source of his driver */
  10. /* This code may be freely distributed and modified in any way, 
  11.    as long as these notes remain intact */
  12. /*  Revised: 05/07/94 by Arindam Banerji (axb@cse.nd.edu) */
  13. /*  Revised: 09/08/94 by Peter De Schrijver (stud11@cc4.kuleuven.ac.be)
  14.    Thanks to Arindam Banerij for sending me the docs of the adapter */
  15. /* BA Modified for ThinkPad 720 by Boris Ashkinazi */
  16. /*                    (bash@vnet.ibm.com) 08/08/95 */
  17. /* Modified further for ThinkPad-720C by Uri Blumenthal */
  18. /*                    (uri@watson.ibm.com) Sep 11, 1995 */
  19. /* TODO : 
  20.    + Timeouts
  21.    + Get disk parameters
  22.    + DMA above 16MB
  23.    + reset after read/write error
  24.  */
  25. #define DEVICE_NAME "PS/2 ESDI"
  26. #include <linux/config.h>
  27. #include <linux/major.h>
  28. #include <linux/errno.h>
  29. #include <linux/wait.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/fs.h>
  32. #include <linux/kernel.h>
  33. #include <linux/genhd.h>
  34. #include <linux/ps2esdi.h>
  35. #include <linux/blkdev.h>
  36. #include <linux/mca-legacy.h>
  37. #include <linux/init.h>
  38. #include <linux/ioport.h>
  39. #include <linux/module.h>
  40. #include <asm/system.h>
  41. #include <asm/io.h>
  42. #include <asm/dma.h>
  43. #include <asm/mca_dma.h>
  44. #include <asm/uaccess.h>
  45. #define PS2ESDI_IRQ 14
  46. #define MAX_HD 2
  47. #define MAX_RETRIES 5
  48. #define MAX_16BIT 65536
  49. #define ESDI_TIMEOUT   0xf000
  50. #define ESDI_STAT_TIMEOUT 4
  51. #define TYPE_0_CMD_BLK_LENGTH 2
  52. #define TYPE_1_CMD_BLK_LENGTH 4
  53. static void reset_ctrl(void);
  54. static int ps2esdi_geninit(void);
  55. static void do_ps2esdi_request(request_queue_t * q);
  56. static void ps2esdi_readwrite(int cmd, struct request *req);
  57. static void ps2esdi_fill_cmd_block(u_short * cmd_blk, u_short cmd,
  58. u_short cyl, u_short head, u_short sector, u_short length, u_char drive);
  59. static int ps2esdi_out_cmd_blk(u_short * cmd_blk);
  60. static void ps2esdi_prep_dma(char *buffer, u_short length, u_char dma_xmode);
  61. static irqreturn_t ps2esdi_interrupt_handler(int irq, void *dev_id,
  62.       struct pt_regs *regs);
  63. static void (*current_int_handler) (u_int) = NULL;
  64. static void ps2esdi_normal_interrupt_handler(u_int);
  65. static void ps2esdi_initial_reset_int_handler(u_int);
  66. static void ps2esdi_geometry_int_handler(u_int);
  67. static int ps2esdi_ioctl(struct inode *inode, struct file *file,
  68.  u_int cmd, u_long arg);
  69. static int ps2esdi_read_status_words(int num_words, int max_words, u_short * buffer);
  70. static void dump_cmd_complete_status(u_int int_ret_code);
  71. static void ps2esdi_get_device_cfg(void);
  72. static void ps2esdi_reset_timer(unsigned long unused);
  73. static u_int dma_arb_level; /* DMA arbitration level */
  74. static DECLARE_WAIT_QUEUE_HEAD(ps2esdi_int);
  75. static int no_int_yet;
  76. static int ps2esdi_drives;
  77. static u_short io_base;
  78. static DEFINE_TIMER(esdi_timer, ps2esdi_reset_timer, 0, 0);
  79. static int reset_status;
  80. static int ps2esdi_slot = -1;
  81. static int tp720esdi = 0; /* Is it Integrated ESDI of ThinkPad-720? */
  82. static int intg_esdi = 0;       /* If integrated adapter */
  83. struct ps2esdi_i_struct {
  84. unsigned int head, sect, cyl, wpcom, lzone, ctl;
  85. };
  86. static DEFINE_SPINLOCK(ps2esdi_lock);
  87. static struct request_queue *ps2esdi_queue;
  88. static struct request *current_req;
  89. #if 0
  90. #if 0 /* try both - I don't know which one is better... UB */
  91. static struct ps2esdi_i_struct ps2esdi_info[MAX_HD] =
  92. {
  93. {4, 48, 1553, 0, 0, 0},
  94. {0, 0, 0, 0, 0, 0}};
  95. #else
  96. static struct ps2esdi_i_struct ps2esdi_info[MAX_HD] =
  97. {
  98. {64, 32, 161, 0, 0, 0},
  99. {0, 0, 0, 0, 0, 0}};
  100. #endif
  101. #endif
  102. static struct ps2esdi_i_struct ps2esdi_info[MAX_HD] =
  103. {
  104. {0, 0, 0, 0, 0, 0},
  105. {0, 0, 0, 0, 0, 0}};
  106. static struct block_device_operations ps2esdi_fops =
  107. {
  108. .owner = THIS_MODULE,
  109. .ioctl = ps2esdi_ioctl,
  110. };
  111. static struct gendisk *ps2esdi_gendisk[2];
  112. /* initialization routine called by ll_rw_blk.c   */
  113. static int __init ps2esdi_init(void)
  114. {
  115. int error = 0;
  116. /* register the device - pass the name and major number */
  117. if (register_blkdev(PS2ESDI_MAJOR, "ed"))
  118. return -EBUSY;
  119. /* set up some global information - indicating device specific info */
  120. ps2esdi_queue = blk_init_queue(do_ps2esdi_request, &ps2esdi_lock);
  121. if (!ps2esdi_queue) {
  122. unregister_blkdev(PS2ESDI_MAJOR, "ed");
  123. return -ENOMEM;
  124. }
  125. /* some minor housekeeping - setup the global gendisk structure */
  126. error = ps2esdi_geninit();
  127. if (error) {
  128. printk(KERN_WARNING "PS2ESDI: error initialising"
  129. " device, releasing resourcesn");
  130. unregister_blkdev(PS2ESDI_MAJOR, "ed");
  131. blk_cleanup_queue(ps2esdi_queue);
  132. return error;
  133. }
  134. return 0;
  135. } /* ps2esdi_init */
  136. #ifndef MODULE
  137. module_init(ps2esdi_init);
  138. #else
  139. static int cyl[MAX_HD] = {-1,-1};
  140. static int head[MAX_HD] = {-1, -1};
  141. static int sect[MAX_HD] = {-1, -1};
  142. module_param(tp720esdi, bool, 0);
  143. module_param_array(cyl, int, NULL, 0);
  144. module_param_array(head, int, NULL, 0);
  145. module_param_array(sect, int, NULL, 0);
  146. MODULE_LICENSE("GPL");
  147. int init_module(void) {
  148. int drive;
  149. for(drive = 0; drive < MAX_HD; drive++) {
  150.         struct ps2esdi_i_struct *info = &ps2esdi_info[drive];
  151.          if (cyl[drive] != -1) {
  152.    info->cyl = info->lzone = cyl[drive];
  153. info->wpcom = 0;
  154. }
  155.          if (head[drive] != -1) {
  156. info->head = head[drive];
  157. info->ctl = (head[drive] > 8 ? 8 : 0);
  158. }
  159.          if (sect[drive] != -1) info->sect = sect[drive];
  160. }
  161. return ps2esdi_init();
  162. }
  163. void
  164. cleanup_module(void) {
  165. int i;
  166. if(ps2esdi_slot) {
  167. mca_mark_as_unused(ps2esdi_slot);
  168. mca_set_adapter_procfn(ps2esdi_slot, NULL, NULL);
  169. }
  170. release_region(io_base, 4);
  171. free_dma(dma_arb_level);
  172. free_irq(PS2ESDI_IRQ, &ps2esdi_gendisk);
  173. unregister_blkdev(PS2ESDI_MAJOR, "ed");
  174. blk_cleanup_queue(ps2esdi_queue);
  175. for (i = 0; i < ps2esdi_drives; i++) {
  176. del_gendisk(ps2esdi_gendisk[i]);
  177. put_disk(ps2esdi_gendisk[i]);
  178. }
  179. }
  180. #endif /* MODULE */
  181. /* handles boot time command line parameters */
  182. void __init tp720_setup(char *str, int *ints)
  183. {
  184. /* no params, just sets the tp720esdi flag if it exists */
  185. printk("%s: TP 720 ESDI flag setn", DEVICE_NAME);
  186. tp720esdi = 1;
  187. }
  188. void __init ed_setup(char *str, int *ints)
  189. {
  190. int hdind = 0;
  191. /* handles 3 parameters only - corresponding to
  192.    1. Number of cylinders
  193.    2. Number of heads
  194.    3. Sectors/track
  195.  */
  196. if (ints[0] != 3)
  197. return;
  198. /* print out the information - seen at boot time */
  199. printk("%s: ints[0]=%d ints[1]=%d ints[2]=%d ints[3]=%dn",
  200.        DEVICE_NAME, ints[0], ints[1], ints[2], ints[3]);
  201. /* set the index into device specific information table */
  202. if (ps2esdi_info[0].head != 0)
  203. hdind = 1;
  204. /* set up all the device information */
  205. ps2esdi_info[hdind].head = ints[2];
  206. ps2esdi_info[hdind].sect = ints[3];
  207. ps2esdi_info[hdind].cyl = ints[1];
  208. ps2esdi_info[hdind].wpcom = 0;
  209. ps2esdi_info[hdind].lzone = ints[1];
  210. ps2esdi_info[hdind].ctl = (ints[2] > 8 ? 8 : 0);
  211. #if 0 /* this may be needed for PS2/Mod.80, but it hurts ThinkPad! */
  212. ps2esdi_drives = hdind + 1; /* increment index for the next time */
  213. #endif
  214. } /* ed_setup */
  215. static int ps2esdi_getinfo(char *buf, int slot, void *d)
  216. {
  217. int len = 0;
  218. len += sprintf(buf + len, "DMA Arbitration Level: %dn",
  219.        dma_arb_level);
  220. len += sprintf(buf + len, "IO Port: %xn", io_base);
  221. len += sprintf(buf + len, "IRQ: 14n");
  222. len += sprintf(buf + len, "Drives: %dn", ps2esdi_drives);
  223. return len;
  224. }
  225. /* ps2 esdi specific initialization - called thru the gendisk chain */
  226. static int __init ps2esdi_geninit(void)
  227. {
  228. /*
  229.    The first part contains the initialization code
  230.    for the ESDI disk subsystem.  All we really do
  231.    is search for the POS registers of the controller
  232.    to do some simple setup operations.  First, we
  233.    must ensure that the controller is installed,
  234.    enabled, and configured as PRIMARY.  Then we must
  235.    determine the DMA arbitration level being used by
  236.    the controller so we can handle data transfer
  237.    operations properly.  If all of this works, then
  238.    we will set the INIT_FLAG to a non-zero value.
  239.  */
  240. int slot = 0, i, reset_start, reset_end;
  241. u_char status;
  242. unsigned short adapterID;
  243. int error = 0;
  244. if ((slot = mca_find_adapter(INTG_ESDI_ID, 0)) != MCA_NOTFOUND) {
  245. adapterID = INTG_ESDI_ID;
  246. printk("%s: integrated ESDI adapter found in slot %dn",
  247.        DEVICE_NAME, slot+1);
  248. #ifndef MODULE
  249. mca_set_adapter_name(slot, "PS/2 Integrated ESDI");
  250. #endif
  251. } else if ((slot = mca_find_adapter(NRML_ESDI_ID, 0)) != -1) {
  252. adapterID = NRML_ESDI_ID;
  253. printk("%s: normal ESDI adapter found in slot %dn",
  254.        DEVICE_NAME, slot+1);
  255. mca_set_adapter_name(slot, "PS/2 ESDI");
  256. } else {
  257. return -ENODEV;
  258. }
  259. ps2esdi_slot = slot;
  260. mca_mark_as_used(slot);
  261. mca_set_adapter_procfn(slot, (MCA_ProcFn) ps2esdi_getinfo, NULL);
  262. /* Found the slot - read the POS register 2 to get the necessary
  263.    configuration and status information.  POS register 2 has the
  264.    following information :
  265.    Bit           Function
  266.    7             reserved = 0
  267.    6             arbitration method
  268.    0 - fairness enabled
  269.    1 - fairness disabled, linear priority assignment
  270.    5-2           arbitration level
  271.    1             alternate address
  272.    1              alternate address
  273.    0 - use addresses 0x3510 - 0x3517
  274.    0             adapter enable
  275.  */
  276. status = mca_read_stored_pos(slot, 2);
  277. /* is it enabled ? */
  278. if (!(status & STATUS_ENABLED)) {
  279. printk("%s: ESDI adapter disabledn", DEVICE_NAME);
  280. error = -ENODEV;
  281. goto err_out1;
  282. }
  283. /* try to grab IRQ, and try to grab a slow IRQ if it fails, so we can
  284.    share with the SCSI driver */
  285. if (request_irq(PS2ESDI_IRQ, ps2esdi_interrupt_handler,
  286.   SA_INTERRUPT | SA_SHIRQ, "PS/2 ESDI", &ps2esdi_gendisk)
  287.     && request_irq(PS2ESDI_IRQ, ps2esdi_interrupt_handler,
  288.    SA_SHIRQ, "PS/2 ESDI", &ps2esdi_gendisk)
  289.     ) {
  290. printk("%s: Unable to get IRQ %dn", DEVICE_NAME, PS2ESDI_IRQ);
  291. error = -EBUSY;
  292. goto err_out1;
  293. }
  294. if (status & STATUS_ALTERNATE)
  295. io_base = ALT_IO_BASE;
  296. else
  297. io_base = PRIMARY_IO_BASE;
  298. if (!request_region(io_base, 4, "ed")) {
  299. printk(KERN_WARNING"Unable to request region 0x%xn", io_base);
  300. error = -EBUSY;
  301. goto err_out2;
  302. }
  303. /* get the dma arbitration level */
  304. dma_arb_level = (status >> 2) & 0xf;
  305. /* BA */
  306. printk("%s: DMA arbitration level : %dn",
  307.        DEVICE_NAME, dma_arb_level);
  308. LITE_ON;
  309. current_int_handler = ps2esdi_initial_reset_int_handler;
  310. reset_ctrl();
  311. reset_status = 0;
  312. reset_start = jiffies;
  313. while (!reset_status) {
  314. init_timer(&esdi_timer);
  315. esdi_timer.expires = jiffies + HZ;
  316. esdi_timer.data = 0;
  317. add_timer(&esdi_timer);
  318. sleep_on(&ps2esdi_int);
  319. }
  320. reset_end = jiffies;
  321. LITE_OFF;
  322. printk("%s: reset interrupt after %d jiffies,  %u.%02u secsn",
  323.        DEVICE_NAME, reset_end - reset_start, (reset_end - reset_start) / HZ,
  324.        (reset_end - reset_start) % HZ);
  325. /* Integrated ESDI Disk and Controller has only one drive! */
  326. if (adapterID == INTG_ESDI_ID) {/* if not "normal" PS2 ESDI adapter */
  327. ps2esdi_drives = 1; /* then we have only one physical disk! */ intg_esdi = 1;
  328. }
  329. /* finally this part sets up some global data structures etc. */
  330. ps2esdi_get_device_cfg();
  331. /* some annoyance in the above routine returns TWO drives?
  332.  Is something else happining in the background?
  333.  Regaurdless we fix the # of drives again. AJK */
  334. /* Integrated ESDI Disk and Controller has only one drive! */
  335. if (adapterID == INTG_ESDI_ID) /* if not "normal" PS2 ESDI adapter */
  336. ps2esdi_drives = 1; /* Not three or two, ONE DAMNIT! */
  337. current_int_handler = ps2esdi_normal_interrupt_handler;
  338. if (request_dma(dma_arb_level, "ed") !=0) {
  339. printk(KERN_WARNING "PS2ESDI: Can't request dma-channel %dn"
  340. ,(int) dma_arb_level);
  341. error = -EBUSY;
  342. goto err_out3;
  343. }
  344. blk_queue_max_sectors(ps2esdi_queue, 128);
  345. error = -ENOMEM;
  346. for (i = 0; i < ps2esdi_drives; i++) {
  347. struct gendisk *disk = alloc_disk(64);
  348. if (!disk)
  349. goto err_out4;
  350. disk->major = PS2ESDI_MAJOR;
  351. disk->first_minor = i<<6;
  352. sprintf(disk->disk_name, "ed%c", 'a'+i);
  353. sprintf(disk->devfs_name, "ed/target%d", i);
  354. disk->fops = &ps2esdi_fops;
  355. ps2esdi_gendisk[i] = disk;
  356. }
  357. for (i = 0; i < ps2esdi_drives; i++) {
  358. struct gendisk *disk = ps2esdi_gendisk[i];
  359. set_capacity(disk, ps2esdi_info[i].head * ps2esdi_info[i].sect *
  360. ps2esdi_info[i].cyl);
  361. disk->queue = ps2esdi_queue;
  362. disk->private_data = &ps2esdi_info[i];
  363. add_disk(disk);
  364. }
  365. return 0;
  366. err_out4:
  367. while (i--)
  368. put_disk(ps2esdi_gendisk[i]);
  369. err_out3:
  370. release_region(io_base, 4);
  371. err_out2:
  372. free_irq(PS2ESDI_IRQ, &ps2esdi_gendisk);
  373. err_out1:
  374. if(ps2esdi_slot) {
  375. mca_mark_as_unused(ps2esdi_slot);
  376. mca_set_adapter_procfn(ps2esdi_slot, NULL, NULL);
  377. }
  378. return error;
  379. }
  380. static void __init ps2esdi_get_device_cfg(void)
  381. {
  382. u_short cmd_blk[TYPE_0_CMD_BLK_LENGTH];
  383. /*BA */ printk("%s: Drive 0n", DEVICE_NAME);
  384. current_int_handler = ps2esdi_geometry_int_handler;
  385. cmd_blk[0] = CMD_GET_DEV_CONFIG | 0x600;
  386. cmd_blk[1] = 0;
  387. no_int_yet = TRUE;
  388. ps2esdi_out_cmd_blk(cmd_blk);
  389. if (no_int_yet)
  390. sleep_on(&ps2esdi_int);
  391. if (ps2esdi_drives > 1) {
  392. printk("%s: Drive 1n", DEVICE_NAME); /*BA */
  393. cmd_blk[0] = CMD_GET_DEV_CONFIG | (1 << 5) | 0x600;
  394. cmd_blk[1] = 0;
  395. no_int_yet = TRUE;
  396. ps2esdi_out_cmd_blk(cmd_blk);
  397. if (no_int_yet)
  398. sleep_on(&ps2esdi_int);
  399. } /* if second physical drive is present */
  400. return;
  401. }
  402. /* strategy routine that handles most of the IO requests */
  403. static void do_ps2esdi_request(request_queue_t * q)
  404. {
  405. struct request *req;
  406. /* since, this routine is called with interrupts cleared - they 
  407.    must be before it finishes  */
  408. req = elv_next_request(q);
  409. if (!req)
  410. return;
  411. #if 0
  412. printk("%s:got request. device : %s command : %d  sector : %ld count : %ld, buffer: %pn",
  413.        DEVICE_NAME,
  414.        req->rq_disk->disk_name,
  415.        req->cmd, req->sector,
  416.        req->current_nr_sectors, req->buffer);
  417. #endif
  418. /* check for above 16Mb dmas */
  419. if (isa_virt_to_bus(req->buffer + req->current_nr_sectors * 512) > 16 * MB) {
  420. printk("%s: DMA above 16MB not supportedn", DEVICE_NAME);
  421. end_request(req, FAIL);
  422. return;
  423. }
  424. if (req->sector+req->current_nr_sectors > get_capacity(req->rq_disk)) {
  425. printk("Grrr. error. ps2esdi_drives: %d, %llu %llun",
  426.     ps2esdi_drives, req->sector,
  427.     (unsigned long long)get_capacity(req->rq_disk));
  428. end_request(req, FAIL);
  429. return;
  430. }
  431. switch (rq_data_dir(req)) {
  432. case READ:
  433. ps2esdi_readwrite(READ, req);
  434. break;
  435. case WRITE:
  436. ps2esdi_readwrite(WRITE, req);
  437. break;
  438. default:
  439. printk("%s: Unknown commandn", req->rq_disk->disk_name);
  440. end_request(req, FAIL);
  441. break;
  442. } /* handle different commands */
  443. } /* main strategy routine */
  444. /* resets the ESDI adapter */
  445. static void reset_ctrl(void)
  446. {
  447. u_long expire;
  448. u_short status;
  449. /* enable interrupts on the controller */
  450. status = inb(ESDI_INTRPT);
  451. outb((status & 0xe0) | ATT_EOI, ESDI_ATTN); /* to be sure we don't have
  452.    any interrupt pending... */
  453. outb_p(CTRL_ENABLE_INTR, ESDI_CONTROL);
  454. /* read the ESDI status port - if the controller is not busy,
  455.    simply do a soft reset (fast) - otherwise we'll have to do a
  456.    hard (slow) reset.  */
  457. if (!(inb_p(ESDI_STATUS) & STATUS_BUSY)) {
  458. /*BA */ printk("%s: soft reset...n", DEVICE_NAME);
  459. outb_p(CTRL_SOFT_RESET, ESDI_ATTN);
  460. }
  461. /* soft reset */ 
  462. else {
  463. /*BA */
  464. printk("%s: hard reset...n", DEVICE_NAME);
  465. outb_p(CTRL_HARD_RESET, ESDI_CONTROL);
  466. expire = jiffies + 2*HZ;
  467. while (time_before(jiffies, expire));
  468. outb_p(1, ESDI_CONTROL);
  469. } /* hard reset */
  470. } /* reset the controller */
  471. /* called by the strategy routine to handle read and write requests */
  472. static void ps2esdi_readwrite(int cmd, struct request *req)
  473. {
  474. struct ps2esdi_i_struct *p = req->rq_disk->private_data;
  475. unsigned block = req->sector;
  476. unsigned count = req->current_nr_sectors;
  477. int drive = p - ps2esdi_info;
  478. u_short track, head, cylinder, sector;
  479. u_short cmd_blk[TYPE_1_CMD_BLK_LENGTH];
  480. /* do some relevant arithmatic */
  481. track = block / p->sect;
  482. head = track % p->head;
  483. cylinder = track / p->head;
  484. sector = block % p->sect;
  485. #if 0
  486. printk("%s: cyl=%d head=%d sect=%dn", DEVICE_NAME, cylinder, head, sector);
  487. #endif
  488. /* call the routine that actually fills out a command block */
  489. ps2esdi_fill_cmd_block
  490.     (cmd_blk,
  491.      (cmd == READ) ? CMD_READ : CMD_WRITE,
  492.      cylinder, head, sector, count, drive);
  493. /* send the command block to the controller */
  494. current_req = req;
  495. spin_unlock_irq(&ps2esdi_lock);
  496. if (ps2esdi_out_cmd_blk(cmd_blk)) {
  497. spin_lock_irq(&ps2esdi_lock);
  498. printk("%s: Controller failedn", DEVICE_NAME);
  499. if ((++req->errors) >= MAX_RETRIES)
  500. end_request(req, FAIL);
  501. }
  502. /* check for failure to put out the command block */ 
  503. else {
  504. spin_lock_irq(&ps2esdi_lock);
  505. #if 0
  506. printk("%s: waiting for xfern", DEVICE_NAME);
  507. #endif
  508. /* turn disk lights on */
  509. LITE_ON;
  510. }
  511. } /* ps2esdi_readwrite */
  512. /* fill out the command block */
  513. static void ps2esdi_fill_cmd_block(u_short * cmd_blk, u_short cmd,
  514.  u_short cyl, u_short head, u_short sector, u_short length, u_char drive)
  515. {
  516. cmd_blk[0] = (drive << 5) | cmd;
  517. cmd_blk[1] = length;
  518. cmd_blk[2] = ((cyl & 0x1f) << 11) | (head << 5) | sector;
  519. cmd_blk[3] = (cyl & 0x3E0) >> 5;
  520. } /* fill out the command block */
  521. /* write a command block to the controller */
  522. static int ps2esdi_out_cmd_blk(u_short * cmd_blk)
  523. {
  524. int i;
  525. unsigned long jif;
  526. u_char status;
  527. /* enable interrupts */
  528. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  529. /* do not write to the controller, if it is busy */
  530. for (jif = jiffies + ESDI_STAT_TIMEOUT;
  531. time_after(jif, jiffies) &&
  532. (inb(ESDI_STATUS) & STATUS_BUSY); )
  533. ;
  534. #if 0
  535. printk("%s: i(1)=%ldn", DEVICE_NAME, jif);
  536. #endif
  537. /* if device is still busy - then just time out */
  538. if (inb(ESDI_STATUS) & STATUS_BUSY) {
  539. printk("%s: ps2esdi_out_cmd timed out (1)n", DEVICE_NAME);
  540. return ERROR;
  541. } /* timeout ??? */
  542. /* Set up the attention register in the controller */
  543. outb(((*cmd_blk) & 0xE0) | 1, ESDI_ATTN);
  544. #if 0
  545. printk("%s: sending %d words to controllern", DEVICE_NAME, (((*cmd_blk) >> 14) + 1) << 1);
  546. #endif
  547. /* one by one send each word out */
  548. for (i = (((*cmd_blk) >> 14) + 1) << 1; i; i--) {
  549. status = inb(ESDI_STATUS);
  550. for (jif = jiffies + ESDI_STAT_TIMEOUT;
  551.      time_after(jif, jiffies) && (status & STATUS_BUSY) &&
  552.    (status & STATUS_CMD_INF); status = inb(ESDI_STATUS));
  553. if ((status & (STATUS_BUSY | STATUS_CMD_INF)) == STATUS_BUSY) {
  554. #if 0
  555. printk("%s: sending %04Xn", DEVICE_NAME, *cmd_blk);
  556. #endif
  557. outw(*cmd_blk++, ESDI_CMD_INT);
  558. } else {
  559. printk("%s: ps2esdi_out_cmd timed out while sending command (status=%02X)n",
  560.        DEVICE_NAME, status);
  561. return ERROR;
  562. }
  563. } /* send all words out */
  564. return OK;
  565. } /* send out the commands */
  566. /* prepare for dma - do all the necessary setup */
  567. static void ps2esdi_prep_dma(char *buffer, u_short length, u_char dma_xmode)
  568. {
  569. unsigned long flags = claim_dma_lock();
  570. mca_disable_dma(dma_arb_level);
  571. mca_set_dma_addr(dma_arb_level, isa_virt_to_bus(buffer));
  572. mca_set_dma_count(dma_arb_level, length * 512 / 2);
  573. mca_set_dma_mode(dma_arb_level, dma_xmode);
  574. mca_enable_dma(dma_arb_level);
  575. release_dma_lock(flags);
  576. } /* prepare for dma */
  577. static irqreturn_t ps2esdi_interrupt_handler(int irq, void *dev_id,
  578.       struct pt_regs *regs)
  579. {
  580. u_int int_ret_code;
  581. if (inb(ESDI_STATUS) & STATUS_INTR) {
  582. int_ret_code = inb(ESDI_INTRPT);
  583. if (current_int_handler) {
  584. /* Disable adapter interrupts till processing is finished */
  585. outb(CTRL_DISABLE_INTR, ESDI_CONTROL);
  586. current_int_handler(int_ret_code);
  587. } else
  588. printk("%s: help ! No interrupt handler.n", DEVICE_NAME);
  589. } else {
  590. return IRQ_NONE;
  591. }
  592. return IRQ_HANDLED;
  593. }
  594. static void ps2esdi_initial_reset_int_handler(u_int int_ret_code)
  595. {
  596. switch (int_ret_code & 0xf) {
  597. case INT_RESET:
  598. /*BA */
  599. printk("%s: initial reset completed.n", DEVICE_NAME);
  600. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  601. wake_up(&ps2esdi_int);
  602. break;
  603. case INT_ATTN_ERROR:
  604. printk("%s: Attention error. interrupt status : %02Xn", DEVICE_NAME,
  605.        int_ret_code);
  606. printk("%s: status: %02xn", DEVICE_NAME, inb(ESDI_STATUS));
  607. break;
  608. default:
  609. printk("%s: initial reset handler received interrupt: %02Xn",
  610.        DEVICE_NAME, int_ret_code);
  611. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  612. break;
  613. }
  614. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  615. }
  616. static void ps2esdi_geometry_int_handler(u_int int_ret_code)
  617. {
  618. u_int status, drive_num;
  619. unsigned long rba;
  620. int i;
  621. drive_num = int_ret_code >> 5;
  622. switch (int_ret_code & 0xf) {
  623. case INT_CMD_COMPLETE:
  624. for (i = ESDI_TIMEOUT; i && !(inb(ESDI_STATUS) & STATUS_STAT_AVAIL); i--);
  625. if (!(inb(ESDI_STATUS) & STATUS_STAT_AVAIL)) {
  626. printk("%s: timeout reading status wordn", DEVICE_NAME);
  627. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  628. break;
  629. }
  630. status = inw(ESDI_STT_INT);
  631. if ((status & 0x1F) == CMD_GET_DEV_CONFIG) {
  632. #define REPLY_WORDS 5 /* we already read word 0 */
  633. u_short reply[REPLY_WORDS];
  634. if (ps2esdi_read_status_words((status >> 8) - 1, REPLY_WORDS, reply)) {
  635. /*BA */
  636. printk("%s: Device Configuration Status for drive %un",
  637.        DEVICE_NAME, drive_num);
  638. printk("%s: Spares/cyls: %u", DEVICE_NAME, reply[0] >> 8);
  639. printk
  640.     ("Config bits: %s%s%s%s%sn",
  641.      (reply[0] & CONFIG_IS) ? "Invalid Secondary, " : "",
  642.      ((reply[0] & CONFIG_ZD) && !(reply[0] & CONFIG_IS))
  643.  ? "Zero Defect, " : "Defects Present, ",
  644.      (reply[0] & CONFIG_SF) ? "Skewed Format, " : "",
  645.      (reply[0] & CONFIG_FR) ? "Removable, " : "Non-Removable, ",
  646.      (reply[0] & CONFIG_RT) ? "No Retries" : "Retries");
  647. rba = reply[1] | ((unsigned long) reply[2] << 16);
  648. printk("%s: Number of RBA's: %lun", DEVICE_NAME, rba);
  649. printk("%s: Physical number of cylinders: %u, Sectors/Track: %u, Heads: %un",
  650.        DEVICE_NAME, reply[3], reply[4] >> 8, reply[4] & 0xff);
  651. if (!ps2esdi_info[drive_num].head) {
  652. ps2esdi_info[drive_num].head = 64;
  653. ps2esdi_info[drive_num].sect = 32;
  654. ps2esdi_info[drive_num].cyl = rba / (64 * 32);
  655. ps2esdi_info[drive_num].wpcom = 0;
  656. ps2esdi_info[drive_num].lzone = ps2esdi_info[drive_num].cyl;
  657. ps2esdi_info[drive_num].ctl = 8;
  658. if (tp720esdi) { /* store the retrieved parameters */
  659. ps2esdi_info[0].head = reply[4] & 0Xff;
  660. ps2esdi_info[0].sect = reply[4] >> 8;
  661. ps2esdi_info[0].cyl = reply[3];
  662. ps2esdi_info[0].wpcom = 0;
  663. ps2esdi_info[0].lzone = reply[3];
  664. } else {
  665. if (!intg_esdi)
  666. ps2esdi_drives++;
  667. }
  668. }
  669. #ifdef OBSOLETE
  670. if (!ps2esdi_info[drive_num].head) {
  671. ps2esdi_info[drive_num].head = reply[4] & 0Xff;
  672. ps2esdi_info[drive_num].sect = reply[4] >> 8;
  673. ps2esdi_info[drive_num].cyl = reply[3];
  674. ps2esdi_info[drive_num].wpcom = 0;
  675. ps2esdi_info[drive_num].lzone = reply[3];
  676. if (tp720esdi) { /* store the retrieved parameters */
  677. ps2esdi_info[0].head = reply[4] & 0Xff;
  678. ps2esdi_info[0].sect = reply[4] >> 8;
  679. ps2esdi_info[0].cyl = reply[3];
  680. ps2esdi_info[0].wpcom = 0;
  681. ps2esdi_info[0].lzone = reply[3];
  682. } else {
  683. ps2esdi_drives++;
  684. }
  685. }
  686. #endif
  687. } else
  688. printk("%s: failed while getting device confign", DEVICE_NAME);
  689. #undef REPLY_WORDS
  690. } else
  691. printk("%s: command %02X unknown by geometry handlern",
  692.        DEVICE_NAME, status & 0x1f);
  693. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  694. break;
  695. case INT_ATTN_ERROR:
  696. printk("%s: Attention error. interrupt status : %02Xn", DEVICE_NAME,
  697.        int_ret_code);
  698. printk("%s: Device not availablen", DEVICE_NAME);
  699. break;
  700. case INT_CMD_ECC:
  701. case INT_CMD_RETRY:
  702. case INT_CMD_ECC_RETRY:
  703. case INT_CMD_WARNING:
  704. case INT_CMD_ABORT:
  705. case INT_CMD_FAILED:
  706. case INT_DMA_ERR:
  707. case INT_CMD_BLK_ERR:
  708. /*BA */ printk("%s: Whaa. Error occurred...n", DEVICE_NAME);
  709. dump_cmd_complete_status(int_ret_code);
  710. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  711. break;
  712. default:
  713. printk("%s: Unknown interrupt reason: %02Xn",
  714.        DEVICE_NAME, int_ret_code & 0xf);
  715. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  716. break;
  717. }
  718. wake_up(&ps2esdi_int);
  719. no_int_yet = FALSE;
  720. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  721. }
  722. static void ps2esdi_normal_interrupt_handler(u_int int_ret_code)
  723. {
  724. unsigned long flags;
  725. u_int status;
  726. u_int ending;
  727. int i;
  728. switch (int_ret_code & 0x0f) {
  729. case INT_TRANSFER_REQ:
  730. ps2esdi_prep_dma(current_req->buffer,
  731.  current_req->current_nr_sectors,
  732.     (rq_data_dir(current_req) == READ)
  733.     ? MCA_DMA_MODE_16 | MCA_DMA_MODE_WRITE | MCA_DMA_MODE_XFER
  734.     : MCA_DMA_MODE_16 | MCA_DMA_MODE_READ);
  735. outb(CTRL_ENABLE_DMA | CTRL_ENABLE_INTR, ESDI_CONTROL);
  736. ending = -1;
  737. break;
  738. case INT_ATTN_ERROR:
  739. printk("%s: Attention error. interrupt status : %02Xn", DEVICE_NAME,
  740.        int_ret_code);
  741. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  742. ending = FAIL;
  743. break;
  744. case INT_CMD_COMPLETE:
  745. for (i = ESDI_TIMEOUT; i && !(inb(ESDI_STATUS) & STATUS_STAT_AVAIL); i--);
  746. if (!(inb(ESDI_STATUS) & STATUS_STAT_AVAIL)) {
  747. printk("%s: timeout reading status wordn", DEVICE_NAME);
  748. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  749. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  750. if ((++current_req->errors) >= MAX_RETRIES)
  751. ending = FAIL;
  752. else
  753. ending = -1;
  754. break;
  755. }
  756. status = inw(ESDI_STT_INT);
  757. switch (status & 0x1F) {
  758. case (CMD_READ & 0xff):
  759. case (CMD_WRITE & 0xff):
  760. LITE_OFF;
  761. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  762. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  763. ending = SUCCES;
  764. break;
  765. default:
  766. printk("%s: interrupt for unknown command %02Xn",
  767.        DEVICE_NAME, status & 0x1f);
  768. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  769. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  770. ending = -1;
  771. break;
  772. }
  773. break;
  774. case INT_CMD_ECC:
  775. case INT_CMD_RETRY:
  776. case INT_CMD_ECC_RETRY:
  777. LITE_OFF;
  778. dump_cmd_complete_status(int_ret_code);
  779. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  780. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  781. ending = SUCCES;
  782. break;
  783. case INT_CMD_WARNING:
  784. case INT_CMD_ABORT:
  785. case INT_CMD_FAILED:
  786. case INT_DMA_ERR:
  787. LITE_OFF;
  788. dump_cmd_complete_status(int_ret_code);
  789. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  790. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  791. if ((++current_req->errors) >= MAX_RETRIES)
  792. ending = FAIL;
  793. else
  794. ending = -1;
  795. break;
  796. case INT_CMD_BLK_ERR:
  797. dump_cmd_complete_status(int_ret_code);
  798. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  799. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  800. ending = FAIL;
  801. break;
  802. case INT_CMD_FORMAT:
  803. printk("%s: huh ? Who issued this format command ?n"
  804.        ,DEVICE_NAME);
  805. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  806. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  807. ending = -1;
  808. break;
  809. case INT_RESET:
  810. /* BA printk("%s: reset completed.n", DEVICE_NAME) */ ;
  811. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  812. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  813. ending = -1;
  814. break;
  815. default:
  816. printk("%s: Unknown interrupt reason: %02Xn",
  817.        DEVICE_NAME, int_ret_code & 0xf);
  818. outb((int_ret_code & 0xe0) | ATT_EOI, ESDI_ATTN);
  819. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  820. ending = -1;
  821. break;
  822. }
  823. if(ending != -1) {
  824. spin_lock_irqsave(&ps2esdi_lock, flags);
  825. end_request(current_req, ending);
  826. current_req = NULL;
  827. do_ps2esdi_request(ps2esdi_queue);
  828. spin_unlock_irqrestore(&ps2esdi_lock, flags);
  829. }
  830. } /* handle interrupts */
  831. static int ps2esdi_read_status_words(int num_words,
  832.      int max_words,
  833.      u_short * buffer)
  834. {
  835. int i;
  836. for (; max_words && num_words; max_words--, num_words--, buffer++) {
  837. for (i = ESDI_TIMEOUT; i && !(inb(ESDI_STATUS) & STATUS_STAT_AVAIL); i--);
  838. if (!(inb(ESDI_STATUS) & STATUS_STAT_AVAIL)) {
  839. printk("%s: timeout reading status wordn", DEVICE_NAME);
  840. return FAIL;
  841. }
  842. *buffer = inw(ESDI_STT_INT);
  843. }
  844. return SUCCES;
  845. }
  846. static void dump_cmd_complete_status(u_int int_ret_code)
  847. {
  848. #define WAIT_FOR_STATUS 
  849.   for(i=ESDI_TIMEOUT;i && !(inb(ESDI_STATUS) & STATUS_STAT_AVAIL);i--); 
  850.     if(!(inb(ESDI_STATUS) & STATUS_STAT_AVAIL)) { 
  851.     printk("%s: timeout reading status wordn",DEVICE_NAME); 
  852.     return; 
  853.     }
  854. int i, word_count;
  855. u_short stat_word;
  856. u_long rba;
  857. printk("%s: Device: %u, interrupt ID: %02Xn",
  858.        DEVICE_NAME, int_ret_code >> 5,
  859.        int_ret_code & 0xf);
  860. WAIT_FOR_STATUS;
  861. stat_word = inw(ESDI_STT_INT);
  862. word_count = (stat_word >> 8) - 1;
  863. printk("%s: %u status words, command: %02Xn", DEVICE_NAME, word_count,
  864.        stat_word & 0xff);
  865. if (word_count--) {
  866. WAIT_FOR_STATUS;
  867. stat_word = inw(ESDI_STT_INT);
  868. printk("%s: command status code: %02X, command error code: %02Xn",
  869.        DEVICE_NAME, stat_word >> 8, stat_word & 0xff);
  870. }
  871. if (word_count--) {
  872. WAIT_FOR_STATUS;
  873. stat_word = inw(ESDI_STT_INT);
  874. printk("%s: device error code: %s%s%s%s%s,%02Xn", DEVICE_NAME,
  875.        (stat_word & 0x1000) ? "Ready, " : "Not Ready, ",
  876.   (stat_word & 0x0800) ? "Selected, " : "Not Selected, ",
  877.        (stat_word & 0x0400) ? "Write Fault, " : "",
  878.        (stat_word & 0x0200) ? "Track 0, " : "",
  879. (stat_word & 0x0100) ? "Seek or command complete, " : "",
  880.        stat_word >> 8);
  881. }
  882. if (word_count--) {
  883. WAIT_FOR_STATUS;
  884. stat_word = inw(ESDI_STT_INT);
  885. printk("%s: Blocks to do: %u", DEVICE_NAME, stat_word);
  886. }
  887. if (word_count -= 2) {
  888. WAIT_FOR_STATUS;
  889. rba = inw(ESDI_STT_INT);
  890. WAIT_FOR_STATUS;
  891. rba |= inw(ESDI_STT_INT) << 16;
  892. printk(", Last Cyl: %u Head: %u Sector: %un",
  893.        (u_short) ((rba & 0x1ff80000) >> 11),
  894.  (u_short) ((rba & 0x7E0) >> 5), (u_short) (rba & 0x1f));
  895. } else
  896. printk("n");
  897. if (word_count--) {
  898. WAIT_FOR_STATUS;
  899. stat_word = inw(ESDI_STT_INT);
  900. printk("%s: Blocks required ECC: %u", DEVICE_NAME, stat_word);
  901. }
  902. printk("n");
  903. #undef WAIT_FOR_STATUS
  904. }
  905. static int ps2esdi_ioctl(struct inode *inode,
  906.  struct file *file, u_int cmd, u_long arg)
  907. {
  908. struct ps2esdi_i_struct *p = inode->i_bdev->bd_disk->private_data;
  909. struct ps2esdi_geometry geom;
  910. if (cmd != HDIO_GETGEO)
  911. return -EINVAL;
  912. memset(&geom, 0, sizeof(geom));
  913. geom.heads = p->head;
  914. geom.sectors = p->sect;
  915. geom.cylinders = p->cyl;
  916. geom.start = get_start_sect(inode->i_bdev);
  917. if (copy_to_user((void __user *)arg, &geom, sizeof(geom)))
  918. return -EFAULT;
  919. return 0;
  920. }
  921. static void ps2esdi_reset_timer(unsigned long unused)
  922. {
  923. int status;
  924. status = inb(ESDI_INTRPT);
  925. if ((status & 0xf) == INT_RESET) {
  926. outb((status & 0xe0) | ATT_EOI, ESDI_ATTN);
  927. outb(CTRL_ENABLE_INTR, ESDI_CONTROL);
  928. reset_status = 1;
  929. }
  930. wake_up(&ps2esdi_int);
  931. }