pdc_adma.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. /*
  2. * pdc_adma.c - Pacific Digital Corporation ADMA
  3. *
  4. * Maintained by: Mark Lord <mlord@pobox.com>
  5. *
  6. * Copyright 2005 Mark Lord
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2, or (at your option)
  11. * any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; see the file COPYING. If not, write to
  20. * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21. *
  22. *
  23. * libata documentation is available via 'make {ps|pdf}docs',
  24. * as Documentation/DocBook/libata.*
  25. *
  26. *
  27. * Supports ATA disks in single-packet ADMA mode.
  28. * Uses PIO for everything else.
  29. *
  30. * TODO: Use ADMA transfers for ATAPI devices, when possible.
  31. * This requires careful attention to a number of quirks of the chip.
  32. *
  33. */
  34. #include <linux/kernel.h>
  35. #include <linux/module.h>
  36. #include <linux/gfp.h>
  37. #include <linux/pci.h>
  38. #include <linux/init.h>
  39. #include <linux/blkdev.h>
  40. #include <linux/delay.h>
  41. #include <linux/interrupt.h>
  42. #include <linux/device.h>
  43. #include <scsi/scsi_host.h>
  44. #include <linux/libata.h>
  45. #define DRV_NAME "pdc_adma"
  46. #define DRV_VERSION "1.0"
  47. /* macro to calculate base address for ATA regs */
  48. #define ADMA_ATA_REGS(base, port_no) ((base) + ((port_no) * 0x40))
  49. /* macro to calculate base address for ADMA regs */
  50. #define ADMA_REGS(base, port_no) ((base) + 0x80 + ((port_no) * 0x20))
  51. /* macro to obtain addresses from ata_port */
  52. #define ADMA_PORT_REGS(ap) \
  53. ADMA_REGS((ap)->host->iomap[ADMA_MMIO_BAR], ap->port_no)
  54. enum {
  55. ADMA_MMIO_BAR = 4,
  56. ADMA_PORTS = 2,
  57. ADMA_CPB_BYTES = 40,
  58. ADMA_PRD_BYTES = LIBATA_MAX_PRD * 16,
  59. ADMA_PKT_BYTES = ADMA_CPB_BYTES + ADMA_PRD_BYTES,
  60. ADMA_DMA_BOUNDARY = 0xffffffff,
  61. /* global register offsets */
  62. ADMA_MODE_LOCK = 0x00c7,
  63. /* per-channel register offsets */
  64. ADMA_CONTROL = 0x0000, /* ADMA control */
  65. ADMA_STATUS = 0x0002, /* ADMA status */
  66. ADMA_CPB_COUNT = 0x0004, /* CPB count */
  67. ADMA_CPB_CURRENT = 0x000c, /* current CPB address */
  68. ADMA_CPB_NEXT = 0x000c, /* next CPB address */
  69. ADMA_CPB_LOOKUP = 0x0010, /* CPB lookup table */
  70. ADMA_FIFO_IN = 0x0014, /* input FIFO threshold */
  71. ADMA_FIFO_OUT = 0x0016, /* output FIFO threshold */
  72. /* ADMA_CONTROL register bits */
  73. aNIEN = (1 << 8), /* irq mask: 1==masked */
  74. aGO = (1 << 7), /* packet trigger ("Go!") */
  75. aRSTADM = (1 << 5), /* ADMA logic reset */
  76. aPIOMD4 = 0x0003, /* PIO mode 4 */
  77. /* ADMA_STATUS register bits */
  78. aPSD = (1 << 6),
  79. aUIRQ = (1 << 4),
  80. aPERR = (1 << 0),
  81. /* CPB bits */
  82. cDONE = (1 << 0),
  83. cATERR = (1 << 3),
  84. cVLD = (1 << 0),
  85. cDAT = (1 << 2),
  86. cIEN = (1 << 3),
  87. /* PRD bits */
  88. pORD = (1 << 4),
  89. pDIRO = (1 << 5),
  90. pEND = (1 << 7),
  91. /* ATA register flags */
  92. rIGN = (1 << 5),
  93. rEND = (1 << 7),
  94. /* ATA register addresses */
  95. ADMA_REGS_CONTROL = 0x0e,
  96. ADMA_REGS_SECTOR_COUNT = 0x12,
  97. ADMA_REGS_LBA_LOW = 0x13,
  98. ADMA_REGS_LBA_MID = 0x14,
  99. ADMA_REGS_LBA_HIGH = 0x15,
  100. ADMA_REGS_DEVICE = 0x16,
  101. ADMA_REGS_COMMAND = 0x17,
  102. /* PCI device IDs */
  103. board_1841_idx = 0, /* ADMA 2-port controller */
  104. };
  105. typedef enum { adma_state_idle, adma_state_pkt, adma_state_mmio } adma_state_t;
  106. struct adma_port_priv {
  107. u8 *pkt;
  108. dma_addr_t pkt_dma;
  109. adma_state_t state;
  110. };
  111. static int adma_ata_init_one(struct pci_dev *pdev,
  112. const struct pci_device_id *ent);
  113. static int adma_port_start(struct ata_port *ap);
  114. static void adma_port_stop(struct ata_port *ap);
  115. static void adma_qc_prep(struct ata_queued_cmd *qc);
  116. static unsigned int adma_qc_issue(struct ata_queued_cmd *qc);
  117. static int adma_check_atapi_dma(struct ata_queued_cmd *qc);
  118. static void adma_freeze(struct ata_port *ap);
  119. static void adma_thaw(struct ata_port *ap);
  120. static int adma_prereset(struct ata_link *link, unsigned long deadline);
  121. static struct scsi_host_template adma_ata_sht = {
  122. ATA_BASE_SHT(DRV_NAME),
  123. .sg_tablesize = LIBATA_MAX_PRD,
  124. .dma_boundary = ADMA_DMA_BOUNDARY,
  125. };
  126. static struct ata_port_operations adma_ata_ops = {
  127. .inherits = &ata_sff_port_ops,
  128. .lost_interrupt = ATA_OP_NULL,
  129. .check_atapi_dma = adma_check_atapi_dma,
  130. .qc_prep = adma_qc_prep,
  131. .qc_issue = adma_qc_issue,
  132. .freeze = adma_freeze,
  133. .thaw = adma_thaw,
  134. .prereset = adma_prereset,
  135. .port_start = adma_port_start,
  136. .port_stop = adma_port_stop,
  137. };
  138. static struct ata_port_info adma_port_info[] = {
  139. /* board_1841_idx */
  140. {
  141. .flags = ATA_FLAG_SLAVE_POSS |
  142. ATA_FLAG_NO_LEGACY | ATA_FLAG_MMIO |
  143. ATA_FLAG_PIO_POLLING,
  144. .pio_mask = ATA_PIO4_ONLY,
  145. .udma_mask = ATA_UDMA4,
  146. .port_ops = &adma_ata_ops,
  147. },
  148. };
  149. static const struct pci_device_id adma_ata_pci_tbl[] = {
  150. { PCI_VDEVICE(PDC, 0x1841), board_1841_idx },
  151. { } /* terminate list */
  152. };
  153. static struct pci_driver adma_ata_pci_driver = {
  154. .name = DRV_NAME,
  155. .id_table = adma_ata_pci_tbl,
  156. .probe = adma_ata_init_one,
  157. .remove = ata_pci_remove_one,
  158. };
  159. static int adma_check_atapi_dma(struct ata_queued_cmd *qc)
  160. {
  161. return 1; /* ATAPI DMA not yet supported */
  162. }
  163. static void adma_reset_engine(struct ata_port *ap)
  164. {
  165. void __iomem *chan = ADMA_PORT_REGS(ap);
  166. /* reset ADMA to idle state */
  167. writew(aPIOMD4 | aNIEN | aRSTADM, chan + ADMA_CONTROL);
  168. udelay(2);
  169. writew(aPIOMD4, chan + ADMA_CONTROL);
  170. udelay(2);
  171. }
  172. static void adma_reinit_engine(struct ata_port *ap)
  173. {
  174. struct adma_port_priv *pp = ap->private_data;
  175. void __iomem *chan = ADMA_PORT_REGS(ap);
  176. /* mask/clear ATA interrupts */
  177. writeb(ATA_NIEN, ap->ioaddr.ctl_addr);
  178. ata_sff_check_status(ap);
  179. /* reset the ADMA engine */
  180. adma_reset_engine(ap);
  181. /* set in-FIFO threshold to 0x100 */
  182. writew(0x100, chan + ADMA_FIFO_IN);
  183. /* set CPB pointer */
  184. writel((u32)pp->pkt_dma, chan + ADMA_CPB_NEXT);
  185. /* set out-FIFO threshold to 0x100 */
  186. writew(0x100, chan + ADMA_FIFO_OUT);
  187. /* set CPB count */
  188. writew(1, chan + ADMA_CPB_COUNT);
  189. /* read/discard ADMA status */
  190. readb(chan + ADMA_STATUS);
  191. }
  192. static inline void adma_enter_reg_mode(struct ata_port *ap)
  193. {
  194. void __iomem *chan = ADMA_PORT_REGS(ap);
  195. writew(aPIOMD4, chan + ADMA_CONTROL);
  196. readb(chan + ADMA_STATUS); /* flush */
  197. }
  198. static void adma_freeze(struct ata_port *ap)
  199. {
  200. void __iomem *chan = ADMA_PORT_REGS(ap);
  201. /* mask/clear ATA interrupts */
  202. writeb(ATA_NIEN, ap->ioaddr.ctl_addr);
  203. ata_sff_check_status(ap);
  204. /* reset ADMA to idle state */
  205. writew(aPIOMD4 | aNIEN | aRSTADM, chan + ADMA_CONTROL);
  206. udelay(2);
  207. writew(aPIOMD4 | aNIEN, chan + ADMA_CONTROL);
  208. udelay(2);
  209. }
  210. static void adma_thaw(struct ata_port *ap)
  211. {
  212. adma_reinit_engine(ap);
  213. }
  214. static int adma_prereset(struct ata_link *link, unsigned long deadline)
  215. {
  216. struct ata_port *ap = link->ap;
  217. struct adma_port_priv *pp = ap->private_data;
  218. if (pp->state != adma_state_idle) /* healthy paranoia */
  219. pp->state = adma_state_mmio;
  220. adma_reinit_engine(ap);
  221. return ata_sff_prereset(link, deadline);
  222. }
  223. static int adma_fill_sg(struct ata_queued_cmd *qc)
  224. {
  225. struct scatterlist *sg;
  226. struct ata_port *ap = qc->ap;
  227. struct adma_port_priv *pp = ap->private_data;
  228. u8 *buf = pp->pkt, *last_buf = NULL;
  229. int i = (2 + buf[3]) * 8;
  230. u8 pFLAGS = pORD | ((qc->tf.flags & ATA_TFLAG_WRITE) ? pDIRO : 0);
  231. unsigned int si;
  232. for_each_sg(qc->sg, sg, qc->n_elem, si) {
  233. u32 addr;
  234. u32 len;
  235. addr = (u32)sg_dma_address(sg);
  236. *(__le32 *)(buf + i) = cpu_to_le32(addr);
  237. i += 4;
  238. len = sg_dma_len(sg) >> 3;
  239. *(__le32 *)(buf + i) = cpu_to_le32(len);
  240. i += 4;
  241. last_buf = &buf[i];
  242. buf[i++] = pFLAGS;
  243. buf[i++] = qc->dev->dma_mode & 0xf;
  244. buf[i++] = 0; /* pPKLW */
  245. buf[i++] = 0; /* reserved */
  246. *(__le32 *)(buf + i) =
  247. (pFLAGS & pEND) ? 0 : cpu_to_le32(pp->pkt_dma + i + 4);
  248. i += 4;
  249. VPRINTK("PRD[%u] = (0x%lX, 0x%X)\n", i/4,
  250. (unsigned long)addr, len);
  251. }
  252. if (likely(last_buf))
  253. *last_buf |= pEND;
  254. return i;
  255. }
  256. static void adma_qc_prep(struct ata_queued_cmd *qc)
  257. {
  258. struct adma_port_priv *pp = qc->ap->private_data;
  259. u8 *buf = pp->pkt;
  260. u32 pkt_dma = (u32)pp->pkt_dma;
  261. int i = 0;
  262. VPRINTK("ENTER\n");
  263. adma_enter_reg_mode(qc->ap);
  264. if (qc->tf.protocol != ATA_PROT_DMA)
  265. return;
  266. buf[i++] = 0; /* Response flags */
  267. buf[i++] = 0; /* reserved */
  268. buf[i++] = cVLD | cDAT | cIEN;
  269. i++; /* cLEN, gets filled in below */
  270. *(__le32 *)(buf+i) = cpu_to_le32(pkt_dma); /* cNCPB */
  271. i += 4; /* cNCPB */
  272. i += 4; /* cPRD, gets filled in below */
  273. buf[i++] = 0; /* reserved */
  274. buf[i++] = 0; /* reserved */
  275. buf[i++] = 0; /* reserved */
  276. buf[i++] = 0; /* reserved */
  277. /* ATA registers; must be a multiple of 4 */
  278. buf[i++] = qc->tf.device;
  279. buf[i++] = ADMA_REGS_DEVICE;
  280. if ((qc->tf.flags & ATA_TFLAG_LBA48)) {
  281. buf[i++] = qc->tf.hob_nsect;
  282. buf[i++] = ADMA_REGS_SECTOR_COUNT;
  283. buf[i++] = qc->tf.hob_lbal;
  284. buf[i++] = ADMA_REGS_LBA_LOW;
  285. buf[i++] = qc->tf.hob_lbam;
  286. buf[i++] = ADMA_REGS_LBA_MID;
  287. buf[i++] = qc->tf.hob_lbah;
  288. buf[i++] = ADMA_REGS_LBA_HIGH;
  289. }
  290. buf[i++] = qc->tf.nsect;
  291. buf[i++] = ADMA_REGS_SECTOR_COUNT;
  292. buf[i++] = qc->tf.lbal;
  293. buf[i++] = ADMA_REGS_LBA_LOW;
  294. buf[i++] = qc->tf.lbam;
  295. buf[i++] = ADMA_REGS_LBA_MID;
  296. buf[i++] = qc->tf.lbah;
  297. buf[i++] = ADMA_REGS_LBA_HIGH;
  298. buf[i++] = 0;
  299. buf[i++] = ADMA_REGS_CONTROL;
  300. buf[i++] = rIGN;
  301. buf[i++] = 0;
  302. buf[i++] = qc->tf.command;
  303. buf[i++] = ADMA_REGS_COMMAND | rEND;
  304. buf[3] = (i >> 3) - 2; /* cLEN */
  305. *(__le32 *)(buf+8) = cpu_to_le32(pkt_dma + i); /* cPRD */
  306. i = adma_fill_sg(qc);
  307. wmb(); /* flush PRDs and pkt to memory */
  308. #if 0
  309. /* dump out CPB + PRDs for debug */
  310. {
  311. int j, len = 0;
  312. static char obuf[2048];
  313. for (j = 0; j < i; ++j) {
  314. len += sprintf(obuf+len, "%02x ", buf[j]);
  315. if ((j & 7) == 7) {
  316. printk("%s\n", obuf);
  317. len = 0;
  318. }
  319. }
  320. if (len)
  321. printk("%s\n", obuf);
  322. }
  323. #endif
  324. }
  325. static inline void adma_packet_start(struct ata_queued_cmd *qc)
  326. {
  327. struct ata_port *ap = qc->ap;
  328. void __iomem *chan = ADMA_PORT_REGS(ap);
  329. VPRINTK("ENTER, ap %p\n", ap);
  330. /* fire up the ADMA engine */
  331. writew(aPIOMD4 | aGO, chan + ADMA_CONTROL);
  332. }
  333. static unsigned int adma_qc_issue(struct ata_queued_cmd *qc)
  334. {
  335. struct adma_port_priv *pp = qc->ap->private_data;
  336. switch (qc->tf.protocol) {
  337. case ATA_PROT_DMA:
  338. pp->state = adma_state_pkt;
  339. adma_packet_start(qc);
  340. return 0;
  341. case ATAPI_PROT_DMA:
  342. BUG();
  343. break;
  344. default:
  345. break;
  346. }
  347. pp->state = adma_state_mmio;
  348. return ata_sff_qc_issue(qc);
  349. }
  350. static inline unsigned int adma_intr_pkt(struct ata_host *host)
  351. {
  352. unsigned int handled = 0, port_no;
  353. for (port_no = 0; port_no < host->n_ports; ++port_no) {
  354. struct ata_port *ap = host->ports[port_no];
  355. struct adma_port_priv *pp;
  356. struct ata_queued_cmd *qc;
  357. void __iomem *chan = ADMA_PORT_REGS(ap);
  358. u8 status = readb(chan + ADMA_STATUS);
  359. if (status == 0)
  360. continue;
  361. handled = 1;
  362. adma_enter_reg_mode(ap);
  363. pp = ap->private_data;
  364. if (!pp || pp->state != adma_state_pkt)
  365. continue;
  366. qc = ata_qc_from_tag(ap, ap->link.active_tag);
  367. if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING))) {
  368. if (status & aPERR)
  369. qc->err_mask |= AC_ERR_HOST_BUS;
  370. else if ((status & (aPSD | aUIRQ)))
  371. qc->err_mask |= AC_ERR_OTHER;
  372. if (pp->pkt[0] & cATERR)
  373. qc->err_mask |= AC_ERR_DEV;
  374. else if (pp->pkt[0] != cDONE)
  375. qc->err_mask |= AC_ERR_OTHER;
  376. if (!qc->err_mask)
  377. ata_qc_complete(qc);
  378. else {
  379. struct ata_eh_info *ehi = &ap->link.eh_info;
  380. ata_ehi_clear_desc(ehi);
  381. ata_ehi_push_desc(ehi,
  382. "ADMA-status 0x%02X", status);
  383. ata_ehi_push_desc(ehi,
  384. "pkt[0] 0x%02X", pp->pkt[0]);
  385. if (qc->err_mask == AC_ERR_DEV)
  386. ata_port_abort(ap);
  387. else
  388. ata_port_freeze(ap);
  389. }
  390. }
  391. }
  392. return handled;
  393. }
  394. static inline unsigned int adma_intr_mmio(struct ata_host *host)
  395. {
  396. unsigned int handled = 0, port_no;
  397. for (port_no = 0; port_no < host->n_ports; ++port_no) {
  398. struct ata_port *ap = host->ports[port_no];
  399. struct adma_port_priv *pp = ap->private_data;
  400. struct ata_queued_cmd *qc;
  401. if (!pp || pp->state != adma_state_mmio)
  402. continue;
  403. qc = ata_qc_from_tag(ap, ap->link.active_tag);
  404. if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING))) {
  405. /* check main status, clearing INTRQ */
  406. u8 status = ata_sff_check_status(ap);
  407. if ((status & ATA_BUSY))
  408. continue;
  409. DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
  410. ap->print_id, qc->tf.protocol, status);
  411. /* complete taskfile transaction */
  412. pp->state = adma_state_idle;
  413. qc->err_mask |= ac_err_mask(status);
  414. if (!qc->err_mask)
  415. ata_qc_complete(qc);
  416. else {
  417. struct ata_eh_info *ehi = &ap->link.eh_info;
  418. ata_ehi_clear_desc(ehi);
  419. ata_ehi_push_desc(ehi, "status 0x%02X", status);
  420. if (qc->err_mask == AC_ERR_DEV)
  421. ata_port_abort(ap);
  422. else
  423. ata_port_freeze(ap);
  424. }
  425. handled = 1;
  426. }
  427. }
  428. return handled;
  429. }
  430. static irqreturn_t adma_intr(int irq, void *dev_instance)
  431. {
  432. struct ata_host *host = dev_instance;
  433. unsigned int handled = 0;
  434. VPRINTK("ENTER\n");
  435. spin_lock(&host->lock);
  436. handled = adma_intr_pkt(host) | adma_intr_mmio(host);
  437. spin_unlock(&host->lock);
  438. VPRINTK("EXIT\n");
  439. return IRQ_RETVAL(handled);
  440. }
  441. static void adma_ata_setup_port(struct ata_ioports *port, void __iomem *base)
  442. {
  443. port->cmd_addr =
  444. port->data_addr = base + 0x000;
  445. port->error_addr =
  446. port->feature_addr = base + 0x004;
  447. port->nsect_addr = base + 0x008;
  448. port->lbal_addr = base + 0x00c;
  449. port->lbam_addr = base + 0x010;
  450. port->lbah_addr = base + 0x014;
  451. port->device_addr = base + 0x018;
  452. port->status_addr =
  453. port->command_addr = base + 0x01c;
  454. port->altstatus_addr =
  455. port->ctl_addr = base + 0x038;
  456. }
  457. static int adma_port_start(struct ata_port *ap)
  458. {
  459. struct device *dev = ap->host->dev;
  460. struct adma_port_priv *pp;
  461. adma_enter_reg_mode(ap);
  462. pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
  463. if (!pp)
  464. return -ENOMEM;
  465. pp->pkt = dmam_alloc_coherent(dev, ADMA_PKT_BYTES, &pp->pkt_dma,
  466. GFP_KERNEL);
  467. if (!pp->pkt)
  468. return -ENOMEM;
  469. /* paranoia? */
  470. if ((pp->pkt_dma & 7) != 0) {
  471. printk(KERN_ERR "bad alignment for pp->pkt_dma: %08x\n",
  472. (u32)pp->pkt_dma);
  473. return -ENOMEM;
  474. }
  475. memset(pp->pkt, 0, ADMA_PKT_BYTES);
  476. ap->private_data = pp;
  477. adma_reinit_engine(ap);
  478. return 0;
  479. }
  480. static void adma_port_stop(struct ata_port *ap)
  481. {
  482. adma_reset_engine(ap);
  483. }
  484. static void adma_host_init(struct ata_host *host, unsigned int chip_id)
  485. {
  486. unsigned int port_no;
  487. /* enable/lock aGO operation */
  488. writeb(7, host->iomap[ADMA_MMIO_BAR] + ADMA_MODE_LOCK);
  489. /* reset the ADMA logic */
  490. for (port_no = 0; port_no < ADMA_PORTS; ++port_no)
  491. adma_reset_engine(host->ports[port_no]);
  492. }
  493. static int adma_set_dma_masks(struct pci_dev *pdev, void __iomem *mmio_base)
  494. {
  495. int rc;
  496. rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
  497. if (rc) {
  498. dev_printk(KERN_ERR, &pdev->dev,
  499. "32-bit DMA enable failed\n");
  500. return rc;
  501. }
  502. rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
  503. if (rc) {
  504. dev_printk(KERN_ERR, &pdev->dev,
  505. "32-bit consistent DMA enable failed\n");
  506. return rc;
  507. }
  508. return 0;
  509. }
  510. static int adma_ata_init_one(struct pci_dev *pdev,
  511. const struct pci_device_id *ent)
  512. {
  513. static int printed_version;
  514. unsigned int board_idx = (unsigned int) ent->driver_data;
  515. const struct ata_port_info *ppi[] = { &adma_port_info[board_idx], NULL };
  516. struct ata_host *host;
  517. void __iomem *mmio_base;
  518. int rc, port_no;
  519. if (!printed_version++)
  520. dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
  521. /* alloc host */
  522. host = ata_host_alloc_pinfo(&pdev->dev, ppi, ADMA_PORTS);
  523. if (!host)
  524. return -ENOMEM;
  525. /* acquire resources and fill host */
  526. rc = pcim_enable_device(pdev);
  527. if (rc)
  528. return rc;
  529. if ((pci_resource_flags(pdev, 4) & IORESOURCE_MEM) == 0)
  530. return -ENODEV;
  531. rc = pcim_iomap_regions(pdev, 1 << ADMA_MMIO_BAR, DRV_NAME);
  532. if (rc)
  533. return rc;
  534. host->iomap = pcim_iomap_table(pdev);
  535. mmio_base = host->iomap[ADMA_MMIO_BAR];
  536. rc = adma_set_dma_masks(pdev, mmio_base);
  537. if (rc)
  538. return rc;
  539. for (port_no = 0; port_no < ADMA_PORTS; ++port_no) {
  540. struct ata_port *ap = host->ports[port_no];
  541. void __iomem *port_base = ADMA_ATA_REGS(mmio_base, port_no);
  542. unsigned int offset = port_base - mmio_base;
  543. adma_ata_setup_port(&ap->ioaddr, port_base);
  544. ata_port_pbar_desc(ap, ADMA_MMIO_BAR, -1, "mmio");
  545. ata_port_pbar_desc(ap, ADMA_MMIO_BAR, offset, "port");
  546. }
  547. /* initialize adapter */
  548. adma_host_init(host, board_idx);
  549. pci_set_master(pdev);
  550. return ata_host_activate(host, pdev->irq, adma_intr, IRQF_SHARED,
  551. &adma_ata_sht);
  552. }
  553. static int __init adma_ata_init(void)
  554. {
  555. return pci_register_driver(&adma_ata_pci_driver);
  556. }
  557. static void __exit adma_ata_exit(void)
  558. {
  559. pci_unregister_driver(&adma_ata_pci_driver);
  560. }
  561. MODULE_AUTHOR("Mark Lord");
  562. MODULE_DESCRIPTION("Pacific Digital Corporation ADMA low-level driver");
  563. MODULE_LICENSE("GPL");
  564. MODULE_DEVICE_TABLE(pci, adma_ata_pci_tbl);
  565. MODULE_VERSION(DRV_VERSION);
  566. module_init(adma_ata_init);
  567. module_exit(adma_ata_exit);