ata_piix.c 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309
  1. /*
  2. * ata_piix.c - Intel PATA/SATA controllers
  3. *
  4. * Maintained by: Jeff Garzik <jgarzik@pobox.com>
  5. * Please ALWAYS copy linux-ide@vger.kernel.org
  6. * on emails.
  7. *
  8. *
  9. * Copyright 2003-2005 Red Hat Inc
  10. * Copyright 2003-2005 Jeff Garzik
  11. *
  12. *
  13. * Copyright header from piix.c:
  14. *
  15. * Copyright (C) 1998-1999 Andrzej Krzysztofowicz, Author and Maintainer
  16. * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org>
  17. * Copyright (C) 2003 Red Hat Inc <alan@redhat.com>
  18. *
  19. *
  20. * This program is free software; you can redistribute it and/or modify
  21. * it under the terms of the GNU General Public License as published by
  22. * the Free Software Foundation; either version 2, or (at your option)
  23. * any later version.
  24. *
  25. * This program is distributed in the hope that it will be useful,
  26. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  27. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  28. * GNU General Public License for more details.
  29. *
  30. * You should have received a copy of the GNU General Public License
  31. * along with this program; see the file COPYING. If not, write to
  32. * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  33. *
  34. *
  35. * libata documentation is available via 'make {ps|pdf}docs',
  36. * as Documentation/DocBook/libata.*
  37. *
  38. * Hardware documentation available at http://developer.intel.com/
  39. *
  40. * Documentation
  41. * Publically available from Intel web site. Errata documentation
  42. * is also publically available. As an aide to anyone hacking on this
  43. * driver the list of errata that are relevant is below, going back to
  44. * PIIX4. Older device documentation is now a bit tricky to find.
  45. *
  46. * The chipsets all follow very much the same design. The orginal Triton
  47. * series chipsets do _not_ support independant device timings, but this
  48. * is fixed in Triton II. With the odd mobile exception the chips then
  49. * change little except in gaining more modes until SATA arrives. This
  50. * driver supports only the chips with independant timing (that is those
  51. * with SITRE and the 0x44 timing register). See pata_oldpiix and pata_mpiix
  52. * for the early chip drivers.
  53. *
  54. * Errata of note:
  55. *
  56. * Unfixable
  57. * PIIX4 errata #9 - Only on ultra obscure hw
  58. * ICH3 errata #13 - Not observed to affect real hw
  59. * by Intel
  60. *
  61. * Things we must deal with
  62. * PIIX4 errata #10 - BM IDE hang with non UDMA
  63. * (must stop/start dma to recover)
  64. * 440MX errata #15 - As PIIX4 errata #10
  65. * PIIX4 errata #15 - Must not read control registers
  66. * during a PIO transfer
  67. * 440MX errata #13 - As PIIX4 errata #15
  68. * ICH2 errata #21 - DMA mode 0 doesn't work right
  69. * ICH0/1 errata #55 - As ICH2 errata #21
  70. * ICH2 spec c #9 - Extra operations needed to handle
  71. * drive hotswap [NOT YET SUPPORTED]
  72. * ICH2 spec c #20 - IDE PRD must not cross a 64K boundary
  73. * and must be dword aligned
  74. * ICH2 spec c #24 - UDMA mode 4,5 t85/86 should be 6ns not 3.3
  75. *
  76. * Should have been BIOS fixed:
  77. * 450NX: errata #19 - DMA hangs on old 450NX
  78. * 450NX: errata #20 - DMA hangs on old 450NX
  79. * 450NX: errata #25 - Corruption with DMA on old 450NX
  80. * ICH3 errata #15 - IDE deadlock under high load
  81. * (BIOS must set dev 31 fn 0 bit 23)
  82. * ICH3 errata #18 - Don't use native mode
  83. */
  84. #include <linux/kernel.h>
  85. #include <linux/module.h>
  86. #include <linux/pci.h>
  87. #include <linux/init.h>
  88. #include <linux/blkdev.h>
  89. #include <linux/delay.h>
  90. #include <linux/device.h>
  91. #include <scsi/scsi_host.h>
  92. #include <linux/libata.h>
  93. #include <linux/dmi.h>
  94. #define DRV_NAME "ata_piix"
  95. #define DRV_VERSION "2.12"
  96. enum {
  97. PIIX_IOCFG = 0x54, /* IDE I/O configuration register */
  98. ICH5_PMR = 0x90, /* port mapping register */
  99. ICH5_PCS = 0x92, /* port control and status */
  100. PIIX_SCC = 0x0A, /* sub-class code register */
  101. PIIX_FLAG_SCR = (1 << 26), /* SCR available */
  102. PIIX_FLAG_AHCI = (1 << 27), /* AHCI possible */
  103. PIIX_FLAG_CHECKINTR = (1 << 28), /* make sure PCI INTx enabled */
  104. PIIX_PATA_FLAGS = ATA_FLAG_SLAVE_POSS,
  105. PIIX_SATA_FLAGS = ATA_FLAG_SATA | PIIX_FLAG_CHECKINTR,
  106. /* combined mode. if set, PATA is channel 0.
  107. * if clear, PATA is channel 1.
  108. */
  109. PIIX_PORT_ENABLED = (1 << 0),
  110. PIIX_PORT_PRESENT = (1 << 4),
  111. PIIX_80C_PRI = (1 << 5) | (1 << 4),
  112. PIIX_80C_SEC = (1 << 7) | (1 << 6),
  113. /* controller IDs */
  114. piix_pata_33 = 0, /* PIIX4 at 33Mhz */
  115. ich_pata_33 = 1, /* ICH up to UDMA 33 only */
  116. ich_pata_66 = 2, /* ICH up to 66 Mhz */
  117. ich_pata_100 = 3, /* ICH up to UDMA 100 */
  118. ich5_sata = 5,
  119. ich6_sata = 6,
  120. ich6_sata_ahci = 7,
  121. ich6m_sata_ahci = 8,
  122. ich8_sata_ahci = 9,
  123. piix_pata_mwdma = 10, /* PIIX3 MWDMA only */
  124. tolapai_sata_ahci = 11,
  125. /* constants for mapping table */
  126. P0 = 0, /* port 0 */
  127. P1 = 1, /* port 1 */
  128. P2 = 2, /* port 2 */
  129. P3 = 3, /* port 3 */
  130. IDE = -1, /* IDE */
  131. NA = -2, /* not avaliable */
  132. RV = -3, /* reserved */
  133. PIIX_AHCI_DEVICE = 6,
  134. /* host->flags bits */
  135. PIIX_HOST_BROKEN_SUSPEND = (1 << 24),
  136. };
  137. struct piix_map_db {
  138. const u32 mask;
  139. const u16 port_enable;
  140. const int map[][4];
  141. };
  142. struct piix_host_priv {
  143. const int *map;
  144. };
  145. static int piix_init_one (struct pci_dev *pdev,
  146. const struct pci_device_id *ent);
  147. static void piix_pata_error_handler(struct ata_port *ap);
  148. static void piix_set_piomode (struct ata_port *ap, struct ata_device *adev);
  149. static void piix_set_dmamode (struct ata_port *ap, struct ata_device *adev);
  150. static void ich_set_dmamode (struct ata_port *ap, struct ata_device *adev);
  151. static int ich_pata_cable_detect(struct ata_port *ap);
  152. #ifdef CONFIG_PM
  153. static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
  154. static int piix_pci_device_resume(struct pci_dev *pdev);
  155. #endif
  156. static unsigned int in_module_init = 1;
  157. static const struct pci_device_id piix_pci_tbl[] = {
  158. /* Intel PIIX3 for the 430HX etc */
  159. { 0x8086, 0x7010, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_mwdma },
  160. /* Intel PIIX4 for the 430TX/440BX/MX chipset: UDMA 33 */
  161. /* Also PIIX4E (fn3 rev 2) and PIIX4M (fn3 rev 3) */
  162. { 0x8086, 0x7111, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
  163. /* Intel PIIX4 */
  164. { 0x8086, 0x7199, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
  165. /* Intel PIIX4 */
  166. { 0x8086, 0x7601, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
  167. /* Intel PIIX */
  168. { 0x8086, 0x84CA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
  169. /* Intel ICH (i810, i815, i840) UDMA 66*/
  170. { 0x8086, 0x2411, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_66 },
  171. /* Intel ICH0 : UDMA 33*/
  172. { 0x8086, 0x2421, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_33 },
  173. /* Intel ICH2M */
  174. { 0x8086, 0x244A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  175. /* Intel ICH2 (i810E2, i845, 850, 860) UDMA 100 */
  176. { 0x8086, 0x244B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  177. /* Intel ICH3M */
  178. { 0x8086, 0x248A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  179. /* Intel ICH3 (E7500/1) UDMA 100 */
  180. { 0x8086, 0x248B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  181. /* Intel ICH4 (i845GV, i845E, i852, i855) UDMA 100 */
  182. { 0x8086, 0x24CA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  183. { 0x8086, 0x24CB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  184. /* Intel ICH5 */
  185. { 0x8086, 0x24DB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  186. /* C-ICH (i810E2) */
  187. { 0x8086, 0x245B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  188. /* ESB (855GME/875P + 6300ESB) UDMA 100 */
  189. { 0x8086, 0x25A2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  190. /* ICH6 (and 6) (i915) UDMA 100 */
  191. { 0x8086, 0x266F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  192. /* ICH7/7-R (i945, i975) UDMA 100*/
  193. { 0x8086, 0x27DF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  194. { 0x8086, 0x269E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  195. /* ICH8 Mobile PATA Controller */
  196. { 0x8086, 0x2850, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
  197. /* NOTE: The following PCI ids must be kept in sync with the
  198. * list in drivers/pci/quirks.c.
  199. */
  200. /* 82801EB (ICH5) */
  201. { 0x8086, 0x24d1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
  202. /* 82801EB (ICH5) */
  203. { 0x8086, 0x24df, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
  204. /* 6300ESB (ICH5 variant with broken PCS present bits) */
  205. { 0x8086, 0x25a3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
  206. /* 6300ESB pretending RAID */
  207. { 0x8086, 0x25b0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
  208. /* 82801FB/FW (ICH6/ICH6W) */
  209. { 0x8086, 0x2651, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata },
  210. /* 82801FR/FRW (ICH6R/ICH6RW) */
  211. { 0x8086, 0x2652, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_ahci },
  212. /* 82801FBM ICH6M (ICH6R with only port 0 and 2 implemented) */
  213. { 0x8086, 0x2653, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6m_sata_ahci },
  214. /* 82801GB/GR/GH (ICH7, identical to ICH6) */
  215. { 0x8086, 0x27c0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_ahci },
  216. /* 2801GBM/GHM (ICH7M, identical to ICH6M) */
  217. { 0x8086, 0x27c4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6m_sata_ahci },
  218. /* Enterprise Southbridge 2 (631xESB/632xESB) */
  219. { 0x8086, 0x2680, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_ahci },
  220. /* SATA Controller 1 IDE (ICH8) */
  221. { 0x8086, 0x2820, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  222. /* SATA Controller 2 IDE (ICH8) */
  223. { 0x8086, 0x2825, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  224. /* Mobile SATA Controller IDE (ICH8M) */
  225. { 0x8086, 0x2828, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  226. /* SATA Controller IDE (ICH9) */
  227. { 0x8086, 0x2920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  228. /* SATA Controller IDE (ICH9) */
  229. { 0x8086, 0x2921, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  230. /* SATA Controller IDE (ICH9) */
  231. { 0x8086, 0x2926, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  232. /* SATA Controller IDE (ICH9M) */
  233. { 0x8086, 0x2928, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  234. /* SATA Controller IDE (ICH9M) */
  235. { 0x8086, 0x292d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  236. /* SATA Controller IDE (ICH9M) */
  237. { 0x8086, 0x292e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
  238. /* SATA Controller IDE (Tolapai) */
  239. { 0x8086, 0x5028, PCI_ANY_ID, PCI_ANY_ID, 0, 0, tolapai_sata_ahci },
  240. { } /* terminate list */
  241. };
  242. static struct pci_driver piix_pci_driver = {
  243. .name = DRV_NAME,
  244. .id_table = piix_pci_tbl,
  245. .probe = piix_init_one,
  246. .remove = ata_pci_remove_one,
  247. #ifdef CONFIG_PM
  248. .suspend = piix_pci_device_suspend,
  249. .resume = piix_pci_device_resume,
  250. #endif
  251. };
  252. static struct scsi_host_template piix_sht = {
  253. .module = THIS_MODULE,
  254. .name = DRV_NAME,
  255. .ioctl = ata_scsi_ioctl,
  256. .queuecommand = ata_scsi_queuecmd,
  257. .can_queue = ATA_DEF_QUEUE,
  258. .this_id = ATA_SHT_THIS_ID,
  259. .sg_tablesize = LIBATA_MAX_PRD,
  260. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  261. .emulated = ATA_SHT_EMULATED,
  262. .use_clustering = ATA_SHT_USE_CLUSTERING,
  263. .proc_name = DRV_NAME,
  264. .dma_boundary = ATA_DMA_BOUNDARY,
  265. .slave_configure = ata_scsi_slave_config,
  266. .slave_destroy = ata_scsi_slave_destroy,
  267. .bios_param = ata_std_bios_param,
  268. };
  269. static const struct ata_port_operations piix_pata_ops = {
  270. .set_piomode = piix_set_piomode,
  271. .set_dmamode = piix_set_dmamode,
  272. .mode_filter = ata_pci_default_filter,
  273. .tf_load = ata_tf_load,
  274. .tf_read = ata_tf_read,
  275. .check_status = ata_check_status,
  276. .exec_command = ata_exec_command,
  277. .dev_select = ata_std_dev_select,
  278. .bmdma_setup = ata_bmdma_setup,
  279. .bmdma_start = ata_bmdma_start,
  280. .bmdma_stop = ata_bmdma_stop,
  281. .bmdma_status = ata_bmdma_status,
  282. .qc_prep = ata_qc_prep,
  283. .qc_issue = ata_qc_issue_prot,
  284. .data_xfer = ata_data_xfer,
  285. .freeze = ata_bmdma_freeze,
  286. .thaw = ata_bmdma_thaw,
  287. .error_handler = piix_pata_error_handler,
  288. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  289. .cable_detect = ata_cable_40wire,
  290. .irq_handler = ata_interrupt,
  291. .irq_clear = ata_bmdma_irq_clear,
  292. .irq_on = ata_irq_on,
  293. .port_start = ata_port_start,
  294. };
  295. static const struct ata_port_operations ich_pata_ops = {
  296. .set_piomode = piix_set_piomode,
  297. .set_dmamode = ich_set_dmamode,
  298. .mode_filter = ata_pci_default_filter,
  299. .tf_load = ata_tf_load,
  300. .tf_read = ata_tf_read,
  301. .check_status = ata_check_status,
  302. .exec_command = ata_exec_command,
  303. .dev_select = ata_std_dev_select,
  304. .bmdma_setup = ata_bmdma_setup,
  305. .bmdma_start = ata_bmdma_start,
  306. .bmdma_stop = ata_bmdma_stop,
  307. .bmdma_status = ata_bmdma_status,
  308. .qc_prep = ata_qc_prep,
  309. .qc_issue = ata_qc_issue_prot,
  310. .data_xfer = ata_data_xfer,
  311. .freeze = ata_bmdma_freeze,
  312. .thaw = ata_bmdma_thaw,
  313. .error_handler = piix_pata_error_handler,
  314. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  315. .cable_detect = ich_pata_cable_detect,
  316. .irq_handler = ata_interrupt,
  317. .irq_clear = ata_bmdma_irq_clear,
  318. .irq_on = ata_irq_on,
  319. .port_start = ata_port_start,
  320. };
  321. static const struct ata_port_operations piix_sata_ops = {
  322. .tf_load = ata_tf_load,
  323. .tf_read = ata_tf_read,
  324. .check_status = ata_check_status,
  325. .exec_command = ata_exec_command,
  326. .dev_select = ata_std_dev_select,
  327. .bmdma_setup = ata_bmdma_setup,
  328. .bmdma_start = ata_bmdma_start,
  329. .bmdma_stop = ata_bmdma_stop,
  330. .bmdma_status = ata_bmdma_status,
  331. .qc_prep = ata_qc_prep,
  332. .qc_issue = ata_qc_issue_prot,
  333. .data_xfer = ata_data_xfer,
  334. .freeze = ata_bmdma_freeze,
  335. .thaw = ata_bmdma_thaw,
  336. .error_handler = ata_bmdma_error_handler,
  337. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  338. .irq_handler = ata_interrupt,
  339. .irq_clear = ata_bmdma_irq_clear,
  340. .irq_on = ata_irq_on,
  341. .port_start = ata_port_start,
  342. };
  343. static const struct piix_map_db ich5_map_db = {
  344. .mask = 0x7,
  345. .port_enable = 0x3,
  346. .map = {
  347. /* PM PS SM SS MAP */
  348. { P0, NA, P1, NA }, /* 000b */
  349. { P1, NA, P0, NA }, /* 001b */
  350. { RV, RV, RV, RV },
  351. { RV, RV, RV, RV },
  352. { P0, P1, IDE, IDE }, /* 100b */
  353. { P1, P0, IDE, IDE }, /* 101b */
  354. { IDE, IDE, P0, P1 }, /* 110b */
  355. { IDE, IDE, P1, P0 }, /* 111b */
  356. },
  357. };
  358. static const struct piix_map_db ich6_map_db = {
  359. .mask = 0x3,
  360. .port_enable = 0xf,
  361. .map = {
  362. /* PM PS SM SS MAP */
  363. { P0, P2, P1, P3 }, /* 00b */
  364. { IDE, IDE, P1, P3 }, /* 01b */
  365. { P0, P2, IDE, IDE }, /* 10b */
  366. { RV, RV, RV, RV },
  367. },
  368. };
  369. static const struct piix_map_db ich6m_map_db = {
  370. .mask = 0x3,
  371. .port_enable = 0x5,
  372. /* Map 01b isn't specified in the doc but some notebooks use
  373. * it anyway. MAP 01b have been spotted on both ICH6M and
  374. * ICH7M.
  375. */
  376. .map = {
  377. /* PM PS SM SS MAP */
  378. { P0, P2, NA, NA }, /* 00b */
  379. { IDE, IDE, P1, P3 }, /* 01b */
  380. { P0, P2, IDE, IDE }, /* 10b */
  381. { RV, RV, RV, RV },
  382. },
  383. };
  384. static const struct piix_map_db ich8_map_db = {
  385. .mask = 0x3,
  386. .port_enable = 0x3,
  387. .map = {
  388. /* PM PS SM SS MAP */
  389. { P0, P2, P1, P3 }, /* 00b (hardwired when in AHCI) */
  390. { RV, RV, RV, RV },
  391. { P0, P2, IDE, IDE }, /* 10b (IDE mode) */
  392. { RV, RV, RV, RV },
  393. },
  394. };
  395. static const struct piix_map_db tolapai_map_db = {
  396. .mask = 0x3,
  397. .port_enable = 0x3,
  398. .map = {
  399. /* PM PS SM SS MAP */
  400. { P0, NA, P1, NA }, /* 00b */
  401. { RV, RV, RV, RV }, /* 01b */
  402. { RV, RV, RV, RV }, /* 10b */
  403. { RV, RV, RV, RV },
  404. },
  405. };
  406. static const struct piix_map_db *piix_map_db_table[] = {
  407. [ich5_sata] = &ich5_map_db,
  408. [ich6_sata] = &ich6_map_db,
  409. [ich6_sata_ahci] = &ich6_map_db,
  410. [ich6m_sata_ahci] = &ich6m_map_db,
  411. [ich8_sata_ahci] = &ich8_map_db,
  412. [tolapai_sata_ahci] = &tolapai_map_db,
  413. };
  414. static struct ata_port_info piix_port_info[] = {
  415. [piix_pata_33] = /* PIIX4 at 33MHz */
  416. {
  417. .sht = &piix_sht,
  418. .flags = PIIX_PATA_FLAGS,
  419. .pio_mask = 0x1f, /* pio0-4 */
  420. .mwdma_mask = 0x06, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
  421. .udma_mask = ATA_UDMA_MASK_40C,
  422. .port_ops = &piix_pata_ops,
  423. },
  424. [ich_pata_33] = /* ICH0 - ICH at 33Mhz*/
  425. {
  426. .sht = &piix_sht,
  427. .flags = PIIX_PATA_FLAGS,
  428. .pio_mask = 0x1f, /* pio 0-4 */
  429. .mwdma_mask = 0x06, /* Check: maybe 0x07 */
  430. .udma_mask = ATA_UDMA2, /* UDMA33 */
  431. .port_ops = &ich_pata_ops,
  432. },
  433. [ich_pata_66] = /* ICH controllers up to 66MHz */
  434. {
  435. .sht = &piix_sht,
  436. .flags = PIIX_PATA_FLAGS,
  437. .pio_mask = 0x1f, /* pio 0-4 */
  438. .mwdma_mask = 0x06, /* MWDMA0 is broken on chip */
  439. .udma_mask = ATA_UDMA4,
  440. .port_ops = &ich_pata_ops,
  441. },
  442. [ich_pata_100] =
  443. {
  444. .sht = &piix_sht,
  445. .flags = PIIX_PATA_FLAGS | PIIX_FLAG_CHECKINTR,
  446. .pio_mask = 0x1f, /* pio0-4 */
  447. .mwdma_mask = 0x06, /* mwdma1-2 */
  448. .udma_mask = ATA_UDMA5, /* udma0-5 */
  449. .port_ops = &ich_pata_ops,
  450. },
  451. [ich5_sata] =
  452. {
  453. .sht = &piix_sht,
  454. .flags = PIIX_SATA_FLAGS,
  455. .pio_mask = 0x1f, /* pio0-4 */
  456. .mwdma_mask = 0x07, /* mwdma0-2 */
  457. .udma_mask = ATA_UDMA6,
  458. .port_ops = &piix_sata_ops,
  459. },
  460. [ich6_sata] =
  461. {
  462. .sht = &piix_sht,
  463. .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SCR,
  464. .pio_mask = 0x1f, /* pio0-4 */
  465. .mwdma_mask = 0x07, /* mwdma0-2 */
  466. .udma_mask = ATA_UDMA6,
  467. .port_ops = &piix_sata_ops,
  468. },
  469. [ich6_sata_ahci] =
  470. {
  471. .sht = &piix_sht,
  472. .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SCR |
  473. PIIX_FLAG_AHCI,
  474. .pio_mask = 0x1f, /* pio0-4 */
  475. .mwdma_mask = 0x07, /* mwdma0-2 */
  476. .udma_mask = ATA_UDMA6,
  477. .port_ops = &piix_sata_ops,
  478. },
  479. [ich6m_sata_ahci] =
  480. {
  481. .sht = &piix_sht,
  482. .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SCR |
  483. PIIX_FLAG_AHCI,
  484. .pio_mask = 0x1f, /* pio0-4 */
  485. .mwdma_mask = 0x07, /* mwdma0-2 */
  486. .udma_mask = ATA_UDMA6,
  487. .port_ops = &piix_sata_ops,
  488. },
  489. [ich8_sata_ahci] =
  490. {
  491. .sht = &piix_sht,
  492. .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SCR |
  493. PIIX_FLAG_AHCI,
  494. .pio_mask = 0x1f, /* pio0-4 */
  495. .mwdma_mask = 0x07, /* mwdma0-2 */
  496. .udma_mask = ATA_UDMA6,
  497. .port_ops = &piix_sata_ops,
  498. },
  499. [piix_pata_mwdma] = /* PIIX3 MWDMA only */
  500. {
  501. .sht = &piix_sht,
  502. .flags = PIIX_PATA_FLAGS,
  503. .pio_mask = 0x1f, /* pio0-4 */
  504. .mwdma_mask = 0x06, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
  505. .port_ops = &piix_pata_ops,
  506. },
  507. [tolapai_sata_ahci] =
  508. {
  509. .sht = &piix_sht,
  510. .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SCR |
  511. PIIX_FLAG_AHCI,
  512. .pio_mask = 0x1f, /* pio0-4 */
  513. .mwdma_mask = 0x07, /* mwdma0-2 */
  514. .udma_mask = ATA_UDMA6,
  515. .port_ops = &piix_sata_ops,
  516. },
  517. };
  518. static struct pci_bits piix_enable_bits[] = {
  519. { 0x41U, 1U, 0x80UL, 0x80UL }, /* port 0 */
  520. { 0x43U, 1U, 0x80UL, 0x80UL }, /* port 1 */
  521. };
  522. MODULE_AUTHOR("Andre Hedrick, Alan Cox, Andrzej Krzysztofowicz, Jeff Garzik");
  523. MODULE_DESCRIPTION("SCSI low-level driver for Intel PIIX/ICH ATA controllers");
  524. MODULE_LICENSE("GPL");
  525. MODULE_DEVICE_TABLE(pci, piix_pci_tbl);
  526. MODULE_VERSION(DRV_VERSION);
  527. struct ich_laptop {
  528. u16 device;
  529. u16 subvendor;
  530. u16 subdevice;
  531. };
  532. /*
  533. * List of laptops that use short cables rather than 80 wire
  534. */
  535. static const struct ich_laptop ich_laptop[] = {
  536. /* devid, subvendor, subdev */
  537. { 0x27DF, 0x0005, 0x0280 }, /* ICH7 on Acer 5602WLMi */
  538. { 0x27DF, 0x1025, 0x0110 }, /* ICH7 on Acer 3682WLMi */
  539. { 0x27DF, 0x1043, 0x1267 }, /* ICH7 on Asus W5F */
  540. { 0x24CA, 0x1025, 0x0061 }, /* ICH4 on ACER Aspire 2023WLMi */
  541. /* end marker */
  542. { 0, }
  543. };
  544. /**
  545. * ich_pata_cable_detect - Probe host controller cable detect info
  546. * @ap: Port for which cable detect info is desired
  547. *
  548. * Read 80c cable indicator from ATA PCI device's PCI config
  549. * register. This register is normally set by firmware (BIOS).
  550. *
  551. * LOCKING:
  552. * None (inherited from caller).
  553. */
  554. static int ich_pata_cable_detect(struct ata_port *ap)
  555. {
  556. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  557. const struct ich_laptop *lap = &ich_laptop[0];
  558. u8 tmp, mask;
  559. /* Check for specials - Acer Aspire 5602WLMi */
  560. while (lap->device) {
  561. if (lap->device == pdev->device &&
  562. lap->subvendor == pdev->subsystem_vendor &&
  563. lap->subdevice == pdev->subsystem_device) {
  564. return ATA_CBL_PATA40_SHORT;
  565. }
  566. lap++;
  567. }
  568. /* check BIOS cable detect results */
  569. mask = ap->port_no == 0 ? PIIX_80C_PRI : PIIX_80C_SEC;
  570. pci_read_config_byte(pdev, PIIX_IOCFG, &tmp);
  571. if ((tmp & mask) == 0)
  572. return ATA_CBL_PATA40;
  573. return ATA_CBL_PATA80;
  574. }
  575. /**
  576. * piix_pata_prereset - prereset for PATA host controller
  577. * @link: Target link
  578. * @deadline: deadline jiffies for the operation
  579. *
  580. * LOCKING:
  581. * None (inherited from caller).
  582. */
  583. static int piix_pata_prereset(struct ata_link *link, unsigned long deadline)
  584. {
  585. struct ata_port *ap = link->ap;
  586. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  587. if (!pci_test_config_bits(pdev, &piix_enable_bits[ap->port_no]))
  588. return -ENOENT;
  589. return ata_std_prereset(link, deadline);
  590. }
  591. static void piix_pata_error_handler(struct ata_port *ap)
  592. {
  593. ata_bmdma_drive_eh(ap, piix_pata_prereset, ata_std_softreset, NULL,
  594. ata_std_postreset);
  595. }
  596. /**
  597. * piix_set_piomode - Initialize host controller PATA PIO timings
  598. * @ap: Port whose timings we are configuring
  599. * @adev: um
  600. *
  601. * Set PIO mode for device, in host controller PCI config space.
  602. *
  603. * LOCKING:
  604. * None (inherited from caller).
  605. */
  606. static void piix_set_piomode (struct ata_port *ap, struct ata_device *adev)
  607. {
  608. unsigned int pio = adev->pio_mode - XFER_PIO_0;
  609. struct pci_dev *dev = to_pci_dev(ap->host->dev);
  610. unsigned int is_slave = (adev->devno != 0);
  611. unsigned int master_port= ap->port_no ? 0x42 : 0x40;
  612. unsigned int slave_port = 0x44;
  613. u16 master_data;
  614. u8 slave_data;
  615. u8 udma_enable;
  616. int control = 0;
  617. /*
  618. * See Intel Document 298600-004 for the timing programing rules
  619. * for ICH controllers.
  620. */
  621. static const /* ISP RTC */
  622. u8 timings[][2] = { { 0, 0 },
  623. { 0, 0 },
  624. { 1, 0 },
  625. { 2, 1 },
  626. { 2, 3 }, };
  627. if (pio >= 2)
  628. control |= 1; /* TIME1 enable */
  629. if (ata_pio_need_iordy(adev))
  630. control |= 2; /* IE enable */
  631. /* Intel specifies that the PPE functionality is for disk only */
  632. if (adev->class == ATA_DEV_ATA)
  633. control |= 4; /* PPE enable */
  634. /* PIO configuration clears DTE unconditionally. It will be
  635. * programmed in set_dmamode which is guaranteed to be called
  636. * after set_piomode if any DMA mode is available.
  637. */
  638. pci_read_config_word(dev, master_port, &master_data);
  639. if (is_slave) {
  640. /* clear TIME1|IE1|PPE1|DTE1 */
  641. master_data &= 0xff0f;
  642. /* Enable SITRE (seperate slave timing register) */
  643. master_data |= 0x4000;
  644. /* enable PPE1, IE1 and TIME1 as needed */
  645. master_data |= (control << 4);
  646. pci_read_config_byte(dev, slave_port, &slave_data);
  647. slave_data &= (ap->port_no ? 0x0f : 0xf0);
  648. /* Load the timing nibble for this slave */
  649. slave_data |= ((timings[pio][0] << 2) | timings[pio][1])
  650. << (ap->port_no ? 4 : 0);
  651. } else {
  652. /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */
  653. master_data &= 0xccf0;
  654. /* Enable PPE, IE and TIME as appropriate */
  655. master_data |= control;
  656. /* load ISP and RCT */
  657. master_data |=
  658. (timings[pio][0] << 12) |
  659. (timings[pio][1] << 8);
  660. }
  661. pci_write_config_word(dev, master_port, master_data);
  662. if (is_slave)
  663. pci_write_config_byte(dev, slave_port, slave_data);
  664. /* Ensure the UDMA bit is off - it will be turned back on if
  665. UDMA is selected */
  666. if (ap->udma_mask) {
  667. pci_read_config_byte(dev, 0x48, &udma_enable);
  668. udma_enable &= ~(1 << (2 * ap->port_no + adev->devno));
  669. pci_write_config_byte(dev, 0x48, udma_enable);
  670. }
  671. }
  672. /**
  673. * do_pata_set_dmamode - Initialize host controller PATA PIO timings
  674. * @ap: Port whose timings we are configuring
  675. * @adev: Drive in question
  676. * @udma: udma mode, 0 - 6
  677. * @isich: set if the chip is an ICH device
  678. *
  679. * Set UDMA mode for device, in host controller PCI config space.
  680. *
  681. * LOCKING:
  682. * None (inherited from caller).
  683. */
  684. static void do_pata_set_dmamode (struct ata_port *ap, struct ata_device *adev, int isich)
  685. {
  686. struct pci_dev *dev = to_pci_dev(ap->host->dev);
  687. u8 master_port = ap->port_no ? 0x42 : 0x40;
  688. u16 master_data;
  689. u8 speed = adev->dma_mode;
  690. int devid = adev->devno + 2 * ap->port_no;
  691. u8 udma_enable = 0;
  692. static const /* ISP RTC */
  693. u8 timings[][2] = { { 0, 0 },
  694. { 0, 0 },
  695. { 1, 0 },
  696. { 2, 1 },
  697. { 2, 3 }, };
  698. pci_read_config_word(dev, master_port, &master_data);
  699. if (ap->udma_mask)
  700. pci_read_config_byte(dev, 0x48, &udma_enable);
  701. if (speed >= XFER_UDMA_0) {
  702. unsigned int udma = adev->dma_mode - XFER_UDMA_0;
  703. u16 udma_timing;
  704. u16 ideconf;
  705. int u_clock, u_speed;
  706. /*
  707. * UDMA is handled by a combination of clock switching and
  708. * selection of dividers
  709. *
  710. * Handy rule: Odd modes are UDMATIMx 01, even are 02
  711. * except UDMA0 which is 00
  712. */
  713. u_speed = min(2 - (udma & 1), udma);
  714. if (udma == 5)
  715. u_clock = 0x1000; /* 100Mhz */
  716. else if (udma > 2)
  717. u_clock = 1; /* 66Mhz */
  718. else
  719. u_clock = 0; /* 33Mhz */
  720. udma_enable |= (1 << devid);
  721. /* Load the CT/RP selection */
  722. pci_read_config_word(dev, 0x4A, &udma_timing);
  723. udma_timing &= ~(3 << (4 * devid));
  724. udma_timing |= u_speed << (4 * devid);
  725. pci_write_config_word(dev, 0x4A, udma_timing);
  726. if (isich) {
  727. /* Select a 33/66/100Mhz clock */
  728. pci_read_config_word(dev, 0x54, &ideconf);
  729. ideconf &= ~(0x1001 << devid);
  730. ideconf |= u_clock << devid;
  731. /* For ICH or later we should set bit 10 for better
  732. performance (WR_PingPong_En) */
  733. pci_write_config_word(dev, 0x54, ideconf);
  734. }
  735. } else {
  736. /*
  737. * MWDMA is driven by the PIO timings. We must also enable
  738. * IORDY unconditionally along with TIME1. PPE has already
  739. * been set when the PIO timing was set.
  740. */
  741. unsigned int mwdma = adev->dma_mode - XFER_MW_DMA_0;
  742. unsigned int control;
  743. u8 slave_data;
  744. const unsigned int needed_pio[3] = {
  745. XFER_PIO_0, XFER_PIO_3, XFER_PIO_4
  746. };
  747. int pio = needed_pio[mwdma] - XFER_PIO_0;
  748. control = 3; /* IORDY|TIME1 */
  749. /* If the drive MWDMA is faster than it can do PIO then
  750. we must force PIO into PIO0 */
  751. if (adev->pio_mode < needed_pio[mwdma])
  752. /* Enable DMA timing only */
  753. control |= 8; /* PIO cycles in PIO0 */
  754. if (adev->devno) { /* Slave */
  755. master_data &= 0xFF4F; /* Mask out IORDY|TIME1|DMAONLY */
  756. master_data |= control << 4;
  757. pci_read_config_byte(dev, 0x44, &slave_data);
  758. slave_data &= (ap->port_no ? 0x0f : 0xf0);
  759. /* Load the matching timing */
  760. slave_data |= ((timings[pio][0] << 2) | timings[pio][1]) << (ap->port_no ? 4 : 0);
  761. pci_write_config_byte(dev, 0x44, slave_data);
  762. } else { /* Master */
  763. master_data &= 0xCCF4; /* Mask out IORDY|TIME1|DMAONLY
  764. and master timing bits */
  765. master_data |= control;
  766. master_data |=
  767. (timings[pio][0] << 12) |
  768. (timings[pio][1] << 8);
  769. }
  770. if (ap->udma_mask) {
  771. udma_enable &= ~(1 << devid);
  772. pci_write_config_word(dev, master_port, master_data);
  773. }
  774. }
  775. /* Don't scribble on 0x48 if the controller does not support UDMA */
  776. if (ap->udma_mask)
  777. pci_write_config_byte(dev, 0x48, udma_enable);
  778. }
  779. /**
  780. * piix_set_dmamode - Initialize host controller PATA DMA timings
  781. * @ap: Port whose timings we are configuring
  782. * @adev: um
  783. *
  784. * Set MW/UDMA mode for device, in host controller PCI config space.
  785. *
  786. * LOCKING:
  787. * None (inherited from caller).
  788. */
  789. static void piix_set_dmamode (struct ata_port *ap, struct ata_device *adev)
  790. {
  791. do_pata_set_dmamode(ap, adev, 0);
  792. }
  793. /**
  794. * ich_set_dmamode - Initialize host controller PATA DMA timings
  795. * @ap: Port whose timings we are configuring
  796. * @adev: um
  797. *
  798. * Set MW/UDMA mode for device, in host controller PCI config space.
  799. *
  800. * LOCKING:
  801. * None (inherited from caller).
  802. */
  803. static void ich_set_dmamode (struct ata_port *ap, struct ata_device *adev)
  804. {
  805. do_pata_set_dmamode(ap, adev, 1);
  806. }
  807. #ifdef CONFIG_PM
  808. static int piix_broken_suspend(void)
  809. {
  810. static const struct dmi_system_id sysids[] = {
  811. {
  812. .ident = "TECRA M3",
  813. .matches = {
  814. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  815. DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M3"),
  816. },
  817. },
  818. {
  819. .ident = "TECRA M5",
  820. .matches = {
  821. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  822. DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M5"),
  823. },
  824. },
  825. {
  826. .ident = "TECRA M7",
  827. .matches = {
  828. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  829. DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M7"),
  830. },
  831. },
  832. {
  833. .ident = "Satellite U200",
  834. .matches = {
  835. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  836. DMI_MATCH(DMI_PRODUCT_NAME, "Satellite U200"),
  837. },
  838. },
  839. {
  840. .ident = "Satellite U205",
  841. .matches = {
  842. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  843. DMI_MATCH(DMI_PRODUCT_NAME, "Satellite U205"),
  844. },
  845. },
  846. {
  847. .ident = "Portege M500",
  848. .matches = {
  849. DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
  850. DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M500"),
  851. },
  852. },
  853. { } /* terminate list */
  854. };
  855. static const char *oemstrs[] = {
  856. "Tecra M3,",
  857. };
  858. int i;
  859. if (dmi_check_system(sysids))
  860. return 1;
  861. for (i = 0; i < ARRAY_SIZE(oemstrs); i++)
  862. if (dmi_find_device(DMI_DEV_TYPE_OEM_STRING, oemstrs[i], NULL))
  863. return 1;
  864. return 0;
  865. }
  866. static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
  867. {
  868. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  869. unsigned long flags;
  870. int rc = 0;
  871. rc = ata_host_suspend(host, mesg);
  872. if (rc)
  873. return rc;
  874. /* Some braindamaged ACPI suspend implementations expect the
  875. * controller to be awake on entry; otherwise, it burns cpu
  876. * cycles and power trying to do something to the sleeping
  877. * beauty.
  878. */
  879. if (piix_broken_suspend() && mesg.event == PM_EVENT_SUSPEND) {
  880. pci_save_state(pdev);
  881. /* mark its power state as "unknown", since we don't
  882. * know if e.g. the BIOS will change its device state
  883. * when we suspend.
  884. */
  885. if (pdev->current_state == PCI_D0)
  886. pdev->current_state = PCI_UNKNOWN;
  887. /* tell resume that it's waking up from broken suspend */
  888. spin_lock_irqsave(&host->lock, flags);
  889. host->flags |= PIIX_HOST_BROKEN_SUSPEND;
  890. spin_unlock_irqrestore(&host->lock, flags);
  891. } else
  892. ata_pci_device_do_suspend(pdev, mesg);
  893. return 0;
  894. }
  895. static int piix_pci_device_resume(struct pci_dev *pdev)
  896. {
  897. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  898. unsigned long flags;
  899. int rc;
  900. if (host->flags & PIIX_HOST_BROKEN_SUSPEND) {
  901. spin_lock_irqsave(&host->lock, flags);
  902. host->flags &= ~PIIX_HOST_BROKEN_SUSPEND;
  903. spin_unlock_irqrestore(&host->lock, flags);
  904. pci_set_power_state(pdev, PCI_D0);
  905. pci_restore_state(pdev);
  906. /* PCI device wasn't disabled during suspend. Use
  907. * pci_reenable_device() to avoid affecting the enable
  908. * count.
  909. */
  910. rc = pci_reenable_device(pdev);
  911. if (rc)
  912. dev_printk(KERN_ERR, &pdev->dev, "failed to enable "
  913. "device after resume (%d)\n", rc);
  914. } else
  915. rc = ata_pci_device_do_resume(pdev);
  916. if (rc == 0)
  917. ata_host_resume(host);
  918. return rc;
  919. }
  920. #endif
  921. #define AHCI_PCI_BAR 5
  922. #define AHCI_GLOBAL_CTL 0x04
  923. #define AHCI_ENABLE (1 << 31)
  924. static int piix_disable_ahci(struct pci_dev *pdev)
  925. {
  926. void __iomem *mmio;
  927. u32 tmp;
  928. int rc = 0;
  929. /* BUG: pci_enable_device has not yet been called. This
  930. * works because this device is usually set up by BIOS.
  931. */
  932. if (!pci_resource_start(pdev, AHCI_PCI_BAR) ||
  933. !pci_resource_len(pdev, AHCI_PCI_BAR))
  934. return 0;
  935. mmio = pci_iomap(pdev, AHCI_PCI_BAR, 64);
  936. if (!mmio)
  937. return -ENOMEM;
  938. tmp = readl(mmio + AHCI_GLOBAL_CTL);
  939. if (tmp & AHCI_ENABLE) {
  940. tmp &= ~AHCI_ENABLE;
  941. writel(tmp, mmio + AHCI_GLOBAL_CTL);
  942. tmp = readl(mmio + AHCI_GLOBAL_CTL);
  943. if (tmp & AHCI_ENABLE)
  944. rc = -EIO;
  945. }
  946. pci_iounmap(pdev, mmio);
  947. return rc;
  948. }
  949. /**
  950. * piix_check_450nx_errata - Check for problem 450NX setup
  951. * @ata_dev: the PCI device to check
  952. *
  953. * Check for the present of 450NX errata #19 and errata #25. If
  954. * they are found return an error code so we can turn off DMA
  955. */
  956. static int __devinit piix_check_450nx_errata(struct pci_dev *ata_dev)
  957. {
  958. struct pci_dev *pdev = NULL;
  959. u16 cfg;
  960. int no_piix_dma = 0;
  961. while((pdev = pci_get_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82454NX, pdev)) != NULL)
  962. {
  963. /* Look for 450NX PXB. Check for problem configurations
  964. A PCI quirk checks bit 6 already */
  965. pci_read_config_word(pdev, 0x41, &cfg);
  966. /* Only on the original revision: IDE DMA can hang */
  967. if (pdev->revision == 0x00)
  968. no_piix_dma = 1;
  969. /* On all revisions below 5 PXB bus lock must be disabled for IDE */
  970. else if (cfg & (1<<14) && pdev->revision < 5)
  971. no_piix_dma = 2;
  972. }
  973. if (no_piix_dma)
  974. dev_printk(KERN_WARNING, &ata_dev->dev, "450NX errata present, disabling IDE DMA.\n");
  975. if (no_piix_dma == 2)
  976. dev_printk(KERN_WARNING, &ata_dev->dev, "A BIOS update may resolve this.\n");
  977. return no_piix_dma;
  978. }
  979. static void __devinit piix_init_pcs(struct pci_dev *pdev,
  980. struct ata_port_info *pinfo,
  981. const struct piix_map_db *map_db)
  982. {
  983. u16 pcs, new_pcs;
  984. pci_read_config_word(pdev, ICH5_PCS, &pcs);
  985. new_pcs = pcs | map_db->port_enable;
  986. if (new_pcs != pcs) {
  987. DPRINTK("updating PCS from 0x%x to 0x%x\n", pcs, new_pcs);
  988. pci_write_config_word(pdev, ICH5_PCS, new_pcs);
  989. msleep(150);
  990. }
  991. }
  992. static void __devinit piix_init_sata_map(struct pci_dev *pdev,
  993. struct ata_port_info *pinfo,
  994. const struct piix_map_db *map_db)
  995. {
  996. struct piix_host_priv *hpriv = pinfo[0].private_data;
  997. const unsigned int *map;
  998. int i, invalid_map = 0;
  999. u8 map_value;
  1000. pci_read_config_byte(pdev, ICH5_PMR, &map_value);
  1001. map = map_db->map[map_value & map_db->mask];
  1002. dev_printk(KERN_INFO, &pdev->dev, "MAP [");
  1003. for (i = 0; i < 4; i++) {
  1004. switch (map[i]) {
  1005. case RV:
  1006. invalid_map = 1;
  1007. printk(" XX");
  1008. break;
  1009. case NA:
  1010. printk(" --");
  1011. break;
  1012. case IDE:
  1013. WARN_ON((i & 1) || map[i + 1] != IDE);
  1014. pinfo[i / 2] = piix_port_info[ich_pata_100];
  1015. pinfo[i / 2].private_data = hpriv;
  1016. i++;
  1017. printk(" IDE IDE");
  1018. break;
  1019. default:
  1020. printk(" P%d", map[i]);
  1021. if (i & 1)
  1022. pinfo[i / 2].flags |= ATA_FLAG_SLAVE_POSS;
  1023. break;
  1024. }
  1025. }
  1026. printk(" ]\n");
  1027. if (invalid_map)
  1028. dev_printk(KERN_ERR, &pdev->dev,
  1029. "invalid MAP value %u\n", map_value);
  1030. hpriv->map = map;
  1031. }
  1032. static void piix_iocfg_bit18_quirk(struct pci_dev *pdev)
  1033. {
  1034. static const struct dmi_system_id sysids[] = {
  1035. {
  1036. /* Clevo M570U sets IOCFG bit 18 if the cdrom
  1037. * isn't used to boot the system which
  1038. * disables the channel.
  1039. */
  1040. .ident = "M570U",
  1041. .matches = {
  1042. DMI_MATCH(DMI_SYS_VENDOR, "Clevo Co."),
  1043. DMI_MATCH(DMI_PRODUCT_NAME, "M570U"),
  1044. },
  1045. },
  1046. { } /* terminate list */
  1047. };
  1048. u32 iocfg;
  1049. if (!dmi_check_system(sysids))
  1050. return;
  1051. /* The datasheet says that bit 18 is NOOP but certain systems
  1052. * seem to use it to disable a channel. Clear the bit on the
  1053. * affected systems.
  1054. */
  1055. pci_read_config_dword(pdev, PIIX_IOCFG, &iocfg);
  1056. if (iocfg & (1 << 18)) {
  1057. dev_printk(KERN_INFO, &pdev->dev,
  1058. "applying IOCFG bit18 quirk\n");
  1059. iocfg &= ~(1 << 18);
  1060. pci_write_config_dword(pdev, PIIX_IOCFG, iocfg);
  1061. }
  1062. }
  1063. /**
  1064. * piix_init_one - Register PIIX ATA PCI device with kernel services
  1065. * @pdev: PCI device to register
  1066. * @ent: Entry in piix_pci_tbl matching with @pdev
  1067. *
  1068. * Called from kernel PCI layer. We probe for combined mode (sigh),
  1069. * and then hand over control to libata, for it to do the rest.
  1070. *
  1071. * LOCKING:
  1072. * Inherited from PCI layer (may sleep).
  1073. *
  1074. * RETURNS:
  1075. * Zero on success, or -ERRNO value.
  1076. */
  1077. static int piix_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  1078. {
  1079. static int printed_version;
  1080. struct device *dev = &pdev->dev;
  1081. struct ata_port_info port_info[2];
  1082. const struct ata_port_info *ppi[] = { &port_info[0], &port_info[1] };
  1083. struct piix_host_priv *hpriv;
  1084. unsigned long port_flags;
  1085. if (!printed_version++)
  1086. dev_printk(KERN_DEBUG, &pdev->dev,
  1087. "version " DRV_VERSION "\n");
  1088. /* no hotplugging support (FIXME) */
  1089. if (!in_module_init)
  1090. return -ENODEV;
  1091. hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
  1092. if (!hpriv)
  1093. return -ENOMEM;
  1094. port_info[0] = piix_port_info[ent->driver_data];
  1095. port_info[1] = piix_port_info[ent->driver_data];
  1096. port_info[0].private_data = hpriv;
  1097. port_info[1].private_data = hpriv;
  1098. port_flags = port_info[0].flags;
  1099. if (port_flags & PIIX_FLAG_AHCI) {
  1100. u8 tmp;
  1101. pci_read_config_byte(pdev, PIIX_SCC, &tmp);
  1102. if (tmp == PIIX_AHCI_DEVICE) {
  1103. int rc = piix_disable_ahci(pdev);
  1104. if (rc)
  1105. return rc;
  1106. }
  1107. }
  1108. /* Initialize SATA map */
  1109. if (port_flags & ATA_FLAG_SATA) {
  1110. piix_init_sata_map(pdev, port_info,
  1111. piix_map_db_table[ent->driver_data]);
  1112. piix_init_pcs(pdev, port_info,
  1113. piix_map_db_table[ent->driver_data]);
  1114. }
  1115. /* apply IOCFG bit18 quirk */
  1116. piix_iocfg_bit18_quirk(pdev);
  1117. /* On ICH5, some BIOSen disable the interrupt using the
  1118. * PCI_COMMAND_INTX_DISABLE bit added in PCI 2.3.
  1119. * On ICH6, this bit has the same effect, but only when
  1120. * MSI is disabled (and it is disabled, as we don't use
  1121. * message-signalled interrupts currently).
  1122. */
  1123. if (port_flags & PIIX_FLAG_CHECKINTR)
  1124. pci_intx(pdev, 1);
  1125. if (piix_check_450nx_errata(pdev)) {
  1126. /* This writes into the master table but it does not
  1127. really matter for this errata as we will apply it to
  1128. all the PIIX devices on the board */
  1129. port_info[0].mwdma_mask = 0;
  1130. port_info[0].udma_mask = 0;
  1131. port_info[1].mwdma_mask = 0;
  1132. port_info[1].udma_mask = 0;
  1133. }
  1134. return ata_pci_init_one(pdev, ppi);
  1135. }
  1136. static int __init piix_init(void)
  1137. {
  1138. int rc;
  1139. DPRINTK("pci_register_driver\n");
  1140. rc = pci_register_driver(&piix_pci_driver);
  1141. if (rc)
  1142. return rc;
  1143. in_module_init = 0;
  1144. DPRINTK("done\n");
  1145. return 0;
  1146. }
  1147. static void __exit piix_exit(void)
  1148. {
  1149. pci_unregister_driver(&piix_pci_driver);
  1150. }
  1151. module_init(piix_init);
  1152. module_exit(piix_exit);