pata_sil680: make sil680_sff_exec_command() 'static'
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / drivers / ata / ata_piix.c
CommitLineData
1da177e4 1/*
af36d7f0
JG
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>
ab771630 17 * Copyright (C) 2003 Red Hat Inc
af36d7f0
JG
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 *
d96212ed
AC
40 * Documentation
41 * Publically available from Intel web site. Errata documentation
42 * is also publically available. As an aide to anyone hacking on this
2c5ff671 43 * driver the list of errata that are relevant is below, going back to
d96212ed
AC
44 * PIIX4. Older device documentation is now a bit tricky to find.
45 *
88393161 46 * The chipsets all follow very much the same design. The original Triton
d96212ed
AC
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
c611bed7 75 * ICH7 errata #16 - MWDMA1 timings are incorrect
d96212ed
AC
76 *
77 * Should have been BIOS fixed:
78 * 450NX: errata #19 - DMA hangs on old 450NX
79 * 450NX: errata #20 - DMA hangs on old 450NX
80 * 450NX: errata #25 - Corruption with DMA on old 450NX
81 * ICH3 errata #15 - IDE deadlock under high load
82 * (BIOS must set dev 31 fn 0 bit 23)
83 * ICH3 errata #18 - Don't use native mode
1da177e4
LT
84 */
85
86#include <linux/kernel.h>
87#include <linux/module.h>
88#include <linux/pci.h>
89#include <linux/init.h>
90#include <linux/blkdev.h>
91#include <linux/delay.h>
6248e647 92#include <linux/device.h>
5a0e3ad6 93#include <linux/gfp.h>
1da177e4
LT
94#include <scsi/scsi_host.h>
95#include <linux/libata.h>
b8b275ef 96#include <linux/dmi.h>
1da177e4
LT
97
98#define DRV_NAME "ata_piix"
c611bed7 99#define DRV_VERSION "2.13"
1da177e4
LT
100
101enum {
102 PIIX_IOCFG = 0x54, /* IDE I/O configuration register */
103 ICH5_PMR = 0x90, /* port mapping register */
104 ICH5_PCS = 0x92, /* port control and status */
c7290724
TH
105 PIIX_SIDPR_BAR = 5,
106 PIIX_SIDPR_LEN = 16,
107 PIIX_SIDPR_IDX = 0,
108 PIIX_SIDPR_DATA = 4,
1da177e4 109
ff0fc146 110 PIIX_FLAG_CHECKINTR = (1 << 28), /* make sure PCI INTx enabled */
c7290724 111 PIIX_FLAG_SIDPR = (1 << 29), /* SATA idx/data pair regs */
1da177e4 112
800b3996
TH
113 PIIX_PATA_FLAGS = ATA_FLAG_SLAVE_POSS,
114 PIIX_SATA_FLAGS = ATA_FLAG_SATA | PIIX_FLAG_CHECKINTR,
b3362f88 115
1da177e4
LT
116 PIIX_80C_PRI = (1 << 5) | (1 << 4),
117 PIIX_80C_SEC = (1 << 7) | (1 << 6),
118
d33f58b8
TH
119 /* 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
7b6dbd68 128 PIIX_AHCI_DEVICE = 6,
b8b275ef
TH
129
130 /* host->flags bits */
131 PIIX_HOST_BROKEN_SUSPEND = (1 << 24),
1da177e4
LT
132};
133
9cde9ed1
TH
134enum 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 */
c611bed7 141 ich_pata_100_nomwdma1, /* ICH up to UDMA 100 but with no MWDMA1*/
9cde9ed1
TH
142 ich5_sata,
143 ich6_sata,
9c0bf675
TH
144 ich6m_sata,
145 ich8_sata,
9cde9ed1 146 ich8_2port_sata,
9c0bf675
TH
147 ich8m_apple_sata, /* locks up on second port enable */
148 tolapai_sata,
9cde9ed1
TH
149 piix_pata_vmw, /* PIIX4 for VMware, spurious DMA_ERR */
150};
151
d33f58b8
TH
152struct piix_map_db {
153 const u32 mask;
73291a1c 154 const u16 port_enable;
d33f58b8
TH
155 const int map[][4];
156};
157
d96715c1
TH
158struct piix_host_priv {
159 const int *map;
2852bcf7 160 u32 saved_iocfg;
c7290724 161 void __iomem *sidpr;
d96715c1
TH
162};
163
2dcb407e
JG
164static int piix_init_one(struct pci_dev *pdev,
165 const struct pci_device_id *ent);
2852bcf7 166static void piix_remove_one(struct pci_dev *pdev);
a1efdaba 167static int piix_pata_prereset(struct ata_link *link, unsigned long deadline);
2dcb407e
JG
168static void piix_set_piomode(struct ata_port *ap, struct ata_device *adev);
169static void piix_set_dmamode(struct ata_port *ap, struct ata_device *adev);
170static void ich_set_dmamode(struct ata_port *ap, struct ata_device *adev);
eb4a2c7f 171static int ich_pata_cable_detect(struct ata_port *ap);
25f98131 172static u8 piix_vmw_bmdma_status(struct ata_port *ap);
82ef04fb
TH
173static int piix_sidpr_scr_read(struct ata_link *link,
174 unsigned int reg, u32 *val);
175static int piix_sidpr_scr_write(struct ata_link *link,
176 unsigned int reg, u32 val);
a97c4006
TH
177static int piix_sidpr_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
178 unsigned hints);
27943620 179static bool piix_irq_check(struct ata_port *ap);
b8b275ef
TH
180#ifdef CONFIG_PM
181static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
182static int piix_pci_device_resume(struct pci_dev *pdev);
183#endif
1da177e4
LT
184
185static unsigned int in_module_init = 1;
186
3b7d697d 187static const struct pci_device_id piix_pci_tbl[] = {
d2cdfc0d
AC
188 /* Intel PIIX3 for the 430HX etc */
189 { 0x8086, 0x7010, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_mwdma },
25f98131
TH
190 /* VMware ICH4 */
191 { 0x8086, 0x7111, 0x15ad, 0x1976, 0, 0, piix_pata_vmw },
669a5db4
JG
192 /* Intel PIIX4 for the 430TX/440BX/MX chipset: UDMA 33 */
193 /* Also PIIX4E (fn3 rev 2) and PIIX4M (fn3 rev 3) */
194 { 0x8086, 0x7111, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
669a5db4
JG
195 /* Intel PIIX4 */
196 { 0x8086, 0x7199, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
197 /* Intel PIIX4 */
198 { 0x8086, 0x7601, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
199 /* Intel PIIX */
200 { 0x8086, 0x84CA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_33 },
201 /* Intel ICH (i810, i815, i840) UDMA 66*/
202 { 0x8086, 0x2411, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_66 },
203 /* Intel ICH0 : UDMA 33*/
204 { 0x8086, 0x2421, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_33 },
205 /* Intel ICH2M */
206 { 0x8086, 0x244A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
207 /* Intel ICH2 (i810E2, i845, 850, 860) UDMA 100 */
208 { 0x8086, 0x244B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
209 /* Intel ICH3M */
210 { 0x8086, 0x248A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
211 /* Intel ICH3 (E7500/1) UDMA 100 */
212 { 0x8086, 0x248B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
213 /* Intel ICH4 (i845GV, i845E, i852, i855) UDMA 100 */
214 { 0x8086, 0x24CA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
215 { 0x8086, 0x24CB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
216 /* Intel ICH5 */
2eb829e9 217 { 0x8086, 0x24DB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
669a5db4
JG
218 /* C-ICH (i810E2) */
219 { 0x8086, 0x245B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
85cd7251 220 /* ESB (855GME/875P + 6300ESB) UDMA 100 */
669a5db4
JG
221 { 0x8086, 0x25A2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
222 /* ICH6 (and 6) (i915) UDMA 100 */
223 { 0x8086, 0x266F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
224 /* ICH7/7-R (i945, i975) UDMA 100*/
c611bed7
AC
225 { 0x8086, 0x27DF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100_nomwdma1 },
226 { 0x8086, 0x269E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100_nomwdma1 },
c1e6f28c
CL
227 /* ICH8 Mobile PATA Controller */
228 { 0x8086, 0x2850, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich_pata_100 },
1da177e4 229
7654db1a
AC
230 /* SATA ports */
231
1d076e5b 232 /* 82801EB (ICH5) */
1da177e4 233 { 0x8086, 0x24d1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
1d076e5b 234 /* 82801EB (ICH5) */
1da177e4 235 { 0x8086, 0x24df, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
1d076e5b 236 /* 6300ESB (ICH5 variant with broken PCS present bits) */
5e56a37c 237 { 0x8086, 0x25a3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
1d076e5b 238 /* 6300ESB pretending RAID */
5e56a37c 239 { 0x8086, 0x25b0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich5_sata },
1d076e5b 240 /* 82801FB/FW (ICH6/ICH6W) */
1da177e4 241 { 0x8086, 0x2651, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata },
1d076e5b 242 /* 82801FR/FRW (ICH6R/ICH6RW) */
9c0bf675 243 { 0x8086, 0x2652, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata },
5016d7d2
TH
244 /* 82801FBM ICH6M (ICH6R with only port 0 and 2 implemented).
245 * Attach iff the controller is in IDE mode. */
246 { 0x8086, 0x2653, PCI_ANY_ID, PCI_ANY_ID,
9c0bf675 247 PCI_CLASS_STORAGE_IDE << 8, 0xffff00, ich6m_sata },
1d076e5b 248 /* 82801GB/GR/GH (ICH7, identical to ICH6) */
9c0bf675 249 { 0x8086, 0x27c0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata },
1d076e5b 250 /* 2801GBM/GHM (ICH7M, identical to ICH6M) */
9c0bf675 251 { 0x8086, 0x27c4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6m_sata },
f98b6573 252 /* Enterprise Southbridge 2 (631xESB/632xESB) */
9c0bf675 253 { 0x8086, 0x2680, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata },
f98b6573 254 /* SATA Controller 1 IDE (ICH8) */
9c0bf675 255 { 0x8086, 0x2820, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
f98b6573 256 /* SATA Controller 2 IDE (ICH8) */
00242ec8 257 { 0x8086, 0x2825, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
8d8ef2fb 258 /* Mobile SATA Controller IDE (ICH8M), Apple */
9c0bf675 259 { 0x8086, 0x2828, 0x106b, 0x00a0, 0, 0, ich8m_apple_sata },
23cf296e 260 { 0x8086, 0x2828, 0x106b, 0x00a1, 0, 0, ich8m_apple_sata },
487eff68 261 { 0x8086, 0x2828, 0x106b, 0x00a3, 0, 0, ich8m_apple_sata },
23cf296e
TH
262 /* Mobile SATA Controller IDE (ICH8M) */
263 { 0x8086, 0x2828, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
f98b6573 264 /* SATA Controller IDE (ICH9) */
9c0bf675 265 { 0x8086, 0x2920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
f98b6573 266 /* SATA Controller IDE (ICH9) */
00242ec8 267 { 0x8086, 0x2921, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
f98b6573 268 /* SATA Controller IDE (ICH9) */
00242ec8 269 { 0x8086, 0x2926, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
f98b6573 270 /* SATA Controller IDE (ICH9M) */
00242ec8 271 { 0x8086, 0x2928, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
f98b6573 272 /* SATA Controller IDE (ICH9M) */
00242ec8 273 { 0x8086, 0x292d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
f98b6573 274 /* SATA Controller IDE (ICH9M) */
9c0bf675 275 { 0x8086, 0x292e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
c5cf0ffa 276 /* SATA Controller IDE (Tolapai) */
9c0bf675 277 { 0x8086, 0x5028, PCI_ANY_ID, PCI_ANY_ID, 0, 0, tolapai_sata },
bf7f22b9 278 /* SATA Controller IDE (ICH10) */
9c0bf675 279 { 0x8086, 0x3a00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
bf7f22b9
JG
280 /* SATA Controller IDE (ICH10) */
281 { 0x8086, 0x3a06, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
282 /* SATA Controller IDE (ICH10) */
9c0bf675 283 { 0x8086, 0x3a20, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
bf7f22b9
JG
284 /* SATA Controller IDE (ICH10) */
285 { 0x8086, 0x3a26, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
c6c6a1af
SH
286 /* SATA Controller IDE (PCH) */
287 { 0x8086, 0x3b20, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
288 /* SATA Controller IDE (PCH) */
0395e61b
SH
289 { 0x8086, 0x3b21, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
290 /* SATA Controller IDE (PCH) */
c6c6a1af
SH
291 { 0x8086, 0x3b26, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
292 /* SATA Controller IDE (PCH) */
0395e61b
SH
293 { 0x8086, 0x3b28, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
294 /* SATA Controller IDE (PCH) */
c6c6a1af
SH
295 { 0x8086, 0x3b2d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
296 /* SATA Controller IDE (PCH) */
297 { 0x8086, 0x3b2e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
88e8201e
SH
298 /* SATA Controller IDE (CPT) */
299 { 0x8086, 0x1c00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
300 /* SATA Controller IDE (CPT) */
301 { 0x8086, 0x1c01, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
302 /* SATA Controller IDE (CPT) */
303 { 0x8086, 0x1c08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
304 /* SATA Controller IDE (CPT) */
305 { 0x8086, 0x1c09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
238e149c
SH
306 /* SATA Controller IDE (PBG) */
307 { 0x8086, 0x1d00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata },
308 /* SATA Controller IDE (PBG) */
309 { 0x8086, 0x1d08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
1da177e4
LT
310 { } /* terminate list */
311};
312
313static struct pci_driver piix_pci_driver = {
314 .name = DRV_NAME,
315 .id_table = piix_pci_tbl,
316 .probe = piix_init_one,
2852bcf7 317 .remove = piix_remove_one,
438ac6d5 318#ifdef CONFIG_PM
b8b275ef
TH
319 .suspend = piix_pci_device_suspend,
320 .resume = piix_pci_device_resume,
438ac6d5 321#endif
1da177e4
LT
322};
323
193515d5 324static struct scsi_host_template piix_sht = {
68d1d07b 325 ATA_BMDMA_SHT(DRV_NAME),
1da177e4
LT
326};
327
27943620 328static struct ata_port_operations piix_sata_ops = {
871af121 329 .inherits = &ata_bmdma32_port_ops,
27943620
TH
330 .sff_irq_check = piix_irq_check,
331};
332
333static struct ata_port_operations piix_pata_ops = {
334 .inherits = &piix_sata_ops,
029cfd6b 335 .cable_detect = ata_cable_40wire,
1da177e4
LT
336 .set_piomode = piix_set_piomode,
337 .set_dmamode = piix_set_dmamode,
a1efdaba 338 .prereset = piix_pata_prereset,
1da177e4
LT
339};
340
029cfd6b
TH
341static struct ata_port_operations piix_vmw_ops = {
342 .inherits = &piix_pata_ops,
343 .bmdma_status = piix_vmw_bmdma_status,
669a5db4
JG
344};
345
029cfd6b
TH
346static struct ata_port_operations ich_pata_ops = {
347 .inherits = &piix_pata_ops,
348 .cable_detect = ich_pata_cable_detect,
349 .set_dmamode = ich_set_dmamode,
1da177e4
LT
350};
351
a97c4006
TH
352static struct device_attribute *piix_sidpr_shost_attrs[] = {
353 &dev_attr_link_power_management_policy,
354 NULL
355};
356
357static struct scsi_host_template piix_sidpr_sht = {
358 ATA_BMDMA_SHT(DRV_NAME),
359 .shost_attrs = piix_sidpr_shost_attrs,
360};
361
029cfd6b
TH
362static struct ata_port_operations piix_sidpr_sata_ops = {
363 .inherits = &piix_sata_ops,
57c9efdf 364 .hardreset = sata_std_hardreset,
c7290724
TH
365 .scr_read = piix_sidpr_scr_read,
366 .scr_write = piix_sidpr_scr_write,
a97c4006 367 .set_lpm = piix_sidpr_set_lpm,
c7290724
TH
368};
369
d96715c1 370static const struct piix_map_db ich5_map_db = {
d33f58b8 371 .mask = 0x7,
ea35d29e 372 .port_enable = 0x3,
d33f58b8
TH
373 .map = {
374 /* PM PS SM SS MAP */
375 { P0, NA, P1, NA }, /* 000b */
376 { P1, NA, P0, NA }, /* 001b */
377 { RV, RV, RV, RV },
378 { RV, RV, RV, RV },
379 { P0, P1, IDE, IDE }, /* 100b */
380 { P1, P0, IDE, IDE }, /* 101b */
381 { IDE, IDE, P0, P1 }, /* 110b */
382 { IDE, IDE, P1, P0 }, /* 111b */
383 },
384};
385
d96715c1 386static const struct piix_map_db ich6_map_db = {
d33f58b8 387 .mask = 0x3,
ea35d29e 388 .port_enable = 0xf,
d33f58b8
TH
389 .map = {
390 /* PM PS SM SS MAP */
79ea24e7 391 { P0, P2, P1, P3 }, /* 00b */
d33f58b8
TH
392 { IDE, IDE, P1, P3 }, /* 01b */
393 { P0, P2, IDE, IDE }, /* 10b */
394 { RV, RV, RV, RV },
395 },
396};
397
d96715c1 398static const struct piix_map_db ich6m_map_db = {
d33f58b8 399 .mask = 0x3,
ea35d29e 400 .port_enable = 0x5,
67083741
TH
401
402 /* Map 01b isn't specified in the doc but some notebooks use
c6446a4c
TH
403 * it anyway. MAP 01b have been spotted on both ICH6M and
404 * ICH7M.
67083741
TH
405 */
406 .map = {
407 /* PM PS SM SS MAP */
e04b3b9d 408 { P0, P2, NA, NA }, /* 00b */
67083741
TH
409 { IDE, IDE, P1, P3 }, /* 01b */
410 { P0, P2, IDE, IDE }, /* 10b */
411 { RV, RV, RV, RV },
412 },
413};
414
08f12edc
JG
415static const struct piix_map_db ich8_map_db = {
416 .mask = 0x3,
a0ce9aca 417 .port_enable = 0xf,
08f12edc
JG
418 .map = {
419 /* PM PS SM SS MAP */
158f30c8 420 { P0, P2, P1, P3 }, /* 00b (hardwired when in AHCI) */
08f12edc 421 { RV, RV, RV, RV },
ac2b0437 422 { P0, P2, IDE, IDE }, /* 10b (IDE mode) */
08f12edc
JG
423 { RV, RV, RV, RV },
424 },
425};
426
00242ec8 427static const struct piix_map_db ich8_2port_map_db = {
e2d352af
JG
428 .mask = 0x3,
429 .port_enable = 0x3,
430 .map = {
431 /* PM PS SM SS MAP */
432 { P0, NA, P1, NA }, /* 00b */
433 { RV, RV, RV, RV }, /* 01b */
434 { RV, RV, RV, RV }, /* 10b */
435 { RV, RV, RV, RV },
436 },
c5cf0ffa
JG
437};
438
8d8ef2fb
TR
439static const struct piix_map_db ich8m_apple_map_db = {
440 .mask = 0x3,
441 .port_enable = 0x1,
442 .map = {
443 /* PM PS SM SS MAP */
444 { P0, NA, NA, NA }, /* 00b */
445 { RV, RV, RV, RV },
446 { P0, P2, IDE, IDE }, /* 10b */
447 { RV, RV, RV, RV },
448 },
449};
450
00242ec8 451static const struct piix_map_db tolapai_map_db = {
8f73a688
JG
452 .mask = 0x3,
453 .port_enable = 0x3,
454 .map = {
455 /* PM PS SM SS MAP */
456 { P0, NA, P1, NA }, /* 00b */
457 { RV, RV, RV, RV }, /* 01b */
458 { RV, RV, RV, RV }, /* 10b */
459 { RV, RV, RV, RV },
460 },
461};
462
d96715c1
TH
463static const struct piix_map_db *piix_map_db_table[] = {
464 [ich5_sata] = &ich5_map_db,
d96715c1 465 [ich6_sata] = &ich6_map_db,
9c0bf675
TH
466 [ich6m_sata] = &ich6m_map_db,
467 [ich8_sata] = &ich8_map_db,
00242ec8 468 [ich8_2port_sata] = &ich8_2port_map_db,
9c0bf675
TH
469 [ich8m_apple_sata] = &ich8m_apple_map_db,
470 [tolapai_sata] = &tolapai_map_db,
d96715c1
TH
471};
472
1da177e4 473static struct ata_port_info piix_port_info[] = {
00242ec8
TH
474 [piix_pata_mwdma] = /* PIIX3 MWDMA only */
475 {
00242ec8 476 .flags = PIIX_PATA_FLAGS,
14bdef98
EIB
477 .pio_mask = ATA_PIO4,
478 .mwdma_mask = ATA_MWDMA12_ONLY, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
00242ec8
TH
479 .port_ops = &piix_pata_ops,
480 },
481
ec300d99 482 [piix_pata_33] = /* PIIX4 at 33MHz */
1d076e5b 483 {
b3362f88 484 .flags = PIIX_PATA_FLAGS,
14bdef98
EIB
485 .pio_mask = ATA_PIO4,
486 .mwdma_mask = ATA_MWDMA12_ONLY, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
487 .udma_mask = ATA_UDMA2,
1d076e5b
TH
488 .port_ops = &piix_pata_ops,
489 },
490
ec300d99 491 [ich_pata_33] = /* ICH0 - ICH at 33Mhz*/
669a5db4 492 {
b3362f88 493 .flags = PIIX_PATA_FLAGS,
14bdef98
EIB
494 .pio_mask = ATA_PIO4,
495 .mwdma_mask = ATA_MWDMA12_ONLY, /* Check: maybe MWDMA0 is ok */
496 .udma_mask = ATA_UDMA2,
669a5db4
JG
497 .port_ops = &ich_pata_ops,
498 },
ec300d99
JG
499
500 [ich_pata_66] = /* ICH controllers up to 66MHz */
1da177e4 501 {
b3362f88 502 .flags = PIIX_PATA_FLAGS,
14bdef98
EIB
503 .pio_mask = ATA_PIO4,
504 .mwdma_mask = ATA_MWDMA12_ONLY, /* MWDMA0 is broken on chip */
669a5db4
JG
505 .udma_mask = ATA_UDMA4,
506 .port_ops = &ich_pata_ops,
507 },
85cd7251 508
ec300d99 509 [ich_pata_100] =
669a5db4 510 {
b3362f88 511 .flags = PIIX_PATA_FLAGS | PIIX_FLAG_CHECKINTR,
14bdef98
EIB
512 .pio_mask = ATA_PIO4,
513 .mwdma_mask = ATA_MWDMA12_ONLY,
514 .udma_mask = ATA_UDMA5,
669a5db4 515 .port_ops = &ich_pata_ops,
1da177e4
LT
516 },
517
c611bed7
AC
518 [ich_pata_100_nomwdma1] =
519 {
520 .flags = PIIX_PATA_FLAGS | PIIX_FLAG_CHECKINTR,
521 .pio_mask = ATA_PIO4,
522 .mwdma_mask = ATA_MWDMA2_ONLY,
523 .udma_mask = ATA_UDMA5,
524 .port_ops = &ich_pata_ops,
525 },
526
ec300d99 527 [ich5_sata] =
1da177e4 528 {
228c1590 529 .flags = PIIX_SATA_FLAGS,
14bdef98
EIB
530 .pio_mask = ATA_PIO4,
531 .mwdma_mask = ATA_MWDMA2,
bf6263a8 532 .udma_mask = ATA_UDMA6,
1da177e4
LT
533 .port_ops = &piix_sata_ops,
534 },
535
ec300d99 536 [ich6_sata] =
1da177e4 537 {
723159c5 538 .flags = PIIX_SATA_FLAGS,
14bdef98
EIB
539 .pio_mask = ATA_PIO4,
540 .mwdma_mask = ATA_MWDMA2,
bf6263a8 541 .udma_mask = ATA_UDMA6,
1da177e4
LT
542 .port_ops = &piix_sata_ops,
543 },
544
9c0bf675 545 [ich6m_sata] =
c368ca4e 546 {
5016d7d2 547 .flags = PIIX_SATA_FLAGS,
14bdef98
EIB
548 .pio_mask = ATA_PIO4,
549 .mwdma_mask = ATA_MWDMA2,
bf6263a8 550 .udma_mask = ATA_UDMA6,
c368ca4e
JG
551 .port_ops = &piix_sata_ops,
552 },
1d076e5b 553
9c0bf675 554 [ich8_sata] =
08f12edc 555 {
5016d7d2 556 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SIDPR,
14bdef98
EIB
557 .pio_mask = ATA_PIO4,
558 .mwdma_mask = ATA_MWDMA2,
bf6263a8 559 .udma_mask = ATA_UDMA6,
08f12edc
JG
560 .port_ops = &piix_sata_ops,
561 },
669a5db4 562
00242ec8 563 [ich8_2port_sata] =
c5cf0ffa 564 {
5016d7d2 565 .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SIDPR,
14bdef98
EIB
566 .pio_mask = ATA_PIO4,
567 .mwdma_mask = ATA_MWDMA2,
c5cf0ffa
JG
568 .udma_mask = ATA_UDMA6,
569 .port_ops = &piix_sata_ops,
570 },
8f73a688 571
9c0bf675 572 [tolapai_sata] =
8f73a688 573 {
5016d7d2 574 .flags = PIIX_SATA_FLAGS,
14bdef98
EIB
575 .pio_mask = ATA_PIO4,
576 .mwdma_mask = ATA_MWDMA2,
8f73a688
JG
577 .udma_mask = ATA_UDMA6,
578 .port_ops = &piix_sata_ops,
579 },
8d8ef2fb 580
9c0bf675 581 [ich8m_apple_sata] =
8d8ef2fb 582 {
23cf296e 583 .flags = PIIX_SATA_FLAGS,
14bdef98
EIB
584 .pio_mask = ATA_PIO4,
585 .mwdma_mask = ATA_MWDMA2,
8d8ef2fb
TR
586 .udma_mask = ATA_UDMA6,
587 .port_ops = &piix_sata_ops,
588 },
589
25f98131
TH
590 [piix_pata_vmw] =
591 {
25f98131 592 .flags = PIIX_PATA_FLAGS,
14bdef98
EIB
593 .pio_mask = ATA_PIO4,
594 .mwdma_mask = ATA_MWDMA12_ONLY, /* mwdma1-2 ?? CHECK 0 should be ok but slow */
595 .udma_mask = ATA_UDMA2,
25f98131
TH
596 .port_ops = &piix_vmw_ops,
597 },
598
1da177e4
LT
599};
600
601static struct pci_bits piix_enable_bits[] = {
602 { 0x41U, 1U, 0x80UL, 0x80UL }, /* port 0 */
603 { 0x43U, 1U, 0x80UL, 0x80UL }, /* port 1 */
604};
605
606MODULE_AUTHOR("Andre Hedrick, Alan Cox, Andrzej Krzysztofowicz, Jeff Garzik");
607MODULE_DESCRIPTION("SCSI low-level driver for Intel PIIX/ICH ATA controllers");
608MODULE_LICENSE("GPL");
609MODULE_DEVICE_TABLE(pci, piix_pci_tbl);
610MODULE_VERSION(DRV_VERSION);
611
fc085150
AC
612struct ich_laptop {
613 u16 device;
614 u16 subvendor;
615 u16 subdevice;
616};
617
618/*
619 * List of laptops that use short cables rather than 80 wire
620 */
621
622static const struct ich_laptop ich_laptop[] = {
623 /* devid, subvendor, subdev */
624 { 0x27DF, 0x0005, 0x0280 }, /* ICH7 on Acer 5602WLMi */
2655e2ce 625 { 0x27DF, 0x1025, 0x0102 }, /* ICH7 on Acer 5602aWLMi */
babfb682 626 { 0x27DF, 0x1025, 0x0110 }, /* ICH7 on Acer 3682WLMi */
6034734d 627 { 0x27DF, 0x1028, 0x02b0 }, /* ICH7 on unknown Dell */
12340106 628 { 0x27DF, 0x1043, 0x1267 }, /* ICH7 on Asus W5F */
54174db3 629 { 0x27DF, 0x103C, 0x30A1 }, /* ICH7 on HP Compaq nc2400 */
af901ca1 630 { 0x27DF, 0x103C, 0x361a }, /* ICH7 on unknown HP */
d09addf6 631 { 0x27DF, 0x1071, 0xD221 }, /* ICH7 on Hercules EC-900 */
6034734d 632 { 0x27DF, 0x152D, 0x0778 }, /* ICH7 on unknown Intel */
b33620f9 633 { 0x24CA, 0x1025, 0x0061 }, /* ICH4 on ACER Aspire 2023WLMi */
e1fefea9
CIK
634 { 0x24CA, 0x1025, 0x003d }, /* ICH4 on ACER TM290 */
635 { 0x266F, 0x1025, 0x0066 }, /* ICH6 on ACER Aspire 1694WLMi */
01ce2601 636 { 0x2653, 0x1043, 0x82D8 }, /* ICH6M on Asus Eee 701 */
124a6eec 637 { 0x27df, 0x104d, 0x900e }, /* ICH7 on Sony TZ-90 */
fc085150
AC
638 /* end marker */
639 { 0, }
640};
641
1da177e4 642/**
eb4a2c7f 643 * ich_pata_cable_detect - Probe host controller cable detect info
1da177e4
LT
644 * @ap: Port for which cable detect info is desired
645 *
646 * Read 80c cable indicator from ATA PCI device's PCI config
647 * register. This register is normally set by firmware (BIOS).
648 *
649 * LOCKING:
650 * None (inherited from caller).
651 */
669a5db4 652
eb4a2c7f 653static int ich_pata_cable_detect(struct ata_port *ap)
1da177e4 654{
cca3974e 655 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
2852bcf7 656 struct piix_host_priv *hpriv = ap->host->private_data;
fc085150 657 const struct ich_laptop *lap = &ich_laptop[0];
2852bcf7 658 u8 mask;
1da177e4 659
fc085150
AC
660 /* Check for specials - Acer Aspire 5602WLMi */
661 while (lap->device) {
662 if (lap->device == pdev->device &&
663 lap->subvendor == pdev->subsystem_vendor &&
2dcb407e 664 lap->subdevice == pdev->subsystem_device)
eb4a2c7f 665 return ATA_CBL_PATA40_SHORT;
2dcb407e 666
fc085150
AC
667 lap++;
668 }
669
1da177e4 670 /* check BIOS cable detect results */
2a88d1ac 671 mask = ap->port_no == 0 ? PIIX_80C_PRI : PIIX_80C_SEC;
2852bcf7 672 if ((hpriv->saved_iocfg & mask) == 0)
eb4a2c7f
AC
673 return ATA_CBL_PATA40;
674 return ATA_CBL_PATA80;
1da177e4
LT
675}
676
677/**
ccc4672a 678 * piix_pata_prereset - prereset for PATA host controller
cc0680a5 679 * @link: Target link
d4b2bab4 680 * @deadline: deadline jiffies for the operation
1da177e4 681 *
573db6b8
TH
682 * LOCKING:
683 * None (inherited from caller).
684 */
cc0680a5 685static int piix_pata_prereset(struct ata_link *link, unsigned long deadline)
1da177e4 686{
cc0680a5 687 struct ata_port *ap = link->ap;
cca3974e 688 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
1da177e4 689
c961922b
AC
690 if (!pci_test_config_bits(pdev, &piix_enable_bits[ap->port_no]))
691 return -ENOENT;
9363c382 692 return ata_sff_prereset(link, deadline);
ccc4672a
TH
693}
694
60c3be38
BZ
695static DEFINE_SPINLOCK(piix_lock);
696
1da177e4
LT
697/**
698 * piix_set_piomode - Initialize host controller PATA PIO timings
699 * @ap: Port whose timings we are configuring
700 * @adev: um
1da177e4
LT
701 *
702 * Set PIO mode for device, in host controller PCI config space.
703 *
704 * LOCKING:
705 * None (inherited from caller).
706 */
707
2dcb407e 708static void piix_set_piomode(struct ata_port *ap, struct ata_device *adev)
1da177e4 709{
cca3974e 710 struct pci_dev *dev = to_pci_dev(ap->host->dev);
60c3be38
BZ
711 unsigned long flags;
712 unsigned int pio = adev->pio_mode - XFER_PIO_0;
1da177e4 713 unsigned int is_slave = (adev->devno != 0);
2a88d1ac 714 unsigned int master_port= ap->port_no ? 0x42 : 0x40;
1da177e4
LT
715 unsigned int slave_port = 0x44;
716 u16 master_data;
717 u8 slave_data;
669a5db4
JG
718 u8 udma_enable;
719 int control = 0;
85cd7251 720
669a5db4
JG
721 /*
722 * See Intel Document 298600-004 for the timing programing rules
723 * for ICH controllers.
724 */
1da177e4
LT
725
726 static const /* ISP RTC */
727 u8 timings[][2] = { { 0, 0 },
728 { 0, 0 },
729 { 1, 0 },
730 { 2, 1 },
731 { 2, 3 }, };
732
669a5db4
JG
733 if (pio >= 2)
734 control |= 1; /* TIME1 enable */
735 if (ata_pio_need_iordy(adev))
736 control |= 2; /* IE enable */
737
85cd7251 738 /* Intel specifies that the PPE functionality is for disk only */
669a5db4
JG
739 if (adev->class == ATA_DEV_ATA)
740 control |= 4; /* PPE enable */
741
60c3be38
BZ
742 spin_lock_irqsave(&piix_lock, flags);
743
a5bf5f5a
TH
744 /* PIO configuration clears DTE unconditionally. It will be
745 * programmed in set_dmamode which is guaranteed to be called
746 * after set_piomode if any DMA mode is available.
747 */
1da177e4
LT
748 pci_read_config_word(dev, master_port, &master_data);
749 if (is_slave) {
a5bf5f5a
TH
750 /* clear TIME1|IE1|PPE1|DTE1 */
751 master_data &= 0xff0f;
1967b7ff 752 /* Enable SITRE (separate slave timing register) */
1da177e4 753 master_data |= 0x4000;
669a5db4
JG
754 /* enable PPE1, IE1 and TIME1 as needed */
755 master_data |= (control << 4);
1da177e4 756 pci_read_config_byte(dev, slave_port, &slave_data);
2a88d1ac 757 slave_data &= (ap->port_no ? 0x0f : 0xf0);
669a5db4 758 /* Load the timing nibble for this slave */
a5bf5f5a
TH
759 slave_data |= ((timings[pio][0] << 2) | timings[pio][1])
760 << (ap->port_no ? 4 : 0);
1da177e4 761 } else {
a5bf5f5a
TH
762 /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */
763 master_data &= 0xccf0;
669a5db4
JG
764 /* Enable PPE, IE and TIME as appropriate */
765 master_data |= control;
a5bf5f5a 766 /* load ISP and RCT */
1da177e4
LT
767 master_data |=
768 (timings[pio][0] << 12) |
769 (timings[pio][1] << 8);
770 }
771 pci_write_config_word(dev, master_port, master_data);
772 if (is_slave)
773 pci_write_config_byte(dev, slave_port, slave_data);
669a5db4
JG
774
775 /* Ensure the UDMA bit is off - it will be turned back on if
776 UDMA is selected */
85cd7251 777
669a5db4
JG
778 if (ap->udma_mask) {
779 pci_read_config_byte(dev, 0x48, &udma_enable);
780 udma_enable &= ~(1 << (2 * ap->port_no + adev->devno));
781 pci_write_config_byte(dev, 0x48, udma_enable);
782 }
60c3be38
BZ
783
784 spin_unlock_irqrestore(&piix_lock, flags);
1da177e4
LT
785}
786
787/**
669a5db4 788 * do_pata_set_dmamode - Initialize host controller PATA PIO timings
1da177e4 789 * @ap: Port whose timings we are configuring
669a5db4 790 * @adev: Drive in question
c32a8fd7 791 * @isich: set if the chip is an ICH device
1da177e4
LT
792 *
793 * Set UDMA mode for device, in host controller PCI config space.
794 *
795 * LOCKING:
796 * None (inherited from caller).
797 */
798
2dcb407e 799static void do_pata_set_dmamode(struct ata_port *ap, struct ata_device *adev, int isich)
1da177e4 800{
cca3974e 801 struct pci_dev *dev = to_pci_dev(ap->host->dev);
60c3be38 802 unsigned long flags;
669a5db4
JG
803 u8 master_port = ap->port_no ? 0x42 : 0x40;
804 u16 master_data;
805 u8 speed = adev->dma_mode;
806 int devid = adev->devno + 2 * ap->port_no;
dedf61db 807 u8 udma_enable = 0;
85cd7251 808
669a5db4
JG
809 static const /* ISP RTC */
810 u8 timings[][2] = { { 0, 0 },
811 { 0, 0 },
812 { 1, 0 },
813 { 2, 1 },
814 { 2, 3 }, };
815
60c3be38
BZ
816 spin_lock_irqsave(&piix_lock, flags);
817
669a5db4 818 pci_read_config_word(dev, master_port, &master_data);
d2cdfc0d
AC
819 if (ap->udma_mask)
820 pci_read_config_byte(dev, 0x48, &udma_enable);
1da177e4
LT
821
822 if (speed >= XFER_UDMA_0) {
669a5db4
JG
823 unsigned int udma = adev->dma_mode - XFER_UDMA_0;
824 u16 udma_timing;
825 u16 ideconf;
826 int u_clock, u_speed;
85cd7251 827
669a5db4 828 /*
2dcb407e 829 * UDMA is handled by a combination of clock switching and
85cd7251
JG
830 * selection of dividers
831 *
669a5db4 832 * Handy rule: Odd modes are UDMATIMx 01, even are 02
85cd7251 833 * except UDMA0 which is 00
669a5db4
JG
834 */
835 u_speed = min(2 - (udma & 1), udma);
836 if (udma == 5)
837 u_clock = 0x1000; /* 100Mhz */
838 else if (udma > 2)
839 u_clock = 1; /* 66Mhz */
840 else
841 u_clock = 0; /* 33Mhz */
85cd7251 842
669a5db4 843 udma_enable |= (1 << devid);
85cd7251 844
669a5db4
JG
845 /* Load the CT/RP selection */
846 pci_read_config_word(dev, 0x4A, &udma_timing);
847 udma_timing &= ~(3 << (4 * devid));
848 udma_timing |= u_speed << (4 * devid);
849 pci_write_config_word(dev, 0x4A, udma_timing);
850
85cd7251 851 if (isich) {
669a5db4
JG
852 /* Select a 33/66/100Mhz clock */
853 pci_read_config_word(dev, 0x54, &ideconf);
854 ideconf &= ~(0x1001 << devid);
855 ideconf |= u_clock << devid;
856 /* For ICH or later we should set bit 10 for better
857 performance (WR_PingPong_En) */
858 pci_write_config_word(dev, 0x54, ideconf);
1da177e4 859 }
1da177e4 860 } else {
669a5db4
JG
861 /*
862 * MWDMA is driven by the PIO timings. We must also enable
863 * IORDY unconditionally along with TIME1. PPE has already
864 * been set when the PIO timing was set.
865 */
866 unsigned int mwdma = adev->dma_mode - XFER_MW_DMA_0;
867 unsigned int control;
868 u8 slave_data;
869 const unsigned int needed_pio[3] = {
870 XFER_PIO_0, XFER_PIO_3, XFER_PIO_4
871 };
872 int pio = needed_pio[mwdma] - XFER_PIO_0;
85cd7251 873
669a5db4 874 control = 3; /* IORDY|TIME1 */
85cd7251 875
669a5db4
JG
876 /* If the drive MWDMA is faster than it can do PIO then
877 we must force PIO into PIO0 */
85cd7251 878
669a5db4
JG
879 if (adev->pio_mode < needed_pio[mwdma])
880 /* Enable DMA timing only */
881 control |= 8; /* PIO cycles in PIO0 */
882
883 if (adev->devno) { /* Slave */
884 master_data &= 0xFF4F; /* Mask out IORDY|TIME1|DMAONLY */
885 master_data |= control << 4;
886 pci_read_config_byte(dev, 0x44, &slave_data);
a5bf5f5a 887 slave_data &= (ap->port_no ? 0x0f : 0xf0);
669a5db4
JG
888 /* Load the matching timing */
889 slave_data |= ((timings[pio][0] << 2) | timings[pio][1]) << (ap->port_no ? 4 : 0);
890 pci_write_config_byte(dev, 0x44, slave_data);
891 } else { /* Master */
85cd7251 892 master_data &= 0xCCF4; /* Mask out IORDY|TIME1|DMAONLY
669a5db4
JG
893 and master timing bits */
894 master_data |= control;
895 master_data |=
896 (timings[pio][0] << 12) |
897 (timings[pio][1] << 8);
898 }
a5bf5f5a 899
69385943 900 if (ap->udma_mask)
a5bf5f5a 901 udma_enable &= ~(1 << devid);
69385943
BZ
902
903 pci_write_config_word(dev, master_port, master_data);
1da177e4 904 }
669a5db4
JG
905 /* Don't scribble on 0x48 if the controller does not support UDMA */
906 if (ap->udma_mask)
907 pci_write_config_byte(dev, 0x48, udma_enable);
60c3be38
BZ
908
909 spin_unlock_irqrestore(&piix_lock, flags);
669a5db4
JG
910}
911
912/**
913 * piix_set_dmamode - Initialize host controller PATA DMA timings
914 * @ap: Port whose timings we are configuring
915 * @adev: um
916 *
917 * Set MW/UDMA mode for device, in host controller PCI config space.
918 *
919 * LOCKING:
920 * None (inherited from caller).
921 */
922
2dcb407e 923static void piix_set_dmamode(struct ata_port *ap, struct ata_device *adev)
669a5db4
JG
924{
925 do_pata_set_dmamode(ap, adev, 0);
926}
927
928/**
929 * ich_set_dmamode - Initialize host controller PATA DMA timings
930 * @ap: Port whose timings we are configuring
931 * @adev: um
932 *
933 * Set MW/UDMA mode for device, in host controller PCI config space.
934 *
935 * LOCKING:
936 * None (inherited from caller).
937 */
938
2dcb407e 939static void ich_set_dmamode(struct ata_port *ap, struct ata_device *adev)
669a5db4
JG
940{
941 do_pata_set_dmamode(ap, adev, 1);
1da177e4
LT
942}
943
c7290724
TH
944/*
945 * Serial ATA Index/Data Pair Superset Registers access
946 *
947 * Beginning from ICH8, there's a sane way to access SCRs using index
be77e43a
TH
948 * and data register pair located at BAR5 which means that we have
949 * separate SCRs for master and slave. This is handled using libata
950 * slave_link facility.
c7290724
TH
951 */
952static const int piix_sidx_map[] = {
953 [SCR_STATUS] = 0,
954 [SCR_ERROR] = 2,
955 [SCR_CONTROL] = 1,
956};
957
be77e43a 958static void piix_sidpr_sel(struct ata_link *link, unsigned int reg)
c7290724 959{
be77e43a 960 struct ata_port *ap = link->ap;
c7290724
TH
961 struct piix_host_priv *hpriv = ap->host->private_data;
962
be77e43a 963 iowrite32(((ap->port_no * 2 + link->pmp) << 8) | piix_sidx_map[reg],
c7290724
TH
964 hpriv->sidpr + PIIX_SIDPR_IDX);
965}
966
82ef04fb
TH
967static int piix_sidpr_scr_read(struct ata_link *link,
968 unsigned int reg, u32 *val)
c7290724 969{
be77e43a 970 struct piix_host_priv *hpriv = link->ap->host->private_data;
c7290724
TH
971
972 if (reg >= ARRAY_SIZE(piix_sidx_map))
973 return -EINVAL;
974
be77e43a
TH
975 piix_sidpr_sel(link, reg);
976 *val = ioread32(hpriv->sidpr + PIIX_SIDPR_DATA);
c7290724
TH
977 return 0;
978}
979
82ef04fb
TH
980static int piix_sidpr_scr_write(struct ata_link *link,
981 unsigned int reg, u32 val)
c7290724 982{
be77e43a 983 struct piix_host_priv *hpriv = link->ap->host->private_data;
82ef04fb 984
c7290724
TH
985 if (reg >= ARRAY_SIZE(piix_sidx_map))
986 return -EINVAL;
987
be77e43a
TH
988 piix_sidpr_sel(link, reg);
989 iowrite32(val, hpriv->sidpr + PIIX_SIDPR_DATA);
c7290724
TH
990 return 0;
991}
992
a97c4006
TH
993static int piix_sidpr_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
994 unsigned hints)
995{
996 return sata_link_scr_lpm(link, policy, false);
997}
998
27943620
TH
999static bool piix_irq_check(struct ata_port *ap)
1000{
1001 if (unlikely(!ap->ioaddr.bmdma_addr))
1002 return false;
1003
1004 return ap->ops->bmdma_status(ap) & ATA_DMA_INTR;
1005}
1006
b8b275ef 1007#ifdef CONFIG_PM
8c3832eb
TH
1008static int piix_broken_suspend(void)
1009{
1855256c 1010 static const struct dmi_system_id sysids[] = {
4c74d4ec
TH
1011 {
1012 .ident = "TECRA M3",
1013 .matches = {
1014 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1015 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M3"),
1016 },
1017 },
04d86d6f
PS
1018 {
1019 .ident = "TECRA M3",
1020 .matches = {
1021 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1022 DMI_MATCH(DMI_PRODUCT_NAME, "Tecra M3"),
1023 },
1024 },
d1aa690a
PS
1025 {
1026 .ident = "TECRA M4",
1027 .matches = {
1028 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1029 DMI_MATCH(DMI_PRODUCT_NAME, "Tecra M4"),
1030 },
1031 },
040dee53
TH
1032 {
1033 .ident = "TECRA M4",
1034 .matches = {
1035 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1036 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M4"),
1037 },
1038 },
8c3832eb
TH
1039 {
1040 .ident = "TECRA M5",
1041 .matches = {
1042 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1043 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M5"),
1044 },
b8b275ef 1045 },
ffe188dd
PS
1046 {
1047 .ident = "TECRA M6",
1048 .matches = {
1049 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1050 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M6"),
1051 },
1052 },
5c08ea01
TH
1053 {
1054 .ident = "TECRA M7",
1055 .matches = {
1056 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1057 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M7"),
1058 },
1059 },
04d86d6f
PS
1060 {
1061 .ident = "TECRA A8",
1062 .matches = {
1063 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1064 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA A8"),
1065 },
1066 },
ffe188dd
PS
1067 {
1068 .ident = "Satellite R20",
1069 .matches = {
1070 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1071 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite R20"),
1072 },
1073 },
04d86d6f
PS
1074 {
1075 .ident = "Satellite R25",
1076 .matches = {
1077 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1078 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite R25"),
1079 },
1080 },
3cc0b9d3
TH
1081 {
1082 .ident = "Satellite U200",
1083 .matches = {
1084 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1085 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite U200"),
1086 },
1087 },
04d86d6f
PS
1088 {
1089 .ident = "Satellite U200",
1090 .matches = {
1091 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1092 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE U200"),
1093 },
1094 },
62320e23
YC
1095 {
1096 .ident = "Satellite Pro U200",
1097 .matches = {
1098 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1099 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE PRO U200"),
1100 },
1101 },
8c3832eb
TH
1102 {
1103 .ident = "Satellite U205",
1104 .matches = {
1105 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1106 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite U205"),
1107 },
b8b275ef 1108 },
de753e5e
TH
1109 {
1110 .ident = "SATELLITE U205",
1111 .matches = {
1112 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1113 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE U205"),
1114 },
1115 },
8c3832eb
TH
1116 {
1117 .ident = "Portege M500",
1118 .matches = {
1119 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1120 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M500"),
1121 },
b8b275ef 1122 },
c3f93b8f
TH
1123 {
1124 .ident = "VGN-BX297XP",
1125 .matches = {
1126 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
1127 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-BX297XP"),
1128 },
1129 },
7d051548
JG
1130
1131 { } /* terminate list */
8c3832eb 1132 };
7abe79c3
TH
1133 static const char *oemstrs[] = {
1134 "Tecra M3,",
1135 };
1136 int i;
8c3832eb
TH
1137
1138 if (dmi_check_system(sysids))
1139 return 1;
1140
7abe79c3
TH
1141 for (i = 0; i < ARRAY_SIZE(oemstrs); i++)
1142 if (dmi_find_device(DMI_DEV_TYPE_OEM_STRING, oemstrs[i], NULL))
1143 return 1;
1144
1eedb4a9
TH
1145 /* TECRA M4 sometimes forgets its identify and reports bogus
1146 * DMI information. As the bogus information is a bit
1147 * generic, match as many entries as possible. This manual
1148 * matching is necessary because dmi_system_id.matches is
1149 * limited to four entries.
1150 */
3c387730
JS
1151 if (dmi_match(DMI_SYS_VENDOR, "TOSHIBA") &&
1152 dmi_match(DMI_PRODUCT_NAME, "000000") &&
1153 dmi_match(DMI_PRODUCT_VERSION, "000000") &&
1154 dmi_match(DMI_PRODUCT_SERIAL, "000000") &&
1155 dmi_match(DMI_BOARD_VENDOR, "TOSHIBA") &&
1156 dmi_match(DMI_BOARD_NAME, "Portable PC") &&
1157 dmi_match(DMI_BOARD_VERSION, "Version A0"))
1eedb4a9
TH
1158 return 1;
1159
8c3832eb
TH
1160 return 0;
1161}
b8b275ef
TH
1162
1163static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
1164{
1165 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1166 unsigned long flags;
1167 int rc = 0;
1168
1169 rc = ata_host_suspend(host, mesg);
1170 if (rc)
1171 return rc;
1172
1173 /* Some braindamaged ACPI suspend implementations expect the
1174 * controller to be awake on entry; otherwise, it burns cpu
1175 * cycles and power trying to do something to the sleeping
1176 * beauty.
1177 */
3a2d5b70 1178 if (piix_broken_suspend() && (mesg.event & PM_EVENT_SLEEP)) {
b8b275ef
TH
1179 pci_save_state(pdev);
1180
1181 /* mark its power state as "unknown", since we don't
1182 * know if e.g. the BIOS will change its device state
1183 * when we suspend.
1184 */
1185 if (pdev->current_state == PCI_D0)
1186 pdev->current_state = PCI_UNKNOWN;
1187
1188 /* tell resume that it's waking up from broken suspend */
1189 spin_lock_irqsave(&host->lock, flags);
1190 host->flags |= PIIX_HOST_BROKEN_SUSPEND;
1191 spin_unlock_irqrestore(&host->lock, flags);
1192 } else
1193 ata_pci_device_do_suspend(pdev, mesg);
1194
1195 return 0;
1196}
1197
1198static int piix_pci_device_resume(struct pci_dev *pdev)
1199{
1200 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1201 unsigned long flags;
1202 int rc;
1203
1204 if (host->flags & PIIX_HOST_BROKEN_SUSPEND) {
1205 spin_lock_irqsave(&host->lock, flags);
1206 host->flags &= ~PIIX_HOST_BROKEN_SUSPEND;
1207 spin_unlock_irqrestore(&host->lock, flags);
1208
1209 pci_set_power_state(pdev, PCI_D0);
1210 pci_restore_state(pdev);
1211
1212 /* PCI device wasn't disabled during suspend. Use
0b62e13b
TH
1213 * pci_reenable_device() to avoid affecting the enable
1214 * count.
b8b275ef 1215 */
0b62e13b 1216 rc = pci_reenable_device(pdev);
b8b275ef
TH
1217 if (rc)
1218 dev_printk(KERN_ERR, &pdev->dev, "failed to enable "
1219 "device after resume (%d)\n", rc);
1220 } else
1221 rc = ata_pci_device_do_resume(pdev);
1222
1223 if (rc == 0)
1224 ata_host_resume(host);
1225
1226 return rc;
1227}
1228#endif
1229
25f98131
TH
1230static u8 piix_vmw_bmdma_status(struct ata_port *ap)
1231{
1232 return ata_bmdma_status(ap) & ~ATA_DMA_ERR;
1233}
1234
1da177e4
LT
1235#define AHCI_PCI_BAR 5
1236#define AHCI_GLOBAL_CTL 0x04
1237#define AHCI_ENABLE (1 << 31)
1238static int piix_disable_ahci(struct pci_dev *pdev)
1239{
ea6ba10b 1240 void __iomem *mmio;
1da177e4
LT
1241 u32 tmp;
1242 int rc = 0;
1243
1244 /* BUG: pci_enable_device has not yet been called. This
1245 * works because this device is usually set up by BIOS.
1246 */
1247
374b1873
JG
1248 if (!pci_resource_start(pdev, AHCI_PCI_BAR) ||
1249 !pci_resource_len(pdev, AHCI_PCI_BAR))
1da177e4 1250 return 0;
7b6dbd68 1251
374b1873 1252 mmio = pci_iomap(pdev, AHCI_PCI_BAR, 64);
1da177e4
LT
1253 if (!mmio)
1254 return -ENOMEM;
7b6dbd68 1255
c47a631f 1256 tmp = ioread32(mmio + AHCI_GLOBAL_CTL);
1da177e4
LT
1257 if (tmp & AHCI_ENABLE) {
1258 tmp &= ~AHCI_ENABLE;
c47a631f 1259 iowrite32(tmp, mmio + AHCI_GLOBAL_CTL);
1da177e4 1260
c47a631f 1261 tmp = ioread32(mmio + AHCI_GLOBAL_CTL);
1da177e4
LT
1262 if (tmp & AHCI_ENABLE)
1263 rc = -EIO;
1264 }
7b6dbd68 1265
374b1873 1266 pci_iounmap(pdev, mmio);
1da177e4
LT
1267 return rc;
1268}
1269
c621b140
AC
1270/**
1271 * piix_check_450nx_errata - Check for problem 450NX setup
c893a3ae 1272 * @ata_dev: the PCI device to check
2e9edbf8 1273 *
c621b140
AC
1274 * Check for the present of 450NX errata #19 and errata #25. If
1275 * they are found return an error code so we can turn off DMA
1276 */
1277
1278static int __devinit piix_check_450nx_errata(struct pci_dev *ata_dev)
1279{
1280 struct pci_dev *pdev = NULL;
1281 u16 cfg;
c621b140 1282 int no_piix_dma = 0;
2e9edbf8 1283
2dcb407e 1284 while ((pdev = pci_get_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82454NX, pdev)) != NULL) {
c621b140
AC
1285 /* Look for 450NX PXB. Check for problem configurations
1286 A PCI quirk checks bit 6 already */
c621b140
AC
1287 pci_read_config_word(pdev, 0x41, &cfg);
1288 /* Only on the original revision: IDE DMA can hang */
44c10138 1289 if (pdev->revision == 0x00)
c621b140
AC
1290 no_piix_dma = 1;
1291 /* On all revisions below 5 PXB bus lock must be disabled for IDE */
44c10138 1292 else if (cfg & (1<<14) && pdev->revision < 5)
c621b140
AC
1293 no_piix_dma = 2;
1294 }
31a34fe7 1295 if (no_piix_dma)
c621b140 1296 dev_printk(KERN_WARNING, &ata_dev->dev, "450NX errata present, disabling IDE DMA.\n");
31a34fe7 1297 if (no_piix_dma == 2)
c621b140
AC
1298 dev_printk(KERN_WARNING, &ata_dev->dev, "A BIOS update may resolve this.\n");
1299 return no_piix_dma;
2e9edbf8 1300}
c621b140 1301
8b09f0da 1302static void __devinit piix_init_pcs(struct ata_host *host,
ea35d29e
JG
1303 const struct piix_map_db *map_db)
1304{
8b09f0da 1305 struct pci_dev *pdev = to_pci_dev(host->dev);
ea35d29e
JG
1306 u16 pcs, new_pcs;
1307
1308 pci_read_config_word(pdev, ICH5_PCS, &pcs);
1309
1310 new_pcs = pcs | map_db->port_enable;
1311
1312 if (new_pcs != pcs) {
1313 DPRINTK("updating PCS from 0x%x to 0x%x\n", pcs, new_pcs);
1314 pci_write_config_word(pdev, ICH5_PCS, new_pcs);
1315 msleep(150);
1316 }
1317}
1318
8b09f0da
TH
1319static const int *__devinit piix_init_sata_map(struct pci_dev *pdev,
1320 struct ata_port_info *pinfo,
1321 const struct piix_map_db *map_db)
d33f58b8 1322{
b4482a4b 1323 const int *map;
d33f58b8
TH
1324 int i, invalid_map = 0;
1325 u8 map_value;
1326
1327 pci_read_config_byte(pdev, ICH5_PMR, &map_value);
1328
1329 map = map_db->map[map_value & map_db->mask];
1330
1331 dev_printk(KERN_INFO, &pdev->dev, "MAP [");
1332 for (i = 0; i < 4; i++) {
1333 switch (map[i]) {
1334 case RV:
1335 invalid_map = 1;
1336 printk(" XX");
1337 break;
1338
1339 case NA:
1340 printk(" --");
1341 break;
1342
1343 case IDE:
1344 WARN_ON((i & 1) || map[i + 1] != IDE);
669a5db4 1345 pinfo[i / 2] = piix_port_info[ich_pata_100];
d33f58b8
TH
1346 i++;
1347 printk(" IDE IDE");
1348 break;
1349
1350 default:
1351 printk(" P%d", map[i]);
1352 if (i & 1)
cca3974e 1353 pinfo[i / 2].flags |= ATA_FLAG_SLAVE_POSS;
d33f58b8
TH
1354 break;
1355 }
1356 }
1357 printk(" ]\n");
1358
1359 if (invalid_map)
1360 dev_printk(KERN_ERR, &pdev->dev,
1361 "invalid MAP value %u\n", map_value);
1362
8b09f0da 1363 return map;
d33f58b8
TH
1364}
1365
e9c1670c
TH
1366static bool piix_no_sidpr(struct ata_host *host)
1367{
1368 struct pci_dev *pdev = to_pci_dev(host->dev);
1369
1370 /*
1371 * Samsung DB-P70 only has three ATA ports exposed and
1372 * curiously the unconnected first port reports link online
1373 * while not responding to SRST protocol causing excessive
1374 * detection delay.
1375 *
1376 * Unfortunately, the system doesn't carry enough DMI
1377 * information to identify the machine but does have subsystem
1378 * vendor and device set. As it's unclear whether the
1379 * subsystem vendor/device is used only for this specific
1380 * board, the port can't be disabled solely with the
1381 * information; however, turning off SIDPR access works around
1382 * the problem. Turn it off.
1383 *
1384 * This problem is reported in bnc#441240.
1385 *
1386 * https://bugzilla.novell.com/show_bug.cgi?id=441420
1387 */
1388 if (pdev->vendor == PCI_VENDOR_ID_INTEL && pdev->device == 0x2920 &&
1389 pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG &&
1390 pdev->subsystem_device == 0xb049) {
1391 dev_printk(KERN_WARNING, host->dev,
1392 "Samsung DB-P70 detected, disabling SIDPR\n");
1393 return true;
1394 }
1395
1396 return false;
1397}
1398
be77e43a 1399static int __devinit piix_init_sidpr(struct ata_host *host)
c7290724
TH
1400{
1401 struct pci_dev *pdev = to_pci_dev(host->dev);
1402 struct piix_host_priv *hpriv = host->private_data;
be77e43a 1403 struct ata_link *link0 = &host->ports[0]->link;
cb6716c8 1404 u32 scontrol;
be77e43a 1405 int i, rc;
c7290724
TH
1406
1407 /* check for availability */
1408 for (i = 0; i < 4; i++)
1409 if (hpriv->map[i] == IDE)
be77e43a 1410 return 0;
c7290724 1411
e9c1670c
TH
1412 /* is it blacklisted? */
1413 if (piix_no_sidpr(host))
1414 return 0;
1415
c7290724 1416 if (!(host->ports[0]->flags & PIIX_FLAG_SIDPR))
be77e43a 1417 return 0;
c7290724
TH
1418
1419 if (pci_resource_start(pdev, PIIX_SIDPR_BAR) == 0 ||
1420 pci_resource_len(pdev, PIIX_SIDPR_BAR) != PIIX_SIDPR_LEN)
be77e43a 1421 return 0;
c7290724
TH
1422
1423 if (pcim_iomap_regions(pdev, 1 << PIIX_SIDPR_BAR, DRV_NAME))
be77e43a 1424 return 0;
c7290724
TH
1425
1426 hpriv->sidpr = pcim_iomap_table(pdev)[PIIX_SIDPR_BAR];
cb6716c8
TH
1427
1428 /* SCR access via SIDPR doesn't work on some configurations.
1429 * Give it a test drive by inhibiting power save modes which
1430 * we'll do anyway.
1431 */
be77e43a 1432 piix_sidpr_scr_read(link0, SCR_CONTROL, &scontrol);
cb6716c8
TH
1433
1434 /* if IPM is already 3, SCR access is probably working. Don't
1435 * un-inhibit power save modes as BIOS might have inhibited
1436 * them for a reason.
1437 */
1438 if ((scontrol & 0xf00) != 0x300) {
1439 scontrol |= 0x300;
be77e43a
TH
1440 piix_sidpr_scr_write(link0, SCR_CONTROL, scontrol);
1441 piix_sidpr_scr_read(link0, SCR_CONTROL, &scontrol);
cb6716c8
TH
1442
1443 if ((scontrol & 0xf00) != 0x300) {
1444 dev_printk(KERN_INFO, host->dev, "SCR access via "
1445 "SIDPR is available but doesn't work\n");
be77e43a 1446 return 0;
cb6716c8
TH
1447 }
1448 }
1449
be77e43a
TH
1450 /* okay, SCRs available, set ops and ask libata for slave_link */
1451 for (i = 0; i < 2; i++) {
1452 struct ata_port *ap = host->ports[i];
1453
1454 ap->ops = &piix_sidpr_sata_ops;
1455
1456 if (ap->flags & ATA_FLAG_SLAVE_POSS) {
1457 rc = ata_slave_link_init(ap);
1458 if (rc)
1459 return rc;
1460 }
1461 }
1462
1463 return 0;
c7290724
TH
1464}
1465
2852bcf7 1466static void piix_iocfg_bit18_quirk(struct ata_host *host)
43a98f05 1467{
1855256c 1468 static const struct dmi_system_id sysids[] = {
43a98f05
TH
1469 {
1470 /* Clevo M570U sets IOCFG bit 18 if the cdrom
1471 * isn't used to boot the system which
1472 * disables the channel.
1473 */
1474 .ident = "M570U",
1475 .matches = {
1476 DMI_MATCH(DMI_SYS_VENDOR, "Clevo Co."),
1477 DMI_MATCH(DMI_PRODUCT_NAME, "M570U"),
1478 },
1479 },
7d051548
JG
1480
1481 { } /* terminate list */
43a98f05 1482 };
2852bcf7
TH
1483 struct pci_dev *pdev = to_pci_dev(host->dev);
1484 struct piix_host_priv *hpriv = host->private_data;
43a98f05
TH
1485
1486 if (!dmi_check_system(sysids))
1487 return;
1488
1489 /* The datasheet says that bit 18 is NOOP but certain systems
1490 * seem to use it to disable a channel. Clear the bit on the
1491 * affected systems.
1492 */
2852bcf7 1493 if (hpriv->saved_iocfg & (1 << 18)) {
43a98f05
TH
1494 dev_printk(KERN_INFO, &pdev->dev,
1495 "applying IOCFG bit18 quirk\n");
2852bcf7
TH
1496 pci_write_config_dword(pdev, PIIX_IOCFG,
1497 hpriv->saved_iocfg & ~(1 << 18));
43a98f05
TH
1498 }
1499}
1500
5f451fe1
RW
1501static bool piix_broken_system_poweroff(struct pci_dev *pdev)
1502{
1503 static const struct dmi_system_id broken_systems[] = {
1504 {
1505 .ident = "HP Compaq 2510p",
1506 .matches = {
1507 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1508 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 2510p"),
1509 },
1510 /* PCI slot number of the controller */
1511 .driver_data = (void *)0x1FUL,
1512 },
65e31643
VS
1513 {
1514 .ident = "HP Compaq nc6000",
1515 .matches = {
1516 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1517 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nc6000"),
1518 },
1519 /* PCI slot number of the controller */
1520 .driver_data = (void *)0x1FUL,
1521 },
5f451fe1
RW
1522
1523 { } /* terminate list */
1524 };
1525 const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
1526
1527 if (dmi) {
1528 unsigned long slot = (unsigned long)dmi->driver_data;
1529 /* apply the quirk only to on-board controllers */
1530 return slot == PCI_SLOT(pdev->devfn);
1531 }
1532
1533 return false;
1534}
1535
1da177e4
LT
1536/**
1537 * piix_init_one - Register PIIX ATA PCI device with kernel services
1538 * @pdev: PCI device to register
1539 * @ent: Entry in piix_pci_tbl matching with @pdev
1540 *
1541 * Called from kernel PCI layer. We probe for combined mode (sigh),
1542 * and then hand over control to libata, for it to do the rest.
1543 *
1544 * LOCKING:
1545 * Inherited from PCI layer (may sleep).
1546 *
1547 * RETURNS:
1548 * Zero on success, or -ERRNO value.
1549 */
1550
bc5468f5
AB
1551static int __devinit piix_init_one(struct pci_dev *pdev,
1552 const struct pci_device_id *ent)
1da177e4
LT
1553{
1554 static int printed_version;
24dc5f33 1555 struct device *dev = &pdev->dev;
d33f58b8 1556 struct ata_port_info port_info[2];
1626aeb8 1557 const struct ata_port_info *ppi[] = { &port_info[0], &port_info[1] };
a97c4006 1558 struct scsi_host_template *sht = &piix_sht;
cca3974e 1559 unsigned long port_flags;
8b09f0da
TH
1560 struct ata_host *host;
1561 struct piix_host_priv *hpriv;
1562 int rc;
1da177e4
LT
1563
1564 if (!printed_version++)
6248e647
JG
1565 dev_printk(KERN_DEBUG, &pdev->dev,
1566 "version " DRV_VERSION "\n");
1da177e4 1567
347979a0
AC
1568 /* no hotplugging support for later devices (FIXME) */
1569 if (!in_module_init && ent->driver_data >= ich5_sata)
1da177e4
LT
1570 return -ENODEV;
1571
5f451fe1
RW
1572 if (piix_broken_system_poweroff(pdev)) {
1573 piix_port_info[ent->driver_data].flags |=
1574 ATA_FLAG_NO_POWEROFF_SPINDOWN |
1575 ATA_FLAG_NO_HIBERNATE_SPINDOWN;
1576 dev_info(&pdev->dev, "quirky BIOS, skipping spindown "
1577 "on poweroff and hibernation\n");
1578 }
1579
8b09f0da
TH
1580 port_info[0] = piix_port_info[ent->driver_data];
1581 port_info[1] = piix_port_info[ent->driver_data];
1582
1583 port_flags = port_info[0].flags;
1584
1585 /* enable device and prepare host */
1586 rc = pcim_enable_device(pdev);
1587 if (rc)
1588 return rc;
1589
2852bcf7
TH
1590 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
1591 if (!hpriv)
1592 return -ENOMEM;
1593
1594 /* Save IOCFG, this will be used for cable detection, quirk
1595 * detection and restoration on detach. This is necessary
1596 * because some ACPI implementations mess up cable related
1597 * bits on _STM. Reported on kernel bz#11879.
1598 */
1599 pci_read_config_dword(pdev, PIIX_IOCFG, &hpriv->saved_iocfg);
1600
5016d7d2
TH
1601 /* ICH6R may be driven by either ata_piix or ahci driver
1602 * regardless of BIOS configuration. Make sure AHCI mode is
1603 * off.
1604 */
1605 if (pdev->vendor == PCI_VENDOR_ID_INTEL && pdev->device == 0x2652) {
da3ceb22 1606 rc = piix_disable_ahci(pdev);
5016d7d2
TH
1607 if (rc)
1608 return rc;
1609 }
1610
8b09f0da 1611 /* SATA map init can change port_info, do it before prepping host */
8b09f0da
TH
1612 if (port_flags & ATA_FLAG_SATA)
1613 hpriv->map = piix_init_sata_map(pdev, port_info,
1614 piix_map_db_table[ent->driver_data]);
1da177e4 1615
1c5afdf7 1616 rc = ata_pci_bmdma_prepare_host(pdev, ppi, &host);
8b09f0da
TH
1617 if (rc)
1618 return rc;
1619 host->private_data = hpriv;
ff0fc146 1620
8b09f0da 1621 /* initialize controller */
c7290724 1622 if (port_flags & ATA_FLAG_SATA) {
8b09f0da 1623 piix_init_pcs(host, piix_map_db_table[ent->driver_data]);
be77e43a
TH
1624 rc = piix_init_sidpr(host);
1625 if (rc)
1626 return rc;
a97c4006
TH
1627 if (host->ports[0]->ops == &piix_sidpr_sata_ops)
1628 sht = &piix_sidpr_sht;
c7290724 1629 }
1da177e4 1630
43a98f05 1631 /* apply IOCFG bit18 quirk */
2852bcf7 1632 piix_iocfg_bit18_quirk(host);
43a98f05 1633
1da177e4
LT
1634 /* On ICH5, some BIOSen disable the interrupt using the
1635 * PCI_COMMAND_INTX_DISABLE bit added in PCI 2.3.
1636 * On ICH6, this bit has the same effect, but only when
1637 * MSI is disabled (and it is disabled, as we don't use
1638 * message-signalled interrupts currently).
1639 */
cca3974e 1640 if (port_flags & PIIX_FLAG_CHECKINTR)
a04ce0ff 1641 pci_intx(pdev, 1);
1da177e4 1642
c621b140
AC
1643 if (piix_check_450nx_errata(pdev)) {
1644 /* This writes into the master table but it does not
1645 really matter for this errata as we will apply it to
1646 all the PIIX devices on the board */
8b09f0da
TH
1647 host->ports[0]->mwdma_mask = 0;
1648 host->ports[0]->udma_mask = 0;
1649 host->ports[1]->mwdma_mask = 0;
1650 host->ports[1]->udma_mask = 0;
c621b140 1651 }
517d3cc1 1652 host->flags |= ATA_HOST_PARALLEL_SCAN;
8b09f0da
TH
1653
1654 pci_set_master(pdev);
a97c4006 1655 return ata_pci_sff_activate_host(host, ata_bmdma_interrupt, sht);
1da177e4
LT
1656}
1657
2852bcf7
TH
1658static void piix_remove_one(struct pci_dev *pdev)
1659{
1660 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1661 struct piix_host_priv *hpriv = host->private_data;
1662
1663 pci_write_config_dword(pdev, PIIX_IOCFG, hpriv->saved_iocfg);
1664
1665 ata_pci_remove_one(pdev);
1666}
1667
1da177e4
LT
1668static int __init piix_init(void)
1669{
1670 int rc;
1671
b7887196
PR
1672 DPRINTK("pci_register_driver\n");
1673 rc = pci_register_driver(&piix_pci_driver);
1da177e4
LT
1674 if (rc)
1675 return rc;
1676
1677 in_module_init = 0;
1678
1679 DPRINTK("done\n");
1680 return 0;
1681}
1682
1da177e4
LT
1683static void __exit piix_exit(void)
1684{
1685 pci_unregister_driver(&piix_pci_driver);
1686}
1687
1688module_init(piix_init);
1689module_exit(piix_exit);