sgiioc4.c 19 KB

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