blob: d19cd88ed2d3749313dbc36f6c99c113df8cd766 [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_ali.c - ALI 15x3 PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
Jeff Garzik669a5db2006-08-29 18:12:40 -04004 *
5 * based in part upon
6 * linux/drivers/ide/pci/alim15x3.c Version 0.17 2003/01/02
7 *
8 * Copyright (C) 1998-2000 Michel Aubry, Maintainer
9 * Copyright (C) 1998-2000 Andrzej Krzysztofowicz, Maintainer
10 * Copyright (C) 1999-2000 CJ, cjtsai@ali.com.tw, Maintainer
11 *
12 * Copyright (C) 1998-2000 Andre Hedrick (andre@linux-ide.org)
13 * May be copied or modified under the terms of the GNU General Public License
14 * Copyright (C) 2002 Alan Cox <alan@redhat.com>
15 * ALi (now ULi M5228) support by Clear Zhang <Clear.Zhang@ali.com.tw>
16 *
17 * Documentation
18 * Chipset documentation available under NDA only
19 *
20 * TODO/CHECK
21 * Cannot have ATAPI on both master & slave for rev < c2 (???) but
Alan Cox1b2c3572009-01-05 14:13:22 +000022 * otherwise should do atapi DMA (For now for old we do PIO only for
23 * ATAPI)
24 * Review Sunblade workaround.
Jeff Garzik669a5db2006-08-29 18:12:40 -040025 */
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/pci.h>
30#include <linux/init.h>
31#include <linux/blkdev.h>
32#include <linux/delay.h>
33#include <scsi/scsi_host.h>
34#include <linux/libata.h>
35#include <linux/dmi.h>
36
37#define DRV_NAME "pata_ali"
Alan Coxfc809022009-01-05 14:13:53 +000038#define DRV_VERSION "0.7.8"
Jeff Garzik669a5db2006-08-29 18:12:40 -040039
Adrian Bunk18922252008-04-11 20:28:27 +030040static int ali_atapi_dma = 0;
Tejun Heo8243e632008-04-03 14:40:55 +090041module_param_named(atapi_dma, ali_atapi_dma, int, 0644);
42MODULE_PARM_DESC(atapi_dma, "Enable ATAPI DMA (0=disable, 1=enable)");
43
Andrew Mortonbc42b242009-01-14 16:48:42 -080044static struct pci_dev *ali_isa_bridge;
Alan Cox1b2c3572009-01-05 14:13:22 +000045
Jeff Garzik669a5db2006-08-29 18:12:40 -040046/*
47 * Cable special cases
48 */
49
Jeff Garzik18552562007-10-03 15:15:40 -040050static const struct dmi_system_id cable_dmi_table[] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -040051 {
52 .ident = "HP Pavilion N5430",
53 .matches = {
54 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
Alan Cox5c8d5202007-07-20 15:34:49 +010055 DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
Jeff Garzik669a5db2006-08-29 18:12:40 -040056 },
57 },
Daniel Exner03e6f482007-09-11 22:28:36 +020058 {
Bartlomiej Zolnierkiewicz802872e2011-10-11 19:40:58 +020059 .ident = "Toshiba Satellite S1800-814",
Daniel Exner03e6f482007-09-11 22:28:36 +020060 .matches = {
61 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
62 DMI_MATCH(DMI_PRODUCT_NAME, "S1800-814"),
63 },
64 },
Jeff Garzik669a5db2006-08-29 18:12:40 -040065 { }
66};
67
68static int ali_cable_override(struct pci_dev *pdev)
69{
70 /* Fujitsu P2000 */
71 if (pdev->subsystem_vendor == 0x10CF && pdev->subsystem_device == 0x10AF)
72 return 1;
Alan Cox8f59a132007-11-19 14:36:28 +000073 /* Mitac 8317 (Winbook-A) and relatives */
Jeff Garzik11b7bec2007-11-23 21:12:14 -050074 if (pdev->subsystem_vendor == 0x1071 && pdev->subsystem_device == 0x8317)
Alan Cox8f59a132007-11-19 14:36:28 +000075 return 1;
Jeff Garzik669a5db2006-08-29 18:12:40 -040076 /* Systems by DMI */
77 if (dmi_check_system(cable_dmi_table))
78 return 1;
79 return 0;
80}
81
82/**
83 * ali_c2_cable_detect - cable detection
84 * @ap: ATA port
85 *
86 * Perform cable detection for C2 and later revisions
87 */
88
89static int ali_c2_cable_detect(struct ata_port *ap)
90{
91 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
92 u8 ata66;
93
94 /* Certain laptops use short but suitable cables and don't
95 implement the detect logic */
96
97 if (ali_cable_override(pdev))
Alan Coxfc085152006-10-10 14:28:11 -070098 return ATA_CBL_PATA40_SHORT;
Jeff Garzik669a5db2006-08-29 18:12:40 -040099
100 /* Host view cable detect 0x4A bit 0 primary bit 1 secondary
101 Bit set for 40 pin */
102 pci_read_config_byte(pdev, 0x4A, &ata66);
103 if (ata66 & (1 << ap->port_no))
104 return ATA_CBL_PATA40;
105 else
106 return ATA_CBL_PATA80;
107}
108
109/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400110 * ali_20_filter - filter for earlier ALI DMA
111 * @ap: ALi ATA port
112 * @adev: attached device
113 *
114 * Ensure that we do not do DMA on CD devices. We may be able to
115 * fix that later on. Also ensure we do not do UDMA on WDC drives
116 */
117
Alan Coxa76b62ca2007-03-09 09:34:07 -0500118static unsigned long ali_20_filter(struct ata_device *adev, unsigned long mask)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400119{
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900120 char model_num[ATA_ID_PROD_LEN + 1];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400121 /* No DMA on anything but a disk for now */
122 if (adev->class != ATA_DEV_ATA)
123 mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900124 ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
Jeff Garzik669a5db2006-08-29 18:12:40 -0400125 if (strstr(model_num, "WDC"))
126 return mask &= ~ATA_MASK_UDMA;
Tejun Heoc7087652010-05-10 21:41:34 +0200127 return mask;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400128}
129
130/**
131 * ali_fifo_control - FIFO manager
132 * @ap: ALi channel to control
133 * @adev: device for FIFO control
134 * @on: 0 for off 1 for on
135 *
136 * Enable or disable the FIFO on a given device. Because of the way the
137 * ALi FIFO works it provides a boost on ATA disk but can be confused by
138 * ATAPI and we must therefore manage it.
139 */
140
141static void ali_fifo_control(struct ata_port *ap, struct ata_device *adev, int on)
142{
143 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
144 int pio_fifo = 0x54 + ap->port_no;
145 u8 fifo;
146 int shift = 4 * adev->devno;
147
148 /* ATA - FIFO on set nibble to 0x05, ATAPI - FIFO off, set nibble to
149 0x00. Not all the docs agree but the behaviour we now use is the
150 one stated in the BIOS Programming Guide */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400151
Jeff Garzik669a5db2006-08-29 18:12:40 -0400152 pci_read_config_byte(pdev, pio_fifo, &fifo);
153 fifo &= ~(0x0F << shift);
Alan Cox871af122009-01-05 14:16:39 +0000154 fifo |= (on << shift);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400155 pci_write_config_byte(pdev, pio_fifo, fifo);
156}
157
158/**
159 * ali_program_modes - load mode registers
160 * @ap: ALi channel to load
161 * @adev: Device the timing is for
Bartlomiej Zolnierkiewiczd8b3d8c2010-01-18 18:14:05 +0100162 * @t: timing data
Jeff Garzik669a5db2006-08-29 18:12:40 -0400163 * @ultra: UDMA timing or zero for off
164 *
165 * Loads the timing registers for cmd/data and disable UDMA if
166 * ultra is zero. If ultra is set then load and enable the UDMA
167 * timing but do not touch the command/data timing.
168 */
169
170static void ali_program_modes(struct ata_port *ap, struct ata_device *adev, struct ata_timing *t, u8 ultra)
171{
172 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
173 int cas = 0x58 + 4 * ap->port_no; /* Command timing */
174 int cbt = 0x59 + 4 * ap->port_no; /* Command timing */
175 int drwt = 0x5A + 4 * ap->port_no + adev->devno; /* R/W timing */
176 int udmat = 0x56 + ap->port_no; /* UDMA timing */
177 int shift = 4 * adev->devno;
178 u8 udma;
179
180 if (t != NULL) {
Harvey Harrison07633b52008-05-14 16:17:00 -0700181 t->setup = clamp_val(t->setup, 1, 8) & 7;
182 t->act8b = clamp_val(t->act8b, 1, 8) & 7;
183 t->rec8b = clamp_val(t->rec8b, 1, 16) & 15;
184 t->active = clamp_val(t->active, 1, 8) & 7;
185 t->recover = clamp_val(t->recover, 1, 16) & 15;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400186
187 pci_write_config_byte(pdev, cas, t->setup);
188 pci_write_config_byte(pdev, cbt, (t->act8b << 4) | t->rec8b);
189 pci_write_config_byte(pdev, drwt, (t->active << 4) | t->recover);
190 }
191
192 /* Set up the UDMA enable */
193 pci_read_config_byte(pdev, udmat, &udma);
194 udma &= ~(0x0F << shift);
195 udma |= ultra << shift;
196 pci_write_config_byte(pdev, udmat, udma);
197}
198
199/**
200 * ali_set_piomode - set initial PIO mode data
201 * @ap: ATA interface
202 * @adev: ATA device
203 *
Bartlomiej Zolnierkiewiczd8b3d8c2010-01-18 18:14:05 +0100204 * Program the ALi registers for PIO mode.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400205 */
206
207static void ali_set_piomode(struct ata_port *ap, struct ata_device *adev)
208{
209 struct ata_device *pair = ata_dev_pair(adev);
210 struct ata_timing t;
211 unsigned long T = 1000000000 / 33333; /* PCI clock based */
212
213 ata_timing_compute(adev, adev->pio_mode, &t, T, 1);
214 if (pair) {
215 struct ata_timing p;
216 ata_timing_compute(pair, pair->pio_mode, &p, T, 1);
217 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
218 if (pair->dma_mode) {
219 ata_timing_compute(pair, pair->dma_mode, &p, T, 1);
220 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
221 }
222 }
223
224 /* PIO FIFO is only permitted on ATA disk */
225 if (adev->class != ATA_DEV_ATA)
226 ali_fifo_control(ap, adev, 0x00);
227 ali_program_modes(ap, adev, &t, 0);
228 if (adev->class == ATA_DEV_ATA)
229 ali_fifo_control(ap, adev, 0x05);
230
231}
232
233/**
234 * ali_set_dmamode - set initial DMA mode data
235 * @ap: ATA interface
236 * @adev: ATA device
237 *
Bartlomiej Zolnierkiewiczd8b3d8c2010-01-18 18:14:05 +0100238 * Program the ALi registers for DMA mode.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400239 */
240
241static void ali_set_dmamode(struct ata_port *ap, struct ata_device *adev)
242{
243 static u8 udma_timing[7] = { 0xC, 0xB, 0xA, 0x9, 0x8, 0xF, 0xD };
244 struct ata_device *pair = ata_dev_pair(adev);
245 struct ata_timing t;
246 unsigned long T = 1000000000 / 33333; /* PCI clock based */
247 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
248
249
250 if (adev->class == ATA_DEV_ATA)
251 ali_fifo_control(ap, adev, 0x08);
252
253 if (adev->dma_mode >= XFER_UDMA_0) {
254 ali_program_modes(ap, adev, NULL, udma_timing[adev->dma_mode - XFER_UDMA_0]);
255 if (adev->dma_mode >= XFER_UDMA_3) {
256 u8 reg4b;
257 pci_read_config_byte(pdev, 0x4B, &reg4b);
258 reg4b |= 1;
259 pci_write_config_byte(pdev, 0x4B, reg4b);
260 }
261 } else {
262 ata_timing_compute(adev, adev->dma_mode, &t, T, 1);
263 if (pair) {
264 struct ata_timing p;
265 ata_timing_compute(pair, pair->pio_mode, &p, T, 1);
266 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
267 if (pair->dma_mode) {
268 ata_timing_compute(pair, pair->dma_mode, &p, T, 1);
269 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
270 }
271 }
272 ali_program_modes(ap, adev, &t, 0);
273 }
274}
275
276/**
Tejun Heo8243e632008-04-03 14:40:55 +0900277 * ali_warn_atapi_dma - Warn about ATAPI DMA disablement
278 * @adev: Device
279 *
280 * Whine about ATAPI DMA disablement if @adev is an ATAPI device.
281 * Can be used as ->dev_config.
282 */
283
284static void ali_warn_atapi_dma(struct ata_device *adev)
285{
286 struct ata_eh_context *ehc = &adev->link->eh_context;
287 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
288
289 if (print_info && adev->class == ATA_DEV_ATAPI && !ali_atapi_dma) {
Joe Perchesa9a79df2011-04-15 15:51:59 -0700290 ata_dev_warn(adev,
291 "WARNING: ATAPI DMA disabled for reliability issues. It can be enabled\n");
292 ata_dev_warn(adev,
293 "WARNING: via pata_ali.atapi_dma modparam or corresponding sysfs node.\n");
Tejun Heo8243e632008-04-03 14:40:55 +0900294 }
295}
296
297/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400298 * ali_lock_sectors - Keep older devices to 255 sector mode
Jeff Garzik669a5db2006-08-29 18:12:40 -0400299 * @adev: Device
300 *
301 * Called during the bus probe for each device that is found. We use
302 * this call to lock the sector count of the device to 255 or less on
303 * older ALi controllers. If we didn't do this then large I/O's would
304 * require LBA48 commands which the older ALi requires are issued by
305 * slower PIO methods
306 */
307
Alancd0d3bb2007-03-02 00:56:15 +0000308static void ali_lock_sectors(struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400309{
310 adev->max_sectors = 255;
Tejun Heo8243e632008-04-03 14:40:55 +0900311 ali_warn_atapi_dma(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400312}
313
Alan Cox498222f2007-11-19 14:37:58 +0000314/**
315 * ali_check_atapi_dma - DMA check for most ALi controllers
316 * @adev: Device
317 *
318 * Called to decide whether commands should be sent by DMA or PIO
319 */
Jeff Garzik2541d0c2007-11-23 21:08:42 -0500320
Alan Cox498222f2007-11-19 14:37:58 +0000321static int ali_check_atapi_dma(struct ata_queued_cmd *qc)
322{
Tejun Heo8243e632008-04-03 14:40:55 +0900323 if (!ali_atapi_dma) {
324 /* FIXME: pata_ali can't do ATAPI DMA reliably but the
325 * IDE alim15x3 driver can. I tried lots of things
326 * but couldn't find what the actual difference was.
327 * If you got an idea, please write it to
328 * linux-ide@vger.kernel.org and cc htejun@gmail.com.
329 *
330 * Disable ATAPI DMA for now.
331 */
332 return -EOPNOTSUPP;
333 }
334
Alan Cox498222f2007-11-19 14:37:58 +0000335 /* If its not a media command, its not worth it */
Tejun Heo4a38e732008-03-11 11:35:00 +0900336 if (atapi_cmd_type(qc->cdb[0]) == ATAPI_MISC)
Alan Cox498222f2007-11-19 14:37:58 +0000337 return -EOPNOTSUPP;
338 return 0;
339}
340
Alan Coxfc809022009-01-05 14:13:53 +0000341static void ali_c2_c3_postreset(struct ata_link *link, unsigned int *classes)
342{
343 u8 r;
344 int port_bit = 4 << link->ap->port_no;
345
346 /* If our bridge is an ALI 1533 then do the extra work */
Andrew Mortonbc42b242009-01-14 16:48:42 -0800347 if (ali_isa_bridge) {
Alan Coxfc809022009-01-05 14:13:53 +0000348 /* Tristate and re-enable the bus signals */
Andrew Mortonbc42b242009-01-14 16:48:42 -0800349 pci_read_config_byte(ali_isa_bridge, 0x58, &r);
Alan Coxfc809022009-01-05 14:13:53 +0000350 r &= ~port_bit;
Andrew Mortonbc42b242009-01-14 16:48:42 -0800351 pci_write_config_byte(ali_isa_bridge, 0x58, r);
Alan Coxfc809022009-01-05 14:13:53 +0000352 r |= port_bit;
Andrew Mortonbc42b242009-01-14 16:48:42 -0800353 pci_write_config_byte(ali_isa_bridge, 0x58, r);
Alan Coxfc809022009-01-05 14:13:53 +0000354 }
355 ata_sff_postreset(link, classes);
356}
357
Jeff Garzik669a5db2006-08-29 18:12:40 -0400358static struct scsi_host_template ali_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900359 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400360};
361
362/*
363 * Port operations for PIO only ALi
364 */
365
366static struct ata_port_operations ali_early_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900367 .inherits = &ata_sff_port_ops,
Alan Coxb723d142007-03-26 21:43:37 -0800368 .cable_detect = ata_cable_40wire,
Tejun Heo029cfd62008-03-25 12:22:49 +0900369 .set_piomode = ali_set_piomode,
Alan Cox871af122009-01-05 14:16:39 +0000370 .sff_data_xfer = ata_sff_data_xfer32,
Tejun Heo029cfd62008-03-25 12:22:49 +0900371};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400372
Tejun Heo029cfd62008-03-25 12:22:49 +0900373static const struct ata_port_operations ali_dma_base_ops = {
Alan Cox871af122009-01-05 14:16:39 +0000374 .inherits = &ata_bmdma32_port_ops,
Tejun Heo029cfd62008-03-25 12:22:49 +0900375 .set_piomode = ali_set_piomode,
376 .set_dmamode = ali_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400377};
378
379/*
380 * Port operations for DMA capable ALi without cable
381 * detect
382 */
383static struct ata_port_operations ali_20_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900384 .inherits = &ali_dma_base_ops,
Alan Coxb723d142007-03-26 21:43:37 -0800385 .cable_detect = ata_cable_40wire,
Tejun Heo029cfd62008-03-25 12:22:49 +0900386 .mode_filter = ali_20_filter,
387 .check_atapi_dma = ali_check_atapi_dma,
388 .dev_config = ali_lock_sectors,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400389};
390
391/*
392 * Port operations for DMA capable ALi with cable detect
393 */
394static struct ata_port_operations ali_c2_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900395 .inherits = &ali_dma_base_ops,
Alan Cox498222f2007-11-19 14:37:58 +0000396 .check_atapi_dma = ali_check_atapi_dma,
Alan Coxb723d142007-03-26 21:43:37 -0800397 .cable_detect = ali_c2_cable_detect,
Tejun Heo029cfd62008-03-25 12:22:49 +0900398 .dev_config = ali_lock_sectors,
Alan Coxfc809022009-01-05 14:13:53 +0000399 .postreset = ali_c2_c3_postreset,
400};
401
402/*
403 * Port operations for DMA capable ALi with cable detect
404 */
405static struct ata_port_operations ali_c4_port_ops = {
406 .inherits = &ali_dma_base_ops,
407 .check_atapi_dma = ali_check_atapi_dma,
408 .cable_detect = ali_c2_cable_detect,
409 .dev_config = ali_lock_sectors,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400410};
411
412/*
413 * Port operations for DMA capable ALi with cable detect and LBA48
414 */
415static struct ata_port_operations ali_c5_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900416 .inherits = &ali_dma_base_ops,
Alan Cox498222f2007-11-19 14:37:58 +0000417 .check_atapi_dma = ali_check_atapi_dma,
Tejun Heo8243e632008-04-03 14:40:55 +0900418 .dev_config = ali_warn_atapi_dma,
Alan Coxb723d142007-03-26 21:43:37 -0800419 .cable_detect = ali_c2_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400420};
421
Alan34d8dfb2006-11-22 17:26:06 +0000422
423/**
424 * ali_init_chipset - chip setup function
425 * @pdev: PCI device of ATA controller
426 *
427 * Perform the setup on the device that must be done both at boot
428 * and at resume time.
429 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500430
Alan34d8dfb2006-11-22 17:26:06 +0000431static void ali_init_chipset(struct pci_dev *pdev)
432{
Auke Kok44c10132007-06-08 15:46:36 -0700433 u8 tmp;
Alan Cox1b2c3572009-01-05 14:13:22 +0000434 struct pci_dev *north;
Alan34d8dfb2006-11-22 17:26:06 +0000435
Alan34d8dfb2006-11-22 17:26:06 +0000436 /*
437 * The chipset revision selects the driver operations and
438 * mode data.
439 */
440
Alan Cox1b2c3572009-01-05 14:13:22 +0000441 if (pdev->revision <= 0x20) {
442 pci_read_config_byte(pdev, 0x53, &tmp);
443 tmp |= 0x03;
444 pci_write_config_byte(pdev, 0x53, tmp);
445 } else {
446 pci_read_config_byte(pdev, 0x4a, &tmp);
447 pci_write_config_byte(pdev, 0x4a, tmp | 0x20);
Alan34d8dfb2006-11-22 17:26:06 +0000448 pci_read_config_byte(pdev, 0x4B, &tmp);
Alan Cox1b2c3572009-01-05 14:13:22 +0000449 if (pdev->revision < 0xC2)
450 /* 1543-E/F, 1543C-C, 1543C-D, 1543C-E */
451 /* Clear CD-ROM DMA write bit */
452 tmp &= 0x7F;
453 /* Cable and UDMA */
Alan Coxd6250a02009-11-30 13:23:05 +0000454 if (pdev->revision >= 0xc2)
455 tmp |= 0x01;
456 pci_write_config_byte(pdev, 0x4B, tmp | 0x08);
Alan Cox1b2c3572009-01-05 14:13:22 +0000457 /*
458 * CD_ROM DMA on (0x53 bit 0). Enable this even if we want
459 * to use PIO. 0x53 bit 1 (rev 20 only) - enable FIFO control
460 * via 0x54/55.
461 */
462 pci_read_config_byte(pdev, 0x53, &tmp);
463 if (pdev->revision >= 0xc7)
464 tmp |= 0x03;
465 else
466 tmp |= 0x01; /* CD_ROM enable for DMA */
467 pci_write_config_byte(pdev, 0x53, tmp);
Alan34d8dfb2006-11-22 17:26:06 +0000468 }
Alan8e42a5a2006-12-04 16:36:05 +0000469 north = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
Andrew Mortonbc42b242009-01-14 16:48:42 -0800470 if (north && north->vendor == PCI_VENDOR_ID_AL && ali_isa_bridge) {
Alan34d8dfb2006-11-22 17:26:06 +0000471 /* Configure the ALi bridge logic. For non ALi rely on BIOS.
472 Set the south bridge enable bit */
Andrew Mortonbc42b242009-01-14 16:48:42 -0800473 pci_read_config_byte(ali_isa_bridge, 0x79, &tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700474 if (pdev->revision == 0xC2)
Andrew Mortonbc42b242009-01-14 16:48:42 -0800475 pci_write_config_byte(ali_isa_bridge, 0x79, tmp | 0x04);
Auke Kok44c10132007-06-08 15:46:36 -0700476 else if (pdev->revision > 0xC2 && pdev->revision < 0xC5)
Andrew Mortonbc42b242009-01-14 16:48:42 -0800477 pci_write_config_byte(ali_isa_bridge, 0x79, tmp | 0x02);
Alan34d8dfb2006-11-22 17:26:06 +0000478 }
Alan34d8dfb2006-11-22 17:26:06 +0000479 pci_dev_put(north);
Tejun Heo9363c382008-04-07 22:47:16 +0900480 ata_pci_bmdma_clear_simplex(pdev);
Alan34d8dfb2006-11-22 17:26:06 +0000481}
Jeff Garzik669a5db2006-08-29 18:12:40 -0400482/**
483 * ali_init_one - discovery callback
484 * @pdev: PCI device ID
485 * @id: PCI table info
486 *
487 * An ALi IDE interface has been discovered. Figure out what revision
488 * and perform configuration work before handing it to the ATA layer
489 */
490
491static int ali_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
492{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200493 static const struct ata_port_info info_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400494 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100495 .pio_mask = ATA_PIO4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400496 .port_ops = &ali_early_port_ops
497 };
498 /* Revision 0x20 added DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200499 static const struct ata_port_info info_20 = {
Alan Coxa3cb9002009-05-13 15:02:27 +0100500 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48 |
501 ATA_FLAG_IGN_SIMPLEX,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100502 .pio_mask = ATA_PIO4,
503 .mwdma_mask = ATA_MWDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400504 .port_ops = &ali_20_port_ops
505 };
506 /* Revision 0x20 with support logic added UDMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200507 static const struct ata_port_info info_20_udma = {
Alan Coxa3cb9002009-05-13 15:02:27 +0100508 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48 |
509 ATA_FLAG_IGN_SIMPLEX,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100510 .pio_mask = ATA_PIO4,
511 .mwdma_mask = ATA_MWDMA2,
512 .udma_mask = ATA_UDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400513 .port_ops = &ali_20_port_ops
514 };
515 /* Revision 0xC2 adds UDMA66 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200516 static const struct ata_port_info info_c2 = {
Alan Coxa3cb9002009-05-13 15:02:27 +0100517 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48 |
518 ATA_FLAG_IGN_SIMPLEX,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100519 .pio_mask = ATA_PIO4,
520 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400521 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400522 .port_ops = &ali_c2_port_ops
523 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400524 /* Revision 0xC3 is UDMA66 for now */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200525 static const struct ata_port_info info_c3 = {
Alan Coxa3cb9002009-05-13 15:02:27 +0100526 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48 |
527 ATA_FLAG_IGN_SIMPLEX,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100528 .pio_mask = ATA_PIO4,
529 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400530 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400531 .port_ops = &ali_c2_port_ops
532 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400533 /* Revision 0xC4 is UDMA100 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200534 static const struct ata_port_info info_c4 = {
Alan Coxa3cb9002009-05-13 15:02:27 +0100535 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48 |
536 ATA_FLAG_IGN_SIMPLEX,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100537 .pio_mask = ATA_PIO4,
538 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400539 .udma_mask = ATA_UDMA5,
Alan Coxfc809022009-01-05 14:13:53 +0000540 .port_ops = &ali_c4_port_ops
Jeff Garzik669a5db2006-08-29 18:12:40 -0400541 };
542 /* Revision 0xC5 is UDMA133 with LBA48 DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200543 static const struct ata_port_info info_c5 = {
Alan Coxa3cb9002009-05-13 15:02:27 +0100544 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_IGN_SIMPLEX,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100545 .pio_mask = ATA_PIO4,
546 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400547 .udma_mask = ATA_UDMA6,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400548 .port_ops = &ali_c5_port_ops
549 };
550
Tejun Heo1626aeb2007-05-04 12:43:58 +0200551 const struct ata_port_info *ppi[] = { NULL, NULL };
Auke Kok44c10132007-06-08 15:46:36 -0700552 u8 tmp;
Tejun Heof08048e2008-03-25 12:22:47 +0900553 int rc;
554
555 rc = pcim_enable_device(pdev);
556 if (rc)
557 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400558
Jeff Garzik669a5db2006-08-29 18:12:40 -0400559 /*
560 * The chipset revision selects the driver operations and
561 * mode data.
562 */
563
Auke Kok44c10132007-06-08 15:46:36 -0700564 if (pdev->revision < 0x20) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200565 ppi[0] = &info_early;
Auke Kok44c10132007-06-08 15:46:36 -0700566 } else if (pdev->revision < 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200567 ppi[0] = &info_20;
Auke Kok44c10132007-06-08 15:46:36 -0700568 } else if (pdev->revision == 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200569 ppi[0] = &info_c2;
Auke Kok44c10132007-06-08 15:46:36 -0700570 } else if (pdev->revision == 0xC3) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200571 ppi[0] = &info_c3;
Auke Kok44c10132007-06-08 15:46:36 -0700572 } else if (pdev->revision == 0xC4) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200573 ppi[0] = &info_c4;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400574 } else
Tejun Heo1626aeb2007-05-04 12:43:58 +0200575 ppi[0] = &info_c5;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400576
Alan34d8dfb2006-11-22 17:26:06 +0000577 ali_init_chipset(pdev);
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500578
Andrew Mortonbc42b242009-01-14 16:48:42 -0800579 if (ali_isa_bridge && pdev->revision >= 0x20 && pdev->revision < 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000580 /* Are we paired with a UDMA capable chip */
Andrew Mortonbc42b242009-01-14 16:48:42 -0800581 pci_read_config_byte(ali_isa_bridge, 0x5E, &tmp);
Alan34d8dfb2006-11-22 17:26:06 +0000582 if ((tmp & 0x1E) == 0x12)
Tejun Heo1626aeb2007-05-04 12:43:58 +0200583 ppi[0] = &info_20_udma;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400584 }
Ben Dookse8389f02008-07-24 16:38:06 +0100585
Tejun Heo1c5afdf2010-05-19 22:10:22 +0200586 if (!ppi[0]->mwdma_mask && !ppi[0]->udma_mask)
587 return ata_pci_sff_init_one(pdev, ppi, &ali_sht, NULL, 0);
588 else
589 return ata_pci_bmdma_init_one(pdev, ppi, &ali_sht, NULL, 0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400590}
591
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200592#ifdef CONFIG_PM_SLEEP
Alan34d8dfb2006-11-22 17:26:06 +0000593static int ali_reinit_one(struct pci_dev *pdev)
594{
Jingoo Han0a86e1c2013-06-03 14:05:36 +0900595 struct ata_host *host = pci_get_drvdata(pdev);
Tejun Heof08048e2008-03-25 12:22:47 +0900596 int rc;
597
598 rc = ata_pci_device_do_resume(pdev);
599 if (rc)
600 return rc;
Alan34d8dfb2006-11-22 17:26:06 +0000601 ali_init_chipset(pdev);
Tejun Heof08048e2008-03-25 12:22:47 +0900602 ata_host_resume(host);
603 return 0;
Alan34d8dfb2006-11-22 17:26:06 +0000604}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900605#endif
Alan34d8dfb2006-11-22 17:26:06 +0000606
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400607static const struct pci_device_id ali[] = {
608 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5228), },
609 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5229), },
610
611 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400612};
613
614static struct pci_driver ali_pci_driver = {
615 .name = DRV_NAME,
616 .id_table = ali,
617 .probe = ali_init_one,
Alan34d8dfb2006-11-22 17:26:06 +0000618 .remove = ata_pci_remove_one,
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200619#ifdef CONFIG_PM_SLEEP
Alan34d8dfb2006-11-22 17:26:06 +0000620 .suspend = ata_pci_device_suspend,
621 .resume = ali_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900622#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400623};
624
625static int __init ali_init(void)
626{
Alan Cox1b2c3572009-01-05 14:13:22 +0000627 int ret;
Andrew Mortonbc42b242009-01-14 16:48:42 -0800628 ali_isa_bridge = pci_get_device(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1533, NULL);
Alan Cox1b2c3572009-01-05 14:13:22 +0000629
630 ret = pci_register_driver(&ali_pci_driver);
631 if (ret < 0)
Andrew Mortonbc42b242009-01-14 16:48:42 -0800632 pci_dev_put(ali_isa_bridge);
Alan Cox1b2c3572009-01-05 14:13:22 +0000633 return ret;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400634}
635
636
637static void __exit ali_exit(void)
638{
639 pci_unregister_driver(&ali_pci_driver);
Andrew Mortonbc42b242009-01-14 16:48:42 -0800640 pci_dev_put(ali_isa_bridge);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400641}
642
643
644MODULE_AUTHOR("Alan Cox");
645MODULE_DESCRIPTION("low-level driver for ALi PATA");
646MODULE_LICENSE("GPL");
647MODULE_DEVICE_TABLE(pci, ali);
648MODULE_VERSION(DRV_VERSION);
649
650module_init(ali_init);
651module_exit(ali_exit);