sgiioc4.c 20 KB

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