sgiioc4.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. /*
  2. * Copyright (c) 2003-2006 Silicon Graphics, Inc. All Rights Reserved.
  3. * Copyright (C) 2008 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 <asm/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. 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 = 0; i <= 7; i++)
  88. hw->io_ports_array[i] = reg + i * 4;
  89. if (ctrl_port)
  90. hw->io_ports.ctl_addr = ctrl_port;
  91. if (irq_port)
  92. hw->io_ports.irq_addr = irq_port;
  93. }
  94. static void
  95. sgiioc4_maskproc(ide_drive_t * drive, int mask)
  96. {
  97. writeb(ATA_DEVCTL_OBS | (mask ? 2 : 0),
  98. (void __iomem *)drive->hwif->io_ports.ctl_addr);
  99. }
  100. static int
  101. sgiioc4_checkirq(ide_hwif_t * hwif)
  102. {
  103. unsigned long intr_addr =
  104. hwif->io_ports.irq_addr + IOC4_INTR_REG * 4;
  105. if ((u8)readl((void __iomem *)intr_addr) & 0x03)
  106. return 1;
  107. return 0;
  108. }
  109. static u8 sgiioc4_read_status(ide_hwif_t *);
  110. static int
  111. sgiioc4_clearirq(ide_drive_t * drive)
  112. {
  113. u32 intr_reg;
  114. ide_hwif_t *hwif = HWIF(drive);
  115. struct ide_io_ports *io_ports = &hwif->io_ports;
  116. unsigned long other_ir = io_ports->irq_addr + (IOC4_INTR_REG << 2);
  117. /* Code to check for PCI error conditions */
  118. intr_reg = readl((void __iomem *)other_ir);
  119. if (intr_reg & 0x03) { /* Valid IOC4-IDE interrupt */
  120. /*
  121. * Using sgiioc4_read_status to read the Status register has a
  122. * side effect of clearing the interrupt. The first read should
  123. * clear it if it is set. The second read should return
  124. * a "clear" status if it got cleared. If not, then spin
  125. * for a bit trying to clear it.
  126. */
  127. u8 stat = sgiioc4_read_status(hwif);
  128. int count = 0;
  129. stat = sgiioc4_read_status(hwif);
  130. while ((stat & ATA_BUSY) && (count++ < 100)) {
  131. udelay(1);
  132. stat = sgiioc4_read_status(hwif);
  133. }
  134. if (intr_reg & 0x02) {
  135. struct pci_dev *dev = to_pci_dev(hwif->dev);
  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 *)io_ports->irq_addr);
  141. pci_err_addr_high =
  142. readl((void __iomem *)(io_ports->irq_addr + 4));
  143. pci_read_config_dword(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. __func__, drive->name, pci_stat_cmd_reg);
  149. printk(KERN_ERR
  150. "%s(%s) : PCI Error Address is 0x%x%x\n",
  151. __func__, drive->name,
  152. pci_err_addr_high, pci_err_addr_low);
  153. /* Clear the PCI Error indicator */
  154. pci_write_config_dword(dev, PCI_COMMAND, 0x00000146);
  155. }
  156. /* Clear the Interrupt, Error bits on the IOC4 */
  157. writel(0x03, (void __iomem *)other_ir);
  158. intr_reg = readl((void __iomem *)other_ir);
  159. }
  160. return intr_reg & 3;
  161. }
  162. static void sgiioc4_dma_start(ide_drive_t *drive)
  163. {
  164. ide_hwif_t *hwif = HWIF(drive);
  165. unsigned long ioc4_dma_addr = hwif->dma_base + IOC4_DMA_CTRL * 4;
  166. unsigned int reg = readl((void __iomem *)ioc4_dma_addr);
  167. unsigned int temp_reg = reg | IOC4_S_DMA_START;
  168. writel(temp_reg, (void __iomem *)ioc4_dma_addr);
  169. }
  170. static u32
  171. sgiioc4_ide_dma_stop(ide_hwif_t *hwif, u64 dma_base)
  172. {
  173. unsigned long ioc4_dma_addr = dma_base + IOC4_DMA_CTRL * 4;
  174. u32 ioc4_dma;
  175. int count;
  176. count = 0;
  177. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  178. while ((ioc4_dma & IOC4_S_DMA_STOP) && (count++ < 200)) {
  179. udelay(1);
  180. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  181. }
  182. return ioc4_dma;
  183. }
  184. /* Stops the IOC4 DMA Engine */
  185. static int sgiioc4_dma_end(ide_drive_t *drive)
  186. {
  187. u32 ioc4_dma, bc_dev, bc_mem, num, valid = 0, cnt = 0;
  188. ide_hwif_t *hwif = HWIF(drive);
  189. unsigned long dma_base = hwif->dma_base;
  190. int dma_stat = 0;
  191. unsigned long *ending_dma = ide_get_hwifdata(hwif);
  192. writel(IOC4_S_DMA_STOP, (void __iomem *)(dma_base + IOC4_DMA_CTRL * 4));
  193. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  194. if (ioc4_dma & IOC4_S_DMA_STOP) {
  195. printk(KERN_ERR
  196. "%s(%s): IOC4 DMA STOP bit is still 1 :"
  197. "ioc4_dma_reg 0x%x\n",
  198. __func__, drive->name, ioc4_dma);
  199. dma_stat = 1;
  200. }
  201. /*
  202. * The IOC4 will DMA 1's to the ending dma area to indicate that
  203. * previous data DMA is complete. This is necessary because of relaxed
  204. * ordering between register reads and DMA writes on the Altix.
  205. */
  206. while ((cnt++ < 200) && (!valid)) {
  207. for (num = 0; num < 16; num++) {
  208. if (ending_dma[num]) {
  209. valid = 1;
  210. break;
  211. }
  212. }
  213. udelay(1);
  214. }
  215. if (!valid) {
  216. printk(KERN_ERR "%s(%s) : DMA incomplete\n", __func__,
  217. drive->name);
  218. dma_stat = 1;
  219. }
  220. bc_dev = readl((void __iomem *)(dma_base + IOC4_BC_DEV * 4));
  221. bc_mem = readl((void __iomem *)(dma_base + IOC4_BC_MEM * 4));
  222. if ((bc_dev & 0x01FF) || (bc_mem & 0x1FF)) {
  223. if (bc_dev > bc_mem + 8) {
  224. printk(KERN_ERR
  225. "%s(%s): WARNING!! byte_count_dev %d "
  226. "!= byte_count_mem %d\n",
  227. __func__, drive->name, bc_dev, bc_mem);
  228. }
  229. }
  230. drive->waiting_for_dma = 0;
  231. ide_destroy_dmatable(drive);
  232. return dma_stat;
  233. }
  234. static void sgiioc4_set_dma_mode(ide_drive_t *drive, const u8 speed)
  235. {
  236. }
  237. /* returns 1 if dma irq issued, 0 otherwise */
  238. static int sgiioc4_dma_test_irq(ide_drive_t *drive)
  239. {
  240. return sgiioc4_checkirq(HWIF(drive));
  241. }
  242. static void sgiioc4_dma_host_set(ide_drive_t *drive, int on)
  243. {
  244. if (!on)
  245. sgiioc4_clearirq(drive);
  246. }
  247. static void
  248. sgiioc4_resetproc(ide_drive_t * drive)
  249. {
  250. sgiioc4_dma_end(drive);
  251. sgiioc4_clearirq(drive);
  252. }
  253. static void
  254. sgiioc4_dma_lost_irq(ide_drive_t * drive)
  255. {
  256. sgiioc4_resetproc(drive);
  257. ide_dma_lost_irq(drive);
  258. }
  259. static u8 sgiioc4_read_status(ide_hwif_t *hwif)
  260. {
  261. unsigned long port = hwif->io_ports.status_addr;
  262. u8 reg = (u8) readb((void __iomem *) port);
  263. if ((port & 0xFFF) == 0x11C) { /* Status register of IOC4 */
  264. if (!(reg & ATA_BUSY)) { /* Not busy... check for interrupt */
  265. unsigned long other_ir = port - 0x110;
  266. unsigned int intr_reg = (u32) readl((void __iomem *) other_ir);
  267. /* Clear the Interrupt, Error bits on the IOC4 */
  268. if (intr_reg & 0x03) {
  269. writel(0x03, (void __iomem *) other_ir);
  270. intr_reg = (u32) readl((void __iomem *) other_ir);
  271. }
  272. }
  273. }
  274. return reg;
  275. }
  276. /* Creates a dma map for the scatter-gather list entries */
  277. static int __devinit
  278. ide_dma_sgiioc4(ide_hwif_t *hwif, const struct ide_port_info *d)
  279. {
  280. struct pci_dev *dev = to_pci_dev(hwif->dev);
  281. unsigned long dma_base = pci_resource_start(dev, 0) + IOC4_DMA_OFFSET;
  282. void __iomem *virt_dma_base;
  283. int num_ports = sizeof (ioc4_dma_regs_t);
  284. void *pad;
  285. if (dma_base == 0)
  286. return -1;
  287. printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
  288. if (request_mem_region(dma_base, num_ports, hwif->name) == NULL) {
  289. printk(KERN_ERR "%s(%s) -- ERROR: addresses 0x%08lx to 0x%08lx "
  290. "already in use\n", __func__, hwif->name,
  291. dma_base, dma_base + num_ports - 1);
  292. return -1;
  293. }
  294. virt_dma_base = ioremap(dma_base, num_ports);
  295. if (virt_dma_base == NULL) {
  296. printk(KERN_ERR "%s(%s) -- ERROR: unable to map addresses "
  297. "0x%lx to 0x%lx\n", __func__, hwif->name,
  298. dma_base, dma_base + num_ports - 1);
  299. goto dma_remap_failure;
  300. }
  301. hwif->dma_base = (unsigned long) virt_dma_base;
  302. hwif->sg_max_nents = IOC4_PRD_ENTRIES;
  303. hwif->prd_max_nents = IOC4_PRD_ENTRIES;
  304. hwif->prd_ent_size = IOC4_PRD_BYTES;
  305. if (ide_allocate_dma_engine(hwif))
  306. goto dma_pci_alloc_failure;
  307. pad = pci_alloc_consistent(dev, IOC4_IDE_CACHELINE_SIZE,
  308. (dma_addr_t *)&hwif->extra_base);
  309. if (pad) {
  310. ide_set_hwifdata(hwif, pad);
  311. return 0;
  312. }
  313. ide_release_dma_engine(hwif);
  314. printk(KERN_ERR "%s(%s) -- ERROR: Unable to allocate DMA maps\n",
  315. __func__, hwif->name);
  316. printk(KERN_INFO "%s: changing from DMA to PIO mode", hwif->name);
  317. dma_pci_alloc_failure:
  318. iounmap(virt_dma_base);
  319. dma_remap_failure:
  320. release_mem_region(dma_base, num_ports);
  321. return -1;
  322. }
  323. /* Initializes the IOC4 DMA Engine */
  324. static void
  325. sgiioc4_configure_for_dma(int dma_direction, ide_drive_t * drive)
  326. {
  327. u32 ioc4_dma;
  328. ide_hwif_t *hwif = HWIF(drive);
  329. unsigned long dma_base = hwif->dma_base;
  330. unsigned long ioc4_dma_addr = dma_base + IOC4_DMA_CTRL * 4;
  331. u32 dma_addr, ending_dma_addr;
  332. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  333. if (ioc4_dma & IOC4_S_DMA_ACTIVE) {
  334. printk(KERN_WARNING
  335. "%s(%s):Warning!! DMA from previous transfer was still active\n",
  336. __func__, drive->name);
  337. writel(IOC4_S_DMA_STOP, (void __iomem *)ioc4_dma_addr);
  338. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  339. if (ioc4_dma & IOC4_S_DMA_STOP)
  340. printk(KERN_ERR
  341. "%s(%s) : IOC4 Dma STOP bit is still 1\n",
  342. __func__, drive->name);
  343. }
  344. ioc4_dma = readl((void __iomem *)ioc4_dma_addr);
  345. if (ioc4_dma & IOC4_S_DMA_ERROR) {
  346. printk(KERN_WARNING
  347. "%s(%s) : Warning!! - DMA Error during Previous"
  348. " transfer | status 0x%x\n",
  349. __func__, drive->name, ioc4_dma);
  350. writel(IOC4_S_DMA_STOP, (void __iomem *)ioc4_dma_addr);
  351. ioc4_dma = sgiioc4_ide_dma_stop(hwif, dma_base);
  352. if (ioc4_dma & IOC4_S_DMA_STOP)
  353. printk(KERN_ERR
  354. "%s(%s) : IOC4 DMA STOP bit is still 1\n",
  355. __func__, drive->name);
  356. }
  357. /* Address of the Scatter Gather List */
  358. dma_addr = cpu_to_le32(hwif->dmatable_dma);
  359. writel(dma_addr, (void __iomem *)(dma_base + IOC4_DMA_PTR_L * 4));
  360. /* Address of the Ending DMA */
  361. memset(ide_get_hwifdata(hwif), 0, IOC4_IDE_CACHELINE_SIZE);
  362. ending_dma_addr = cpu_to_le32(hwif->extra_base);
  363. writel(ending_dma_addr, (void __iomem *)(dma_base + IOC4_DMA_END_ADDR * 4));
  364. writel(dma_direction, (void __iomem *)ioc4_dma_addr);
  365. drive->waiting_for_dma = 1;
  366. }
  367. /* IOC4 Scatter Gather list Format */
  368. /* 128 Bit entries to support 64 bit addresses in the future */
  369. /* The Scatter Gather list Entry should be in the BIG-ENDIAN Format */
  370. /* --------------------------------------------------------------------- */
  371. /* | Upper 32 bits - Zero | Lower 32 bits- address | */
  372. /* --------------------------------------------------------------------- */
  373. /* | Upper 32 bits - Zero |EOL| 15 unused | 16 Bit Length| */
  374. /* --------------------------------------------------------------------- */
  375. /* Creates the scatter gather list, DMA Table */
  376. static unsigned int
  377. sgiioc4_build_dma_table(ide_drive_t * drive, struct request *rq, int ddir)
  378. {
  379. ide_hwif_t *hwif = HWIF(drive);
  380. unsigned int *table = hwif->dmatable_cpu;
  381. unsigned int count = 0, i = 1;
  382. struct scatterlist *sg;
  383. hwif->sg_nents = i = ide_build_sglist(drive, rq);
  384. if (!i)
  385. return 0; /* sglist of length Zero */
  386. sg = hwif->sg_table;
  387. while (i && sg_dma_len(sg)) {
  388. dma_addr_t cur_addr;
  389. int cur_len;
  390. cur_addr = sg_dma_address(sg);
  391. cur_len = sg_dma_len(sg);
  392. while (cur_len) {
  393. if (count++ >= IOC4_PRD_ENTRIES) {
  394. printk(KERN_WARNING
  395. "%s: DMA table too small\n",
  396. drive->name);
  397. goto use_pio_instead;
  398. } else {
  399. u32 bcount =
  400. 0x10000 - (cur_addr & 0xffff);
  401. if (bcount > cur_len)
  402. bcount = cur_len;
  403. /* put the addr, length in
  404. * the IOC4 dma-table format */
  405. *table = 0x0;
  406. table++;
  407. *table = cpu_to_be32(cur_addr);
  408. table++;
  409. *table = 0x0;
  410. table++;
  411. *table = cpu_to_be32(bcount);
  412. table++;
  413. cur_addr += bcount;
  414. cur_len -= bcount;
  415. }
  416. }
  417. sg = sg_next(sg);
  418. i--;
  419. }
  420. if (count) {
  421. table--;
  422. *table |= cpu_to_be32(0x80000000);
  423. return count;
  424. }
  425. use_pio_instead:
  426. ide_destroy_dmatable(drive);
  427. return 0; /* revert to PIO for this request */
  428. }
  429. static int sgiioc4_dma_setup(ide_drive_t *drive)
  430. {
  431. struct request *rq = HWGROUP(drive)->rq;
  432. unsigned int count = 0;
  433. int ddir;
  434. if (rq_data_dir(rq))
  435. ddir = PCI_DMA_TODEVICE;
  436. else
  437. ddir = PCI_DMA_FROMDEVICE;
  438. if (!(count = sgiioc4_build_dma_table(drive, rq, ddir))) {
  439. /* try PIO instead of DMA */
  440. ide_map_sg(drive, rq);
  441. return 1;
  442. }
  443. if (rq_data_dir(rq))
  444. /* Writes TO the IOC4 FROM Main Memory */
  445. ddir = IOC4_DMA_READ;
  446. else
  447. /* Writes FROM the IOC4 TO Main Memory */
  448. ddir = IOC4_DMA_WRITE;
  449. sgiioc4_configure_for_dma(ddir, drive);
  450. return 0;
  451. }
  452. static const struct ide_tp_ops sgiioc4_tp_ops = {
  453. .exec_command = ide_exec_command,
  454. .read_status = sgiioc4_read_status,
  455. .read_altstatus = ide_read_altstatus,
  456. .read_sff_dma_status = ide_read_sff_dma_status,
  457. .set_irq = ide_set_irq,
  458. .tf_load = ide_tf_load,
  459. .tf_read = ide_tf_read,
  460. .input_data = ide_input_data,
  461. .output_data = ide_output_data,
  462. };
  463. static const struct ide_port_ops sgiioc4_port_ops = {
  464. .set_dma_mode = sgiioc4_set_dma_mode,
  465. /* reset DMA engine, clear IRQs */
  466. .resetproc = sgiioc4_resetproc,
  467. /* mask on/off NIEN register */
  468. .maskproc = sgiioc4_maskproc,
  469. };
  470. static const struct ide_dma_ops sgiioc4_dma_ops = {
  471. .dma_host_set = sgiioc4_dma_host_set,
  472. .dma_setup = sgiioc4_dma_setup,
  473. .dma_start = sgiioc4_dma_start,
  474. .dma_end = sgiioc4_dma_end,
  475. .dma_test_irq = sgiioc4_dma_test_irq,
  476. .dma_lost_irq = sgiioc4_dma_lost_irq,
  477. .dma_timeout = ide_dma_timeout,
  478. };
  479. static const struct ide_port_info sgiioc4_port_info __devinitdata = {
  480. .name = DRV_NAME,
  481. .chipset = ide_pci,
  482. .init_dma = ide_dma_sgiioc4,
  483. .tp_ops = &sgiioc4_tp_ops,
  484. .port_ops = &sgiioc4_port_ops,
  485. .dma_ops = &sgiioc4_dma_ops,
  486. .host_flags = IDE_HFLAG_MMIO,
  487. .mwdma_mask = ATA_MWDMA2_ONLY,
  488. };
  489. static int __devinit
  490. sgiioc4_ide_setup_pci_device(struct pci_dev *dev)
  491. {
  492. unsigned long cmd_base, irqport;
  493. unsigned long bar0, cmd_phys_base, ctl;
  494. void __iomem *virt_base;
  495. struct ide_host *host;
  496. hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
  497. struct ide_port_info d = sgiioc4_port_info;
  498. int rc;
  499. /* Get the CmdBlk and CtrlBlk Base Registers */
  500. bar0 = pci_resource_start(dev, 0);
  501. virt_base = ioremap(bar0, pci_resource_len(dev, 0));
  502. if (virt_base == NULL) {
  503. printk(KERN_ERR "%s: Unable to remap BAR 0 address: 0x%lx\n",
  504. DRV_NAME, bar0);
  505. return -ENOMEM;
  506. }
  507. cmd_base = (unsigned long) virt_base + IOC4_CMD_OFFSET;
  508. ctl = (unsigned long) virt_base + IOC4_CTRL_OFFSET;
  509. irqport = (unsigned long) virt_base + IOC4_INTR_OFFSET;
  510. cmd_phys_base = bar0 + IOC4_CMD_OFFSET;
  511. if (request_mem_region(cmd_phys_base, IOC4_CMD_CTL_BLK_SIZE,
  512. DRV_NAME) == NULL) {
  513. printk(KERN_ERR "%s %s -- ERROR: addresses 0x%08lx to 0x%08lx "
  514. "already in use\n", DRV_NAME, pci_name(dev),
  515. cmd_phys_base, cmd_phys_base + IOC4_CMD_CTL_BLK_SIZE);
  516. return -EBUSY;
  517. }
  518. /* Initialize the IO registers */
  519. memset(&hw, 0, sizeof(hw));
  520. sgiioc4_init_hwif_ports(&hw, cmd_base, ctl, irqport);
  521. hw.irq = dev->irq;
  522. hw.chipset = ide_pci;
  523. hw.dev = &dev->dev;
  524. /* Initializing chipset IRQ Registers */
  525. writel(0x03, (void __iomem *)(irqport + IOC4_INTR_SET * 4));
  526. host = ide_host_alloc(&d, hws);
  527. if (host == NULL) {
  528. rc = -ENOMEM;
  529. goto err;
  530. }
  531. rc = ide_host_register(host, &d, hws);
  532. if (rc)
  533. goto err_free;
  534. return 0;
  535. err_free:
  536. ide_host_free(host);
  537. err:
  538. release_mem_region(cmd_phys_base, IOC4_CMD_CTL_BLK_SIZE);
  539. iounmap(virt_base);
  540. return rc;
  541. }
  542. static unsigned int __devinit
  543. pci_init_sgiioc4(struct pci_dev *dev)
  544. {
  545. int ret;
  546. printk(KERN_INFO "%s: IDE controller at PCI slot %s, revision %d\n",
  547. DRV_NAME, pci_name(dev), dev->revision);
  548. if (dev->revision < IOC4_SUPPORTED_FIRMWARE_REV) {
  549. printk(KERN_ERR "Skipping %s IDE controller in slot %s: "
  550. "firmware is obsolete - please upgrade to "
  551. "revision46 or higher\n",
  552. DRV_NAME, pci_name(dev));
  553. ret = -EAGAIN;
  554. goto out;
  555. }
  556. ret = sgiioc4_ide_setup_pci_device(dev);
  557. out:
  558. return ret;
  559. }
  560. int
  561. ioc4_ide_attach_one(struct ioc4_driver_data *idd)
  562. {
  563. /* PCI-RT does not bring out IDE connection.
  564. * Do not attach to this particular IOC4.
  565. */
  566. if (idd->idd_variant == IOC4_VARIANT_PCI_RT)
  567. return 0;
  568. return pci_init_sgiioc4(idd->idd_pdev);
  569. }
  570. static struct ioc4_submodule ioc4_ide_submodule = {
  571. .is_name = "IOC4_ide",
  572. .is_owner = THIS_MODULE,
  573. .is_probe = ioc4_ide_attach_one,
  574. /* .is_remove = ioc4_ide_remove_one, */
  575. };
  576. static int __init ioc4_ide_init(void)
  577. {
  578. return ioc4_register_submodule(&ioc4_ide_submodule);
  579. }
  580. late_initcall(ioc4_ide_init); /* Call only after IDE init is done */
  581. MODULE_AUTHOR("Aniket Malatpure/Jeremy Higdon");
  582. MODULE_DESCRIPTION("IDE PCI driver module for SGI IOC4 Base-IO Card");
  583. MODULE_LICENSE("GPL");