sgiioc4.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. /*
  2. * Copyright (c) 2003-2006 Silicon Graphics, Inc. All Rights Reserved.
  3. * Copyright (C) 2008-2009 MontaVista Software, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. *
  13. * You should have received a copy of the GNU General Public
  14. * License along with this program; if not, write the Free Software
  15. * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  16. *
  17. * For further information regarding this notice, see:
  18. *
  19. * http://oss.sgi.com/projects/GenInfo/NoticeExplan
  20. */
  21. #include <linux/module.h>
  22. #include <linux/types.h>
  23. #include <linux/pci.h>
  24. #include <linux/delay.h>
  25. #include <linux/init.h>
  26. #include <linux/kernel.h>
  27. #include <linux/ioport.h>
  28. #include <linux/blkdev.h>
  29. #include <linux/scatterlist.h>
  30. #include <linux/ioc4.h>
  31. #include <linux/io.h>
  32. #include <linux/ide.h>
  33. #define DRV_NAME "SGIIOC4"
  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. struct ioc4_dma_regs {
  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. };
  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 sgiioc4_init_hwif_ports(struct ide_hw *hw,
  81. unsigned long data_port,
  82. unsigned long ctrl_port,
  83. unsigned long irq_port)
  84. {
  85. unsigned long reg = data_port;
  86. int i;
  87. /* Registers are word (32 bit) aligned */
  88. for (i = 0; i <= 7; i++)
  89. hw->io_ports_array[i] = reg + i * 4;
  90. hw->io_ports.ctl_addr = ctrl_port;
  91. hw->io_ports.irq_addr = irq_port;
  92. }
  93. static int sgiioc4_checkirq(ide_hwif_t *hwif)
  94. {
  95. unsigned long intr_addr = hwif->io_ports.irq_addr + IOC4_INTR_REG * 4;
  96. if (readl((void __iomem *)intr_addr) & 0x03)
  97. return 1;
  98. return 0;
  99. }
  100. static u8 sgiioc4_read_status(ide_hwif_t *);
  101. static int sgiioc4_clearirq(ide_drive_t *drive)
  102. {
  103. u32 intr_reg;
  104. ide_hwif_t *hwif = drive->hwif;
  105. struct ide_io_ports *io_ports = &hwif->io_ports;
  106. unsigned long other_ir = io_ports->irq_addr + (IOC4_INTR_REG << 2);
  107. /* Code to check for PCI error conditions */
  108. intr_reg = readl((void __iomem *)other_ir);
  109. if (intr_reg & 0x03) { /* Valid IOC4-IDE interrupt */
  110. /*
  111. * Using sgiioc4_read_status to read the Status register has a
  112. * side effect of clearing the interrupt. The first read should
  113. * clear it if it is set. The second read should return
  114. * a "clear" status if it got cleared. If not, then spin
  115. * for a bit trying to clear it.
  116. */
  117. u8 stat = sgiioc4_read_status(hwif);
  118. int count = 0;
  119. stat = sgiioc4_read_status(hwif);
  120. while ((stat & ATA_BUSY) && (count++ < 100)) {
  121. udelay(1);
  122. stat = sgiioc4_read_status(hwif);
  123. }
  124. if (intr_reg & 0x02) {
  125. struct pci_dev *dev = to_pci_dev(hwif->dev);
  126. /* Error when transferring DMA data on PCI bus */
  127. u32 pci_err_addr_low, pci_err_addr_high,
  128. pci_stat_cmd_reg;
  129. pci_err_addr_low =
  130. readl((void __iomem *)io_ports->irq_addr);
  131. pci_err_addr_high =
  132. readl((void __iomem *)(io_ports->irq_addr + 4));
  133. pci_read_config_dword(dev, PCI_COMMAND,
  134. &pci_stat_cmd_reg);
  135. printk(KERN_ERR "%s(%s): PCI Bus Error when doing DMA: "
  136. "status-cmd reg is 0x%x\n",
  137. __func__, drive->name, pci_stat_cmd_reg);
  138. printk(KERN_ERR "%s(%s): PCI Error Address is 0x%x%x\n",
  139. __func__, drive->name,
  140. pci_err_addr_high, pci_err_addr_low);
  141. /* Clear the PCI Error indicator */
  142. pci_write_config_dword(dev, PCI_COMMAND, 0x00000146);
  143. }
  144. /* Clear the Interrupt, Error bits on the IOC4 */
  145. writel(0x03, (void __iomem *)other_ir);
  146. intr_reg = readl((void __iomem *)other_ir);
  147. }
  148. return intr_reg & 3;
  149. }
  150. static void sgiioc4_dma_start(ide_drive_t *drive)
  151. {
  152. ide_hwif_t *hwif = drive->hwif;
  153. unsigned long ioc4_dma_addr = hwif->dma_base + IOC4_DMA_CTRL * 4;
  154. unsigned int reg = readl((void __iomem *)ioc4_dma_addr);
  155. unsigned int temp_reg = reg | IOC4_S_DMA_START;
  156. writel(temp_reg, (void __iomem *)ioc4_dma_addr);
  157. }
  158. static u32 sgiioc4_ide_dma_stop(ide_hwif_t *hwif, u64 dma_base)
  159. {
  160. unsigned long ioc4_dma_addr = dma_base + IOC4_DMA_CTRL * 4;
  161. u32 ioc4_dma;
  162. int count;
  163. count = 0;
  164. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  165. while ((ioc4_dma & IOC4_S_DMA_STOP) && (count++ < 200)) {
  166. udelay(1);
  167. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  168. }
  169. return ioc4_dma;
  170. }
  171. /* Stops the IOC4 DMA Engine */
  172. static int sgiioc4_dma_end(ide_drive_t *drive)
  173. {
  174. u32 ioc4_dma, bc_dev, bc_mem, num, valid = 0, cnt = 0;
  175. ide_hwif_t *hwif = drive->hwif;
  176. unsigned long dma_base = hwif->dma_base;
  177. int dma_stat = 0;
  178. unsigned long *ending_dma = ide_get_hwifdata(hwif);
  179. writel(IOC4_S_DMA_STOP, (void __iomem *)(dma_base + IOC4_DMA_CTRL * 4));
  180. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  181. if (ioc4_dma & IOC4_S_DMA_STOP) {
  182. printk(KERN_ERR
  183. "%s(%s): IOC4 DMA STOP bit is still 1 :"
  184. "ioc4_dma_reg 0x%x\n",
  185. __func__, drive->name, ioc4_dma);
  186. dma_stat = 1;
  187. }
  188. /*
  189. * The IOC4 will DMA 1's to the ending DMA area to indicate that
  190. * previous data DMA is complete. This is necessary because of relaxed
  191. * ordering between register reads and DMA writes on the Altix.
  192. */
  193. while ((cnt++ < 200) && (!valid)) {
  194. for (num = 0; num < 16; num++) {
  195. if (ending_dma[num]) {
  196. valid = 1;
  197. break;
  198. }
  199. }
  200. udelay(1);
  201. }
  202. if (!valid) {
  203. printk(KERN_ERR "%s(%s) : DMA incomplete\n", __func__,
  204. drive->name);
  205. dma_stat = 1;
  206. }
  207. bc_dev = readl((void __iomem *)(dma_base + IOC4_BC_DEV * 4));
  208. bc_mem = readl((void __iomem *)(dma_base + IOC4_BC_MEM * 4));
  209. if ((bc_dev & 0x01FF) || (bc_mem & 0x1FF)) {
  210. if (bc_dev > bc_mem + 8) {
  211. printk(KERN_ERR
  212. "%s(%s): WARNING!! byte_count_dev %d "
  213. "!= byte_count_mem %d\n",
  214. __func__, drive->name, bc_dev, bc_mem);
  215. }
  216. }
  217. return dma_stat;
  218. }
  219. static void sgiioc4_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
  220. {
  221. }
  222. /* Returns 1 if DMA IRQ issued, 0 otherwise */
  223. static int sgiioc4_dma_test_irq(ide_drive_t *drive)
  224. {
  225. return sgiioc4_checkirq(drive->hwif);
  226. }
  227. static void sgiioc4_dma_host_set(ide_drive_t *drive, int on)
  228. {
  229. if (!on)
  230. sgiioc4_clearirq(drive);
  231. }
  232. static void sgiioc4_resetproc(ide_drive_t *drive)
  233. {
  234. struct ide_cmd *cmd = &drive->hwif->cmd;
  235. sgiioc4_dma_end(drive);
  236. ide_dma_unmap_sg(drive, cmd);
  237. sgiioc4_clearirq(drive);
  238. }
  239. static void sgiioc4_dma_lost_irq(ide_drive_t *drive)
  240. {
  241. sgiioc4_resetproc(drive);
  242. ide_dma_lost_irq(drive);
  243. }
  244. static u8 sgiioc4_read_status(ide_hwif_t *hwif)
  245. {
  246. unsigned long port = hwif->io_ports.status_addr;
  247. u8 reg = (u8) readb((void __iomem *) port);
  248. if (!(reg & ATA_BUSY)) { /* Not busy... check for interrupt */
  249. unsigned long other_ir = port - 0x110;
  250. unsigned int intr_reg = (u32) readl((void __iomem *) other_ir);
  251. /* Clear the Interrupt, Error bits on the IOC4 */
  252. if (intr_reg & 0x03) {
  253. writel(0x03, (void __iomem *) other_ir);
  254. intr_reg = (u32) readl((void __iomem *) other_ir);
  255. }
  256. }
  257. return reg;
  258. }
  259. /* Creates a DMA map for the scatter-gather list entries */
  260. static int ide_dma_sgiioc4(ide_hwif_t *hwif, const struct ide_port_info *d)
  261. {
  262. struct pci_dev *dev = to_pci_dev(hwif->dev);
  263. unsigned long dma_base = pci_resource_start(dev, 0) + IOC4_DMA_OFFSET;
  264. int num_ports = sizeof(struct ioc4_dma_regs);
  265. void *pad;
  266. printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
  267. if (request_mem_region(dma_base, num_ports, hwif->name) == NULL) {
  268. printk(KERN_ERR "%s(%s) -- ERROR: addresses 0x%08lx to 0x%08lx "
  269. "already in use\n", __func__, hwif->name,
  270. dma_base, dma_base + num_ports - 1);
  271. return -1;
  272. }
  273. hwif->dma_base = (unsigned long)hwif->io_ports.irq_addr +
  274. IOC4_DMA_OFFSET;
  275. hwif->sg_max_nents = IOC4_PRD_ENTRIES;
  276. hwif->prd_max_nents = IOC4_PRD_ENTRIES;
  277. hwif->prd_ent_size = IOC4_PRD_BYTES;
  278. if (ide_allocate_dma_engine(hwif))
  279. goto dma_pci_alloc_failure;
  280. pad = dma_alloc_coherent(&dev->dev, IOC4_IDE_CACHELINE_SIZE,
  281. (dma_addr_t *)&hwif->extra_base, GFP_KERNEL);
  282. if (pad) {
  283. ide_set_hwifdata(hwif, pad);
  284. return 0;
  285. }
  286. ide_release_dma_engine(hwif);
  287. printk(KERN_ERR "%s(%s) -- ERROR: Unable to allocate DMA maps\n",
  288. __func__, hwif->name);
  289. printk(KERN_INFO "%s: changing from DMA to PIO mode", hwif->name);
  290. dma_pci_alloc_failure:
  291. release_mem_region(dma_base, num_ports);
  292. return -1;
  293. }
  294. /* Initializes the IOC4 DMA Engine */
  295. static void sgiioc4_configure_for_dma(int dma_direction, ide_drive_t *drive)
  296. {
  297. u32 ioc4_dma;
  298. ide_hwif_t *hwif = drive->hwif;
  299. unsigned long dma_base = hwif->dma_base;
  300. unsigned long ioc4_dma_addr = dma_base + IOC4_DMA_CTRL * 4;
  301. u32 dma_addr, ending_dma_addr;
  302. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  303. if (ioc4_dma & IOC4_S_DMA_ACTIVE) {
  304. printk(KERN_WARNING "%s(%s): Warning!! DMA from previous "
  305. "transfer was still active\n", __func__, drive->name);
  306. writel(IOC4_S_DMA_STOP, (void __iomem *)ioc4_dma_addr);
  307. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  308. if (ioc4_dma & IOC4_S_DMA_STOP)
  309. printk(KERN_ERR "%s(%s): IOC4 DMA STOP bit is "
  310. "still 1\n", __func__, drive->name);
  311. }
  312. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  313. if (ioc4_dma & IOC4_S_DMA_ERROR) {
  314. printk(KERN_WARNING "%s(%s): Warning!! DMA Error during "
  315. "previous transfer, status 0x%x\n",
  316. __func__, drive->name, ioc4_dma);
  317. writel(IOC4_S_DMA_STOP, (void __iomem *)ioc4_dma_addr);
  318. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  319. if (ioc4_dma & IOC4_S_DMA_STOP)
  320. printk(KERN_ERR "%s(%s): IOC4 DMA STOP bit is "
  321. "still 1\n", __func__, drive->name);
  322. }
  323. /* Address of the Scatter Gather List */
  324. dma_addr = cpu_to_le32(hwif->dmatable_dma);
  325. writel(dma_addr, (void __iomem *)(dma_base + IOC4_DMA_PTR_L * 4));
  326. /* Address of the Ending DMA */
  327. memset(ide_get_hwifdata(hwif), 0, IOC4_IDE_CACHELINE_SIZE);
  328. ending_dma_addr = cpu_to_le32(hwif->extra_base);
  329. writel(ending_dma_addr, (void __iomem *)(dma_base +
  330. IOC4_DMA_END_ADDR * 4));
  331. writel(dma_direction, (void __iomem *)ioc4_dma_addr);
  332. }
  333. /* IOC4 Scatter Gather list Format */
  334. /* 128 Bit entries to support 64 bit addresses in the future */
  335. /* The Scatter Gather list Entry should be in the BIG-ENDIAN Format */
  336. /* --------------------------------------------------------------------- */
  337. /* | Upper 32 bits - Zero | Lower 32 bits- address | */
  338. /* --------------------------------------------------------------------- */
  339. /* | Upper 32 bits - Zero |EOL| 15 unused | 16 Bit Length| */
  340. /* --------------------------------------------------------------------- */
  341. /* Creates the scatter gather list, DMA Table */
  342. static int sgiioc4_build_dmatable(ide_drive_t *drive, struct ide_cmd *cmd)
  343. {
  344. ide_hwif_t *hwif = drive->hwif;
  345. unsigned int *table = hwif->dmatable_cpu;
  346. unsigned int count = 0, i = cmd->sg_nents;
  347. struct scatterlist *sg = hwif->sg_table;
  348. while (i && sg_dma_len(sg)) {
  349. dma_addr_t cur_addr;
  350. int cur_len;
  351. cur_addr = sg_dma_address(sg);
  352. cur_len = sg_dma_len(sg);
  353. while (cur_len) {
  354. if (count++ >= IOC4_PRD_ENTRIES) {
  355. printk(KERN_WARNING
  356. "%s: DMA table too small\n",
  357. drive->name);
  358. return 0;
  359. } else {
  360. u32 bcount =
  361. 0x10000 - (cur_addr & 0xffff);
  362. if (bcount > cur_len)
  363. bcount = cur_len;
  364. /*
  365. * Put the address, length in
  366. * the IOC4 dma-table format
  367. */
  368. *table = 0x0;
  369. table++;
  370. *table = cpu_to_be32(cur_addr);
  371. table++;
  372. *table = 0x0;
  373. table++;
  374. *table = cpu_to_be32(bcount);
  375. table++;
  376. cur_addr += bcount;
  377. cur_len -= bcount;
  378. }
  379. }
  380. sg = sg_next(sg);
  381. i--;
  382. }
  383. if (count) {
  384. table--;
  385. *table |= cpu_to_be32(0x80000000);
  386. return count;
  387. }
  388. return 0; /* revert to PIO for this request */
  389. }
  390. static int sgiioc4_dma_setup(ide_drive_t *drive, struct ide_cmd *cmd)
  391. {
  392. int ddir;
  393. u8 write = !!(cmd->tf_flags & IDE_TFLAG_WRITE);
  394. if (sgiioc4_build_dmatable(drive, cmd) == 0)
  395. /* try PIO instead of DMA */
  396. return 1;
  397. if (write)
  398. /* Writes TO the IOC4 FROM Main Memory */
  399. ddir = IOC4_DMA_READ;
  400. else
  401. /* Writes FROM the IOC4 TO Main Memory */
  402. ddir = IOC4_DMA_WRITE;
  403. sgiioc4_configure_for_dma(ddir, drive);
  404. return 0;
  405. }
  406. static const struct ide_tp_ops sgiioc4_tp_ops = {
  407. .exec_command = ide_exec_command,
  408. .read_status = sgiioc4_read_status,
  409. .read_altstatus = ide_read_altstatus,
  410. .write_devctl = ide_write_devctl,
  411. .dev_select = ide_dev_select,
  412. .tf_load = ide_tf_load,
  413. .tf_read = ide_tf_read,
  414. .input_data = ide_input_data,
  415. .output_data = ide_output_data,
  416. };
  417. static const struct ide_port_ops sgiioc4_port_ops = {
  418. .set_dma_mode = sgiioc4_set_dma_mode,
  419. /* reset DMA engine, clear IRQs */
  420. .resetproc = sgiioc4_resetproc,
  421. };
  422. static const struct ide_dma_ops sgiioc4_dma_ops = {
  423. .dma_host_set = sgiioc4_dma_host_set,
  424. .dma_setup = sgiioc4_dma_setup,
  425. .dma_start = sgiioc4_dma_start,
  426. .dma_end = sgiioc4_dma_end,
  427. .dma_test_irq = sgiioc4_dma_test_irq,
  428. .dma_lost_irq = sgiioc4_dma_lost_irq,
  429. };
  430. static const struct ide_port_info sgiioc4_port_info = {
  431. .name = DRV_NAME,
  432. .chipset = ide_pci,
  433. .init_dma = ide_dma_sgiioc4,
  434. .tp_ops = &sgiioc4_tp_ops,
  435. .port_ops = &sgiioc4_port_ops,
  436. .dma_ops = &sgiioc4_dma_ops,
  437. .host_flags = IDE_HFLAG_MMIO,
  438. .irq_flags = IRQF_SHARED,
  439. .mwdma_mask = ATA_MWDMA2_ONLY,
  440. };
  441. static int sgiioc4_ide_setup_pci_device(struct pci_dev *dev)
  442. {
  443. unsigned long cmd_base, irqport;
  444. unsigned long bar0, cmd_phys_base, ctl;
  445. void __iomem *virt_base;
  446. struct ide_hw hw, *hws[] = { &hw };
  447. int rc;
  448. /* Get the CmdBlk and CtrlBlk base registers */
  449. bar0 = pci_resource_start(dev, 0);
  450. virt_base = pci_ioremap_bar(dev, 0);
  451. if (virt_base == NULL) {
  452. printk(KERN_ERR "%s: Unable to remap BAR 0 address: 0x%lx\n",
  453. DRV_NAME, bar0);
  454. return -ENOMEM;
  455. }
  456. cmd_base = (unsigned long)virt_base + IOC4_CMD_OFFSET;
  457. ctl = (unsigned long)virt_base + IOC4_CTRL_OFFSET;
  458. irqport = (unsigned long)virt_base + IOC4_INTR_OFFSET;
  459. cmd_phys_base = bar0 + IOC4_CMD_OFFSET;
  460. if (request_mem_region(cmd_phys_base, IOC4_CMD_CTL_BLK_SIZE,
  461. DRV_NAME) == NULL) {
  462. printk(KERN_ERR "%s %s -- ERROR: addresses 0x%08lx to 0x%08lx "
  463. "already in use\n", DRV_NAME, pci_name(dev),
  464. cmd_phys_base, cmd_phys_base + IOC4_CMD_CTL_BLK_SIZE);
  465. rc = -EBUSY;
  466. goto req_mem_rgn_err;
  467. }
  468. /* Initialize the IO registers */
  469. memset(&hw, 0, sizeof(hw));
  470. sgiioc4_init_hwif_ports(&hw, cmd_base, ctl, irqport);
  471. hw.irq = dev->irq;
  472. hw.dev = &dev->dev;
  473. /* Initialize chipset IRQ registers */
  474. writel(0x03, (void __iomem *)(irqport + IOC4_INTR_SET * 4));
  475. rc = ide_host_add(&sgiioc4_port_info, hws, 1, NULL);
  476. if (!rc)
  477. return 0;
  478. release_mem_region(cmd_phys_base, IOC4_CMD_CTL_BLK_SIZE);
  479. req_mem_rgn_err:
  480. iounmap(virt_base);
  481. return rc;
  482. }
  483. static unsigned int pci_init_sgiioc4(struct pci_dev *dev)
  484. {
  485. int ret;
  486. printk(KERN_INFO "%s: IDE controller at PCI slot %s, revision %d\n",
  487. DRV_NAME, pci_name(dev), dev->revision);
  488. if (dev->revision < IOC4_SUPPORTED_FIRMWARE_REV) {
  489. printk(KERN_ERR "Skipping %s IDE controller in slot %s: "
  490. "firmware is obsolete - please upgrade to "
  491. "revision46 or higher\n",
  492. DRV_NAME, pci_name(dev));
  493. ret = -EAGAIN;
  494. goto out;
  495. }
  496. ret = sgiioc4_ide_setup_pci_device(dev);
  497. out:
  498. return ret;
  499. }
  500. static int ioc4_ide_attach_one(struct ioc4_driver_data *idd)
  501. {
  502. /*
  503. * PCI-RT does not bring out IDE connection.
  504. * Do not attach to this particular IOC4.
  505. */
  506. if (idd->idd_variant == IOC4_VARIANT_PCI_RT)
  507. return 0;
  508. return pci_init_sgiioc4(idd->idd_pdev);
  509. }
  510. static struct ioc4_submodule ioc4_ide_submodule = {
  511. .is_name = "IOC4_ide",
  512. .is_owner = THIS_MODULE,
  513. .is_probe = ioc4_ide_attach_one,
  514. };
  515. static int __init ioc4_ide_init(void)
  516. {
  517. return ioc4_register_submodule(&ioc4_ide_submodule);
  518. }
  519. late_initcall(ioc4_ide_init); /* Call only after IDE init is done */
  520. MODULE_AUTHOR("Aniket Malatpure/Jeremy Higdon");
  521. MODULE_DESCRIPTION("IDE PCI driver module for SGI IOC4 Base-IO Card");
  522. MODULE_LICENSE("GPL");