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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/ide/icside.c
  3.  *
  4.  * Copyright (c) 1996,1997 Russell King.
  5.  *
  6.  * Changelog:
  7.  *  08-Jun-1996 RMK Created
  8.  *  12-Sep-1997 RMK Added interrupt enable/disable
  9.  *  17-Apr-1999 RMK Added support for V6 EASI
  10.  *  22-May-1999 RMK Added support for V6 DMA
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/string.h>
  14. #include <linux/module.h>
  15. #include <linux/ioport.h>
  16. #include <linux/slab.h>
  17. #include <linux/blkdev.h>
  18. #include <linux/errno.h>
  19. #include <linux/hdreg.h>
  20. #include <linux/ide.h>
  21. #include <linux/pci.h>
  22. #include <linux/init.h>
  23. #include <asm/dma.h>
  24. #include <asm/ecard.h>
  25. #include <asm/io.h>
  26. extern char *ide_xfer_verbose (byte xfer_rate);
  27. /*
  28.  * Maximum number of interfaces per card
  29.  */
  30. #define MAX_IFS 2
  31. #define ICS_IDENT_OFFSET 0x8a0
  32. #define ICS_ARCIN_V5_INTRSTAT 0x000
  33. #define ICS_ARCIN_V5_INTROFFSET 0x001
  34. #define ICS_ARCIN_V5_IDEOFFSET 0xa00
  35. #define ICS_ARCIN_V5_IDEALTOFFSET 0xae0
  36. #define ICS_ARCIN_V5_IDESTEPPING 4
  37. #define ICS_ARCIN_V6_IDEOFFSET_1 0x800
  38. #define ICS_ARCIN_V6_INTROFFSET_1 0x880
  39. #define ICS_ARCIN_V6_INTRSTAT_1 0x8a4
  40. #define ICS_ARCIN_V6_IDEALTOFFSET_1 0x8e0
  41. #define ICS_ARCIN_V6_IDEOFFSET_2 0xc00
  42. #define ICS_ARCIN_V6_INTROFFSET_2 0xc80
  43. #define ICS_ARCIN_V6_INTRSTAT_2 0xca4
  44. #define ICS_ARCIN_V6_IDEALTOFFSET_2 0xce0
  45. #define ICS_ARCIN_V6_IDESTEPPING 4
  46. struct cardinfo {
  47. unsigned int dataoffset;
  48. unsigned int ctrloffset;
  49. unsigned int stepping;
  50. };
  51. static struct cardinfo icside_cardinfo_v5 = {
  52. ICS_ARCIN_V5_IDEOFFSET,
  53. ICS_ARCIN_V5_IDEALTOFFSET,
  54. ICS_ARCIN_V5_IDESTEPPING
  55. };
  56. static struct cardinfo icside_cardinfo_v6_1 = {
  57. ICS_ARCIN_V6_IDEOFFSET_1,
  58. ICS_ARCIN_V6_IDEALTOFFSET_1,
  59. ICS_ARCIN_V6_IDESTEPPING
  60. };
  61. static struct cardinfo icside_cardinfo_v6_2 = {
  62. ICS_ARCIN_V6_IDEOFFSET_2,
  63. ICS_ARCIN_V6_IDEALTOFFSET_2,
  64. ICS_ARCIN_V6_IDESTEPPING
  65. };
  66. static const card_ids icside_cids[] = {
  67. { MANU_ICS,  PROD_ICS_IDE  },
  68. { MANU_ICS2, PROD_ICS2_IDE },
  69. { 0xffff, 0xffff }
  70. };
  71. typedef enum {
  72. ics_if_unknown,
  73. ics_if_arcin_v5,
  74. ics_if_arcin_v6
  75. } iftype_t;
  76. /* ---------------- Version 5 PCB Support Functions --------------------- */
  77. /* Prototype: icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
  78.  * Purpose  : enable interrupts from card
  79.  */
  80. static void icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
  81. {
  82. unsigned int memc_port = (unsigned int)ec->irq_data;
  83. outb (0, memc_port + ICS_ARCIN_V5_INTROFFSET);
  84. }
  85. /* Prototype: icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
  86.  * Purpose  : disable interrupts from card
  87.  */
  88. static void icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
  89. {
  90. unsigned int memc_port = (unsigned int)ec->irq_data;
  91. inb (memc_port + ICS_ARCIN_V5_INTROFFSET);
  92. }
  93. static const expansioncard_ops_t icside_ops_arcin_v5 = {
  94. icside_irqenable_arcin_v5,
  95. icside_irqdisable_arcin_v5,
  96. NULL,
  97. NULL,
  98. NULL,
  99. NULL
  100. };
  101. /* ---------------- Version 6 PCB Support Functions --------------------- */
  102. /* Prototype: icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
  103.  * Purpose  : enable interrupts from card
  104.  */
  105. static void icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
  106. {
  107. unsigned int ide_base_port = (unsigned int)ec->irq_data;
  108. outb (0, ide_base_port + ICS_ARCIN_V6_INTROFFSET_1);
  109. outb (0, ide_base_port + ICS_ARCIN_V6_INTROFFSET_2);
  110. }
  111. /* Prototype: icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
  112.  * Purpose  : disable interrupts from card
  113.  */
  114. static void icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
  115. {
  116. unsigned int ide_base_port = (unsigned int)ec->irq_data;
  117. inb (ide_base_port + ICS_ARCIN_V6_INTROFFSET_1);
  118. inb (ide_base_port + ICS_ARCIN_V6_INTROFFSET_2);
  119. }
  120. /* Prototype: icside_irqprobe(struct expansion_card *ec)
  121.  * Purpose  : detect an active interrupt from card
  122.  */
  123. static int icside_irqpending_arcin_v6(struct expansion_card *ec)
  124. {
  125. unsigned int ide_base_port = (unsigned int)ec->irq_data;
  126. return inb(ide_base_port + ICS_ARCIN_V6_INTRSTAT_1) & 1 ||
  127.        inb(ide_base_port + ICS_ARCIN_V6_INTRSTAT_2) & 1;
  128. }
  129. static const expansioncard_ops_t icside_ops_arcin_v6 = {
  130. icside_irqenable_arcin_v6,
  131. icside_irqdisable_arcin_v6,
  132. icside_irqpending_arcin_v6,
  133. NULL,
  134. NULL,
  135. NULL
  136. };
  137. /* Prototype: icside_identifyif (struct expansion_card *ec)
  138.  * Purpose  : identify IDE interface type
  139.  * Notes    : checks the description string
  140.  */
  141. static iftype_t __init icside_identifyif (struct expansion_card *ec)
  142. {
  143. unsigned int addr;
  144. iftype_t iftype;
  145. int id = 0;
  146. iftype = ics_if_unknown;
  147. addr = ecard_address (ec, ECARD_IOC, ECARD_FAST) + ICS_IDENT_OFFSET;
  148. id = inb (addr) & 1;
  149. id |= (inb (addr + 1) & 1) << 1;
  150. id |= (inb (addr + 2) & 1) << 2;
  151. id |= (inb (addr + 3) & 1) << 3;
  152. switch (id) {
  153. case 0: /* A3IN */
  154. printk("icside: A3IN unsupportedn");
  155. break;
  156. case 1: /* A3USER */
  157. printk("icside: A3USER unsupportedn");
  158. break;
  159. case 3: /* ARCIN V6 */
  160. printk(KERN_DEBUG "icside: detected ARCIN V6 in slot %dn", ec->slot_no);
  161. iftype = ics_if_arcin_v6;
  162. break;
  163. case 15:/* ARCIN V5 (no id) */
  164. printk(KERN_DEBUG "icside: detected ARCIN V5 in slot %dn", ec->slot_no);
  165. iftype = ics_if_arcin_v5;
  166. break;
  167. default:/* we don't know - complain very loudly */
  168. printk("icside: ***********************************n");
  169. printk("icside: *** UNKNOWN ICS INTERFACE id=%d ***n", id);
  170. printk("icside: ***********************************n");
  171. printk("icside: please report this to linux@arm.linux.org.ukn");
  172. printk("icside: defaulting to ARCIN V5n");
  173. iftype = ics_if_arcin_v5;
  174. break;
  175. }
  176. return iftype;
  177. }
  178. #ifdef CONFIG_BLK_DEV_IDEDMA_ICS
  179. /*
  180.  * SG-DMA support.
  181.  *
  182.  * Similar to the BM-DMA, but we use the RiscPCs IOMD DMA controllers.
  183.  * There is only one DMA controller per card, which means that only
  184.  * one drive can be accessed at one time.  NOTE! We do not enforce that
  185.  * here, but we rely on the main IDE driver spotting that both
  186.  * interfaces use the same IRQ, which should guarantee this.
  187.  */
  188. #define NR_ENTRIES 256
  189. #define TABLE_SIZE (NR_ENTRIES * 8)
  190. static int ide_build_sglist(ide_hwif_t *hwif, struct request *rq)
  191. {
  192. struct buffer_head *bh;
  193. struct scatterlist *sg = hwif->sg_table;
  194. int nents = 0;
  195. if (rq->cmd == READ)
  196. hwif->sg_dma_direction = PCI_DMA_FROMDEVICE;
  197. else
  198. hwif->sg_dma_direction = PCI_DMA_TODEVICE;
  199. bh = rq->bh;
  200. do {
  201. unsigned char *virt_addr = bh->b_data;
  202. unsigned int size = bh->b_size;
  203. while ((bh = bh->b_reqnext) != NULL) {
  204. if ((virt_addr + size) != (unsigned char *)bh->b_data)
  205. break;
  206. size += bh->b_size;
  207. }
  208. memset(&sg[nents], 0, sizeof(*sg));
  209. sg[nents].address = virt_addr;
  210. sg[nents].length = size;
  211. nents++;
  212. } while (bh != NULL);
  213. return pci_map_sg(NULL, sg, nents, hwif->sg_dma_direction);
  214. }
  215. static int
  216. icside_build_dmatable(ide_drive_t *drive, int reading)
  217. {
  218. return HWIF(drive)->sg_nents = ide_build_sglist(HWIF(drive), HWGROUP(drive)->rq);
  219. }
  220. /* Teardown mappings after DMA has completed.  */
  221. static void icside_destroy_dmatable(ide_drive_t *drive)
  222. {
  223. struct scatterlist *sg = HWIF(drive)->sg_table;
  224. int nents = HWIF(drive)->sg_nents;
  225. pci_unmap_sg(NULL, sg, nents, HWIF(drive)->sg_dma_direction);
  226. }
  227. static int
  228. icside_config_if(ide_drive_t *drive, int xfer_mode)
  229. {
  230. int func = ide_dma_off;
  231. switch (xfer_mode) {
  232. case XFER_MW_DMA_2:
  233. /*
  234.  * The cycle time is limited to 250ns by the r/w
  235.  * pulse width (90ns), however we should still
  236.  * have a maximum burst transfer rate of 8MB/s.
  237.  */
  238. drive->drive_data = 250;
  239. break;
  240. case XFER_MW_DMA_1:
  241. drive->drive_data = 250;
  242. break;
  243. case XFER_MW_DMA_0:
  244. drive->drive_data = 480;
  245. break;
  246. default:
  247. drive->drive_data = 0;
  248. break;
  249. }
  250. if (!drive->init_speed)
  251. drive->init_speed = (byte) xfer_mode;
  252. if (drive->drive_data &&
  253.     ide_config_drive_speed(drive, (byte) xfer_mode) == 0)
  254. func = ide_dma_on;
  255. else
  256. drive->drive_data = 480;
  257. printk("%s: %s selected (peak %dMB/s)n", drive->name,
  258. ide_xfer_verbose(xfer_mode), 2000 / drive->drive_data);
  259. drive->current_speed = (byte) xfer_mode;
  260. return func;
  261. }
  262. static int
  263. icside_set_speed(ide_drive_t *drive, byte speed)
  264. {
  265. return icside_config_if(drive, speed);
  266. }
  267. /*
  268.  * dma_intr() is the handler for disk read/write DMA interrupts
  269.  */
  270. static ide_startstop_t icside_dmaintr(ide_drive_t *drive)
  271. {
  272. int i;
  273. byte stat, dma_stat;
  274. dma_stat = HWIF(drive)->dmaproc(ide_dma_end, drive);
  275. stat = GET_STAT(); /* get drive status */
  276. if (OK_STAT(stat,DRIVE_READY,drive->bad_wstat|DRQ_STAT)) {
  277. if (!dma_stat) {
  278. struct request *rq = HWGROUP(drive)->rq;
  279. rq = HWGROUP(drive)->rq;
  280. for (i = rq->nr_sectors; i > 0;) {
  281. i -= rq->current_nr_sectors;
  282. ide_end_request(1, HWGROUP(drive));
  283. }
  284. return ide_stopped;
  285. }
  286. printk("%s: dma_intr: bad DMA status (dma_stat=%x)n", 
  287.        drive->name, dma_stat);
  288. }
  289. return ide_error(drive, "dma_intr", stat);
  290. }
  291. /*
  292.  * The following is a sick duplication from ide-dma.c ;(
  293.  *
  294.  * This should be defined in one place only.
  295.  */
  296. struct drive_list_entry {
  297. char * id_model;
  298. char * id_firmware;
  299. };
  300. static struct drive_list_entry drive_whitelist [] = {
  301. { "Micropolis 2112A", "ALL" },
  302. { "CONNER CTMA 4000", "ALL" },
  303. { "CONNER CTT8000-A", "ALL" },
  304. { "ST34342A", "ALL" },
  305. { NULL, 0 }
  306. };
  307. static struct drive_list_entry drive_blacklist [] = {
  308. { "WDC AC11000H", "ALL" },
  309. { "WDC AC22100H", "ALL" },
  310. { "WDC AC32500H", "ALL" },
  311. { "WDC AC33100H", "ALL" },
  312. { "WDC AC31600H", "ALL" },
  313. { "WDC AC32100H", "24.09P07" },
  314. { "WDC AC23200L", "21.10N21" },
  315. { "Compaq CRD-8241B", "ALL" },
  316. { "CRD-8400B", "ALL" },
  317. { "CRD-8480B", "ALL" },
  318. { "CRD-8480C", "ALL" },
  319. { "CRD-8482B", "ALL" },
  320.   { "CRD-84", "ALL" },
  321. { "SanDisk SDP3B", "ALL" },
  322. { "SanDisk SDP3B-64", "ALL" },
  323. { "SANYO CD-ROM CRD", "ALL" },
  324. { "HITACHI CDR-8", "ALL" },
  325. { "HITACHI CDR-8335", "ALL" },
  326. { "HITACHI CDR-8435", "ALL" },
  327. { "Toshiba CD-ROM XM-6202B", "ALL" },
  328. { "CD-532E-A", "ALL" },
  329. { "E-IDE CD-ROM CR-840", "ALL" },
  330. { "CD-ROM Drive/F5A", "ALL" },
  331. { "RICOH CD-R/RW MP7083A", "ALL" },
  332. { "WPI CDD-820", "ALL" },
  333. { "SAMSUNG CD-ROM SC-148C", "ALL" },
  334. { "SAMSUNG CD-ROM SC-148F", "ALL" },
  335. { "SAMSUNG CD-ROM SC", "ALL" },
  336. { "SanDisk SDP3B-64", "ALL" },
  337. { "SAMSUNG CD-ROM SN-124", "ALL" },
  338. { "PLEXTOR CD-R PX-W8432T", "ALL" },
  339. { "ATAPI CD-ROM DRIVE 40X MAXIMUM", "ALL" },
  340. { "_NEC DV5800A", "ALL" },
  341. { NULL, 0 }
  342. };
  343. static int in_drive_list(struct hd_driveid *id, struct drive_list_entry * drive_table)
  344. {
  345. for ( ; drive_table->id_model ; drive_table++)
  346. if ((!strcmp(drive_table->id_model, id->model)) &&
  347.     ((!strstr(drive_table->id_firmware, id->fw_rev)) ||
  348.      (!strcmp(drive_table->id_firmware, "ALL"))))
  349. return 1;
  350. return 0;
  351. }
  352. /*
  353.  *  For both Blacklisted and Whitelisted drives.
  354.  *  This is setup to be called as an extern for future support
  355.  *  to other special driver code.
  356.  */
  357. static int check_drive_lists(ide_drive_t *drive, int good_bad)
  358. {
  359. struct hd_driveid *id = drive->id;
  360. if (good_bad) {
  361. return in_drive_list(id, drive_whitelist);
  362. } else {
  363. int blacklist = in_drive_list(id, drive_blacklist);
  364. if (blacklist)
  365. printk("%s: Disabling DMA for %sn", drive->name, id->model);
  366. return(blacklist);
  367. }
  368. return 0;
  369. }
  370. static int
  371. icside_dma_check(ide_drive_t *drive)
  372. {
  373. struct hd_driveid *id = drive->id;
  374. ide_hwif_t *hwif = HWIF(drive);
  375. int autodma = hwif->autodma;
  376. int xfer_mode = XFER_PIO_2;
  377. int func = ide_dma_off_quietly;
  378. if (!id || !(id->capability & 1) || !autodma)
  379. goto out;
  380. /*
  381.  * Consult the list of known "bad" drives
  382.  */
  383. if (check_drive_lists(drive, 0)) {
  384. func = ide_dma_off;
  385. goto out;
  386. }
  387. /*
  388.  * Enable DMA on any drive that has multiword DMA
  389.  */
  390. if (id->field_valid & 2) {
  391. if (id->dma_mword & 4) {
  392. xfer_mode = XFER_MW_DMA_2;
  393. func = ide_dma_on;
  394. } else if (id->dma_mword & 2) {
  395. xfer_mode = XFER_MW_DMA_1;
  396. func = ide_dma_on;
  397. } else if (id->dma_mword & 1) {
  398. xfer_mode = XFER_MW_DMA_0;
  399. func = ide_dma_on;
  400. }
  401. goto out;
  402. }
  403. /*
  404.  * Consult the list of known "good" drives
  405.  */
  406. if (check_drive_lists(drive, 1)) {
  407. if (id->eide_dma_time > 150)
  408. goto out;
  409. xfer_mode = XFER_MW_DMA_1;
  410. func = ide_dma_on;
  411. }
  412. out:
  413. func = icside_config_if(drive, xfer_mode);
  414. return hwif->dmaproc(func, drive);
  415. }
  416. static int
  417. icside_dma_verbose(ide_drive_t *drive)
  418. {
  419. printk(", DMA");
  420. return 1;
  421. }
  422. static int
  423. icside_dmaproc(ide_dma_action_t func, ide_drive_t *drive)
  424. {
  425. ide_hwif_t *hwif = HWIF(drive);
  426. int count, reading = 0;
  427. switch (func) {
  428. case ide_dma_off:
  429. printk("%s: DMA disabledn", drive->name);
  430. /*FALLTHROUGH*/
  431. case ide_dma_off_quietly:
  432. case ide_dma_on:
  433. drive->using_dma = (func == ide_dma_on);
  434. return 0;
  435. case ide_dma_check:
  436. return icside_dma_check(drive);
  437. case ide_dma_read:
  438. reading = 1;
  439. case ide_dma_write:
  440. count = icside_build_dmatable(drive, reading);
  441. if (!count)
  442. return 1;
  443. disable_dma(hwif->hw.dma);
  444. /* Route the DMA signals to
  445.  * to the correct interface.
  446.  */
  447. outb(hwif->select_data, hwif->config_data);
  448. /* Select the correct timing
  449.  * for this drive
  450.  */
  451. set_dma_speed(hwif->hw.dma, drive->drive_data);
  452. set_dma_sg(hwif->hw.dma, HWIF(drive)->sg_table, count);
  453. set_dma_mode(hwif->hw.dma, reading ? DMA_MODE_READ
  454.      : DMA_MODE_WRITE);
  455. drive->waiting_for_dma = 1;
  456. if (drive->media != ide_disk)
  457. return 0;
  458. ide_set_handler(drive, &icside_dmaintr, WAIT_CMD, NULL);
  459. OUT_BYTE(reading ? WIN_READDMA : WIN_WRITEDMA,
  460.  IDE_COMMAND_REG);
  461. case ide_dma_begin:
  462. enable_dma(hwif->hw.dma);
  463. return 0;
  464. case ide_dma_end:
  465. drive->waiting_for_dma = 0;
  466. disable_dma(hwif->hw.dma);
  467. icside_destroy_dmatable(drive);
  468. return get_dma_residue(hwif->hw.dma) != 0;
  469. case ide_dma_test_irq:
  470. return inb((unsigned long)hwif->hw.priv) & 1;
  471. case ide_dma_bad_drive:
  472. case ide_dma_good_drive:
  473. return check_drive_lists(drive, (func == ide_dma_good_drive));
  474. case ide_dma_verbose:
  475. return icside_dma_verbose(drive);
  476. case ide_dma_timeout:
  477. default:
  478. printk("icside_dmaproc: unsupported %s func: %dn",
  479. ide_dmafunc_verbose(func), func);
  480. }
  481. return 1;
  482. }
  483. static int
  484. icside_setup_dma(ide_hwif_t *hwif, int autodma)
  485. {
  486. printk("    %s: SG-DMA", hwif->name);
  487. hwif->sg_table = kmalloc(sizeof(struct scatterlist) * NR_ENTRIES,
  488.  GFP_KERNEL);
  489. if (!hwif->sg_table)
  490. goto failed;
  491. hwif->dmatable_cpu = NULL;
  492. hwif->dmatable_dma = 0;
  493. hwif->speedproc = icside_set_speed;
  494. hwif->dmaproc = icside_dmaproc;
  495. hwif->autodma = autodma;
  496. printk(" capable%sn", autodma ?
  497. ", auto-enable" : "");
  498. return 1;
  499. failed:
  500. printk(" -- ERROR, unable to allocate DMA tablen");
  501. return 0;
  502. }
  503. #endif
  504. static ide_hwif_t *
  505. icside_find_hwif(unsigned long dataport)
  506. {
  507. ide_hwif_t *hwif;
  508. int index;
  509. for (index = 0; index < MAX_HWIFS; ++index) {
  510. hwif = &ide_hwifs[index];
  511. if (hwif->io_ports[IDE_DATA_OFFSET] == (ide_ioreg_t)dataport)
  512. goto found;
  513. }
  514. for (index = 0; index < MAX_HWIFS; ++index) {
  515. hwif = &ide_hwifs[index];
  516. if (!hwif->io_ports[IDE_DATA_OFFSET])
  517. goto found;
  518. }
  519. return NULL;
  520. found:
  521. return hwif;
  522. }
  523. static ide_hwif_t *
  524. icside_setup(unsigned long base, struct cardinfo *info, int irq)
  525. {
  526. unsigned long port = base + info->dataoffset;
  527. ide_hwif_t *hwif;
  528. hwif = icside_find_hwif(base);
  529. if (hwif) {
  530. int i;
  531. memset(&hwif->hw, 0, sizeof(hw_regs_t));
  532. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
  533. hwif->hw.io_ports[i] = (ide_ioreg_t)port;
  534. hwif->io_ports[i] = (ide_ioreg_t)port;
  535. port += 1 << info->stepping;
  536. }
  537. hwif->hw.io_ports[IDE_CONTROL_OFFSET] = base + info->ctrloffset;
  538. hwif->io_ports[IDE_CONTROL_OFFSET] = base + info->ctrloffset;
  539. hwif->hw.irq  = irq;
  540. hwif->irq     = irq;
  541. hwif->hw.dma  = NO_DMA;
  542. hwif->noprobe = 0;
  543. hwif->chipset = ide_acorn;
  544. }
  545. return hwif;
  546. }
  547. static int __init icside_register_v5(struct expansion_card *ec, int autodma)
  548. {
  549. unsigned long slot_port;
  550. ide_hwif_t *hwif;
  551. slot_port = ecard_address(ec, ECARD_MEMC, 0);
  552. ec->irqaddr  = (unsigned char *)ioaddr(slot_port + ICS_ARCIN_V5_INTRSTAT);
  553. ec->irqmask  = 1;
  554. ec->irq_data = (void *)slot_port;
  555. ec->ops      = (expansioncard_ops_t *)&icside_ops_arcin_v5;
  556. /*
  557.  * Be on the safe side - disable interrupts
  558.  */
  559. inb(slot_port + ICS_ARCIN_V5_INTROFFSET);
  560. hwif = icside_setup(slot_port, &icside_cardinfo_v5, ec->irq);
  561. return hwif ? 0 : -1;
  562. }
  563. static int __init icside_register_v6(struct expansion_card *ec, int autodma)
  564. {
  565. unsigned long slot_port, port;
  566. ide_hwif_t *hwif, *mate;
  567. int sel = 0;
  568. slot_port = ecard_address(ec, ECARD_IOC, ECARD_FAST);
  569. port      = ecard_address(ec, ECARD_EASI, ECARD_FAST);
  570. if (port == 0)
  571. port = slot_port;
  572. else
  573. sel = 1 << 5;
  574. outb(sel, slot_port);
  575. ec->irq_data = (void *)port;
  576. ec->ops      = (expansioncard_ops_t *)&icside_ops_arcin_v6;
  577. /*
  578.  * Be on the safe side - disable interrupts
  579.  */
  580. inb(port + ICS_ARCIN_V6_INTROFFSET_1);
  581. inb(port + ICS_ARCIN_V6_INTROFFSET_2);
  582. hwif = icside_setup(port, &icside_cardinfo_v6_1, ec->irq);
  583. mate = icside_setup(port, &icside_cardinfo_v6_2, ec->irq);
  584. #ifdef CONFIG_BLK_DEV_IDEDMA_ICS
  585. if (ec->dma != NO_DMA) {
  586. if (request_dma(ec->dma, hwif->name))
  587. goto no_dma;
  588. if (hwif) {
  589. hwif->config_data = slot_port;
  590. hwif->select_data = sel;
  591. hwif->hw.dma  = ec->dma;
  592. hwif->hw.priv = (void *)
  593. (port + ICS_ARCIN_V6_INTRSTAT_1);
  594. hwif->channel = 0;
  595. icside_setup_dma(hwif, autodma);
  596. }
  597. if (mate) {
  598. mate->config_data = slot_port;
  599. mate->select_data = sel | 1;
  600. mate->hw.dma  = ec->dma;
  601. mate->hw.priv = (void *)
  602. (port + ICS_ARCIN_V6_INTRSTAT_2);
  603. mate->channel = 1;
  604. icside_setup_dma(mate, autodma);
  605. }
  606. }
  607. no_dma:
  608. #endif
  609. return hwif || mate ? 0 : -1;
  610. }
  611. int __init icside_init(void)
  612. {
  613. int autodma = 0;
  614. #ifdef CONFIG_IDEDMA_ICS_AUTO
  615. autodma = 1;
  616. #endif
  617. ecard_startfind ();
  618. do {
  619. struct expansion_card *ec;
  620. int result;
  621. ec = ecard_find(0, icside_cids);
  622. if (ec == NULL)
  623. break;
  624. ecard_claim(ec);
  625. switch (icside_identifyif(ec)) {
  626. case ics_if_arcin_v5:
  627. result = icside_register_v5(ec, autodma);
  628. break;
  629. case ics_if_arcin_v6:
  630. result = icside_register_v6(ec, autodma);
  631. break;
  632. default:
  633. result = -1;
  634. break;
  635. }
  636. if (result)
  637. ecard_release(ec);
  638. } while (1);
  639. return 0;
  640. }