ahci.c 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769
  1. /*
  2. * ahci.c - AHCI SATA support
  3. *
  4. * Maintained by: Jeff Garzik <jgarzik@pobox.com>
  5. * Please ALWAYS copy linux-ide@vger.kernel.org
  6. * on emails.
  7. *
  8. * Copyright 2004-2005 Red Hat, Inc.
  9. *
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2, or (at your option)
  14. * any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; see the file COPYING. If not, write to
  23. * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24. *
  25. *
  26. * libata documentation is available via 'make {ps|pdf}docs',
  27. * as Documentation/DocBook/libata.*
  28. *
  29. * AHCI hardware documentation:
  30. * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
  31. * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
  32. *
  33. */
  34. #include <linux/kernel.h>
  35. #include <linux/module.h>
  36. #include <linux/pci.h>
  37. #include <linux/init.h>
  38. #include <linux/blkdev.h>
  39. #include <linux/delay.h>
  40. #include <linux/interrupt.h>
  41. #include <linux/dma-mapping.h>
  42. #include <linux/device.h>
  43. #include <scsi/scsi_host.h>
  44. #include <scsi/scsi_cmnd.h>
  45. #include <linux/libata.h>
  46. #define DRV_NAME "ahci"
  47. #define DRV_VERSION "2.1"
  48. enum {
  49. AHCI_PCI_BAR = 5,
  50. AHCI_MAX_PORTS = 32,
  51. AHCI_MAX_SG = 168, /* hardware max is 64K */
  52. AHCI_DMA_BOUNDARY = 0xffffffff,
  53. AHCI_USE_CLUSTERING = 0,
  54. AHCI_MAX_CMDS = 32,
  55. AHCI_CMD_SZ = 32,
  56. AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
  57. AHCI_RX_FIS_SZ = 256,
  58. AHCI_CMD_TBL_CDB = 0x40,
  59. AHCI_CMD_TBL_HDR_SZ = 0x80,
  60. AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
  61. AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
  62. AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
  63. AHCI_RX_FIS_SZ,
  64. AHCI_IRQ_ON_SG = (1 << 31),
  65. AHCI_CMD_ATAPI = (1 << 5),
  66. AHCI_CMD_WRITE = (1 << 6),
  67. AHCI_CMD_PREFETCH = (1 << 7),
  68. AHCI_CMD_RESET = (1 << 8),
  69. AHCI_CMD_CLR_BUSY = (1 << 10),
  70. RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
  71. RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
  72. RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
  73. board_ahci = 0,
  74. board_ahci_pi = 1,
  75. board_ahci_vt8251 = 2,
  76. board_ahci_ign_iferr = 3,
  77. board_ahci_sb600 = 4,
  78. /* global controller registers */
  79. HOST_CAP = 0x00, /* host capabilities */
  80. HOST_CTL = 0x04, /* global host control */
  81. HOST_IRQ_STAT = 0x08, /* interrupt status */
  82. HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
  83. HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
  84. /* HOST_CTL bits */
  85. HOST_RESET = (1 << 0), /* reset controller; self-clear */
  86. HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
  87. HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
  88. /* HOST_CAP bits */
  89. HOST_CAP_SSC = (1 << 14), /* Slumber capable */
  90. HOST_CAP_CLO = (1 << 24), /* Command List Override support */
  91. HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
  92. HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
  93. HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
  94. /* registers for each SATA port */
  95. PORT_LST_ADDR = 0x00, /* command list DMA addr */
  96. PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
  97. PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
  98. PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
  99. PORT_IRQ_STAT = 0x10, /* interrupt status */
  100. PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
  101. PORT_CMD = 0x18, /* port command */
  102. PORT_TFDATA = 0x20, /* taskfile data */
  103. PORT_SIG = 0x24, /* device TF signature */
  104. PORT_CMD_ISSUE = 0x38, /* command issue */
  105. PORT_SCR = 0x28, /* SATA phy register block */
  106. PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
  107. PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
  108. PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
  109. PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
  110. /* PORT_IRQ_{STAT,MASK} bits */
  111. PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
  112. PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
  113. PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
  114. PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
  115. PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
  116. PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
  117. PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
  118. PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
  119. PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
  120. PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
  121. PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
  122. PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
  123. PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
  124. PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
  125. PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
  126. PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
  127. PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
  128. PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
  129. PORT_IRQ_IF_ERR |
  130. PORT_IRQ_CONNECT |
  131. PORT_IRQ_PHYRDY |
  132. PORT_IRQ_UNK_FIS,
  133. PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
  134. PORT_IRQ_TF_ERR |
  135. PORT_IRQ_HBUS_DATA_ERR,
  136. DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
  137. PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
  138. PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
  139. /* PORT_CMD bits */
  140. PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
  141. PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
  142. PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
  143. PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
  144. PORT_CMD_CLO = (1 << 3), /* Command list override */
  145. PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
  146. PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
  147. PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
  148. PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
  149. PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
  150. PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
  151. PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
  152. /* ap->flags bits */
  153. AHCI_FLAG_NO_NCQ = (1 << 24),
  154. AHCI_FLAG_IGN_IRQ_IF_ERR = (1 << 25), /* ignore IRQ_IF_ERR */
  155. AHCI_FLAG_HONOR_PI = (1 << 26), /* honor PORTS_IMPL */
  156. AHCI_FLAG_IGN_SERR_INTERNAL = (1 << 27), /* ignore SERR_INTERNAL */
  157. AHCI_FLAG_32BIT_ONLY = (1 << 28), /* force 32bit */
  158. AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
  159. ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
  160. ATA_FLAG_SKIP_D2H_BSY |
  161. ATA_FLAG_ACPI_SATA,
  162. };
  163. struct ahci_cmd_hdr {
  164. u32 opts;
  165. u32 status;
  166. u32 tbl_addr;
  167. u32 tbl_addr_hi;
  168. u32 reserved[4];
  169. };
  170. struct ahci_sg {
  171. u32 addr;
  172. u32 addr_hi;
  173. u32 reserved;
  174. u32 flags_size;
  175. };
  176. struct ahci_host_priv {
  177. u32 cap; /* cap to use */
  178. u32 port_map; /* port map to use */
  179. u32 saved_cap; /* saved initial cap */
  180. u32 saved_port_map; /* saved initial port_map */
  181. };
  182. struct ahci_port_priv {
  183. struct ahci_cmd_hdr *cmd_slot;
  184. dma_addr_t cmd_slot_dma;
  185. void *cmd_tbl;
  186. dma_addr_t cmd_tbl_dma;
  187. void *rx_fis;
  188. dma_addr_t rx_fis_dma;
  189. /* for NCQ spurious interrupt analysis */
  190. unsigned int ncq_saw_d2h:1;
  191. unsigned int ncq_saw_dmas:1;
  192. unsigned int ncq_saw_sdb:1;
  193. };
  194. static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg);
  195. static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
  196. static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
  197. static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
  198. static void ahci_irq_clear(struct ata_port *ap);
  199. static int ahci_port_start(struct ata_port *ap);
  200. static void ahci_port_stop(struct ata_port *ap);
  201. static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
  202. static void ahci_qc_prep(struct ata_queued_cmd *qc);
  203. static u8 ahci_check_status(struct ata_port *ap);
  204. static void ahci_freeze(struct ata_port *ap);
  205. static void ahci_thaw(struct ata_port *ap);
  206. static void ahci_error_handler(struct ata_port *ap);
  207. static void ahci_vt8251_error_handler(struct ata_port *ap);
  208. static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
  209. #ifdef CONFIG_PM
  210. static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
  211. static int ahci_port_resume(struct ata_port *ap);
  212. static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
  213. static int ahci_pci_device_resume(struct pci_dev *pdev);
  214. #endif
  215. static struct scsi_host_template ahci_sht = {
  216. .module = THIS_MODULE,
  217. .name = DRV_NAME,
  218. .ioctl = ata_scsi_ioctl,
  219. .queuecommand = ata_scsi_queuecmd,
  220. .change_queue_depth = ata_scsi_change_queue_depth,
  221. .can_queue = AHCI_MAX_CMDS - 1,
  222. .this_id = ATA_SHT_THIS_ID,
  223. .sg_tablesize = AHCI_MAX_SG,
  224. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  225. .emulated = ATA_SHT_EMULATED,
  226. .use_clustering = AHCI_USE_CLUSTERING,
  227. .proc_name = DRV_NAME,
  228. .dma_boundary = AHCI_DMA_BOUNDARY,
  229. .slave_configure = ata_scsi_slave_config,
  230. .slave_destroy = ata_scsi_slave_destroy,
  231. .bios_param = ata_std_bios_param,
  232. };
  233. static const struct ata_port_operations ahci_ops = {
  234. .port_disable = ata_port_disable,
  235. .check_status = ahci_check_status,
  236. .check_altstatus = ahci_check_status,
  237. .dev_select = ata_noop_dev_select,
  238. .tf_read = ahci_tf_read,
  239. .qc_prep = ahci_qc_prep,
  240. .qc_issue = ahci_qc_issue,
  241. .irq_clear = ahci_irq_clear,
  242. .irq_on = ata_dummy_irq_on,
  243. .irq_ack = ata_dummy_irq_ack,
  244. .scr_read = ahci_scr_read,
  245. .scr_write = ahci_scr_write,
  246. .freeze = ahci_freeze,
  247. .thaw = ahci_thaw,
  248. .error_handler = ahci_error_handler,
  249. .post_internal_cmd = ahci_post_internal_cmd,
  250. #ifdef CONFIG_PM
  251. .port_suspend = ahci_port_suspend,
  252. .port_resume = ahci_port_resume,
  253. #endif
  254. .port_start = ahci_port_start,
  255. .port_stop = ahci_port_stop,
  256. };
  257. static const struct ata_port_operations ahci_vt8251_ops = {
  258. .port_disable = ata_port_disable,
  259. .check_status = ahci_check_status,
  260. .check_altstatus = ahci_check_status,
  261. .dev_select = ata_noop_dev_select,
  262. .tf_read = ahci_tf_read,
  263. .qc_prep = ahci_qc_prep,
  264. .qc_issue = ahci_qc_issue,
  265. .irq_clear = ahci_irq_clear,
  266. .irq_on = ata_dummy_irq_on,
  267. .irq_ack = ata_dummy_irq_ack,
  268. .scr_read = ahci_scr_read,
  269. .scr_write = ahci_scr_write,
  270. .freeze = ahci_freeze,
  271. .thaw = ahci_thaw,
  272. .error_handler = ahci_vt8251_error_handler,
  273. .post_internal_cmd = ahci_post_internal_cmd,
  274. #ifdef CONFIG_PM
  275. .port_suspend = ahci_port_suspend,
  276. .port_resume = ahci_port_resume,
  277. #endif
  278. .port_start = ahci_port_start,
  279. .port_stop = ahci_port_stop,
  280. };
  281. static const struct ata_port_info ahci_port_info[] = {
  282. /* board_ahci */
  283. {
  284. .flags = AHCI_FLAG_COMMON,
  285. .pio_mask = 0x1f, /* pio0-4 */
  286. .udma_mask = 0x7f, /* udma0-6 ; FIXME */
  287. .port_ops = &ahci_ops,
  288. },
  289. /* board_ahci_pi */
  290. {
  291. .flags = AHCI_FLAG_COMMON | AHCI_FLAG_HONOR_PI,
  292. .pio_mask = 0x1f, /* pio0-4 */
  293. .udma_mask = 0x7f, /* udma0-6 ; FIXME */
  294. .port_ops = &ahci_ops,
  295. },
  296. /* board_ahci_vt8251 */
  297. {
  298. .flags = AHCI_FLAG_COMMON | ATA_FLAG_HRST_TO_RESUME |
  299. AHCI_FLAG_NO_NCQ,
  300. .pio_mask = 0x1f, /* pio0-4 */
  301. .udma_mask = 0x7f, /* udma0-6 ; FIXME */
  302. .port_ops = &ahci_vt8251_ops,
  303. },
  304. /* board_ahci_ign_iferr */
  305. {
  306. .flags = AHCI_FLAG_COMMON | AHCI_FLAG_IGN_IRQ_IF_ERR,
  307. .pio_mask = 0x1f, /* pio0-4 */
  308. .udma_mask = 0x7f, /* udma0-6 ; FIXME */
  309. .port_ops = &ahci_ops,
  310. },
  311. /* board_ahci_sb600 */
  312. {
  313. .flags = AHCI_FLAG_COMMON |
  314. AHCI_FLAG_IGN_SERR_INTERNAL |
  315. AHCI_FLAG_32BIT_ONLY,
  316. .pio_mask = 0x1f, /* pio0-4 */
  317. .udma_mask = 0x7f, /* udma0-6 ; FIXME */
  318. .port_ops = &ahci_ops,
  319. },
  320. };
  321. static const struct pci_device_id ahci_pci_tbl[] = {
  322. /* Intel */
  323. { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
  324. { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
  325. { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
  326. { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
  327. { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
  328. { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
  329. { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
  330. { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
  331. { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
  332. { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
  333. { PCI_VDEVICE(INTEL, 0x2821), board_ahci_pi }, /* ICH8 */
  334. { PCI_VDEVICE(INTEL, 0x2822), board_ahci_pi }, /* ICH8 */
  335. { PCI_VDEVICE(INTEL, 0x2824), board_ahci_pi }, /* ICH8 */
  336. { PCI_VDEVICE(INTEL, 0x2829), board_ahci_pi }, /* ICH8M */
  337. { PCI_VDEVICE(INTEL, 0x282a), board_ahci_pi }, /* ICH8M */
  338. { PCI_VDEVICE(INTEL, 0x2922), board_ahci_pi }, /* ICH9 */
  339. { PCI_VDEVICE(INTEL, 0x2923), board_ahci_pi }, /* ICH9 */
  340. { PCI_VDEVICE(INTEL, 0x2924), board_ahci_pi }, /* ICH9 */
  341. { PCI_VDEVICE(INTEL, 0x2925), board_ahci_pi }, /* ICH9 */
  342. { PCI_VDEVICE(INTEL, 0x2927), board_ahci_pi }, /* ICH9 */
  343. { PCI_VDEVICE(INTEL, 0x2929), board_ahci_pi }, /* ICH9M */
  344. { PCI_VDEVICE(INTEL, 0x292a), board_ahci_pi }, /* ICH9M */
  345. { PCI_VDEVICE(INTEL, 0x292b), board_ahci_pi }, /* ICH9M */
  346. { PCI_VDEVICE(INTEL, 0x292c), board_ahci_pi }, /* ICH9M */
  347. { PCI_VDEVICE(INTEL, 0x292f), board_ahci_pi }, /* ICH9M */
  348. { PCI_VDEVICE(INTEL, 0x294d), board_ahci_pi }, /* ICH9 */
  349. { PCI_VDEVICE(INTEL, 0x294e), board_ahci_pi }, /* ICH9M */
  350. /* JMicron 360/1/3/5/6, match class to avoid IDE function */
  351. { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
  352. PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
  353. /* ATI */
  354. { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
  355. { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb600 }, /* ATI SB700 */
  356. /* VIA */
  357. { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
  358. { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
  359. /* NVIDIA */
  360. { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci }, /* MCP65 */
  361. { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci }, /* MCP65 */
  362. { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci }, /* MCP65 */
  363. { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci }, /* MCP65 */
  364. { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci }, /* MCP65 */
  365. { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci }, /* MCP65 */
  366. { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci }, /* MCP65 */
  367. { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci }, /* MCP65 */
  368. { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci }, /* MCP67 */
  369. { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci }, /* MCP67 */
  370. { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci }, /* MCP67 */
  371. { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci }, /* MCP67 */
  372. { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci }, /* MCP67 */
  373. { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci }, /* MCP67 */
  374. { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci }, /* MCP67 */
  375. { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci }, /* MCP67 */
  376. { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci }, /* MCP67 */
  377. { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci }, /* MCP67 */
  378. { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci }, /* MCP67 */
  379. { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci }, /* MCP67 */
  380. /* SiS */
  381. { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
  382. { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 966 */
  383. { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
  384. /* Generic, PCI class code for AHCI */
  385. { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
  386. PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
  387. { } /* terminate list */
  388. };
  389. static struct pci_driver ahci_pci_driver = {
  390. .name = DRV_NAME,
  391. .id_table = ahci_pci_tbl,
  392. .probe = ahci_init_one,
  393. .remove = ata_pci_remove_one,
  394. #ifdef CONFIG_PM
  395. .suspend = ahci_pci_device_suspend,
  396. .resume = ahci_pci_device_resume,
  397. #endif
  398. };
  399. static inline int ahci_nr_ports(u32 cap)
  400. {
  401. return (cap & 0x1f) + 1;
  402. }
  403. static inline void __iomem *ahci_port_base(struct ata_port *ap)
  404. {
  405. void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
  406. return mmio + 0x100 + (ap->port_no * 0x80);
  407. }
  408. /**
  409. * ahci_save_initial_config - Save and fixup initial config values
  410. * @pdev: target PCI device
  411. * @pi: associated ATA port info
  412. * @hpriv: host private area to store config values
  413. *
  414. * Some registers containing configuration info might be setup by
  415. * BIOS and might be cleared on reset. This function saves the
  416. * initial values of those registers into @hpriv such that they
  417. * can be restored after controller reset.
  418. *
  419. * If inconsistent, config values are fixed up by this function.
  420. *
  421. * LOCKING:
  422. * None.
  423. */
  424. static void ahci_save_initial_config(struct pci_dev *pdev,
  425. const struct ata_port_info *pi,
  426. struct ahci_host_priv *hpriv)
  427. {
  428. void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
  429. u32 cap, port_map;
  430. int i;
  431. /* Values prefixed with saved_ are written back to host after
  432. * reset. Values without are used for driver operation.
  433. */
  434. hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
  435. hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
  436. /* some chips lie about 64bit support */
  437. if ((cap & HOST_CAP_64) && (pi->flags & AHCI_FLAG_32BIT_ONLY)) {
  438. dev_printk(KERN_INFO, &pdev->dev,
  439. "controller can't do 64bit DMA, forcing 32bit\n");
  440. cap &= ~HOST_CAP_64;
  441. }
  442. /* fixup zero port_map */
  443. if (!port_map) {
  444. port_map = (1 << ahci_nr_ports(hpriv->cap)) - 1;
  445. dev_printk(KERN_WARNING, &pdev->dev,
  446. "PORTS_IMPL is zero, forcing 0x%x\n", port_map);
  447. /* write the fixed up value to the PI register */
  448. hpriv->saved_port_map = port_map;
  449. }
  450. /* cross check port_map and cap.n_ports */
  451. if (pi->flags & AHCI_FLAG_HONOR_PI) {
  452. u32 tmp_port_map = port_map;
  453. int n_ports = ahci_nr_ports(cap);
  454. for (i = 0; i < AHCI_MAX_PORTS && n_ports; i++) {
  455. if (tmp_port_map & (1 << i)) {
  456. n_ports--;
  457. tmp_port_map &= ~(1 << i);
  458. }
  459. }
  460. /* Whine if inconsistent. No need to update cap.
  461. * port_map is used to determine number of ports.
  462. */
  463. if (n_ports || tmp_port_map)
  464. dev_printk(KERN_WARNING, &pdev->dev,
  465. "nr_ports (%u) and implemented port map "
  466. "(0x%x) don't match\n",
  467. ahci_nr_ports(cap), port_map);
  468. } else {
  469. /* fabricate port_map from cap.nr_ports */
  470. port_map = (1 << ahci_nr_ports(cap)) - 1;
  471. }
  472. /* record values to use during operation */
  473. hpriv->cap = cap;
  474. hpriv->port_map = port_map;
  475. }
  476. /**
  477. * ahci_restore_initial_config - Restore initial config
  478. * @host: target ATA host
  479. *
  480. * Restore initial config stored by ahci_save_initial_config().
  481. *
  482. * LOCKING:
  483. * None.
  484. */
  485. static void ahci_restore_initial_config(struct ata_host *host)
  486. {
  487. struct ahci_host_priv *hpriv = host->private_data;
  488. void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
  489. writel(hpriv->saved_cap, mmio + HOST_CAP);
  490. writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
  491. (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
  492. }
  493. static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg_in)
  494. {
  495. unsigned int sc_reg;
  496. switch (sc_reg_in) {
  497. case SCR_STATUS: sc_reg = 0; break;
  498. case SCR_CONTROL: sc_reg = 1; break;
  499. case SCR_ERROR: sc_reg = 2; break;
  500. case SCR_ACTIVE: sc_reg = 3; break;
  501. default:
  502. return 0xffffffffU;
  503. }
  504. return readl(ap->ioaddr.scr_addr + (sc_reg * 4));
  505. }
  506. static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg_in,
  507. u32 val)
  508. {
  509. unsigned int sc_reg;
  510. switch (sc_reg_in) {
  511. case SCR_STATUS: sc_reg = 0; break;
  512. case SCR_CONTROL: sc_reg = 1; break;
  513. case SCR_ERROR: sc_reg = 2; break;
  514. case SCR_ACTIVE: sc_reg = 3; break;
  515. default:
  516. return;
  517. }
  518. writel(val, ap->ioaddr.scr_addr + (sc_reg * 4));
  519. }
  520. static void ahci_start_engine(struct ata_port *ap)
  521. {
  522. void __iomem *port_mmio = ahci_port_base(ap);
  523. u32 tmp;
  524. /* start DMA */
  525. tmp = readl(port_mmio + PORT_CMD);
  526. tmp |= PORT_CMD_START;
  527. writel(tmp, port_mmio + PORT_CMD);
  528. readl(port_mmio + PORT_CMD); /* flush */
  529. }
  530. static int ahci_stop_engine(struct ata_port *ap)
  531. {
  532. void __iomem *port_mmio = ahci_port_base(ap);
  533. u32 tmp;
  534. tmp = readl(port_mmio + PORT_CMD);
  535. /* check if the HBA is idle */
  536. if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
  537. return 0;
  538. /* setting HBA to idle */
  539. tmp &= ~PORT_CMD_START;
  540. writel(tmp, port_mmio + PORT_CMD);
  541. /* wait for engine to stop. This could be as long as 500 msec */
  542. tmp = ata_wait_register(port_mmio + PORT_CMD,
  543. PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
  544. if (tmp & PORT_CMD_LIST_ON)
  545. return -EIO;
  546. return 0;
  547. }
  548. static void ahci_start_fis_rx(struct ata_port *ap)
  549. {
  550. void __iomem *port_mmio = ahci_port_base(ap);
  551. struct ahci_host_priv *hpriv = ap->host->private_data;
  552. struct ahci_port_priv *pp = ap->private_data;
  553. u32 tmp;
  554. /* set FIS registers */
  555. if (hpriv->cap & HOST_CAP_64)
  556. writel((pp->cmd_slot_dma >> 16) >> 16,
  557. port_mmio + PORT_LST_ADDR_HI);
  558. writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
  559. if (hpriv->cap & HOST_CAP_64)
  560. writel((pp->rx_fis_dma >> 16) >> 16,
  561. port_mmio + PORT_FIS_ADDR_HI);
  562. writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
  563. /* enable FIS reception */
  564. tmp = readl(port_mmio + PORT_CMD);
  565. tmp |= PORT_CMD_FIS_RX;
  566. writel(tmp, port_mmio + PORT_CMD);
  567. /* flush */
  568. readl(port_mmio + PORT_CMD);
  569. }
  570. static int ahci_stop_fis_rx(struct ata_port *ap)
  571. {
  572. void __iomem *port_mmio = ahci_port_base(ap);
  573. u32 tmp;
  574. /* disable FIS reception */
  575. tmp = readl(port_mmio + PORT_CMD);
  576. tmp &= ~PORT_CMD_FIS_RX;
  577. writel(tmp, port_mmio + PORT_CMD);
  578. /* wait for completion, spec says 500ms, give it 1000 */
  579. tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
  580. PORT_CMD_FIS_ON, 10, 1000);
  581. if (tmp & PORT_CMD_FIS_ON)
  582. return -EBUSY;
  583. return 0;
  584. }
  585. static void ahci_power_up(struct ata_port *ap)
  586. {
  587. struct ahci_host_priv *hpriv = ap->host->private_data;
  588. void __iomem *port_mmio = ahci_port_base(ap);
  589. u32 cmd;
  590. cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
  591. /* spin up device */
  592. if (hpriv->cap & HOST_CAP_SSS) {
  593. cmd |= PORT_CMD_SPIN_UP;
  594. writel(cmd, port_mmio + PORT_CMD);
  595. }
  596. /* wake up link */
  597. writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
  598. }
  599. #ifdef CONFIG_PM
  600. static void ahci_power_down(struct ata_port *ap)
  601. {
  602. struct ahci_host_priv *hpriv = ap->host->private_data;
  603. void __iomem *port_mmio = ahci_port_base(ap);
  604. u32 cmd, scontrol;
  605. if (!(hpriv->cap & HOST_CAP_SSS))
  606. return;
  607. /* put device into listen mode, first set PxSCTL.DET to 0 */
  608. scontrol = readl(port_mmio + PORT_SCR_CTL);
  609. scontrol &= ~0xf;
  610. writel(scontrol, port_mmio + PORT_SCR_CTL);
  611. /* then set PxCMD.SUD to 0 */
  612. cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
  613. cmd &= ~PORT_CMD_SPIN_UP;
  614. writel(cmd, port_mmio + PORT_CMD);
  615. }
  616. #endif
  617. static void ahci_init_port(struct ata_port *ap)
  618. {
  619. /* enable FIS reception */
  620. ahci_start_fis_rx(ap);
  621. /* enable DMA */
  622. ahci_start_engine(ap);
  623. }
  624. static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
  625. {
  626. int rc;
  627. /* disable DMA */
  628. rc = ahci_stop_engine(ap);
  629. if (rc) {
  630. *emsg = "failed to stop engine";
  631. return rc;
  632. }
  633. /* disable FIS reception */
  634. rc = ahci_stop_fis_rx(ap);
  635. if (rc) {
  636. *emsg = "failed stop FIS RX";
  637. return rc;
  638. }
  639. return 0;
  640. }
  641. static int ahci_reset_controller(struct ata_host *host)
  642. {
  643. struct pci_dev *pdev = to_pci_dev(host->dev);
  644. void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
  645. u32 tmp;
  646. /* global controller reset */
  647. tmp = readl(mmio + HOST_CTL);
  648. if ((tmp & HOST_RESET) == 0) {
  649. writel(tmp | HOST_RESET, mmio + HOST_CTL);
  650. readl(mmio + HOST_CTL); /* flush */
  651. }
  652. /* reset must complete within 1 second, or
  653. * the hardware should be considered fried.
  654. */
  655. ssleep(1);
  656. tmp = readl(mmio + HOST_CTL);
  657. if (tmp & HOST_RESET) {
  658. dev_printk(KERN_ERR, host->dev,
  659. "controller reset failed (0x%x)\n", tmp);
  660. return -EIO;
  661. }
  662. /* turn on AHCI mode */
  663. writel(HOST_AHCI_EN, mmio + HOST_CTL);
  664. (void) readl(mmio + HOST_CTL); /* flush */
  665. /* some registers might be cleared on reset. restore initial values */
  666. ahci_restore_initial_config(host);
  667. if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
  668. u16 tmp16;
  669. /* configure PCS */
  670. pci_read_config_word(pdev, 0x92, &tmp16);
  671. tmp16 |= 0xf;
  672. pci_write_config_word(pdev, 0x92, tmp16);
  673. }
  674. return 0;
  675. }
  676. static void ahci_init_controller(struct ata_host *host)
  677. {
  678. struct pci_dev *pdev = to_pci_dev(host->dev);
  679. void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
  680. int i, rc;
  681. u32 tmp;
  682. for (i = 0; i < host->n_ports; i++) {
  683. struct ata_port *ap = host->ports[i];
  684. void __iomem *port_mmio = ahci_port_base(ap);
  685. const char *emsg = NULL;
  686. if (ata_port_is_dummy(ap))
  687. continue;
  688. /* make sure port is not active */
  689. rc = ahci_deinit_port(ap, &emsg);
  690. if (rc)
  691. dev_printk(KERN_WARNING, &pdev->dev,
  692. "%s (%d)\n", emsg, rc);
  693. /* clear SError */
  694. tmp = readl(port_mmio + PORT_SCR_ERR);
  695. VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
  696. writel(tmp, port_mmio + PORT_SCR_ERR);
  697. /* clear port IRQ */
  698. tmp = readl(port_mmio + PORT_IRQ_STAT);
  699. VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
  700. if (tmp)
  701. writel(tmp, port_mmio + PORT_IRQ_STAT);
  702. writel(1 << i, mmio + HOST_IRQ_STAT);
  703. }
  704. tmp = readl(mmio + HOST_CTL);
  705. VPRINTK("HOST_CTL 0x%x\n", tmp);
  706. writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
  707. tmp = readl(mmio + HOST_CTL);
  708. VPRINTK("HOST_CTL 0x%x\n", tmp);
  709. }
  710. static unsigned int ahci_dev_classify(struct ata_port *ap)
  711. {
  712. void __iomem *port_mmio = ahci_port_base(ap);
  713. struct ata_taskfile tf;
  714. u32 tmp;
  715. tmp = readl(port_mmio + PORT_SIG);
  716. tf.lbah = (tmp >> 24) & 0xff;
  717. tf.lbam = (tmp >> 16) & 0xff;
  718. tf.lbal = (tmp >> 8) & 0xff;
  719. tf.nsect = (tmp) & 0xff;
  720. return ata_dev_classify(&tf);
  721. }
  722. static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
  723. u32 opts)
  724. {
  725. dma_addr_t cmd_tbl_dma;
  726. cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
  727. pp->cmd_slot[tag].opts = cpu_to_le32(opts);
  728. pp->cmd_slot[tag].status = 0;
  729. pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
  730. pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
  731. }
  732. static int ahci_clo(struct ata_port *ap)
  733. {
  734. void __iomem *port_mmio = ap->ioaddr.cmd_addr;
  735. struct ahci_host_priv *hpriv = ap->host->private_data;
  736. u32 tmp;
  737. if (!(hpriv->cap & HOST_CAP_CLO))
  738. return -EOPNOTSUPP;
  739. tmp = readl(port_mmio + PORT_CMD);
  740. tmp |= PORT_CMD_CLO;
  741. writel(tmp, port_mmio + PORT_CMD);
  742. tmp = ata_wait_register(port_mmio + PORT_CMD,
  743. PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
  744. if (tmp & PORT_CMD_CLO)
  745. return -EIO;
  746. return 0;
  747. }
  748. static int ahci_softreset(struct ata_port *ap, unsigned int *class,
  749. unsigned long deadline)
  750. {
  751. struct ahci_port_priv *pp = ap->private_data;
  752. void __iomem *port_mmio = ahci_port_base(ap);
  753. const u32 cmd_fis_len = 5; /* five dwords */
  754. const char *reason = NULL;
  755. struct ata_taskfile tf;
  756. u32 tmp;
  757. u8 *fis;
  758. int rc;
  759. DPRINTK("ENTER\n");
  760. if (ata_port_offline(ap)) {
  761. DPRINTK("PHY reports no device\n");
  762. *class = ATA_DEV_NONE;
  763. return 0;
  764. }
  765. /* prepare for SRST (AHCI-1.1 10.4.1) */
  766. rc = ahci_stop_engine(ap);
  767. if (rc) {
  768. reason = "failed to stop engine";
  769. goto fail_restart;
  770. }
  771. /* check BUSY/DRQ, perform Command List Override if necessary */
  772. if (ahci_check_status(ap) & (ATA_BUSY | ATA_DRQ)) {
  773. rc = ahci_clo(ap);
  774. if (rc == -EOPNOTSUPP) {
  775. reason = "port busy but CLO unavailable";
  776. goto fail_restart;
  777. } else if (rc) {
  778. reason = "port busy but CLO failed";
  779. goto fail_restart;
  780. }
  781. }
  782. /* restart engine */
  783. ahci_start_engine(ap);
  784. ata_tf_init(ap->device, &tf);
  785. fis = pp->cmd_tbl;
  786. /* issue the first D2H Register FIS */
  787. ahci_fill_cmd_slot(pp, 0,
  788. cmd_fis_len | AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY);
  789. tf.ctl |= ATA_SRST;
  790. ata_tf_to_fis(&tf, fis, 0);
  791. fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
  792. writel(1, port_mmio + PORT_CMD_ISSUE);
  793. tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1, 1, 500);
  794. if (tmp & 0x1) {
  795. rc = -EIO;
  796. reason = "1st FIS failed";
  797. goto fail;
  798. }
  799. /* spec says at least 5us, but be generous and sleep for 1ms */
  800. msleep(1);
  801. /* issue the second D2H Register FIS */
  802. ahci_fill_cmd_slot(pp, 0, cmd_fis_len);
  803. tf.ctl &= ~ATA_SRST;
  804. ata_tf_to_fis(&tf, fis, 0);
  805. fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
  806. writel(1, port_mmio + PORT_CMD_ISSUE);
  807. readl(port_mmio + PORT_CMD_ISSUE); /* flush */
  808. /* spec mandates ">= 2ms" before checking status.
  809. * We wait 150ms, because that was the magic delay used for
  810. * ATAPI devices in Hale Landis's ATADRVR, for the period of time
  811. * between when the ATA command register is written, and then
  812. * status is checked. Because waiting for "a while" before
  813. * checking status is fine, post SRST, we perform this magic
  814. * delay here as well.
  815. */
  816. msleep(150);
  817. rc = ata_wait_ready(ap, deadline);
  818. /* link occupied, -ENODEV too is an error */
  819. if (rc) {
  820. reason = "device not ready";
  821. goto fail;
  822. }
  823. *class = ahci_dev_classify(ap);
  824. DPRINTK("EXIT, class=%u\n", *class);
  825. return 0;
  826. fail_restart:
  827. ahci_start_engine(ap);
  828. fail:
  829. ata_port_printk(ap, KERN_ERR, "softreset failed (%s)\n", reason);
  830. return rc;
  831. }
  832. static int ahci_hardreset(struct ata_port *ap, unsigned int *class,
  833. unsigned long deadline)
  834. {
  835. struct ahci_port_priv *pp = ap->private_data;
  836. u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
  837. struct ata_taskfile tf;
  838. int rc;
  839. DPRINTK("ENTER\n");
  840. ahci_stop_engine(ap);
  841. /* clear D2H reception area to properly wait for D2H FIS */
  842. ata_tf_init(ap->device, &tf);
  843. tf.command = 0x80;
  844. ata_tf_to_fis(&tf, d2h_fis, 0);
  845. rc = sata_std_hardreset(ap, class, deadline);
  846. ahci_start_engine(ap);
  847. if (rc == 0 && ata_port_online(ap))
  848. *class = ahci_dev_classify(ap);
  849. if (*class == ATA_DEV_UNKNOWN)
  850. *class = ATA_DEV_NONE;
  851. DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
  852. return rc;
  853. }
  854. static int ahci_vt8251_hardreset(struct ata_port *ap, unsigned int *class,
  855. unsigned long deadline)
  856. {
  857. int rc;
  858. DPRINTK("ENTER\n");
  859. ahci_stop_engine(ap);
  860. rc = sata_port_hardreset(ap, sata_ehc_deb_timing(&ap->eh_context),
  861. deadline);
  862. /* vt8251 needs SError cleared for the port to operate */
  863. ahci_scr_write(ap, SCR_ERROR, ahci_scr_read(ap, SCR_ERROR));
  864. ahci_start_engine(ap);
  865. DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
  866. /* vt8251 doesn't clear BSY on signature FIS reception,
  867. * request follow-up softreset.
  868. */
  869. return rc ?: -EAGAIN;
  870. }
  871. static void ahci_postreset(struct ata_port *ap, unsigned int *class)
  872. {
  873. void __iomem *port_mmio = ahci_port_base(ap);
  874. u32 new_tmp, tmp;
  875. ata_std_postreset(ap, class);
  876. /* Make sure port's ATAPI bit is set appropriately */
  877. new_tmp = tmp = readl(port_mmio + PORT_CMD);
  878. if (*class == ATA_DEV_ATAPI)
  879. new_tmp |= PORT_CMD_ATAPI;
  880. else
  881. new_tmp &= ~PORT_CMD_ATAPI;
  882. if (new_tmp != tmp) {
  883. writel(new_tmp, port_mmio + PORT_CMD);
  884. readl(port_mmio + PORT_CMD); /* flush */
  885. }
  886. }
  887. static u8 ahci_check_status(struct ata_port *ap)
  888. {
  889. void __iomem *mmio = ap->ioaddr.cmd_addr;
  890. return readl(mmio + PORT_TFDATA) & 0xFF;
  891. }
  892. static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
  893. {
  894. struct ahci_port_priv *pp = ap->private_data;
  895. u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
  896. ata_tf_from_fis(d2h_fis, tf);
  897. }
  898. static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
  899. {
  900. struct scatterlist *sg;
  901. struct ahci_sg *ahci_sg;
  902. unsigned int n_sg = 0;
  903. VPRINTK("ENTER\n");
  904. /*
  905. * Next, the S/G list.
  906. */
  907. ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
  908. ata_for_each_sg(sg, qc) {
  909. dma_addr_t addr = sg_dma_address(sg);
  910. u32 sg_len = sg_dma_len(sg);
  911. ahci_sg->addr = cpu_to_le32(addr & 0xffffffff);
  912. ahci_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16);
  913. ahci_sg->flags_size = cpu_to_le32(sg_len - 1);
  914. ahci_sg++;
  915. n_sg++;
  916. }
  917. return n_sg;
  918. }
  919. static void ahci_qc_prep(struct ata_queued_cmd *qc)
  920. {
  921. struct ata_port *ap = qc->ap;
  922. struct ahci_port_priv *pp = ap->private_data;
  923. int is_atapi = is_atapi_taskfile(&qc->tf);
  924. void *cmd_tbl;
  925. u32 opts;
  926. const u32 cmd_fis_len = 5; /* five dwords */
  927. unsigned int n_elem;
  928. /*
  929. * Fill in command table information. First, the header,
  930. * a SATA Register - Host to Device command FIS.
  931. */
  932. cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
  933. ata_tf_to_fis(&qc->tf, cmd_tbl, 0);
  934. if (is_atapi) {
  935. memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
  936. memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
  937. }
  938. n_elem = 0;
  939. if (qc->flags & ATA_QCFLAG_DMAMAP)
  940. n_elem = ahci_fill_sg(qc, cmd_tbl);
  941. /*
  942. * Fill in command slot information.
  943. */
  944. opts = cmd_fis_len | n_elem << 16;
  945. if (qc->tf.flags & ATA_TFLAG_WRITE)
  946. opts |= AHCI_CMD_WRITE;
  947. if (is_atapi)
  948. opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
  949. ahci_fill_cmd_slot(pp, qc->tag, opts);
  950. }
  951. static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
  952. {
  953. struct ahci_port_priv *pp = ap->private_data;
  954. struct ata_eh_info *ehi = &ap->eh_info;
  955. unsigned int err_mask = 0, action = 0;
  956. struct ata_queued_cmd *qc;
  957. u32 serror;
  958. ata_ehi_clear_desc(ehi);
  959. /* AHCI needs SError cleared; otherwise, it might lock up */
  960. serror = ahci_scr_read(ap, SCR_ERROR);
  961. ahci_scr_write(ap, SCR_ERROR, serror);
  962. /* analyze @irq_stat */
  963. ata_ehi_push_desc(ehi, "irq_stat 0x%08x", irq_stat);
  964. /* some controllers set IRQ_IF_ERR on device errors, ignore it */
  965. if (ap->flags & AHCI_FLAG_IGN_IRQ_IF_ERR)
  966. irq_stat &= ~PORT_IRQ_IF_ERR;
  967. if (irq_stat & PORT_IRQ_TF_ERR) {
  968. err_mask |= AC_ERR_DEV;
  969. if (ap->flags & AHCI_FLAG_IGN_SERR_INTERNAL)
  970. serror &= ~SERR_INTERNAL;
  971. }
  972. if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
  973. err_mask |= AC_ERR_HOST_BUS;
  974. action |= ATA_EH_SOFTRESET;
  975. }
  976. if (irq_stat & PORT_IRQ_IF_ERR) {
  977. err_mask |= AC_ERR_ATA_BUS;
  978. action |= ATA_EH_SOFTRESET;
  979. ata_ehi_push_desc(ehi, ", interface fatal error");
  980. }
  981. if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
  982. ata_ehi_hotplugged(ehi);
  983. ata_ehi_push_desc(ehi, ", %s", irq_stat & PORT_IRQ_CONNECT ?
  984. "connection status changed" : "PHY RDY changed");
  985. }
  986. if (irq_stat & PORT_IRQ_UNK_FIS) {
  987. u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
  988. err_mask |= AC_ERR_HSM;
  989. action |= ATA_EH_SOFTRESET;
  990. ata_ehi_push_desc(ehi, ", unknown FIS %08x %08x %08x %08x",
  991. unk[0], unk[1], unk[2], unk[3]);
  992. }
  993. /* okay, let's hand over to EH */
  994. ehi->serror |= serror;
  995. ehi->action |= action;
  996. qc = ata_qc_from_tag(ap, ap->active_tag);
  997. if (qc)
  998. qc->err_mask |= err_mask;
  999. else
  1000. ehi->err_mask |= err_mask;
  1001. if (irq_stat & PORT_IRQ_FREEZE)
  1002. ata_port_freeze(ap);
  1003. else
  1004. ata_port_abort(ap);
  1005. }
  1006. static void ahci_host_intr(struct ata_port *ap)
  1007. {
  1008. void __iomem *port_mmio = ap->ioaddr.cmd_addr;
  1009. struct ata_eh_info *ehi = &ap->eh_info;
  1010. struct ahci_port_priv *pp = ap->private_data;
  1011. u32 status, qc_active;
  1012. int rc, known_irq = 0;
  1013. status = readl(port_mmio + PORT_IRQ_STAT);
  1014. writel(status, port_mmio + PORT_IRQ_STAT);
  1015. if (unlikely(status & PORT_IRQ_ERROR)) {
  1016. ahci_error_intr(ap, status);
  1017. return;
  1018. }
  1019. if (ap->sactive)
  1020. qc_active = readl(port_mmio + PORT_SCR_ACT);
  1021. else
  1022. qc_active = readl(port_mmio + PORT_CMD_ISSUE);
  1023. rc = ata_qc_complete_multiple(ap, qc_active, NULL);
  1024. if (rc > 0)
  1025. return;
  1026. if (rc < 0) {
  1027. ehi->err_mask |= AC_ERR_HSM;
  1028. ehi->action |= ATA_EH_SOFTRESET;
  1029. ata_port_freeze(ap);
  1030. return;
  1031. }
  1032. /* hmmm... a spurious interupt */
  1033. /* if !NCQ, ignore. No modern ATA device has broken HSM
  1034. * implementation for non-NCQ commands.
  1035. */
  1036. if (!ap->sactive)
  1037. return;
  1038. if (status & PORT_IRQ_D2H_REG_FIS) {
  1039. if (!pp->ncq_saw_d2h)
  1040. ata_port_printk(ap, KERN_INFO,
  1041. "D2H reg with I during NCQ, "
  1042. "this message won't be printed again\n");
  1043. pp->ncq_saw_d2h = 1;
  1044. known_irq = 1;
  1045. }
  1046. if (status & PORT_IRQ_DMAS_FIS) {
  1047. if (!pp->ncq_saw_dmas)
  1048. ata_port_printk(ap, KERN_INFO,
  1049. "DMAS FIS during NCQ, "
  1050. "this message won't be printed again\n");
  1051. pp->ncq_saw_dmas = 1;
  1052. known_irq = 1;
  1053. }
  1054. if (status & PORT_IRQ_SDB_FIS) {
  1055. const __le32 *f = pp->rx_fis + RX_FIS_SDB;
  1056. if (le32_to_cpu(f[1])) {
  1057. /* SDB FIS containing spurious completions
  1058. * might be dangerous, whine and fail commands
  1059. * with HSM violation. EH will turn off NCQ
  1060. * after several such failures.
  1061. */
  1062. ata_ehi_push_desc(ehi,
  1063. "spurious completions during NCQ "
  1064. "issue=0x%x SAct=0x%x FIS=%08x:%08x",
  1065. readl(port_mmio + PORT_CMD_ISSUE),
  1066. readl(port_mmio + PORT_SCR_ACT),
  1067. le32_to_cpu(f[0]), le32_to_cpu(f[1]));
  1068. ehi->err_mask |= AC_ERR_HSM;
  1069. ehi->action |= ATA_EH_SOFTRESET;
  1070. ata_port_freeze(ap);
  1071. } else {
  1072. if (!pp->ncq_saw_sdb)
  1073. ata_port_printk(ap, KERN_INFO,
  1074. "spurious SDB FIS %08x:%08x during NCQ, "
  1075. "this message won't be printed again\n",
  1076. le32_to_cpu(f[0]), le32_to_cpu(f[1]));
  1077. pp->ncq_saw_sdb = 1;
  1078. }
  1079. known_irq = 1;
  1080. }
  1081. if (!known_irq)
  1082. ata_port_printk(ap, KERN_INFO, "spurious interrupt "
  1083. "(irq_stat 0x%x active_tag 0x%x sactive 0x%x)\n",
  1084. status, ap->active_tag, ap->sactive);
  1085. }
  1086. static void ahci_irq_clear(struct ata_port *ap)
  1087. {
  1088. /* TODO */
  1089. }
  1090. static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
  1091. {
  1092. struct ata_host *host = dev_instance;
  1093. struct ahci_host_priv *hpriv;
  1094. unsigned int i, handled = 0;
  1095. void __iomem *mmio;
  1096. u32 irq_stat, irq_ack = 0;
  1097. VPRINTK("ENTER\n");
  1098. hpriv = host->private_data;
  1099. mmio = host->iomap[AHCI_PCI_BAR];
  1100. /* sigh. 0xffffffff is a valid return from h/w */
  1101. irq_stat = readl(mmio + HOST_IRQ_STAT);
  1102. irq_stat &= hpriv->port_map;
  1103. if (!irq_stat)
  1104. return IRQ_NONE;
  1105. spin_lock(&host->lock);
  1106. for (i = 0; i < host->n_ports; i++) {
  1107. struct ata_port *ap;
  1108. if (!(irq_stat & (1 << i)))
  1109. continue;
  1110. ap = host->ports[i];
  1111. if (ap) {
  1112. ahci_host_intr(ap);
  1113. VPRINTK("port %u\n", i);
  1114. } else {
  1115. VPRINTK("port %u (no irq)\n", i);
  1116. if (ata_ratelimit())
  1117. dev_printk(KERN_WARNING, host->dev,
  1118. "interrupt on disabled port %u\n", i);
  1119. }
  1120. irq_ack |= (1 << i);
  1121. }
  1122. if (irq_ack) {
  1123. writel(irq_ack, mmio + HOST_IRQ_STAT);
  1124. handled = 1;
  1125. }
  1126. spin_unlock(&host->lock);
  1127. VPRINTK("EXIT\n");
  1128. return IRQ_RETVAL(handled);
  1129. }
  1130. static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
  1131. {
  1132. struct ata_port *ap = qc->ap;
  1133. void __iomem *port_mmio = ahci_port_base(ap);
  1134. if (qc->tf.protocol == ATA_PROT_NCQ)
  1135. writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
  1136. writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
  1137. readl(port_mmio + PORT_CMD_ISSUE); /* flush */
  1138. return 0;
  1139. }
  1140. static void ahci_freeze(struct ata_port *ap)
  1141. {
  1142. void __iomem *port_mmio = ahci_port_base(ap);
  1143. /* turn IRQ off */
  1144. writel(0, port_mmio + PORT_IRQ_MASK);
  1145. }
  1146. static void ahci_thaw(struct ata_port *ap)
  1147. {
  1148. void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
  1149. void __iomem *port_mmio = ahci_port_base(ap);
  1150. u32 tmp;
  1151. /* clear IRQ */
  1152. tmp = readl(port_mmio + PORT_IRQ_STAT);
  1153. writel(tmp, port_mmio + PORT_IRQ_STAT);
  1154. writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
  1155. /* turn IRQ back on */
  1156. writel(DEF_PORT_IRQ, port_mmio + PORT_IRQ_MASK);
  1157. }
  1158. static void ahci_error_handler(struct ata_port *ap)
  1159. {
  1160. if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
  1161. /* restart engine */
  1162. ahci_stop_engine(ap);
  1163. ahci_start_engine(ap);
  1164. }
  1165. /* perform recovery */
  1166. ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_hardreset,
  1167. ahci_postreset);
  1168. }
  1169. static void ahci_vt8251_error_handler(struct ata_port *ap)
  1170. {
  1171. if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
  1172. /* restart engine */
  1173. ahci_stop_engine(ap);
  1174. ahci_start_engine(ap);
  1175. }
  1176. /* perform recovery */
  1177. ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_vt8251_hardreset,
  1178. ahci_postreset);
  1179. }
  1180. static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
  1181. {
  1182. struct ata_port *ap = qc->ap;
  1183. if (qc->flags & ATA_QCFLAG_FAILED) {
  1184. /* make DMA engine forget about the failed command */
  1185. ahci_stop_engine(ap);
  1186. ahci_start_engine(ap);
  1187. }
  1188. }
  1189. #ifdef CONFIG_PM
  1190. static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
  1191. {
  1192. const char *emsg = NULL;
  1193. int rc;
  1194. rc = ahci_deinit_port(ap, &emsg);
  1195. if (rc == 0)
  1196. ahci_power_down(ap);
  1197. else {
  1198. ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
  1199. ahci_init_port(ap);
  1200. }
  1201. return rc;
  1202. }
  1203. static int ahci_port_resume(struct ata_port *ap)
  1204. {
  1205. ahci_power_up(ap);
  1206. ahci_init_port(ap);
  1207. return 0;
  1208. }
  1209. static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
  1210. {
  1211. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  1212. void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
  1213. u32 ctl;
  1214. if (mesg.event == PM_EVENT_SUSPEND) {
  1215. /* AHCI spec rev1.1 section 8.3.3:
  1216. * Software must disable interrupts prior to requesting a
  1217. * transition of the HBA to D3 state.
  1218. */
  1219. ctl = readl(mmio + HOST_CTL);
  1220. ctl &= ~HOST_IRQ_EN;
  1221. writel(ctl, mmio + HOST_CTL);
  1222. readl(mmio + HOST_CTL); /* flush */
  1223. }
  1224. return ata_pci_device_suspend(pdev, mesg);
  1225. }
  1226. static int ahci_pci_device_resume(struct pci_dev *pdev)
  1227. {
  1228. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  1229. int rc;
  1230. rc = ata_pci_device_do_resume(pdev);
  1231. if (rc)
  1232. return rc;
  1233. if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
  1234. rc = ahci_reset_controller(host);
  1235. if (rc)
  1236. return rc;
  1237. ahci_init_controller(host);
  1238. }
  1239. ata_host_resume(host);
  1240. return 0;
  1241. }
  1242. #endif
  1243. static int ahci_port_start(struct ata_port *ap)
  1244. {
  1245. struct device *dev = ap->host->dev;
  1246. struct ahci_port_priv *pp;
  1247. void *mem;
  1248. dma_addr_t mem_dma;
  1249. int rc;
  1250. pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
  1251. if (!pp)
  1252. return -ENOMEM;
  1253. rc = ata_pad_alloc(ap, dev);
  1254. if (rc)
  1255. return rc;
  1256. mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma,
  1257. GFP_KERNEL);
  1258. if (!mem)
  1259. return -ENOMEM;
  1260. memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
  1261. /*
  1262. * First item in chunk of DMA memory: 32-slot command table,
  1263. * 32 bytes each in size
  1264. */
  1265. pp->cmd_slot = mem;
  1266. pp->cmd_slot_dma = mem_dma;
  1267. mem += AHCI_CMD_SLOT_SZ;
  1268. mem_dma += AHCI_CMD_SLOT_SZ;
  1269. /*
  1270. * Second item: Received-FIS area
  1271. */
  1272. pp->rx_fis = mem;
  1273. pp->rx_fis_dma = mem_dma;
  1274. mem += AHCI_RX_FIS_SZ;
  1275. mem_dma += AHCI_RX_FIS_SZ;
  1276. /*
  1277. * Third item: data area for storing a single command
  1278. * and its scatter-gather table
  1279. */
  1280. pp->cmd_tbl = mem;
  1281. pp->cmd_tbl_dma = mem_dma;
  1282. ap->private_data = pp;
  1283. /* power up port */
  1284. ahci_power_up(ap);
  1285. /* initialize port */
  1286. ahci_init_port(ap);
  1287. return 0;
  1288. }
  1289. static void ahci_port_stop(struct ata_port *ap)
  1290. {
  1291. const char *emsg = NULL;
  1292. int rc;
  1293. /* de-initialize port */
  1294. rc = ahci_deinit_port(ap, &emsg);
  1295. if (rc)
  1296. ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
  1297. }
  1298. static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
  1299. {
  1300. int rc;
  1301. if (using_dac &&
  1302. !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
  1303. rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
  1304. if (rc) {
  1305. rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
  1306. if (rc) {
  1307. dev_printk(KERN_ERR, &pdev->dev,
  1308. "64-bit DMA enable failed\n");
  1309. return rc;
  1310. }
  1311. }
  1312. } else {
  1313. rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
  1314. if (rc) {
  1315. dev_printk(KERN_ERR, &pdev->dev,
  1316. "32-bit DMA enable failed\n");
  1317. return rc;
  1318. }
  1319. rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
  1320. if (rc) {
  1321. dev_printk(KERN_ERR, &pdev->dev,
  1322. "32-bit consistent DMA enable failed\n");
  1323. return rc;
  1324. }
  1325. }
  1326. return 0;
  1327. }
  1328. static void ahci_print_info(struct ata_host *host)
  1329. {
  1330. struct ahci_host_priv *hpriv = host->private_data;
  1331. struct pci_dev *pdev = to_pci_dev(host->dev);
  1332. void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
  1333. u32 vers, cap, impl, speed;
  1334. const char *speed_s;
  1335. u16 cc;
  1336. const char *scc_s;
  1337. vers = readl(mmio + HOST_VERSION);
  1338. cap = hpriv->cap;
  1339. impl = hpriv->port_map;
  1340. speed = (cap >> 20) & 0xf;
  1341. if (speed == 1)
  1342. speed_s = "1.5";
  1343. else if (speed == 2)
  1344. speed_s = "3";
  1345. else
  1346. speed_s = "?";
  1347. pci_read_config_word(pdev, 0x0a, &cc);
  1348. if (cc == PCI_CLASS_STORAGE_IDE)
  1349. scc_s = "IDE";
  1350. else if (cc == PCI_CLASS_STORAGE_SATA)
  1351. scc_s = "SATA";
  1352. else if (cc == PCI_CLASS_STORAGE_RAID)
  1353. scc_s = "RAID";
  1354. else
  1355. scc_s = "unknown";
  1356. dev_printk(KERN_INFO, &pdev->dev,
  1357. "AHCI %02x%02x.%02x%02x "
  1358. "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
  1359. ,
  1360. (vers >> 24) & 0xff,
  1361. (vers >> 16) & 0xff,
  1362. (vers >> 8) & 0xff,
  1363. vers & 0xff,
  1364. ((cap >> 8) & 0x1f) + 1,
  1365. (cap & 0x1f) + 1,
  1366. speed_s,
  1367. impl,
  1368. scc_s);
  1369. dev_printk(KERN_INFO, &pdev->dev,
  1370. "flags: "
  1371. "%s%s%s%s%s%s"
  1372. "%s%s%s%s%s%s%s\n"
  1373. ,
  1374. cap & (1 << 31) ? "64bit " : "",
  1375. cap & (1 << 30) ? "ncq " : "",
  1376. cap & (1 << 28) ? "ilck " : "",
  1377. cap & (1 << 27) ? "stag " : "",
  1378. cap & (1 << 26) ? "pm " : "",
  1379. cap & (1 << 25) ? "led " : "",
  1380. cap & (1 << 24) ? "clo " : "",
  1381. cap & (1 << 19) ? "nz " : "",
  1382. cap & (1 << 18) ? "only " : "",
  1383. cap & (1 << 17) ? "pmp " : "",
  1384. cap & (1 << 15) ? "pio " : "",
  1385. cap & (1 << 14) ? "slum " : "",
  1386. cap & (1 << 13) ? "part " : ""
  1387. );
  1388. }
  1389. static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
  1390. {
  1391. static int printed_version;
  1392. struct ata_port_info pi = ahci_port_info[ent->driver_data];
  1393. const struct ata_port_info *ppi[] = { &pi, NULL };
  1394. struct device *dev = &pdev->dev;
  1395. struct ahci_host_priv *hpriv;
  1396. struct ata_host *host;
  1397. int i, rc;
  1398. VPRINTK("ENTER\n");
  1399. WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
  1400. if (!printed_version++)
  1401. dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
  1402. /* acquire resources */
  1403. rc = pcim_enable_device(pdev);
  1404. if (rc)
  1405. return rc;
  1406. rc = pcim_iomap_regions(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
  1407. if (rc == -EBUSY)
  1408. pcim_pin_device(pdev);
  1409. if (rc)
  1410. return rc;
  1411. if (pci_enable_msi(pdev))
  1412. pci_intx(pdev, 1);
  1413. hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
  1414. if (!hpriv)
  1415. return -ENOMEM;
  1416. /* save initial config */
  1417. ahci_save_initial_config(pdev, &pi, hpriv);
  1418. /* prepare host */
  1419. if (!(pi.flags & AHCI_FLAG_NO_NCQ) && (hpriv->cap & HOST_CAP_NCQ))
  1420. pi.flags |= ATA_FLAG_NCQ;
  1421. host = ata_host_alloc_pinfo(&pdev->dev, ppi, fls(hpriv->port_map));
  1422. if (!host)
  1423. return -ENOMEM;
  1424. host->iomap = pcim_iomap_table(pdev);
  1425. host->private_data = hpriv;
  1426. for (i = 0; i < host->n_ports; i++) {
  1427. if (hpriv->port_map & (1 << i)) {
  1428. struct ata_port *ap = host->ports[i];
  1429. void __iomem *port_mmio = ahci_port_base(ap);
  1430. ap->ioaddr.cmd_addr = port_mmio;
  1431. ap->ioaddr.scr_addr = port_mmio + PORT_SCR;
  1432. } else
  1433. host->ports[i]->ops = &ata_dummy_port_ops;
  1434. }
  1435. /* initialize adapter */
  1436. rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
  1437. if (rc)
  1438. return rc;
  1439. rc = ahci_reset_controller(host);
  1440. if (rc)
  1441. return rc;
  1442. ahci_init_controller(host);
  1443. ahci_print_info(host);
  1444. pci_set_master(pdev);
  1445. return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
  1446. &ahci_sht);
  1447. }
  1448. static int __init ahci_init(void)
  1449. {
  1450. return pci_register_driver(&ahci_pci_driver);
  1451. }
  1452. static void __exit ahci_exit(void)
  1453. {
  1454. pci_unregister_driver(&ahci_pci_driver);
  1455. }
  1456. MODULE_AUTHOR("Jeff Garzik");
  1457. MODULE_DESCRIPTION("AHCI SATA low-level driver");
  1458. MODULE_LICENSE("GPL");
  1459. MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
  1460. MODULE_VERSION(DRV_VERSION);
  1461. module_init(ahci_init);
  1462. module_exit(ahci_exit);