blob: eafb984313f62efbaa5d36f990f60ba2f2111c6d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * 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 *
Alan Coxd96212e2005-12-08 19:19:50 +000040 * Documentation
41 * Publically available from Intel web site. Errata documentation
42 * is also publically available. As an aide to anyone hacking on this
Alan2c5ff672006-12-04 16:33:20 +000043 * driver the list of errata that are relevant is below, going back to
Alan Coxd96212e2005-12-08 19:19:50 +000044 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84
85#include <linux/kernel.h>
86#include <linux/module.h>
87#include <linux/pci.h>
88#include <linux/init.h>
89#include <linux/blkdev.h>
90#include <linux/delay.h>
Jeff Garzik6248e642005-10-30 06:42:18 -050091#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#include <scsi/scsi_host.h>
93#include <linux/libata.h>
Tejun Heob8b275e2007-07-10 15:55:43 +090094#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#define DRV_NAME "ata_piix"
Jeff Garzik2a3103c2007-08-31 04:54:06 -040097#define DRV_VERSION "2.12"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99enum {
100 PIIX_IOCFG = 0x54, /* IDE I/O configuration register */
101 ICH5_PMR = 0x90, /* port mapping register */
102 ICH5_PCS = 0x92, /* port control and status */
Greg Felix7b6dbd62005-07-28 15:54:15 -0400103 PIIX_SCC = 0x0A, /* sub-class code register */
Tejun Heoc7290722008-01-18 18:36:30 +0900104 PIIX_SIDPR_BAR = 5,
105 PIIX_SIDPR_LEN = 16,
106 PIIX_SIDPR_IDX = 0,
107 PIIX_SIDPR_DATA = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Tejun Heoff0fc142005-12-18 17:17:07 +0900109 PIIX_FLAG_AHCI = (1 << 27), /* AHCI possible */
110 PIIX_FLAG_CHECKINTR = (1 << 28), /* make sure PCI INTx enabled */
Tejun Heoc7290722008-01-18 18:36:30 +0900111 PIIX_FLAG_SIDPR = (1 << 29), /* SATA idx/data pair regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Tejun Heo800b3992006-12-03 21:34:13 +0900113 PIIX_PATA_FLAGS = ATA_FLAG_SLAVE_POSS,
114 PIIX_SATA_FLAGS = ATA_FLAG_SATA | PIIX_FLAG_CHECKINTR,
Tejun Heob3362f82006-11-10 18:08:10 +0900115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 PIIX_80C_PRI = (1 << 5) | (1 << 4),
117 PIIX_80C_SEC = (1 << 7) | (1 << 6),
118
Tejun Heod33f58b2006-03-01 01:25:39 +0900119 /* constants for mapping table */
120 P0 = 0, /* port 0 */
121 P1 = 1, /* port 1 */
122 P2 = 2, /* port 2 */
123 P3 = 3, /* port 3 */
124 IDE = -1, /* IDE */
125 NA = -2, /* not avaliable */
126 RV = -3, /* reserved */
127
Greg Felix7b6dbd62005-07-28 15:54:15 -0400128 PIIX_AHCI_DEVICE = 6,
Tejun Heob8b275e2007-07-10 15:55:43 +0900129
130 /* host->flags bits */
131 PIIX_HOST_BROKEN_SUSPEND = (1 << 24),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
Tejun Heo9cde9ed12007-11-24 21:16:07 +0900134enum piix_controller_ids {
135 /* controller IDs */
136 piix_pata_mwdma, /* PIIX3 MWDMA only */
137 piix_pata_33, /* PIIX4 at 33Mhz */
138 ich_pata_33, /* ICH up to UDMA 33 only */
139 ich_pata_66, /* ICH up to 66 Mhz */
140 ich_pata_100, /* ICH up to UDMA 100 */
141 ich5_sata,
142 ich6_sata,
143 ich6_sata_ahci,
144 ich6m_sata_ahci,
145 ich8_sata_ahci,
146 ich8_2port_sata,
147 ich8m_apple_sata_ahci, /* locks up on second port enable */
148 tolapai_sata_ahci,
149 piix_pata_vmw, /* PIIX4 for VMware, spurious DMA_ERR */
150};
151
Tejun Heod33f58b2006-03-01 01:25:39 +0900152struct piix_map_db {
153 const u32 mask;
Jeff Garzik73291a12006-07-11 13:11:17 -0400154 const u16 port_enable;
Tejun Heod33f58b2006-03-01 01:25:39 +0900155 const int map[][4];
156};
157
Tejun Heod96715c2006-06-29 01:58:28 +0900158struct piix_host_priv {
159 const int *map;
Tejun Heoc7290722008-01-18 18:36:30 +0900160 void __iomem *sidpr;
Tejun Heod96715c2006-06-29 01:58:28 +0900161};
162
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400163static int piix_init_one(struct pci_dev *pdev,
164 const struct pci_device_id *ent);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900165static int piix_pata_prereset(struct ata_link *link, unsigned long deadline);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400166static void piix_set_piomode(struct ata_port *ap, struct ata_device *adev);
167static void piix_set_dmamode(struct ata_port *ap, struct ata_device *adev);
168static void ich_set_dmamode(struct ata_port *ap, struct ata_device *adev);
Alan Coxeb4a2c72007-04-11 00:04:20 +0100169static int ich_pata_cable_detect(struct ata_port *ap);
Tejun Heo25f98132008-01-07 19:38:53 +0900170static u8 piix_vmw_bmdma_status(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900171static int piix_sidpr_hardreset(struct ata_link *link, unsigned int *class,
172 unsigned long deadline);
Tejun Heoc7290722008-01-18 18:36:30 +0900173static int piix_sidpr_scr_read(struct ata_port *ap, unsigned int reg, u32 *val);
174static int piix_sidpr_scr_write(struct ata_port *ap, unsigned int reg, u32 val);
Tejun Heob8b275e2007-07-10 15:55:43 +0900175#ifdef CONFIG_PM
176static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
177static int piix_pci_device_resume(struct pci_dev *pdev);
178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180static unsigned int in_module_init = 1;
181
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500182static const struct pci_device_id piix_pci_tbl[] = {
Aland2cdfc02007-01-10 17:13:38 +0000183 /* Intel PIIX3 for the 430HX etc */
184 { 0x8086, 0x7010, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_mwdma },
Tejun Heo25f98132008-01-07 19:38:53 +0900185 /* VMware ICH4 */
186 { 0x8086, 0x7111, 0x15ad, 0x1976, 0, 0, piix_pata_vmw },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400187 /* Intel PIIX4 for the 430TX/440BX/MX chipset: UDMA 33 */
188 /* Also PIIX4E (fn3 rev 2) and PIIX4M (fn3 rev 3) */
189 { 0x8086, 0x7111, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400190 /* Intel PIIX4 */
191 { 0x8086, 0x7199, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
192 /* Intel PIIX4 */
193 { 0x8086, 0x7601, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
194 /* Intel PIIX */
195 { 0x8086, 0x84CA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
196 /* Intel ICH (i810, i815, i840) UDMA 66*/
197 { 0x8086, 0x2411, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_66 },
198 /* Intel ICH0 : UDMA 33*/
199 { 0x8086, 0x2421, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_33 },
200 /* Intel ICH2M */
201 { 0x8086, 0x244A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
202 /* Intel ICH2 (i810E2, i845, 850, 860) UDMA 100 */
203 { 0x8086, 0x244B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
204 /* Intel ICH3M */
205 { 0x8086, 0x248A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
206 /* Intel ICH3 (E7500/1) UDMA 100 */
207 { 0x8086, 0x248B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
208 /* Intel ICH4 (i845GV, i845E, i852, i855) UDMA 100 */
209 { 0x8086, 0x24CA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
210 { 0x8086, 0x24CB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
211 /* Intel ICH5 */
Christian Lamparter2eb829e2007-08-10 13:59:51 -0700212 { 0x8086, 0x24DB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400213 /* C-ICH (i810E2) */
214 { 0x8086, 0x245B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
Jeff Garzik85cd7252006-08-31 00:03:49 -0400215 /* ESB (855GME/875P + 6300ESB) UDMA 100 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400216 { 0x8086, 0x25A2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
217 /* ICH6 (and 6) (i915) UDMA 100 */
218 { 0x8086, 0x266F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
219 /* ICH7/7-R (i945, i975) UDMA 100*/
Christian Lamparter2eb829e2007-08-10 13:59:51 -0700220 { 0x8086, 0x27DF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400221 { 0x8086, 0x269E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
Christian Lamparterc1e6f282007-07-03 10:19:20 -0400222 /* ICH8 Mobile PATA Controller */
223 { 0x8086, 0x2850, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* NOTE: The following PCI ids must be kept in sync with the
226 * list in drivers/pci/quirks.c.
227 */
228
Tejun Heo1d076e52006-03-01 01:25:39 +0900229 /* 82801EB (ICH5) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 { 0x8086, 0x24d1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
Tejun Heo1d076e52006-03-01 01:25:39 +0900231 /* 82801EB (ICH5) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 { 0x8086, 0x24df, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
Tejun Heo1d076e52006-03-01 01:25:39 +0900233 /* 6300ESB (ICH5 variant with broken PCS present bits) */
Tejun Heo5e56a372006-11-10 18:08:10 +0900234 { 0x8086, 0x25a3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
Tejun Heo1d076e52006-03-01 01:25:39 +0900235 /* 6300ESB pretending RAID */
Tejun Heo5e56a372006-11-10 18:08:10 +0900236 { 0x8086, 0x25b0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
Tejun Heo1d076e52006-03-01 01:25:39 +0900237 /* 82801FB/FW (ICH6/ICH6W) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 { 0x8086, 0x2651, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata },
Tejun Heo1d076e52006-03-01 01:25:39 +0900239 /* 82801FR/FRW (ICH6R/ICH6RW) */
Jeff Garzik1c24a412005-11-14 18:20:23 -0500240 { 0x8086, 0x2652, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_ahci },
Tejun Heo1d076e52006-03-01 01:25:39 +0900241 /* 82801FBM ICH6M (ICH6R with only port 0 and 2 implemented) */
242 { 0x8086, 0x2653, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6m_sata_ahci },
243 /* 82801GB/GR/GH (ICH7, identical to ICH6) */
Jeff Garzik1c24a412005-11-14 18:20:23 -0500244 { 0x8086, 0x27c0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_ahci },
Tejun Heo1d076e52006-03-01 01:25:39 +0900245 /* 2801GBM/GHM (ICH7M, identical to ICH6M) */
Tejun Heoc6446a42006-10-09 13:23:58 +0900246 { 0x8086, 0x27c4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6m_sata_ahci },
Jason Gastonf98b6572006-12-07 08:57:32 -0800247 /* Enterprise Southbridge 2 (631xESB/632xESB) */
Jeff Garzik1c24a412005-11-14 18:20:23 -0500248 { 0x8086, 0x2680, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_ahci },
Jason Gastonf98b6572006-12-07 08:57:32 -0800249 /* SATA Controller 1 IDE (ICH8) */
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400250 { 0x8086, 0x2820, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
Jason Gastonf98b6572006-12-07 08:57:32 -0800251 /* SATA Controller 2 IDE (ICH8) */
Tejun Heo00242ec2007-11-19 11:24:25 +0900252 { 0x8086, 0x2825, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
Jason Gastonf98b6572006-12-07 08:57:32 -0800253 /* Mobile SATA Controller IDE (ICH8M) */
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400254 { 0x8086, 0x2828, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
Thomas Rohwer8d8ef2f2007-11-19 11:54:24 +0900255 /* Mobile SATA Controller IDE (ICH8M), Apple */
256 { 0x8086, 0x2828, 0x106b, 0x00a0, 0, 0, ich8m_apple_sata_ahci },
Jason Gastonf98b6572006-12-07 08:57:32 -0800257 /* SATA Controller IDE (ICH9) */
258 { 0x8086, 0x2920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
259 /* SATA Controller IDE (ICH9) */
Tejun Heo00242ec2007-11-19 11:24:25 +0900260 { 0x8086, 0x2921, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
Jason Gastonf98b6572006-12-07 08:57:32 -0800261 /* SATA Controller IDE (ICH9) */
Tejun Heo00242ec2007-11-19 11:24:25 +0900262 { 0x8086, 0x2926, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
Jason Gastonf98b6572006-12-07 08:57:32 -0800263 /* SATA Controller IDE (ICH9M) */
Tejun Heo00242ec2007-11-19 11:24:25 +0900264 { 0x8086, 0x2928, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
Jason Gastonf98b6572006-12-07 08:57:32 -0800265 /* SATA Controller IDE (ICH9M) */
Tejun Heo00242ec2007-11-19 11:24:25 +0900266 { 0x8086, 0x292d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
Jason Gastonf98b6572006-12-07 08:57:32 -0800267 /* SATA Controller IDE (ICH9M) */
268 { 0x8086, 0x292e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
Jason Gastonc5cf0ff2007-08-30 21:36:56 -0700269 /* SATA Controller IDE (Tolapai) */
270 { 0x8086, 0x5028, PCI_ANY_ID, PCI_ANY_ID, 0, 0, tolapai_sata_ahci },
Jason Gastonbf7f22b2008-01-28 17:36:45 -0800271 /* SATA Controller IDE (ICH10) */
272 { 0x8086, 0x3a00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
273 /* SATA Controller IDE (ICH10) */
274 { 0x8086, 0x3a06, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
275 /* SATA Controller IDE (ICH10) */
276 { 0x8086, 0x3a20, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_ahci },
277 /* SATA Controller IDE (ICH10) */
278 { 0x8086, 0x3a26, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 { } /* terminate list */
281};
282
283static struct pci_driver piix_pci_driver = {
284 .name = DRV_NAME,
285 .id_table = piix_pci_tbl,
286 .probe = piix_init_one,
287 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900288#ifdef CONFIG_PM
Tejun Heob8b275e2007-07-10 15:55:43 +0900289 .suspend = piix_pci_device_suspend,
290 .resume = piix_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900291#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292};
293
Jeff Garzik193515d2005-11-07 00:59:37 -0500294static struct scsi_host_template piix_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900295 ATA_BMDMA_SHT(DRV_NAME),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296};
297
Tejun Heo029cfd62008-03-25 12:22:49 +0900298static struct ata_port_operations piix_pata_ops = {
299 .inherits = &ata_bmdma_port_ops,
Alan Coxeb4a2c72007-04-11 00:04:20 +0100300 .cable_detect = ata_cable_40wire,
Tejun Heo25f98132008-01-07 19:38:53 +0900301 .set_piomode = piix_set_piomode,
302 .set_dmamode = piix_set_dmamode,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900303 .prereset = piix_pata_prereset,
Tejun Heo029cfd62008-03-25 12:22:49 +0900304};
Tejun Heo25f98132008-01-07 19:38:53 +0900305
Tejun Heo029cfd62008-03-25 12:22:49 +0900306static struct ata_port_operations piix_vmw_ops = {
307 .inherits = &piix_pata_ops,
Tejun Heo25f98132008-01-07 19:38:53 +0900308 .bmdma_status = piix_vmw_bmdma_status,
Tejun Heo25f98132008-01-07 19:38:53 +0900309};
310
Tejun Heo029cfd62008-03-25 12:22:49 +0900311static struct ata_port_operations ich_pata_ops = {
312 .inherits = &piix_pata_ops,
313 .cable_detect = ich_pata_cable_detect,
314 .set_dmamode = ich_set_dmamode,
315};
Tejun Heoc7290722008-01-18 18:36:30 +0900316
Tejun Heo029cfd62008-03-25 12:22:49 +0900317static struct ata_port_operations piix_sata_ops = {
318 .inherits = &ata_bmdma_port_ops,
319};
Tejun Heoc7290722008-01-18 18:36:30 +0900320
Tejun Heo029cfd62008-03-25 12:22:49 +0900321static struct ata_port_operations piix_sidpr_sata_ops = {
322 .inherits = &piix_sata_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900323 .hardreset = piix_sidpr_hardreset,
Tejun Heoc7290722008-01-18 18:36:30 +0900324 .scr_read = piix_sidpr_scr_read,
325 .scr_write = piix_sidpr_scr_write,
Tejun Heoc7290722008-01-18 18:36:30 +0900326};
327
Tejun Heod96715c2006-06-29 01:58:28 +0900328static const struct piix_map_db ich5_map_db = {
Tejun Heod33f58b2006-03-01 01:25:39 +0900329 .mask = 0x7,
Jeff Garzikea35d292006-07-11 11:48:50 -0400330 .port_enable = 0x3,
Tejun Heod33f58b2006-03-01 01:25:39 +0900331 .map = {
332 /* PM PS SM SS MAP */
333 { P0, NA, P1, NA }, /* 000b */
334 { P1, NA, P0, NA }, /* 001b */
335 { RV, RV, RV, RV },
336 { RV, RV, RV, RV },
337 { P0, P1, IDE, IDE }, /* 100b */
338 { P1, P0, IDE, IDE }, /* 101b */
339 { IDE, IDE, P0, P1 }, /* 110b */
340 { IDE, IDE, P1, P0 }, /* 111b */
341 },
342};
343
Tejun Heod96715c2006-06-29 01:58:28 +0900344static const struct piix_map_db ich6_map_db = {
Tejun Heod33f58b2006-03-01 01:25:39 +0900345 .mask = 0x3,
Jeff Garzikea35d292006-07-11 11:48:50 -0400346 .port_enable = 0xf,
Tejun Heod33f58b2006-03-01 01:25:39 +0900347 .map = {
348 /* PM PS SM SS MAP */
Tejun Heo79ea24e2006-03-31 20:01:50 +0900349 { P0, P2, P1, P3 }, /* 00b */
Tejun Heod33f58b2006-03-01 01:25:39 +0900350 { IDE, IDE, P1, P3 }, /* 01b */
351 { P0, P2, IDE, IDE }, /* 10b */
352 { RV, RV, RV, RV },
353 },
354};
355
Tejun Heod96715c2006-06-29 01:58:28 +0900356static const struct piix_map_db ich6m_map_db = {
Tejun Heod33f58b2006-03-01 01:25:39 +0900357 .mask = 0x3,
Jeff Garzikea35d292006-07-11 11:48:50 -0400358 .port_enable = 0x5,
Tejun Heo67083742006-09-11 06:29:03 +0900359
360 /* Map 01b isn't specified in the doc but some notebooks use
Tejun Heoc6446a42006-10-09 13:23:58 +0900361 * it anyway. MAP 01b have been spotted on both ICH6M and
362 * ICH7M.
Tejun Heo67083742006-09-11 06:29:03 +0900363 */
364 .map = {
365 /* PM PS SM SS MAP */
Tejun Heoe04b3b92007-07-10 17:58:21 +0900366 { P0, P2, NA, NA }, /* 00b */
Tejun Heo67083742006-09-11 06:29:03 +0900367 { IDE, IDE, P1, P3 }, /* 01b */
368 { P0, P2, IDE, IDE }, /* 10b */
369 { RV, RV, RV, RV },
370 },
371};
372
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400373static const struct piix_map_db ich8_map_db = {
374 .mask = 0x3,
Tejun Heoa0ce9ac2007-11-19 12:06:37 +0900375 .port_enable = 0xf,
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400376 .map = {
377 /* PM PS SM SS MAP */
Kristen Carlson Accardi158f30c82006-10-19 13:27:39 -0700378 { P0, P2, P1, P3 }, /* 00b (hardwired when in AHCI) */
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400379 { RV, RV, RV, RV },
Tejun Heoac2b0432007-08-07 02:43:27 +0900380 { P0, P2, IDE, IDE }, /* 10b (IDE mode) */
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400381 { RV, RV, RV, RV },
382 },
383};
384
Tejun Heo00242ec2007-11-19 11:24:25 +0900385static const struct piix_map_db ich8_2port_map_db = {
Jason Gastone2d352a2007-09-07 17:21:03 -0700386 .mask = 0x3,
387 .port_enable = 0x3,
388 .map = {
389 /* PM PS SM SS MAP */
390 { P0, NA, P1, NA }, /* 00b */
391 { RV, RV, RV, RV }, /* 01b */
392 { RV, RV, RV, RV }, /* 10b */
393 { RV, RV, RV, RV },
394 },
Jason Gastonc5cf0ff2007-08-30 21:36:56 -0700395};
396
Thomas Rohwer8d8ef2f2007-11-19 11:54:24 +0900397static const struct piix_map_db ich8m_apple_map_db = {
398 .mask = 0x3,
399 .port_enable = 0x1,
400 .map = {
401 /* PM PS SM SS MAP */
402 { P0, NA, NA, NA }, /* 00b */
403 { RV, RV, RV, RV },
404 { P0, P2, IDE, IDE }, /* 10b */
405 { RV, RV, RV, RV },
406 },
407};
408
Tejun Heo00242ec2007-11-19 11:24:25 +0900409static const struct piix_map_db tolapai_map_db = {
Jason Gaston8f73a682007-10-11 16:05:15 -0700410 .mask = 0x3,
411 .port_enable = 0x3,
412 .map = {
413 /* PM PS SM SS MAP */
414 { P0, NA, P1, NA }, /* 00b */
415 { RV, RV, RV, RV }, /* 01b */
416 { RV, RV, RV, RV }, /* 10b */
417 { RV, RV, RV, RV },
418 },
419};
420
Tejun Heod96715c2006-06-29 01:58:28 +0900421static const struct piix_map_db *piix_map_db_table[] = {
422 [ich5_sata] = &ich5_map_db,
Tejun Heod96715c2006-06-29 01:58:28 +0900423 [ich6_sata] = &ich6_map_db,
424 [ich6_sata_ahci] = &ich6_map_db,
425 [ich6m_sata_ahci] = &ich6m_map_db,
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400426 [ich8_sata_ahci] = &ich8_map_db,
Tejun Heo00242ec2007-11-19 11:24:25 +0900427 [ich8_2port_sata] = &ich8_2port_map_db,
Thomas Rohwer8d8ef2f2007-11-19 11:54:24 +0900428 [ich8m_apple_sata_ahci] = &ich8m_apple_map_db,
Jason Gastonc5cf0ff2007-08-30 21:36:56 -0700429 [tolapai_sata_ahci] = &tolapai_map_db,
Tejun Heod96715c2006-06-29 01:58:28 +0900430};
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432static struct ata_port_info piix_port_info[] = {
Tejun Heo00242ec2007-11-19 11:24:25 +0900433 [piix_pata_mwdma] = /* PIIX3 MWDMA only */
434 {
Tejun Heo00242ec2007-11-19 11:24:25 +0900435 .flags = PIIX_PATA_FLAGS,
436 .pio_mask = 0x1f, /* pio0-4 */
437 .mwdma_mask = 0x06, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
438 .port_ops = &piix_pata_ops,
439 },
440
Jeff Garzikec300d92007-09-01 07:17:36 -0400441 [piix_pata_33] = /* PIIX4 at 33MHz */
Tejun Heo1d076e52006-03-01 01:25:39 +0900442 {
Tejun Heob3362f82006-11-10 18:08:10 +0900443 .flags = PIIX_PATA_FLAGS,
Tejun Heo1d076e52006-03-01 01:25:39 +0900444 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400445 .mwdma_mask = 0x06, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
Tejun Heo1d076e52006-03-01 01:25:39 +0900446 .udma_mask = ATA_UDMA_MASK_40C,
447 .port_ops = &piix_pata_ops,
448 },
449
Jeff Garzikec300d92007-09-01 07:17:36 -0400450 [ich_pata_33] = /* ICH0 - ICH at 33Mhz*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 {
Tejun Heob3362f82006-11-10 18:08:10 +0900452 .flags = PIIX_PATA_FLAGS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400453 .pio_mask = 0x1f, /* pio 0-4 */
454 .mwdma_mask = 0x06, /* Check: maybe 0x07 */
455 .udma_mask = ATA_UDMA2, /* UDMA33 */
456 .port_ops = &ich_pata_ops,
457 },
Jeff Garzikec300d92007-09-01 07:17:36 -0400458
459 [ich_pata_66] = /* ICH controllers up to 66MHz */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400460 {
Tejun Heob3362f82006-11-10 18:08:10 +0900461 .flags = PIIX_PATA_FLAGS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400462 .pio_mask = 0x1f, /* pio 0-4 */
463 .mwdma_mask = 0x06, /* MWDMA0 is broken on chip */
464 .udma_mask = ATA_UDMA4,
465 .port_ops = &ich_pata_ops,
466 },
Jeff Garzik85cd7252006-08-31 00:03:49 -0400467
Jeff Garzikec300d92007-09-01 07:17:36 -0400468 [ich_pata_100] =
Jeff Garzik669a5db2006-08-29 18:12:40 -0400469 {
Tejun Heob3362f82006-11-10 18:08:10 +0900470 .flags = PIIX_PATA_FLAGS | PIIX_FLAG_CHECKINTR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .pio_mask = 0x1f, /* pio0-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 .mwdma_mask = 0x06, /* mwdma1-2 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400473 .udma_mask = ATA_UDMA5, /* udma0-5 */
474 .port_ops = &ich_pata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 },
476
Jeff Garzikec300d92007-09-01 07:17:36 -0400477 [ich5_sata] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 {
Tejun Heo228c1592006-11-10 18:08:10 +0900479 .flags = PIIX_SATA_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 .pio_mask = 0x1f, /* pio0-4 */
481 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400482 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 .port_ops = &piix_sata_ops,
484 },
485
Jeff Garzikec300d92007-09-01 07:17:36 -0400486 [ich6_sata] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 {
Tejun Heo723159c2008-01-04 18:42:20 +0900488 .flags = PIIX_SATA_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 .pio_mask = 0x1f, /* pio0-4 */
490 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400491 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 .port_ops = &piix_sata_ops,
493 },
494
Jeff Garzikec300d92007-09-01 07:17:36 -0400495 [ich6_sata_ahci] =
Jason Gastonc368ca42005-04-16 15:24:44 -0700496 {
Tejun Heo723159c2008-01-04 18:42:20 +0900497 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_AHCI,
Jason Gastonc368ca42005-04-16 15:24:44 -0700498 .pio_mask = 0x1f, /* pio0-4 */
499 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400500 .udma_mask = ATA_UDMA6,
Jason Gastonc368ca42005-04-16 15:24:44 -0700501 .port_ops = &piix_sata_ops,
502 },
Tejun Heo1d076e52006-03-01 01:25:39 +0900503
Jeff Garzikec300d92007-09-01 07:17:36 -0400504 [ich6m_sata_ahci] =
Tejun Heo1d076e52006-03-01 01:25:39 +0900505 {
Tejun Heo723159c2008-01-04 18:42:20 +0900506 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_AHCI,
Tejun Heo1d076e52006-03-01 01:25:39 +0900507 .pio_mask = 0x1f, /* pio0-4 */
508 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400509 .udma_mask = ATA_UDMA6,
Tejun Heo1d076e52006-03-01 01:25:39 +0900510 .port_ops = &piix_sata_ops,
511 },
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400512
Jeff Garzikec300d92007-09-01 07:17:36 -0400513 [ich8_sata_ahci] =
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400514 {
Tejun Heoc7290722008-01-18 18:36:30 +0900515 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_AHCI |
516 PIIX_FLAG_SIDPR,
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400517 .pio_mask = 0x1f, /* pio0-4 */
518 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400519 .udma_mask = ATA_UDMA6,
Jeff Garzik08f12ed2006-07-11 11:57:44 -0400520 .port_ops = &piix_sata_ops,
521 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400522
Tejun Heo00242ec2007-11-19 11:24:25 +0900523 [ich8_2port_sata] =
Jason Gastonc5cf0ff2007-08-30 21:36:56 -0700524 {
Tejun Heoc7290722008-01-18 18:36:30 +0900525 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_AHCI |
526 PIIX_FLAG_SIDPR,
Jason Gastonc5cf0ff2007-08-30 21:36:56 -0700527 .pio_mask = 0x1f, /* pio0-4 */
528 .mwdma_mask = 0x07, /* mwdma0-2 */
529 .udma_mask = ATA_UDMA6,
530 .port_ops = &piix_sata_ops,
531 },
Jason Gaston8f73a682007-10-11 16:05:15 -0700532
Tejun Heo00242ec2007-11-19 11:24:25 +0900533 [tolapai_sata_ahci] =
Jason Gaston8f73a682007-10-11 16:05:15 -0700534 {
Tejun Heo723159c2008-01-04 18:42:20 +0900535 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_AHCI,
Jason Gaston8f73a682007-10-11 16:05:15 -0700536 .pio_mask = 0x1f, /* pio0-4 */
537 .mwdma_mask = 0x07, /* mwdma0-2 */
538 .udma_mask = ATA_UDMA6,
539 .port_ops = &piix_sata_ops,
540 },
Thomas Rohwer8d8ef2f2007-11-19 11:54:24 +0900541
542 [ich8m_apple_sata_ahci] =
543 {
Tejun Heoc7290722008-01-18 18:36:30 +0900544 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_AHCI |
545 PIIX_FLAG_SIDPR,
Thomas Rohwer8d8ef2f2007-11-19 11:54:24 +0900546 .pio_mask = 0x1f, /* pio0-4 */
547 .mwdma_mask = 0x07, /* mwdma0-2 */
548 .udma_mask = ATA_UDMA6,
549 .port_ops = &piix_sata_ops,
550 },
551
Tejun Heo25f98132008-01-07 19:38:53 +0900552 [piix_pata_vmw] =
553 {
Tejun Heo25f98132008-01-07 19:38:53 +0900554 .flags = PIIX_PATA_FLAGS,
555 .pio_mask = 0x1f, /* pio0-4 */
556 .mwdma_mask = 0x06, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
557 .udma_mask = ATA_UDMA_MASK_40C,
558 .port_ops = &piix_vmw_ops,
559 },
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561};
562
563static struct pci_bits piix_enable_bits[] = {
564 { 0x41U, 1U, 0x80UL, 0x80UL }, /* port 0 */
565 { 0x43U, 1U, 0x80UL, 0x80UL }, /* port 1 */
566};
567
568MODULE_AUTHOR("Andre Hedrick, Alan Cox, Andrzej Krzysztofowicz, Jeff Garzik");
569MODULE_DESCRIPTION("SCSI low-level driver for Intel PIIX/ICH ATA controllers");
570MODULE_LICENSE("GPL");
571MODULE_DEVICE_TABLE(pci, piix_pci_tbl);
572MODULE_VERSION(DRV_VERSION);
573
Alan Coxfc085152006-10-10 14:28:11 -0700574struct ich_laptop {
575 u16 device;
576 u16 subvendor;
577 u16 subdevice;
578};
579
580/*
581 * List of laptops that use short cables rather than 80 wire
582 */
583
584static const struct ich_laptop ich_laptop[] = {
585 /* devid, subvendor, subdev */
586 { 0x27DF, 0x0005, 0x0280 }, /* ICH7 on Acer 5602WLMi */
Alan Cox2655e2c2007-11-05 22:51:09 +0000587 { 0x27DF, 0x1025, 0x0102 }, /* ICH7 on Acer 5602aWLMi */
J Jbabfb682007-01-09 02:26:30 +0900588 { 0x27DF, 0x1025, 0x0110 }, /* ICH7 on Acer 3682WLMi */
Robin H\. Johnson12340102007-03-28 18:02:07 -0700589 { 0x27DF, 0x1043, 0x1267 }, /* ICH7 on Asus W5F */
Jeff Garzik54174db2007-09-29 04:01:43 -0400590 { 0x27DF, 0x103C, 0x30A1 }, /* ICH7 on HP Compaq nc2400 */
Tejun Heob33620f2007-05-22 11:34:22 +0200591 { 0x24CA, 0x1025, 0x0061 }, /* ICH4 on ACER Aspire 2023WLMi */
Alan Coxfc085152006-10-10 14:28:11 -0700592 /* end marker */
593 { 0, }
594};
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/**
Alan Coxeb4a2c72007-04-11 00:04:20 +0100597 * ich_pata_cable_detect - Probe host controller cable detect info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 * @ap: Port for which cable detect info is desired
599 *
600 * Read 80c cable indicator from ATA PCI device's PCI config
601 * register. This register is normally set by firmware (BIOS).
602 *
603 * LOCKING:
604 * None (inherited from caller).
605 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400606
Alan Coxeb4a2c72007-04-11 00:04:20 +0100607static int ich_pata_cable_detect(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Jeff Garzikcca39742006-08-24 03:19:22 -0400609 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxfc085152006-10-10 14:28:11 -0700610 const struct ich_laptop *lap = &ich_laptop[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 u8 tmp, mask;
612
Alan Coxfc085152006-10-10 14:28:11 -0700613 /* Check for specials - Acer Aspire 5602WLMi */
614 while (lap->device) {
615 if (lap->device == pdev->device &&
616 lap->subvendor == pdev->subsystem_vendor &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400617 lap->subdevice == pdev->subsystem_device)
Alan Coxeb4a2c72007-04-11 00:04:20 +0100618 return ATA_CBL_PATA40_SHORT;
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400619
Alan Coxfc085152006-10-10 14:28:11 -0700620 lap++;
621 }
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 /* check BIOS cable detect results */
Tejun Heo2a88d1a2006-08-10 16:59:16 +0900624 mask = ap->port_no == 0 ? PIIX_80C_PRI : PIIX_80C_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 pci_read_config_byte(pdev, PIIX_IOCFG, &tmp);
626 if ((tmp & mask) == 0)
Alan Coxeb4a2c72007-04-11 00:04:20 +0100627 return ATA_CBL_PATA40;
628 return ATA_CBL_PATA80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/**
Tejun Heoccc46722006-05-31 18:28:14 +0900632 * piix_pata_prereset - prereset for PATA host controller
Tejun Heocc0680a2007-08-06 18:36:23 +0900633 * @link: Target link
Tejun Heod4b2bab2007-02-02 16:50:52 +0900634 * @deadline: deadline jiffies for the operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * LOCKING:
637 * None (inherited from caller).
638 */
Tejun Heocc0680a2007-08-06 18:36:23 +0900639static int piix_pata_prereset(struct ata_link *link, unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Tejun Heocc0680a2007-08-06 18:36:23 +0900641 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -0400642 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Alan Coxc9619222006-09-26 17:53:38 +0100644 if (!pci_test_config_bits(pdev, &piix_enable_bits[ap->port_no]))
645 return -ENOENT;
Tejun Heocc0680a2007-08-06 18:36:23 +0900646 return ata_std_prereset(link, deadline);
Tejun Heoccc46722006-05-31 18:28:14 +0900647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649/**
650 * piix_set_piomode - Initialize host controller PATA PIO timings
651 * @ap: Port whose timings we are configuring
652 * @adev: um
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *
654 * Set PIO mode for device, in host controller PCI config space.
655 *
656 * LOCKING:
657 * None (inherited from caller).
658 */
659
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400660static void piix_set_piomode(struct ata_port *ap, struct ata_device *adev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 unsigned int pio = adev->pio_mode - XFER_PIO_0;
Jeff Garzikcca39742006-08-24 03:19:22 -0400663 struct pci_dev *dev = to_pci_dev(ap->host->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 unsigned int is_slave = (adev->devno != 0);
Tejun Heo2a88d1a2006-08-10 16:59:16 +0900665 unsigned int master_port= ap->port_no ? 0x42 : 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 unsigned int slave_port = 0x44;
667 u16 master_data;
668 u8 slave_data;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400669 u8 udma_enable;
670 int control = 0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400671
Jeff Garzik669a5db2006-08-29 18:12:40 -0400672 /*
673 * See Intel Document 298600-004 for the timing programing rules
674 * for ICH controllers.
675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 static const /* ISP RTC */
678 u8 timings[][2] = { { 0, 0 },
679 { 0, 0 },
680 { 1, 0 },
681 { 2, 1 },
682 { 2, 3 }, };
683
Jeff Garzik669a5db2006-08-29 18:12:40 -0400684 if (pio >= 2)
685 control |= 1; /* TIME1 enable */
686 if (ata_pio_need_iordy(adev))
687 control |= 2; /* IE enable */
688
Jeff Garzik85cd7252006-08-31 00:03:49 -0400689 /* Intel specifies that the PPE functionality is for disk only */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400690 if (adev->class == ATA_DEV_ATA)
691 control |= 4; /* PPE enable */
692
Tejun Heoa5bf5f52007-05-25 19:16:58 +0200693 /* PIO configuration clears DTE unconditionally. It will be
694 * programmed in set_dmamode which is guaranteed to be called
695 * after set_piomode if any DMA mode is available.
696 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 pci_read_config_word(dev, master_port, &master_data);
698 if (is_slave) {
Tejun Heoa5bf5f52007-05-25 19:16:58 +0200699 /* clear TIME1|IE1|PPE1|DTE1 */
700 master_data &= 0xff0f;
Joe Perches1967b7f2008-02-03 17:08:11 +0200701 /* Enable SITRE (separate slave timing register) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 master_data |= 0x4000;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400703 /* enable PPE1, IE1 and TIME1 as needed */
704 master_data |= (control << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 pci_read_config_byte(dev, slave_port, &slave_data);
Tejun Heo2a88d1a2006-08-10 16:59:16 +0900706 slave_data &= (ap->port_no ? 0x0f : 0xf0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400707 /* Load the timing nibble for this slave */
Tejun Heoa5bf5f52007-05-25 19:16:58 +0200708 slave_data |= ((timings[pio][0] << 2) | timings[pio][1])
709 << (ap->port_no ? 4 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 } else {
Tejun Heoa5bf5f52007-05-25 19:16:58 +0200711 /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */
712 master_data &= 0xccf0;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400713 /* Enable PPE, IE and TIME as appropriate */
714 master_data |= control;
Tejun Heoa5bf5f52007-05-25 19:16:58 +0200715 /* load ISP and RCT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 master_data |=
717 (timings[pio][0] << 12) |
718 (timings[pio][1] << 8);
719 }
720 pci_write_config_word(dev, master_port, master_data);
721 if (is_slave)
722 pci_write_config_byte(dev, slave_port, slave_data);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400723
724 /* Ensure the UDMA bit is off - it will be turned back on if
725 UDMA is selected */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400726
Jeff Garzik669a5db2006-08-29 18:12:40 -0400727 if (ap->udma_mask) {
728 pci_read_config_byte(dev, 0x48, &udma_enable);
729 udma_enable &= ~(1 << (2 * ap->port_no + adev->devno));
730 pci_write_config_byte(dev, 0x48, udma_enable);
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
734/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400735 * do_pata_set_dmamode - Initialize host controller PATA PIO timings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * @ap: Port whose timings we are configuring
Jeff Garzik669a5db2006-08-29 18:12:40 -0400737 * @adev: Drive in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 * @udma: udma mode, 0 - 6
Hennec32a8fd2006-09-25 22:00:46 +0200739 * @isich: set if the chip is an ICH device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 *
741 * Set UDMA mode for device, in host controller PCI config space.
742 *
743 * LOCKING:
744 * None (inherited from caller).
745 */
746
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400747static void do_pata_set_dmamode(struct ata_port *ap, struct ata_device *adev, int isich)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Jeff Garzikcca39742006-08-24 03:19:22 -0400749 struct pci_dev *dev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400750 u8 master_port = ap->port_no ? 0x42 : 0x40;
751 u16 master_data;
752 u8 speed = adev->dma_mode;
753 int devid = adev->devno + 2 * ap->port_no;
Andrew Mortondedf61d2007-01-10 17:20:34 -0800754 u8 udma_enable = 0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400755
Jeff Garzik669a5db2006-08-29 18:12:40 -0400756 static const /* ISP RTC */
757 u8 timings[][2] = { { 0, 0 },
758 { 0, 0 },
759 { 1, 0 },
760 { 2, 1 },
761 { 2, 3 }, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Jeff Garzik669a5db2006-08-29 18:12:40 -0400763 pci_read_config_word(dev, master_port, &master_data);
Aland2cdfc02007-01-10 17:13:38 +0000764 if (ap->udma_mask)
765 pci_read_config_byte(dev, 0x48, &udma_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 if (speed >= XFER_UDMA_0) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400768 unsigned int udma = adev->dma_mode - XFER_UDMA_0;
769 u16 udma_timing;
770 u16 ideconf;
771 int u_clock, u_speed;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400772
Jeff Garzik669a5db2006-08-29 18:12:40 -0400773 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400774 * UDMA is handled by a combination of clock switching and
Jeff Garzik85cd7252006-08-31 00:03:49 -0400775 * selection of dividers
776 *
Jeff Garzik669a5db2006-08-29 18:12:40 -0400777 * Handy rule: Odd modes are UDMATIMx 01, even are 02
Jeff Garzik85cd7252006-08-31 00:03:49 -0400778 * except UDMA0 which is 00
Jeff Garzik669a5db2006-08-29 18:12:40 -0400779 */
780 u_speed = min(2 - (udma & 1), udma);
781 if (udma == 5)
782 u_clock = 0x1000; /* 100Mhz */
783 else if (udma > 2)
784 u_clock = 1; /* 66Mhz */
785 else
786 u_clock = 0; /* 33Mhz */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400787
Jeff Garzik669a5db2006-08-29 18:12:40 -0400788 udma_enable |= (1 << devid);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400789
Jeff Garzik669a5db2006-08-29 18:12:40 -0400790 /* Load the CT/RP selection */
791 pci_read_config_word(dev, 0x4A, &udma_timing);
792 udma_timing &= ~(3 << (4 * devid));
793 udma_timing |= u_speed << (4 * devid);
794 pci_write_config_word(dev, 0x4A, udma_timing);
795
Jeff Garzik85cd7252006-08-31 00:03:49 -0400796 if (isich) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400797 /* Select a 33/66/100Mhz clock */
798 pci_read_config_word(dev, 0x54, &ideconf);
799 ideconf &= ~(0x1001 << devid);
800 ideconf |= u_clock << devid;
801 /* For ICH or later we should set bit 10 for better
802 performance (WR_PingPong_En) */
803 pci_write_config_word(dev, 0x54, ideconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 } else {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400806 /*
807 * MWDMA is driven by the PIO timings. We must also enable
808 * IORDY unconditionally along with TIME1. PPE has already
809 * been set when the PIO timing was set.
810 */
811 unsigned int mwdma = adev->dma_mode - XFER_MW_DMA_0;
812 unsigned int control;
813 u8 slave_data;
814 const unsigned int needed_pio[3] = {
815 XFER_PIO_0, XFER_PIO_3, XFER_PIO_4
816 };
817 int pio = needed_pio[mwdma] - XFER_PIO_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400818
Jeff Garzik669a5db2006-08-29 18:12:40 -0400819 control = 3; /* IORDY|TIME1 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400820
Jeff Garzik669a5db2006-08-29 18:12:40 -0400821 /* If the drive MWDMA is faster than it can do PIO then
822 we must force PIO into PIO0 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400823
Jeff Garzik669a5db2006-08-29 18:12:40 -0400824 if (adev->pio_mode < needed_pio[mwdma])
825 /* Enable DMA timing only */
826 control |= 8; /* PIO cycles in PIO0 */
827
828 if (adev->devno) { /* Slave */
829 master_data &= 0xFF4F; /* Mask out IORDY|TIME1|DMAONLY */
830 master_data |= control << 4;
831 pci_read_config_byte(dev, 0x44, &slave_data);
Tejun Heoa5bf5f52007-05-25 19:16:58 +0200832 slave_data &= (ap->port_no ? 0x0f : 0xf0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400833 /* Load the matching timing */
834 slave_data |= ((timings[pio][0] << 2) | timings[pio][1]) << (ap->port_no ? 4 : 0);
835 pci_write_config_byte(dev, 0x44, slave_data);
836 } else { /* Master */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400837 master_data &= 0xCCF4; /* Mask out IORDY|TIME1|DMAONLY
Jeff Garzik669a5db2006-08-29 18:12:40 -0400838 and master timing bits */
839 master_data |= control;
840 master_data |=
841 (timings[pio][0] << 12) |
842 (timings[pio][1] << 8);
843 }
Tejun Heoa5bf5f52007-05-25 19:16:58 +0200844
845 if (ap->udma_mask) {
846 udma_enable &= ~(1 << devid);
847 pci_write_config_word(dev, master_port, master_data);
848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400850 /* Don't scribble on 0x48 if the controller does not support UDMA */
851 if (ap->udma_mask)
852 pci_write_config_byte(dev, 0x48, udma_enable);
853}
854
855/**
856 * piix_set_dmamode - Initialize host controller PATA DMA timings
857 * @ap: Port whose timings we are configuring
858 * @adev: um
859 *
860 * Set MW/UDMA mode for device, in host controller PCI config space.
861 *
862 * LOCKING:
863 * None (inherited from caller).
864 */
865
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400866static void piix_set_dmamode(struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400867{
868 do_pata_set_dmamode(ap, adev, 0);
869}
870
871/**
872 * ich_set_dmamode - Initialize host controller PATA DMA timings
873 * @ap: Port whose timings we are configuring
874 * @adev: um
875 *
876 * Set MW/UDMA mode for device, in host controller PCI config space.
877 *
878 * LOCKING:
879 * None (inherited from caller).
880 */
881
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400882static void ich_set_dmamode(struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400883{
884 do_pata_set_dmamode(ap, adev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Tejun Heoc7290722008-01-18 18:36:30 +0900887/*
888 * Serial ATA Index/Data Pair Superset Registers access
889 *
890 * Beginning from ICH8, there's a sane way to access SCRs using index
891 * and data register pair located at BAR5. This creates an
892 * interesting problem of mapping two SCRs to one port.
893 *
894 * Although they have separate SCRs, the master and slave aren't
895 * independent enough to be treated as separate links - e.g. softreset
896 * resets both. Also, there's no protocol defined for hard resetting
897 * singled device sharing the virtual port (no defined way to acquire
898 * device signature). This is worked around by merging the SCR values
899 * into one sensible value and requesting follow-up SRST after
900 * hardreset.
901 *
902 * SCR merging is perfomed in nibbles which is the unit contents in
903 * SCRs are organized. If two values are equal, the value is used.
904 * When they differ, merge table which lists precedence of possible
905 * values is consulted and the first match or the last entry when
906 * nothing matches is used. When there's no merge table for the
907 * specific nibble, value from the first port is used.
908 */
909static const int piix_sidx_map[] = {
910 [SCR_STATUS] = 0,
911 [SCR_ERROR] = 2,
912 [SCR_CONTROL] = 1,
913};
914
915static void piix_sidpr_sel(struct ata_device *dev, unsigned int reg)
916{
917 struct ata_port *ap = dev->link->ap;
918 struct piix_host_priv *hpriv = ap->host->private_data;
919
920 iowrite32(((ap->port_no * 2 + dev->devno) << 8) | piix_sidx_map[reg],
921 hpriv->sidpr + PIIX_SIDPR_IDX);
922}
923
924static int piix_sidpr_read(struct ata_device *dev, unsigned int reg)
925{
926 struct piix_host_priv *hpriv = dev->link->ap->host->private_data;
927
928 piix_sidpr_sel(dev, reg);
929 return ioread32(hpriv->sidpr + PIIX_SIDPR_DATA);
930}
931
932static void piix_sidpr_write(struct ata_device *dev, unsigned int reg, u32 val)
933{
934 struct piix_host_priv *hpriv = dev->link->ap->host->private_data;
935
936 piix_sidpr_sel(dev, reg);
937 iowrite32(val, hpriv->sidpr + PIIX_SIDPR_DATA);
938}
939
Adrian Bunk4a537a52008-01-29 00:10:19 +0200940static u32 piix_merge_scr(u32 val0, u32 val1, const int * const *merge_tbl)
Tejun Heoc7290722008-01-18 18:36:30 +0900941{
942 u32 val = 0;
943 int i, mi;
944
945 for (i = 0, mi = 0; i < 32 / 4; i++) {
946 u8 c0 = (val0 >> (i * 4)) & 0xf;
947 u8 c1 = (val1 >> (i * 4)) & 0xf;
948 u8 merged = c0;
949 const int *cur;
950
951 /* if no merge preference, assume the first value */
952 cur = merge_tbl[mi];
953 if (!cur)
954 goto done;
955 mi++;
956
957 /* if two values equal, use it */
958 if (c0 == c1)
959 goto done;
960
961 /* choose the first match or the last from the merge table */
962 while (*cur != -1) {
963 if (c0 == *cur || c1 == *cur)
964 break;
965 cur++;
966 }
967 if (*cur == -1)
968 cur--;
969 merged = *cur;
970 done:
971 val |= merged << (i * 4);
972 }
973
974 return val;
975}
976
977static int piix_sidpr_scr_read(struct ata_port *ap, unsigned int reg, u32 *val)
978{
979 const int * const sstatus_merge_tbl[] = {
980 /* DET */ (const int []){ 1, 3, 0, 4, 3, -1 },
981 /* SPD */ (const int []){ 2, 1, 0, -1 },
982 /* IPM */ (const int []){ 6, 2, 1, 0, -1 },
983 NULL,
984 };
985 const int * const scontrol_merge_tbl[] = {
986 /* DET */ (const int []){ 1, 0, 4, 0, -1 },
987 /* SPD */ (const int []){ 0, 2, 1, 0, -1 },
988 /* IPM */ (const int []){ 0, 1, 2, 3, 0, -1 },
989 NULL,
990 };
991 u32 v0, v1;
992
993 if (reg >= ARRAY_SIZE(piix_sidx_map))
994 return -EINVAL;
995
996 if (!(ap->flags & ATA_FLAG_SLAVE_POSS)) {
997 *val = piix_sidpr_read(&ap->link.device[0], reg);
998 return 0;
999 }
1000
1001 v0 = piix_sidpr_read(&ap->link.device[0], reg);
1002 v1 = piix_sidpr_read(&ap->link.device[1], reg);
1003
1004 switch (reg) {
1005 case SCR_STATUS:
1006 *val = piix_merge_scr(v0, v1, sstatus_merge_tbl);
1007 break;
1008 case SCR_ERROR:
1009 *val = v0 | v1;
1010 break;
1011 case SCR_CONTROL:
1012 *val = piix_merge_scr(v0, v1, scontrol_merge_tbl);
1013 break;
1014 }
1015
1016 return 0;
1017}
1018
1019static int piix_sidpr_scr_write(struct ata_port *ap, unsigned int reg, u32 val)
1020{
1021 if (reg >= ARRAY_SIZE(piix_sidx_map))
1022 return -EINVAL;
1023
1024 piix_sidpr_write(&ap->link.device[0], reg, val);
1025
1026 if (ap->flags & ATA_FLAG_SLAVE_POSS)
1027 piix_sidpr_write(&ap->link.device[1], reg, val);
1028
1029 return 0;
1030}
1031
1032static int piix_sidpr_hardreset(struct ata_link *link, unsigned int *class,
1033 unsigned long deadline)
1034{
1035 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
1036 int rc;
1037
1038 /* do hardreset */
1039 rc = sata_link_hardreset(link, timing, deadline);
1040 if (rc) {
1041 ata_link_printk(link, KERN_ERR,
1042 "COMRESET failed (errno=%d)\n", rc);
1043 return rc;
1044 }
1045
1046 /* TODO: phy layer with polling, timeouts, etc. */
1047 if (ata_link_offline(link)) {
1048 *class = ATA_DEV_NONE;
1049 return 0;
1050 }
1051
1052 return -EAGAIN;
1053}
1054
Tejun Heob8b275e2007-07-10 15:55:43 +09001055#ifdef CONFIG_PM
Tejun Heo8c3832e2007-07-27 14:53:28 +09001056static int piix_broken_suspend(void)
1057{
Jeff Garzik18552562007-10-03 15:15:40 -04001058 static const struct dmi_system_id sysids[] = {
Tejun Heo8c3832e2007-07-27 14:53:28 +09001059 {
Tejun Heo4c74d4e2007-09-30 01:11:20 -07001060 .ident = "TECRA M3",
1061 .matches = {
1062 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1063 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M3"),
1064 },
1065 },
1066 {
Peter Schwenke04d86d62007-11-30 15:28:29 +09001067 .ident = "TECRA M3",
1068 .matches = {
1069 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1070 DMI_MATCH(DMI_PRODUCT_NAME, "Tecra M3"),
1071 },
1072 },
1073 {
Peter Schwenked1aa6902007-12-05 10:39:49 +09001074 .ident = "TECRA M4",
1075 .matches = {
1076 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1077 DMI_MATCH(DMI_PRODUCT_NAME, "Tecra M4"),
1078 },
1079 },
1080 {
Tejun Heo8c3832e2007-07-27 14:53:28 +09001081 .ident = "TECRA M5",
1082 .matches = {
1083 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1084 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M5"),
1085 },
Tejun Heob8b275e2007-07-10 15:55:43 +09001086 },
Tejun Heo8c3832e2007-07-27 14:53:28 +09001087 {
Peter Schwenkeffe188d2008-01-17 23:08:55 +10001088 .ident = "TECRA M6",
1089 .matches = {
1090 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1091 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M6"),
1092 },
1093 },
1094 {
Tejun Heo5c08ea02007-08-14 19:56:04 +09001095 .ident = "TECRA M7",
1096 .matches = {
1097 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1098 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M7"),
1099 },
1100 },
1101 {
Peter Schwenke04d86d62007-11-30 15:28:29 +09001102 .ident = "TECRA A8",
1103 .matches = {
1104 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1105 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA A8"),
1106 },
1107 },
1108 {
Peter Schwenkeffe188d2008-01-17 23:08:55 +10001109 .ident = "Satellite R20",
1110 .matches = {
1111 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1112 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite R20"),
1113 },
1114 },
1115 {
Peter Schwenke04d86d62007-11-30 15:28:29 +09001116 .ident = "Satellite R25",
1117 .matches = {
1118 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1119 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite R25"),
1120 },
1121 },
1122 {
Tejun Heo3cc0b9d2007-08-25 08:31:02 +09001123 .ident = "Satellite U200",
1124 .matches = {
1125 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1126 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite U200"),
1127 },
1128 },
1129 {
Peter Schwenke04d86d62007-11-30 15:28:29 +09001130 .ident = "Satellite U200",
1131 .matches = {
1132 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1133 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE U200"),
1134 },
1135 },
1136 {
Yann Chachkoff62320e22007-11-07 12:02:27 +09001137 .ident = "Satellite Pro U200",
1138 .matches = {
1139 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1140 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE PRO U200"),
1141 },
1142 },
1143 {
Tejun Heo8c3832e2007-07-27 14:53:28 +09001144 .ident = "Satellite U205",
1145 .matches = {
1146 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1147 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite U205"),
1148 },
Tejun Heob8b275e2007-07-10 15:55:43 +09001149 },
Tejun Heo8c3832e2007-07-27 14:53:28 +09001150 {
Tejun Heode753e52007-11-12 17:56:24 +09001151 .ident = "SATELLITE U205",
1152 .matches = {
1153 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1154 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE U205"),
1155 },
1156 },
1157 {
Tejun Heo8c3832e2007-07-27 14:53:28 +09001158 .ident = "Portege M500",
1159 .matches = {
1160 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1161 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M500"),
1162 },
Tejun Heob8b275e2007-07-10 15:55:43 +09001163 },
Jeff Garzik7d051542007-09-01 06:48:52 -04001164
1165 { } /* terminate list */
Tejun Heo8c3832e2007-07-27 14:53:28 +09001166 };
Tejun Heo7abe79c2007-07-27 14:55:07 +09001167 static const char *oemstrs[] = {
1168 "Tecra M3,",
1169 };
1170 int i;
Tejun Heo8c3832e2007-07-27 14:53:28 +09001171
1172 if (dmi_check_system(sysids))
1173 return 1;
1174
Tejun Heo7abe79c2007-07-27 14:55:07 +09001175 for (i = 0; i < ARRAY_SIZE(oemstrs); i++)
1176 if (dmi_find_device(DMI_DEV_TYPE_OEM_STRING, oemstrs[i], NULL))
1177 return 1;
1178
Tejun Heo8c3832e2007-07-27 14:53:28 +09001179 return 0;
1180}
Tejun Heob8b275e2007-07-10 15:55:43 +09001181
1182static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
1183{
1184 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1185 unsigned long flags;
1186 int rc = 0;
1187
1188 rc = ata_host_suspend(host, mesg);
1189 if (rc)
1190 return rc;
1191
1192 /* Some braindamaged ACPI suspend implementations expect the
1193 * controller to be awake on entry; otherwise, it burns cpu
1194 * cycles and power trying to do something to the sleeping
1195 * beauty.
1196 */
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001197 if (piix_broken_suspend() && (mesg.event & PM_EVENT_SLEEP)) {
Tejun Heob8b275e2007-07-10 15:55:43 +09001198 pci_save_state(pdev);
1199
1200 /* mark its power state as "unknown", since we don't
1201 * know if e.g. the BIOS will change its device state
1202 * when we suspend.
1203 */
1204 if (pdev->current_state == PCI_D0)
1205 pdev->current_state = PCI_UNKNOWN;
1206
1207 /* tell resume that it's waking up from broken suspend */
1208 spin_lock_irqsave(&host->lock, flags);
1209 host->flags |= PIIX_HOST_BROKEN_SUSPEND;
1210 spin_unlock_irqrestore(&host->lock, flags);
1211 } else
1212 ata_pci_device_do_suspend(pdev, mesg);
1213
1214 return 0;
1215}
1216
1217static int piix_pci_device_resume(struct pci_dev *pdev)
1218{
1219 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1220 unsigned long flags;
1221 int rc;
1222
1223 if (host->flags & PIIX_HOST_BROKEN_SUSPEND) {
1224 spin_lock_irqsave(&host->lock, flags);
1225 host->flags &= ~PIIX_HOST_BROKEN_SUSPEND;
1226 spin_unlock_irqrestore(&host->lock, flags);
1227
1228 pci_set_power_state(pdev, PCI_D0);
1229 pci_restore_state(pdev);
1230
1231 /* PCI device wasn't disabled during suspend. Use
Tejun Heo0b62e132007-07-27 14:43:35 +09001232 * pci_reenable_device() to avoid affecting the enable
1233 * count.
Tejun Heob8b275e2007-07-10 15:55:43 +09001234 */
Tejun Heo0b62e132007-07-27 14:43:35 +09001235 rc = pci_reenable_device(pdev);
Tejun Heob8b275e2007-07-10 15:55:43 +09001236 if (rc)
1237 dev_printk(KERN_ERR, &pdev->dev, "failed to enable "
1238 "device after resume (%d)\n", rc);
1239 } else
1240 rc = ata_pci_device_do_resume(pdev);
1241
1242 if (rc == 0)
1243 ata_host_resume(host);
1244
1245 return rc;
1246}
1247#endif
1248
Tejun Heo25f98132008-01-07 19:38:53 +09001249static u8 piix_vmw_bmdma_status(struct ata_port *ap)
1250{
1251 return ata_bmdma_status(ap) & ~ATA_DMA_ERR;
1252}
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254#define AHCI_PCI_BAR 5
1255#define AHCI_GLOBAL_CTL 0x04
1256#define AHCI_ENABLE (1 << 31)
1257static int piix_disable_ahci(struct pci_dev *pdev)
1258{
Jeff Garzikea6ba102005-08-30 05:18:18 -04001259 void __iomem *mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 u32 tmp;
1261 int rc = 0;
1262
1263 /* BUG: pci_enable_device has not yet been called. This
1264 * works because this device is usually set up by BIOS.
1265 */
1266
Jeff Garzik374b1872005-08-30 05:42:52 -04001267 if (!pci_resource_start(pdev, AHCI_PCI_BAR) ||
1268 !pci_resource_len(pdev, AHCI_PCI_BAR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return 0;
Greg Felix7b6dbd62005-07-28 15:54:15 -04001270
Jeff Garzik374b1872005-08-30 05:42:52 -04001271 mmio = pci_iomap(pdev, AHCI_PCI_BAR, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (!mmio)
1273 return -ENOMEM;
Greg Felix7b6dbd62005-07-28 15:54:15 -04001274
Alan Coxc47a6312007-11-19 14:28:28 +00001275 tmp = ioread32(mmio + AHCI_GLOBAL_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (tmp & AHCI_ENABLE) {
1277 tmp &= ~AHCI_ENABLE;
Alan Coxc47a6312007-11-19 14:28:28 +00001278 iowrite32(tmp, mmio + AHCI_GLOBAL_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Alan Coxc47a6312007-11-19 14:28:28 +00001280 tmp = ioread32(mmio + AHCI_GLOBAL_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (tmp & AHCI_ENABLE)
1282 rc = -EIO;
1283 }
Greg Felix7b6dbd62005-07-28 15:54:15 -04001284
Jeff Garzik374b1872005-08-30 05:42:52 -04001285 pci_iounmap(pdev, mmio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return rc;
1287}
1288
1289/**
Alan Coxc621b142005-12-08 19:22:28 +00001290 * piix_check_450nx_errata - Check for problem 450NX setup
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001291 * @ata_dev: the PCI device to check
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001292 *
Alan Coxc621b142005-12-08 19:22:28 +00001293 * Check for the present of 450NX errata #19 and errata #25. If
1294 * they are found return an error code so we can turn off DMA
1295 */
1296
1297static int __devinit piix_check_450nx_errata(struct pci_dev *ata_dev)
1298{
1299 struct pci_dev *pdev = NULL;
1300 u16 cfg;
Alan Coxc621b142005-12-08 19:22:28 +00001301 int no_piix_dma = 0;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001302
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001303 while ((pdev = pci_get_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82454NX, pdev)) != NULL) {
Alan Coxc621b142005-12-08 19:22:28 +00001304 /* Look for 450NX PXB. Check for problem configurations
1305 A PCI quirk checks bit 6 already */
Alan Coxc621b142005-12-08 19:22:28 +00001306 pci_read_config_word(pdev, 0x41, &cfg);
1307 /* Only on the original revision: IDE DMA can hang */
Auke Kok44c10132007-06-08 15:46:36 -07001308 if (pdev->revision == 0x00)
Alan Coxc621b142005-12-08 19:22:28 +00001309 no_piix_dma = 1;
1310 /* On all revisions below 5 PXB bus lock must be disabled for IDE */
Auke Kok44c10132007-06-08 15:46:36 -07001311 else if (cfg & (1<<14) && pdev->revision < 5)
Alan Coxc621b142005-12-08 19:22:28 +00001312 no_piix_dma = 2;
1313 }
Alan Cox31a34fe2006-05-22 22:58:14 +01001314 if (no_piix_dma)
Alan Coxc621b142005-12-08 19:22:28 +00001315 dev_printk(KERN_WARNING, &ata_dev->dev, "450NX errata present, disabling IDE DMA.\n");
Alan Cox31a34fe2006-05-22 22:58:14 +01001316 if (no_piix_dma == 2)
Alan Coxc621b142005-12-08 19:22:28 +00001317 dev_printk(KERN_WARNING, &ata_dev->dev, "A BIOS update may resolve this.\n");
1318 return no_piix_dma;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001319}
Alan Coxc621b142005-12-08 19:22:28 +00001320
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001321static void __devinit piix_init_pcs(struct ata_host *host,
Jeff Garzikea35d292006-07-11 11:48:50 -04001322 const struct piix_map_db *map_db)
1323{
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001324 struct pci_dev *pdev = to_pci_dev(host->dev);
Jeff Garzikea35d292006-07-11 11:48:50 -04001325 u16 pcs, new_pcs;
1326
1327 pci_read_config_word(pdev, ICH5_PCS, &pcs);
1328
1329 new_pcs = pcs | map_db->port_enable;
1330
1331 if (new_pcs != pcs) {
1332 DPRINTK("updating PCS from 0x%x to 0x%x\n", pcs, new_pcs);
1333 pci_write_config_word(pdev, ICH5_PCS, new_pcs);
1334 msleep(150);
1335 }
1336}
1337
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001338static const int *__devinit piix_init_sata_map(struct pci_dev *pdev,
1339 struct ata_port_info *pinfo,
1340 const struct piix_map_db *map_db)
Tejun Heod33f58b2006-03-01 01:25:39 +09001341{
Al Virob4482a42007-10-14 19:35:40 +01001342 const int *map;
Tejun Heod33f58b2006-03-01 01:25:39 +09001343 int i, invalid_map = 0;
1344 u8 map_value;
1345
1346 pci_read_config_byte(pdev, ICH5_PMR, &map_value);
1347
1348 map = map_db->map[map_value & map_db->mask];
1349
1350 dev_printk(KERN_INFO, &pdev->dev, "MAP [");
1351 for (i = 0; i < 4; i++) {
1352 switch (map[i]) {
1353 case RV:
1354 invalid_map = 1;
1355 printk(" XX");
1356 break;
1357
1358 case NA:
1359 printk(" --");
1360 break;
1361
1362 case IDE:
1363 WARN_ON((i & 1) || map[i + 1] != IDE);
Jeff Garzik669a5db2006-08-29 18:12:40 -04001364 pinfo[i / 2] = piix_port_info[ich_pata_100];
Tejun Heod33f58b2006-03-01 01:25:39 +09001365 i++;
1366 printk(" IDE IDE");
1367 break;
1368
1369 default:
1370 printk(" P%d", map[i]);
1371 if (i & 1)
Jeff Garzikcca39742006-08-24 03:19:22 -04001372 pinfo[i / 2].flags |= ATA_FLAG_SLAVE_POSS;
Tejun Heod33f58b2006-03-01 01:25:39 +09001373 break;
1374 }
1375 }
1376 printk(" ]\n");
1377
1378 if (invalid_map)
1379 dev_printk(KERN_ERR, &pdev->dev,
1380 "invalid MAP value %u\n", map_value);
1381
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001382 return map;
Tejun Heod33f58b2006-03-01 01:25:39 +09001383}
1384
Tejun Heoc7290722008-01-18 18:36:30 +09001385static void __devinit piix_init_sidpr(struct ata_host *host)
1386{
1387 struct pci_dev *pdev = to_pci_dev(host->dev);
1388 struct piix_host_priv *hpriv = host->private_data;
1389 int i;
1390
1391 /* check for availability */
1392 for (i = 0; i < 4; i++)
1393 if (hpriv->map[i] == IDE)
1394 return;
1395
1396 if (!(host->ports[0]->flags & PIIX_FLAG_SIDPR))
1397 return;
1398
1399 if (pci_resource_start(pdev, PIIX_SIDPR_BAR) == 0 ||
1400 pci_resource_len(pdev, PIIX_SIDPR_BAR) != PIIX_SIDPR_LEN)
1401 return;
1402
1403 if (pcim_iomap_regions(pdev, 1 << PIIX_SIDPR_BAR, DRV_NAME))
1404 return;
1405
1406 hpriv->sidpr = pcim_iomap_table(pdev)[PIIX_SIDPR_BAR];
1407 host->ports[0]->ops = &piix_sidpr_sata_ops;
1408 host->ports[1]->ops = &piix_sidpr_sata_ops;
1409}
1410
Tejun Heo43a98f02007-08-23 10:15:18 +09001411static void piix_iocfg_bit18_quirk(struct pci_dev *pdev)
1412{
Jeff Garzik18552562007-10-03 15:15:40 -04001413 static const struct dmi_system_id sysids[] = {
Tejun Heo43a98f02007-08-23 10:15:18 +09001414 {
1415 /* Clevo M570U sets IOCFG bit 18 if the cdrom
1416 * isn't used to boot the system which
1417 * disables the channel.
1418 */
1419 .ident = "M570U",
1420 .matches = {
1421 DMI_MATCH(DMI_SYS_VENDOR, "Clevo Co."),
1422 DMI_MATCH(DMI_PRODUCT_NAME, "M570U"),
1423 },
1424 },
Jeff Garzik7d051542007-09-01 06:48:52 -04001425
1426 { } /* terminate list */
Tejun Heo43a98f02007-08-23 10:15:18 +09001427 };
1428 u32 iocfg;
1429
1430 if (!dmi_check_system(sysids))
1431 return;
1432
1433 /* The datasheet says that bit 18 is NOOP but certain systems
1434 * seem to use it to disable a channel. Clear the bit on the
1435 * affected systems.
1436 */
1437 pci_read_config_dword(pdev, PIIX_IOCFG, &iocfg);
1438 if (iocfg & (1 << 18)) {
1439 dev_printk(KERN_INFO, &pdev->dev,
1440 "applying IOCFG bit18 quirk\n");
1441 iocfg &= ~(1 << 18);
1442 pci_write_config_dword(pdev, PIIX_IOCFG, iocfg);
1443 }
1444}
1445
Alan Coxc621b142005-12-08 19:22:28 +00001446/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 * piix_init_one - Register PIIX ATA PCI device with kernel services
1448 * @pdev: PCI device to register
1449 * @ent: Entry in piix_pci_tbl matching with @pdev
1450 *
1451 * Called from kernel PCI layer. We probe for combined mode (sigh),
1452 * and then hand over control to libata, for it to do the rest.
1453 *
1454 * LOCKING:
1455 * Inherited from PCI layer (may sleep).
1456 *
1457 * RETURNS:
1458 * Zero on success, or -ERRNO value.
1459 */
1460
Adrian Bunkbc5468f2008-01-30 22:02:02 +02001461static int __devinit piix_init_one(struct pci_dev *pdev,
1462 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
1464 static int printed_version;
Tejun Heo24dc5f32007-01-20 16:00:28 +09001465 struct device *dev = &pdev->dev;
Tejun Heod33f58b2006-03-01 01:25:39 +09001466 struct ata_port_info port_info[2];
Tejun Heo1626aeb2007-05-04 12:43:58 +02001467 const struct ata_port_info *ppi[] = { &port_info[0], &port_info[1] };
Jeff Garzikcca39742006-08-24 03:19:22 -04001468 unsigned long port_flags;
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001469 struct ata_host *host;
1470 struct piix_host_priv *hpriv;
1471 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 if (!printed_version++)
Jeff Garzik6248e642005-10-30 06:42:18 -05001474 dev_printk(KERN_DEBUG, &pdev->dev,
1475 "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 /* no hotplugging support (FIXME) */
1478 if (!in_module_init)
1479 return -ENODEV;
1480
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001481 port_info[0] = piix_port_info[ent->driver_data];
1482 port_info[1] = piix_port_info[ent->driver_data];
1483
1484 port_flags = port_info[0].flags;
1485
1486 /* enable device and prepare host */
1487 rc = pcim_enable_device(pdev);
1488 if (rc)
1489 return rc;
1490
1491 /* SATA map init can change port_info, do it before prepping host */
Tejun Heo24dc5f32007-01-20 16:00:28 +09001492 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
Tejun Heod96715c2006-06-29 01:58:28 +09001493 if (!hpriv)
1494 return -ENOMEM;
1495
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001496 if (port_flags & ATA_FLAG_SATA)
1497 hpriv->map = piix_init_sata_map(pdev, port_info,
1498 piix_map_db_table[ent->driver_data]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001500 rc = ata_pci_prepare_sff_host(pdev, ppi, &host);
1501 if (rc)
1502 return rc;
1503 host->private_data = hpriv;
Tejun Heoff0fc142005-12-18 17:17:07 +09001504
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001505 /* initialize controller */
Jeff Garzikcca39742006-08-24 03:19:22 -04001506 if (port_flags & PIIX_FLAG_AHCI) {
Jeff Garzik8a60a072005-07-31 13:13:24 -04001507 u8 tmp;
1508 pci_read_config_byte(pdev, PIIX_SCC, &tmp);
1509 if (tmp == PIIX_AHCI_DEVICE) {
Harvey Harrison018d9822008-02-13 21:14:05 -08001510 rc = piix_disable_ahci(pdev);
Jeff Garzik8a60a072005-07-31 13:13:24 -04001511 if (rc)
1512 return rc;
1513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515
Tejun Heoc7290722008-01-18 18:36:30 +09001516 if (port_flags & ATA_FLAG_SATA) {
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001517 piix_init_pcs(host, piix_map_db_table[ent->driver_data]);
Tejun Heoc7290722008-01-18 18:36:30 +09001518 piix_init_sidpr(host);
1519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Tejun Heo43a98f02007-08-23 10:15:18 +09001521 /* apply IOCFG bit18 quirk */
1522 piix_iocfg_bit18_quirk(pdev);
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /* On ICH5, some BIOSen disable the interrupt using the
1525 * PCI_COMMAND_INTX_DISABLE bit added in PCI 2.3.
1526 * On ICH6, this bit has the same effect, but only when
1527 * MSI is disabled (and it is disabled, as we don't use
1528 * message-signalled interrupts currently).
1529 */
Jeff Garzikcca39742006-08-24 03:19:22 -04001530 if (port_flags & PIIX_FLAG_CHECKINTR)
Brett M Russa04ce0f2005-08-15 15:23:41 -04001531 pci_intx(pdev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Alan Coxc621b142005-12-08 19:22:28 +00001533 if (piix_check_450nx_errata(pdev)) {
1534 /* This writes into the master table but it does not
1535 really matter for this errata as we will apply it to
1536 all the PIIX devices on the board */
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001537 host->ports[0]->mwdma_mask = 0;
1538 host->ports[0]->udma_mask = 0;
1539 host->ports[1]->mwdma_mask = 0;
1540 host->ports[1]->udma_mask = 0;
Alan Coxc621b142005-12-08 19:22:28 +00001541 }
Tejun Heo8b09f0d2008-01-18 18:36:29 +09001542
1543 pci_set_master(pdev);
1544 return ata_pci_activate_sff_host(host, ata_interrupt, &piix_sht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547static int __init piix_init(void)
1548{
1549 int rc;
1550
Pavel Roskinb7887192006-08-10 18:13:18 +09001551 DPRINTK("pci_register_driver\n");
1552 rc = pci_register_driver(&piix_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (rc)
1554 return rc;
1555
1556 in_module_init = 0;
1557
1558 DPRINTK("done\n");
1559 return 0;
1560}
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562static void __exit piix_exit(void)
1563{
1564 pci_unregister_driver(&piix_pci_driver);
1565}
1566
1567module_init(piix_init);
1568module_exit(piix_exit);