sgiioc4.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. /*
  2. * Copyright (c) 2003-2006 Silicon Graphics, Inc. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of version 2 of the GNU General Public License
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it would be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. *
  12. * You should have received a copy of the GNU General Public
  13. * License along with this program; if not, write the Free Software
  14. * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  15. *
  16. * For further information regarding this notice, see:
  17. *
  18. * http://oss.sgi.com/projects/GenInfo/NoticeExplan
  19. */
  20. #include <linux/module.h>
  21. #include <linux/types.h>
  22. #include <linux/pci.h>
  23. #include <linux/delay.h>
  24. #include <linux/hdreg.h>
  25. #include <linux/init.h>
  26. #include <linux/kernel.h>
  27. #include <linux/timer.h>
  28. #include <linux/mm.h>
  29. #include <linux/ioport.h>
  30. #include <linux/blkdev.h>
  31. #include <linux/ioc4.h>
  32. #include <asm/io.h>
  33. #include <linux/ide.h>
  34. /* IOC4 Specific Definitions */
  35. #define IOC4_CMD_OFFSET 0x100
  36. #define IOC4_CTRL_OFFSET 0x120
  37. #define IOC4_DMA_OFFSET 0x140
  38. #define IOC4_INTR_OFFSET 0x0
  39. #define IOC4_TIMING 0x00
  40. #define IOC4_DMA_PTR_L 0x01
  41. #define IOC4_DMA_PTR_H 0x02
  42. #define IOC4_DMA_ADDR_L 0x03
  43. #define IOC4_DMA_ADDR_H 0x04
  44. #define IOC4_BC_DEV 0x05
  45. #define IOC4_BC_MEM 0x06
  46. #define IOC4_DMA_CTRL 0x07
  47. #define IOC4_DMA_END_ADDR 0x08
  48. /* Bits in the IOC4 Control/Status Register */
  49. #define IOC4_S_DMA_START 0x01
  50. #define IOC4_S_DMA_STOP 0x02
  51. #define IOC4_S_DMA_DIR 0x04
  52. #define IOC4_S_DMA_ACTIVE 0x08
  53. #define IOC4_S_DMA_ERROR 0x10
  54. #define IOC4_ATA_MEMERR 0x02
  55. /* Read/Write Directions */
  56. #define IOC4_DMA_WRITE 0x04
  57. #define IOC4_DMA_READ 0x00
  58. /* Interrupt Register Offsets */
  59. #define IOC4_INTR_REG 0x03
  60. #define IOC4_INTR_SET 0x05
  61. #define IOC4_INTR_CLEAR 0x07
  62. #define IOC4_IDE_CACHELINE_SIZE 128
  63. #define IOC4_CMD_CTL_BLK_SIZE 0x20
  64. #define IOC4_SUPPORTED_FIRMWARE_REV 46
  65. typedef struct {
  66. u32 timing_reg0;
  67. u32 timing_reg1;
  68. u32 low_mem_ptr;
  69. u32 high_mem_ptr;
  70. u32 low_mem_addr;
  71. u32 high_mem_addr;
  72. u32 dev_byte_count;
  73. u32 mem_byte_count;
  74. u32 status;
  75. } ioc4_dma_regs_t;
  76. /* Each Physical Region Descriptor Entry size is 16 bytes (2 * 64 bits) */
  77. /* IOC4 has only 1 IDE channel */
  78. #define IOC4_PRD_BYTES 16
  79. #define IOC4_PRD_ENTRIES (PAGE_SIZE /(4*IOC4_PRD_BYTES))
  80. static void
  81. sgiioc4_init_hwif_ports(hw_regs_t * hw, unsigned long data_port,
  82. unsigned long ctrl_port, unsigned long irq_port)
  83. {
  84. unsigned long reg = data_port;
  85. int i;
  86. /* Registers are word (32 bit) aligned */
  87. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++)
  88. hw->io_ports[i] = reg + i * 4;
  89. if (ctrl_port)
  90. hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port;
  91. if (irq_port)
  92. hw->io_ports[IDE_IRQ_OFFSET] = irq_port;
  93. }
  94. static void
  95. sgiioc4_maskproc(ide_drive_t * drive, int mask)
  96. {
  97. ide_hwif_t *hwif = HWIF(drive);
  98. hwif->OUTB(mask ? (drive->ctl | 2) : (drive->ctl & ~2),
  99. IDE_CONTROL_REG);
  100. }
  101. static int
  102. sgiioc4_checkirq(ide_hwif_t * hwif)
  103. {
  104. u8 intr_reg =
  105. hwif->INL(hwif->io_ports[IDE_IRQ_OFFSET] + IOC4_INTR_REG * 4);
  106. if (intr_reg & 0x03)
  107. return 1;
  108. return 0;
  109. }
  110. static int
  111. sgiioc4_clearirq(ide_drive_t * drive)
  112. {
  113. u32 intr_reg;
  114. ide_hwif_t *hwif = HWIF(drive);
  115. unsigned long other_ir =
  116. hwif->io_ports[IDE_IRQ_OFFSET] + (IOC4_INTR_REG << 2);
  117. /* Code to check for PCI error conditions */
  118. intr_reg = hwif->INL(other_ir);
  119. if (intr_reg & 0x03) { /* Valid IOC4-IDE interrupt */
  120. /*
  121. * Using hwif->INB to read the IDE_STATUS_REG has a side effect
  122. * of clearing the interrupt. The first read should clear it
  123. * if it is set. The second read should return a "clear" status
  124. * if it got cleared. If not, then spin for a bit trying to
  125. * clear it.
  126. */
  127. u8 stat = hwif->INB(IDE_STATUS_REG);
  128. int count = 0;
  129. stat = hwif->INB(IDE_STATUS_REG);
  130. while ((stat & 0x80) && (count++ < 100)) {
  131. udelay(1);
  132. stat = hwif->INB(IDE_STATUS_REG);
  133. }
  134. if (intr_reg & 0x02) {
  135. /* Error when transferring DMA data on PCI bus */
  136. u32 pci_err_addr_low, pci_err_addr_high,
  137. pci_stat_cmd_reg;
  138. pci_err_addr_low =
  139. hwif->INL(hwif->io_ports[IDE_IRQ_OFFSET]);
  140. pci_err_addr_high =
  141. hwif->INL(hwif->io_ports[IDE_IRQ_OFFSET] + 4);
  142. pci_read_config_dword(hwif->pci_dev, PCI_COMMAND,
  143. &pci_stat_cmd_reg);
  144. printk(KERN_ERR
  145. "%s(%s) : PCI Bus Error when doing DMA:"
  146. " status-cmd reg is 0x%x\n",
  147. __FUNCTION__, drive->name, pci_stat_cmd_reg);
  148. printk(KERN_ERR
  149. "%s(%s) : PCI Error Address is 0x%x%x\n",
  150. __FUNCTION__, drive->name,
  151. pci_err_addr_high, pci_err_addr_low);
  152. /* Clear the PCI Error indicator */
  153. pci_write_config_dword(hwif->pci_dev, PCI_COMMAND,
  154. 0x00000146);
  155. }
  156. /* Clear the Interrupt, Error bits on the IOC4 */
  157. hwif->OUTL(0x03, other_ir);
  158. intr_reg = hwif->INL(other_ir);
  159. }
  160. return intr_reg & 3;
  161. }
  162. static void sgiioc4_ide_dma_start(ide_drive_t * drive)
  163. {
  164. ide_hwif_t *hwif = HWIF(drive);
  165. unsigned int reg = hwif->INL(hwif->dma_base + IOC4_DMA_CTRL * 4);
  166. unsigned int temp_reg = reg | IOC4_S_DMA_START;
  167. hwif->OUTL(temp_reg, hwif->dma_base + IOC4_DMA_CTRL * 4);
  168. }
  169. static u32
  170. sgiioc4_ide_dma_stop(ide_hwif_t *hwif, u64 dma_base)
  171. {
  172. u32 ioc4_dma;
  173. int count;
  174. count = 0;
  175. ioc4_dma = hwif->INL(dma_base + IOC4_DMA_CTRL * 4);
  176. while ((ioc4_dma & IOC4_S_DMA_STOP) && (count++ < 200)) {
  177. udelay(1);
  178. ioc4_dma = hwif->INL(dma_base + IOC4_DMA_CTRL * 4);
  179. }
  180. return ioc4_dma;
  181. }
  182. /* Stops the IOC4 DMA Engine */
  183. static int
  184. sgiioc4_ide_dma_end(ide_drive_t * drive)
  185. {
  186. u32 ioc4_dma, bc_dev, bc_mem, num, valid = 0, cnt = 0;
  187. ide_hwif_t *hwif = HWIF(drive);
  188. u64 dma_base = hwif->dma_base;
  189. int dma_stat = 0;
  190. unsigned long *ending_dma = ide_get_hwifdata(hwif);
  191. hwif->OUTL(IOC4_S_DMA_STOP, dma_base + IOC4_DMA_CTRL * 4);
  192. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  193. if (ioc4_dma & IOC4_S_DMA_STOP) {
  194. printk(KERN_ERR
  195. "%s(%s): IOC4 DMA STOP bit is still 1 :"
  196. "ioc4_dma_reg 0x%x\n",
  197. __FUNCTION__, drive->name, ioc4_dma);
  198. dma_stat = 1;
  199. }
  200. /*
  201. * The IOC4 will DMA 1's to the ending dma area to indicate that
  202. * previous data DMA is complete. This is necessary because of relaxed
  203. * ordering between register reads and DMA writes on the Altix.
  204. */
  205. while ((cnt++ < 200) && (!valid)) {
  206. for (num = 0; num < 16; num++) {
  207. if (ending_dma[num]) {
  208. valid = 1;
  209. break;
  210. }
  211. }
  212. udelay(1);
  213. }
  214. if (!valid) {
  215. printk(KERN_ERR "%s(%s) : DMA incomplete\n", __FUNCTION__,
  216. drive->name);
  217. dma_stat = 1;
  218. }
  219. bc_dev = hwif->INL(dma_base + IOC4_BC_DEV * 4);
  220. bc_mem = hwif->INL(dma_base + IOC4_BC_MEM * 4);
  221. if ((bc_dev & 0x01FF) || (bc_mem & 0x1FF)) {
  222. if (bc_dev > bc_mem + 8) {
  223. printk(KERN_ERR
  224. "%s(%s): WARNING!! byte_count_dev %d "
  225. "!= byte_count_mem %d\n",
  226. __FUNCTION__, drive->name, bc_dev, bc_mem);
  227. }
  228. }
  229. drive->waiting_for_dma = 0;
  230. ide_destroy_dmatable(drive);
  231. return dma_stat;
  232. }
  233. static int
  234. sgiioc4_ide_dma_check(ide_drive_t * drive)
  235. {
  236. if (ide_config_drive_speed(drive, XFER_MW_DMA_2) != 0) {
  237. printk(KERN_INFO
  238. "Couldnot set %s in Multimode-2 DMA mode | "
  239. "Drive %s using PIO instead\n",
  240. drive->name, drive->name);
  241. drive->using_dma = 0;
  242. } else
  243. drive->using_dma = 1;
  244. return 0;
  245. }
  246. static int
  247. sgiioc4_ide_dma_on(ide_drive_t * drive)
  248. {
  249. drive->using_dma = 1;
  250. return HWIF(drive)->ide_dma_host_on(drive);
  251. }
  252. static int
  253. sgiioc4_ide_dma_off_quietly(ide_drive_t * drive)
  254. {
  255. drive->using_dma = 0;
  256. return HWIF(drive)->ide_dma_host_off(drive);
  257. }
  258. /* returns 1 if dma irq issued, 0 otherwise */
  259. static int
  260. sgiioc4_ide_dma_test_irq(ide_drive_t * drive)
  261. {
  262. return sgiioc4_checkirq(HWIF(drive));
  263. }
  264. static int
  265. sgiioc4_ide_dma_host_on(ide_drive_t * drive)
  266. {
  267. if (drive->using_dma)
  268. return 0;
  269. return 1;
  270. }
  271. static int
  272. sgiioc4_ide_dma_host_off(ide_drive_t * drive)
  273. {
  274. sgiioc4_clearirq(drive);
  275. return 0;
  276. }
  277. static int
  278. sgiioc4_ide_dma_lostirq(ide_drive_t * drive)
  279. {
  280. HWIF(drive)->resetproc(drive);
  281. return __ide_dma_lostirq(drive);
  282. }
  283. static void
  284. sgiioc4_resetproc(ide_drive_t * drive)
  285. {
  286. sgiioc4_ide_dma_end(drive);
  287. sgiioc4_clearirq(drive);
  288. }
  289. static u8
  290. sgiioc4_INB(unsigned long port)
  291. {
  292. u8 reg = (u8) readb((void __iomem *) port);
  293. if ((port & 0xFFF) == 0x11C) { /* Status register of IOC4 */
  294. if (reg & 0x51) { /* Not busy...check for interrupt */
  295. unsigned long other_ir = port - 0x110;
  296. unsigned int intr_reg = (u32) readl((void __iomem *) other_ir);
  297. /* Clear the Interrupt, Error bits on the IOC4 */
  298. if (intr_reg & 0x03) {
  299. writel(0x03, (void __iomem *) other_ir);
  300. intr_reg = (u32) readl((void __iomem *) other_ir);
  301. }
  302. }
  303. }
  304. return reg;
  305. }
  306. /* Creates a dma map for the scatter-gather list entries */
  307. static void __devinit
  308. ide_dma_sgiioc4(ide_hwif_t * hwif, unsigned long dma_base)
  309. {
  310. void __iomem *virt_dma_base;
  311. int num_ports = sizeof (ioc4_dma_regs_t);
  312. void *pad;
  313. printk(KERN_INFO "%s: BM-DMA at 0x%04lx-0x%04lx\n", hwif->name,
  314. dma_base, dma_base + num_ports - 1);
  315. if (!request_mem_region(dma_base, num_ports, hwif->name)) {
  316. printk(KERN_ERR
  317. "%s(%s) -- ERROR, Addresses 0x%p to 0x%p "
  318. "ALREADY in use\n",
  319. __FUNCTION__, hwif->name, (void *) dma_base,
  320. (void *) dma_base + num_ports - 1);
  321. goto dma_alloc_failure;
  322. }
  323. virt_dma_base = ioremap(dma_base, num_ports);
  324. if (virt_dma_base == NULL) {
  325. printk(KERN_ERR
  326. "%s(%s) -- ERROR, Unable to map addresses 0x%lx to 0x%lx\n",
  327. __FUNCTION__, hwif->name, dma_base, dma_base + num_ports - 1);
  328. goto dma_remap_failure;
  329. }
  330. hwif->dma_base = (unsigned long) virt_dma_base;
  331. hwif->dmatable_cpu = pci_alloc_consistent(hwif->pci_dev,
  332. IOC4_PRD_ENTRIES * IOC4_PRD_BYTES,
  333. &hwif->dmatable_dma);
  334. if (!hwif->dmatable_cpu)
  335. goto dma_pci_alloc_failure;
  336. hwif->sg_max_nents = IOC4_PRD_ENTRIES;
  337. pad = pci_alloc_consistent(hwif->pci_dev, IOC4_IDE_CACHELINE_SIZE,
  338. (dma_addr_t *) &(hwif->dma_status));
  339. if (pad) {
  340. ide_set_hwifdata(hwif, pad);
  341. return;
  342. }
  343. pci_free_consistent(hwif->pci_dev,
  344. IOC4_PRD_ENTRIES * IOC4_PRD_BYTES,
  345. hwif->dmatable_cpu, hwif->dmatable_dma);
  346. printk(KERN_INFO
  347. "%s() -- Error! Unable to allocate DMA Maps for drive %s\n",
  348. __FUNCTION__, hwif->name);
  349. printk(KERN_INFO
  350. "Changing from DMA to PIO mode for Drive %s\n", hwif->name);
  351. dma_pci_alloc_failure:
  352. iounmap(virt_dma_base);
  353. dma_remap_failure:
  354. release_mem_region(dma_base, num_ports);
  355. dma_alloc_failure:
  356. /* Disable DMA because we couldnot allocate any DMA maps */
  357. hwif->autodma = 0;
  358. hwif->atapi_dma = 0;
  359. }
  360. /* Initializes the IOC4 DMA Engine */
  361. static void
  362. sgiioc4_configure_for_dma(int dma_direction, ide_drive_t * drive)
  363. {
  364. u32 ioc4_dma;
  365. ide_hwif_t *hwif = HWIF(drive);
  366. u64 dma_base = hwif->dma_base;
  367. u32 dma_addr, ending_dma_addr;
  368. ioc4_dma = hwif->INL(dma_base + IOC4_DMA_CTRL * 4);
  369. if (ioc4_dma & IOC4_S_DMA_ACTIVE) {
  370. printk(KERN_WARNING
  371. "%s(%s):Warning!! DMA from previous transfer was still active\n",
  372. __FUNCTION__, drive->name);
  373. hwif->OUTL(IOC4_S_DMA_STOP, dma_base + IOC4_DMA_CTRL * 4);
  374. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  375. if (ioc4_dma & IOC4_S_DMA_STOP)
  376. printk(KERN_ERR
  377. "%s(%s) : IOC4 Dma STOP bit is still 1\n",
  378. __FUNCTION__, drive->name);
  379. }
  380. ioc4_dma = hwif->INL(dma_base + IOC4_DMA_CTRL * 4);
  381. if (ioc4_dma & IOC4_S_DMA_ERROR) {
  382. printk(KERN_WARNING
  383. "%s(%s) : Warning!! - DMA Error during Previous"
  384. " transfer | status 0x%x\n",
  385. __FUNCTION__, drive->name, ioc4_dma);
  386. hwif->OUTL(IOC4_S_DMA_STOP, dma_base + IOC4_DMA_CTRL * 4);
  387. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  388. if (ioc4_dma & IOC4_S_DMA_STOP)
  389. printk(KERN_ERR
  390. "%s(%s) : IOC4 DMA STOP bit is still 1\n",
  391. __FUNCTION__, drive->name);
  392. }
  393. /* Address of the Scatter Gather List */
  394. dma_addr = cpu_to_le32(hwif->dmatable_dma);
  395. hwif->OUTL(dma_addr, dma_base + IOC4_DMA_PTR_L * 4);
  396. /* Address of the Ending DMA */
  397. memset(ide_get_hwifdata(hwif), 0, IOC4_IDE_CACHELINE_SIZE);
  398. ending_dma_addr = cpu_to_le32(hwif->dma_status);
  399. hwif->OUTL(ending_dma_addr, dma_base + IOC4_DMA_END_ADDR * 4);
  400. hwif->OUTL(dma_direction, dma_base + IOC4_DMA_CTRL * 4);
  401. drive->waiting_for_dma = 1;
  402. }
  403. /* IOC4 Scatter Gather list Format */
  404. /* 128 Bit entries to support 64 bit addresses in the future */
  405. /* The Scatter Gather list Entry should be in the BIG-ENDIAN Format */
  406. /* --------------------------------------------------------------------- */
  407. /* | Upper 32 bits - Zero | Lower 32 bits- address | */
  408. /* --------------------------------------------------------------------- */
  409. /* | Upper 32 bits - Zero |EOL| 15 unused | 16 Bit Length| */
  410. /* --------------------------------------------------------------------- */
  411. /* Creates the scatter gather list, DMA Table */
  412. static unsigned int
  413. sgiioc4_build_dma_table(ide_drive_t * drive, struct request *rq, int ddir)
  414. {
  415. ide_hwif_t *hwif = HWIF(drive);
  416. unsigned int *table = hwif->dmatable_cpu;
  417. unsigned int count = 0, i = 1;
  418. struct scatterlist *sg;
  419. hwif->sg_nents = i = ide_build_sglist(drive, rq);
  420. if (!i)
  421. return 0; /* sglist of length Zero */
  422. sg = hwif->sg_table;
  423. while (i && sg_dma_len(sg)) {
  424. dma_addr_t cur_addr;
  425. int cur_len;
  426. cur_addr = sg_dma_address(sg);
  427. cur_len = sg_dma_len(sg);
  428. while (cur_len) {
  429. if (count++ >= IOC4_PRD_ENTRIES) {
  430. printk(KERN_WARNING
  431. "%s: DMA table too small\n",
  432. drive->name);
  433. goto use_pio_instead;
  434. } else {
  435. u32 bcount =
  436. 0x10000 - (cur_addr & 0xffff);
  437. if (bcount > cur_len)
  438. bcount = cur_len;
  439. /* put the addr, length in
  440. * the IOC4 dma-table format */
  441. *table = 0x0;
  442. table++;
  443. *table = cpu_to_be32(cur_addr);
  444. table++;
  445. *table = 0x0;
  446. table++;
  447. *table = cpu_to_be32(bcount);
  448. table++;
  449. cur_addr += bcount;
  450. cur_len -= bcount;
  451. }
  452. }
  453. sg++;
  454. i--;
  455. }
  456. if (count) {
  457. table--;
  458. *table |= cpu_to_be32(0x80000000);
  459. return count;
  460. }
  461. use_pio_instead:
  462. pci_unmap_sg(hwif->pci_dev, hwif->sg_table, hwif->sg_nents,
  463. hwif->sg_dma_direction);
  464. return 0; /* revert to PIO for this request */
  465. }
  466. static int sgiioc4_ide_dma_setup(ide_drive_t *drive)
  467. {
  468. struct request *rq = HWGROUP(drive)->rq;
  469. unsigned int count = 0;
  470. int ddir;
  471. if (rq_data_dir(rq))
  472. ddir = PCI_DMA_TODEVICE;
  473. else
  474. ddir = PCI_DMA_FROMDEVICE;
  475. if (!(count = sgiioc4_build_dma_table(drive, rq, ddir))) {
  476. /* try PIO instead of DMA */
  477. ide_map_sg(drive, rq);
  478. return 1;
  479. }
  480. if (rq_data_dir(rq))
  481. /* Writes TO the IOC4 FROM Main Memory */
  482. ddir = IOC4_DMA_READ;
  483. else
  484. /* Writes FROM the IOC4 TO Main Memory */
  485. ddir = IOC4_DMA_WRITE;
  486. sgiioc4_configure_for_dma(ddir, drive);
  487. return 0;
  488. }
  489. static void __devinit
  490. ide_init_sgiioc4(ide_hwif_t * hwif)
  491. {
  492. hwif->mmio = 2;
  493. hwif->autodma = 1;
  494. hwif->atapi_dma = 1;
  495. hwif->ultra_mask = 0x0; /* Disable Ultra DMA */
  496. hwif->mwdma_mask = 0x2; /* Multimode-2 DMA */
  497. hwif->swdma_mask = 0x2;
  498. hwif->tuneproc = NULL; /* Sets timing for PIO mode */
  499. hwif->speedproc = NULL; /* Sets timing for DMA &/or PIO modes */
  500. hwif->selectproc = NULL;/* Use the default routine to select drive */
  501. hwif->reset_poll = NULL;/* No HBA specific reset_poll needed */
  502. hwif->pre_reset = NULL; /* No HBA specific pre_set needed */
  503. hwif->resetproc = &sgiioc4_resetproc;/* Reset DMA engine,
  504. clear interrupts */
  505. hwif->intrproc = NULL; /* Enable or Disable interrupt from drive */
  506. hwif->maskproc = &sgiioc4_maskproc; /* Mask on/off NIEN register */
  507. hwif->quirkproc = NULL;
  508. hwif->busproc = NULL;
  509. hwif->dma_setup = &sgiioc4_ide_dma_setup;
  510. hwif->dma_start = &sgiioc4_ide_dma_start;
  511. hwif->ide_dma_end = &sgiioc4_ide_dma_end;
  512. hwif->ide_dma_check = &sgiioc4_ide_dma_check;
  513. hwif->ide_dma_on = &sgiioc4_ide_dma_on;
  514. hwif->ide_dma_off_quietly = &sgiioc4_ide_dma_off_quietly;
  515. hwif->ide_dma_test_irq = &sgiioc4_ide_dma_test_irq;
  516. hwif->ide_dma_host_on = &sgiioc4_ide_dma_host_on;
  517. hwif->ide_dma_host_off = &sgiioc4_ide_dma_host_off;
  518. hwif->ide_dma_lostirq = &sgiioc4_ide_dma_lostirq;
  519. hwif->ide_dma_timeout = &__ide_dma_timeout;
  520. hwif->INB = &sgiioc4_INB;
  521. }
  522. static int __devinit
  523. sgiioc4_ide_setup_pci_device(struct pci_dev *dev, ide_pci_device_t * d)
  524. {
  525. unsigned long cmd_base, dma_base, irqport;
  526. unsigned long bar0, cmd_phys_base, ctl;
  527. void __iomem *virt_base;
  528. ide_hwif_t *hwif;
  529. int h;
  530. /*
  531. * Find an empty HWIF; if none available, return -ENOMEM.
  532. */
  533. for (h = 0; h < MAX_HWIFS; ++h) {
  534. hwif = &ide_hwifs[h];
  535. if (hwif->chipset == ide_unknown)
  536. break;
  537. }
  538. if (h == MAX_HWIFS) {
  539. printk(KERN_ERR "%s: too many IDE interfaces, no room in table\n", d->name);
  540. return -ENOMEM;
  541. }
  542. /* Get the CmdBlk and CtrlBlk Base Registers */
  543. bar0 = pci_resource_start(dev, 0);
  544. virt_base = ioremap(bar0, pci_resource_len(dev, 0));
  545. if (virt_base == NULL) {
  546. printk(KERN_ERR "%s: Unable to remap BAR 0 address: 0x%lx\n",
  547. d->name, bar0);
  548. return -ENOMEM;
  549. }
  550. cmd_base = (unsigned long) virt_base + IOC4_CMD_OFFSET;
  551. ctl = (unsigned long) virt_base + IOC4_CTRL_OFFSET;
  552. irqport = (unsigned long) virt_base + IOC4_INTR_OFFSET;
  553. dma_base = pci_resource_start(dev, 0) + IOC4_DMA_OFFSET;
  554. cmd_phys_base = bar0 + IOC4_CMD_OFFSET;
  555. if (!request_mem_region(cmd_phys_base, IOC4_CMD_CTL_BLK_SIZE,
  556. hwif->name)) {
  557. printk(KERN_ERR
  558. "%s : %s -- ERROR, Addresses "
  559. "0x%p to 0x%p ALREADY in use\n",
  560. __FUNCTION__, hwif->name, (void *) cmd_phys_base,
  561. (void *) cmd_phys_base + IOC4_CMD_CTL_BLK_SIZE);
  562. return -ENOMEM;
  563. }
  564. if (hwif->io_ports[IDE_DATA_OFFSET] != cmd_base) {
  565. /* Initialize the IO registers */
  566. sgiioc4_init_hwif_ports(&hwif->hw, cmd_base, ctl, irqport);
  567. memcpy(hwif->io_ports, hwif->hw.io_ports,
  568. sizeof (hwif->io_ports));
  569. hwif->noprobe = !hwif->io_ports[IDE_DATA_OFFSET];
  570. }
  571. hwif->irq = dev->irq;
  572. hwif->chipset = ide_pci;
  573. hwif->pci_dev = dev;
  574. hwif->channel = 0; /* Single Channel chip */
  575. hwif->cds = (struct ide_pci_device_s *) d;
  576. hwif->gendev.parent = &dev->dev;/* setup proper ancestral information */
  577. /* The IOC4 uses MMIO rather than Port IO. */
  578. default_hwif_mmiops(hwif);
  579. /* Initializing chipset IRQ Registers */
  580. hwif->OUTL(0x03, irqport + IOC4_INTR_SET * 4);
  581. ide_init_sgiioc4(hwif);
  582. if (dma_base)
  583. ide_dma_sgiioc4(hwif, dma_base);
  584. else
  585. printk(KERN_INFO "%s: %s Bus-Master DMA disabled\n",
  586. hwif->name, d->name);
  587. if (probe_hwif_init(hwif))
  588. return -EIO;
  589. /* Create /proc/ide entries */
  590. create_proc_ide_interfaces();
  591. return 0;
  592. }
  593. static unsigned int __devinit
  594. pci_init_sgiioc4(struct pci_dev *dev, ide_pci_device_t * d)
  595. {
  596. unsigned int class_rev;
  597. int ret;
  598. pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
  599. class_rev &= 0xff;
  600. printk(KERN_INFO "%s: IDE controller at PCI slot %s, revision %d\n",
  601. d->name, pci_name(dev), class_rev);
  602. if (class_rev < IOC4_SUPPORTED_FIRMWARE_REV) {
  603. printk(KERN_ERR "Skipping %s IDE controller in slot %s: "
  604. "firmware is obsolete - please upgrade to revision"
  605. "46 or higher\n", d->name, pci_name(dev));
  606. ret = -EAGAIN;
  607. goto out;
  608. }
  609. ret = sgiioc4_ide_setup_pci_device(dev, d);
  610. out:
  611. return ret;
  612. }
  613. static ide_pci_device_t sgiioc4_chipsets[] __devinitdata = {
  614. {
  615. /* Channel 0 */
  616. .name = "SGIIOC4",
  617. .init_hwif = ide_init_sgiioc4,
  618. .init_dma = ide_dma_sgiioc4,
  619. .channels = 1,
  620. .autodma = AUTODMA,
  621. /* SGI IOC4 doesn't have enablebits. */
  622. .bootable = ON_BOARD,
  623. }
  624. };
  625. int
  626. ioc4_ide_attach_one(struct ioc4_driver_data *idd)
  627. {
  628. /* PCI-RT does not bring out IDE connection.
  629. * Do not attach to this particular IOC4.
  630. */
  631. if (idd->idd_variant == IOC4_VARIANT_PCI_RT)
  632. return 0;
  633. return pci_init_sgiioc4(idd->idd_pdev,
  634. &sgiioc4_chipsets[idd->idd_pci_id->driver_data]);
  635. }
  636. static struct ioc4_submodule ioc4_ide_submodule = {
  637. .is_name = "IOC4_ide",
  638. .is_owner = THIS_MODULE,
  639. .is_probe = ioc4_ide_attach_one,
  640. /* .is_remove = ioc4_ide_remove_one, */
  641. };
  642. static int __devinit
  643. ioc4_ide_init(void)
  644. {
  645. return ioc4_register_submodule(&ioc4_ide_submodule);
  646. }
  647. static void __devexit
  648. ioc4_ide_exit(void)
  649. {
  650. ioc4_unregister_submodule(&ioc4_ide_submodule);
  651. }
  652. late_initcall(ioc4_ide_init); /* Call only after IDE init is done */
  653. module_exit(ioc4_ide_exit);
  654. MODULE_AUTHOR("Aniket Malatpure/Jeremy Higdon");
  655. MODULE_DESCRIPTION("IDE PCI driver module for SGI IOC4 Base-IO Card");
  656. MODULE_LICENSE("GPL");