blob: d2ea2db61e526fda331e005482337a7944d4fd69 [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 Cox1b2c3572009-01-05 14:13:22 +000038#define DRV_VERSION "0.7.7"
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
Alan Cox1b2c3572009-01-05 14:13:22 +000044static struct pci_dev *isa_bridge;
45
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 {
59 .ident = "Toshiba Satelite S1800-814",
60 .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 Heo9363c382008-04-07 22:47:16 +0900127 return ata_bmdma_mode_filter(adev, 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);
154 if (on)
155 fifo |= (on << shift);
156 pci_write_config_byte(pdev, pio_fifo, fifo);
157}
158
159/**
160 * ali_program_modes - load mode registers
161 * @ap: ALi channel to load
162 * @adev: Device the timing is for
163 * @cmd: Command timing
164 * @data: Data timing
165 * @ultra: UDMA timing or zero for off
166 *
167 * Loads the timing registers for cmd/data and disable UDMA if
168 * ultra is zero. If ultra is set then load and enable the UDMA
169 * timing but do not touch the command/data timing.
170 */
171
172static void ali_program_modes(struct ata_port *ap, struct ata_device *adev, struct ata_timing *t, u8 ultra)
173{
174 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
175 int cas = 0x58 + 4 * ap->port_no; /* Command timing */
176 int cbt = 0x59 + 4 * ap->port_no; /* Command timing */
177 int drwt = 0x5A + 4 * ap->port_no + adev->devno; /* R/W timing */
178 int udmat = 0x56 + ap->port_no; /* UDMA timing */
179 int shift = 4 * adev->devno;
180 u8 udma;
181
182 if (t != NULL) {
Harvey Harrison07633b52008-05-14 16:17:00 -0700183 t->setup = clamp_val(t->setup, 1, 8) & 7;
184 t->act8b = clamp_val(t->act8b, 1, 8) & 7;
185 t->rec8b = clamp_val(t->rec8b, 1, 16) & 15;
186 t->active = clamp_val(t->active, 1, 8) & 7;
187 t->recover = clamp_val(t->recover, 1, 16) & 15;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400188
189 pci_write_config_byte(pdev, cas, t->setup);
190 pci_write_config_byte(pdev, cbt, (t->act8b << 4) | t->rec8b);
191 pci_write_config_byte(pdev, drwt, (t->active << 4) | t->recover);
192 }
193
194 /* Set up the UDMA enable */
195 pci_read_config_byte(pdev, udmat, &udma);
196 udma &= ~(0x0F << shift);
197 udma |= ultra << shift;
198 pci_write_config_byte(pdev, udmat, udma);
199}
200
201/**
202 * ali_set_piomode - set initial PIO mode data
203 * @ap: ATA interface
204 * @adev: ATA device
205 *
206 * Program the ALi registers for PIO mode. FIXME: add timings for
207 * PIO5.
208 */
209
210static void ali_set_piomode(struct ata_port *ap, struct ata_device *adev)
211{
212 struct ata_device *pair = ata_dev_pair(adev);
213 struct ata_timing t;
214 unsigned long T = 1000000000 / 33333; /* PCI clock based */
215
216 ata_timing_compute(adev, adev->pio_mode, &t, T, 1);
217 if (pair) {
218 struct ata_timing p;
219 ata_timing_compute(pair, pair->pio_mode, &p, T, 1);
220 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
221 if (pair->dma_mode) {
222 ata_timing_compute(pair, pair->dma_mode, &p, T, 1);
223 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
224 }
225 }
226
227 /* PIO FIFO is only permitted on ATA disk */
228 if (adev->class != ATA_DEV_ATA)
229 ali_fifo_control(ap, adev, 0x00);
230 ali_program_modes(ap, adev, &t, 0);
231 if (adev->class == ATA_DEV_ATA)
232 ali_fifo_control(ap, adev, 0x05);
233
234}
235
236/**
237 * ali_set_dmamode - set initial DMA mode data
238 * @ap: ATA interface
239 * @adev: ATA device
240 *
241 * FIXME: MWDMA timings
242 */
243
244static void ali_set_dmamode(struct ata_port *ap, struct ata_device *adev)
245{
246 static u8 udma_timing[7] = { 0xC, 0xB, 0xA, 0x9, 0x8, 0xF, 0xD };
247 struct ata_device *pair = ata_dev_pair(adev);
248 struct ata_timing t;
249 unsigned long T = 1000000000 / 33333; /* PCI clock based */
250 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
251
252
253 if (adev->class == ATA_DEV_ATA)
254 ali_fifo_control(ap, adev, 0x08);
255
256 if (adev->dma_mode >= XFER_UDMA_0) {
257 ali_program_modes(ap, adev, NULL, udma_timing[adev->dma_mode - XFER_UDMA_0]);
258 if (adev->dma_mode >= XFER_UDMA_3) {
259 u8 reg4b;
260 pci_read_config_byte(pdev, 0x4B, &reg4b);
261 reg4b |= 1;
262 pci_write_config_byte(pdev, 0x4B, reg4b);
263 }
264 } else {
265 ata_timing_compute(adev, adev->dma_mode, &t, T, 1);
266 if (pair) {
267 struct ata_timing p;
268 ata_timing_compute(pair, pair->pio_mode, &p, T, 1);
269 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
270 if (pair->dma_mode) {
271 ata_timing_compute(pair, pair->dma_mode, &p, T, 1);
272 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
273 }
274 }
275 ali_program_modes(ap, adev, &t, 0);
276 }
277}
278
279/**
Tejun Heo8243e632008-04-03 14:40:55 +0900280 * ali_warn_atapi_dma - Warn about ATAPI DMA disablement
281 * @adev: Device
282 *
283 * Whine about ATAPI DMA disablement if @adev is an ATAPI device.
284 * Can be used as ->dev_config.
285 */
286
287static void ali_warn_atapi_dma(struct ata_device *adev)
288{
289 struct ata_eh_context *ehc = &adev->link->eh_context;
290 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
291
292 if (print_info && adev->class == ATA_DEV_ATAPI && !ali_atapi_dma) {
293 ata_dev_printk(adev, KERN_WARNING,
294 "WARNING: ATAPI DMA disabled for reliablity issues. It can be enabled\n");
295 ata_dev_printk(adev, KERN_WARNING,
296 "WARNING: via pata_ali.atapi_dma modparam or corresponding sysfs node.\n");
297 }
298}
299
300/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400301 * ali_lock_sectors - Keep older devices to 255 sector mode
Jeff Garzik669a5db2006-08-29 18:12:40 -0400302 * @adev: Device
303 *
304 * Called during the bus probe for each device that is found. We use
305 * this call to lock the sector count of the device to 255 or less on
306 * older ALi controllers. If we didn't do this then large I/O's would
307 * require LBA48 commands which the older ALi requires are issued by
308 * slower PIO methods
309 */
310
Alancd0d3bb2007-03-02 00:56:15 +0000311static void ali_lock_sectors(struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400312{
313 adev->max_sectors = 255;
Tejun Heo8243e632008-04-03 14:40:55 +0900314 ali_warn_atapi_dma(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400315}
316
Alan Cox498222f2007-11-19 14:37:58 +0000317/**
318 * ali_check_atapi_dma - DMA check for most ALi controllers
319 * @adev: Device
320 *
321 * Called to decide whether commands should be sent by DMA or PIO
322 */
Jeff Garzik2541d0c2007-11-23 21:08:42 -0500323
Alan Cox498222f2007-11-19 14:37:58 +0000324static int ali_check_atapi_dma(struct ata_queued_cmd *qc)
325{
Tejun Heo8243e632008-04-03 14:40:55 +0900326 if (!ali_atapi_dma) {
327 /* FIXME: pata_ali can't do ATAPI DMA reliably but the
328 * IDE alim15x3 driver can. I tried lots of things
329 * but couldn't find what the actual difference was.
330 * If you got an idea, please write it to
331 * linux-ide@vger.kernel.org and cc htejun@gmail.com.
332 *
333 * Disable ATAPI DMA for now.
334 */
335 return -EOPNOTSUPP;
336 }
337
Alan Cox498222f2007-11-19 14:37:58 +0000338 /* If its not a media command, its not worth it */
Tejun Heo4a38e732008-03-11 11:35:00 +0900339 if (atapi_cmd_type(qc->cdb[0]) == ATAPI_MISC)
Alan Cox498222f2007-11-19 14:37:58 +0000340 return -EOPNOTSUPP;
341 return 0;
342}
343
Jeff Garzik669a5db2006-08-29 18:12:40 -0400344static struct scsi_host_template ali_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900345 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400346};
347
348/*
349 * Port operations for PIO only ALi
350 */
351
352static struct ata_port_operations ali_early_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900353 .inherits = &ata_sff_port_ops,
Alan Coxb723d142007-03-26 21:43:37 -0800354 .cable_detect = ata_cable_40wire,
Tejun Heo029cfd62008-03-25 12:22:49 +0900355 .set_piomode = ali_set_piomode,
356};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400357
Tejun Heo029cfd62008-03-25 12:22:49 +0900358static const struct ata_port_operations ali_dma_base_ops = {
359 .inherits = &ata_bmdma_port_ops,
360 .set_piomode = ali_set_piomode,
361 .set_dmamode = ali_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400362};
363
364/*
365 * Port operations for DMA capable ALi without cable
366 * detect
367 */
368static struct ata_port_operations ali_20_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900369 .inherits = &ali_dma_base_ops,
Alan Coxb723d142007-03-26 21:43:37 -0800370 .cable_detect = ata_cable_40wire,
Tejun Heo029cfd62008-03-25 12:22:49 +0900371 .mode_filter = ali_20_filter,
372 .check_atapi_dma = ali_check_atapi_dma,
373 .dev_config = ali_lock_sectors,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400374};
375
376/*
377 * Port operations for DMA capable ALi with cable detect
378 */
379static struct ata_port_operations ali_c2_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900380 .inherits = &ali_dma_base_ops,
Alan Cox498222f2007-11-19 14:37:58 +0000381 .check_atapi_dma = ali_check_atapi_dma,
Alan Coxb723d142007-03-26 21:43:37 -0800382 .cable_detect = ali_c2_cable_detect,
Tejun Heo029cfd62008-03-25 12:22:49 +0900383 .dev_config = ali_lock_sectors,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400384};
385
386/*
387 * Port operations for DMA capable ALi with cable detect and LBA48
388 */
389static struct ata_port_operations ali_c5_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900390 .inherits = &ali_dma_base_ops,
Alan Cox498222f2007-11-19 14:37:58 +0000391 .check_atapi_dma = ali_check_atapi_dma,
Tejun Heo8243e632008-04-03 14:40:55 +0900392 .dev_config = ali_warn_atapi_dma,
Alan Coxb723d142007-03-26 21:43:37 -0800393 .cable_detect = ali_c2_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400394};
395
Alan34d8dfb2006-11-22 17:26:06 +0000396
397/**
398 * ali_init_chipset - chip setup function
399 * @pdev: PCI device of ATA controller
400 *
401 * Perform the setup on the device that must be done both at boot
402 * and at resume time.
403 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500404
Alan34d8dfb2006-11-22 17:26:06 +0000405static void ali_init_chipset(struct pci_dev *pdev)
406{
Auke Kok44c10132007-06-08 15:46:36 -0700407 u8 tmp;
Alan Cox1b2c3572009-01-05 14:13:22 +0000408 struct pci_dev *north;
Alan34d8dfb2006-11-22 17:26:06 +0000409
Alan34d8dfb2006-11-22 17:26:06 +0000410 /*
411 * The chipset revision selects the driver operations and
412 * mode data.
413 */
414
Alan Cox1b2c3572009-01-05 14:13:22 +0000415 if (pdev->revision <= 0x20) {
416 pci_read_config_byte(pdev, 0x53, &tmp);
417 tmp |= 0x03;
418 pci_write_config_byte(pdev, 0x53, tmp);
419 } else {
420 pci_read_config_byte(pdev, 0x4a, &tmp);
421 pci_write_config_byte(pdev, 0x4a, tmp | 0x20);
Alan34d8dfb2006-11-22 17:26:06 +0000422 pci_read_config_byte(pdev, 0x4B, &tmp);
Alan Cox1b2c3572009-01-05 14:13:22 +0000423 if (pdev->revision < 0xC2)
424 /* 1543-E/F, 1543C-C, 1543C-D, 1543C-E */
425 /* Clear CD-ROM DMA write bit */
426 tmp &= 0x7F;
427 /* Cable and UDMA */
428 pci_write_config_byte(pdev, 0x4B, tmp | 0x09);
429 /*
430 * CD_ROM DMA on (0x53 bit 0). Enable this even if we want
431 * to use PIO. 0x53 bit 1 (rev 20 only) - enable FIFO control
432 * via 0x54/55.
433 */
434 pci_read_config_byte(pdev, 0x53, &tmp);
435 if (pdev->revision >= 0xc7)
436 tmp |= 0x03;
437 else
438 tmp |= 0x01; /* CD_ROM enable for DMA */
439 pci_write_config_byte(pdev, 0x53, tmp);
Alan34d8dfb2006-11-22 17:26:06 +0000440 }
Alan8e42a5a2006-12-04 16:36:05 +0000441 north = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
Alan34d8dfb2006-11-22 17:26:06 +0000442 if (north && north->vendor == PCI_VENDOR_ID_AL && isa_bridge) {
443 /* Configure the ALi bridge logic. For non ALi rely on BIOS.
444 Set the south bridge enable bit */
445 pci_read_config_byte(isa_bridge, 0x79, &tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700446 if (pdev->revision == 0xC2)
Alan34d8dfb2006-11-22 17:26:06 +0000447 pci_write_config_byte(isa_bridge, 0x79, tmp | 0x04);
Auke Kok44c10132007-06-08 15:46:36 -0700448 else if (pdev->revision > 0xC2 && pdev->revision < 0xC5)
Alan34d8dfb2006-11-22 17:26:06 +0000449 pci_write_config_byte(isa_bridge, 0x79, tmp | 0x02);
450 }
Alan34d8dfb2006-11-22 17:26:06 +0000451 pci_dev_put(north);
Tejun Heo9363c382008-04-07 22:47:16 +0900452 ata_pci_bmdma_clear_simplex(pdev);
Alan34d8dfb2006-11-22 17:26:06 +0000453}
Jeff Garzik669a5db2006-08-29 18:12:40 -0400454/**
455 * ali_init_one - discovery callback
456 * @pdev: PCI device ID
457 * @id: PCI table info
458 *
459 * An ALi IDE interface has been discovered. Figure out what revision
460 * and perform configuration work before handing it to the ATA layer
461 */
462
463static int ali_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
464{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200465 static const struct ata_port_info info_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400466 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400467 .pio_mask = 0x1f,
468 .port_ops = &ali_early_port_ops
469 };
470 /* Revision 0x20 added DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200471 static const struct ata_port_info info_20 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400472 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400473 .pio_mask = 0x1f,
474 .mwdma_mask = 0x07,
475 .port_ops = &ali_20_port_ops
476 };
477 /* Revision 0x20 with support logic added UDMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200478 static const struct ata_port_info info_20_udma = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400479 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400480 .pio_mask = 0x1f,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400481 .mwdma_mask = 0x07,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400482 .udma_mask = 0x07, /* UDMA33 */
483 .port_ops = &ali_20_port_ops
484 };
485 /* Revision 0xC2 adds UDMA66 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200486 static const struct ata_port_info info_c2 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400487 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400488 .pio_mask = 0x1f,
489 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400490 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400491 .port_ops = &ali_c2_port_ops
492 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400493 /* Revision 0xC3 is UDMA66 for now */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200494 static const struct ata_port_info info_c3 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400495 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400496 .pio_mask = 0x1f,
497 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400498 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400499 .port_ops = &ali_c2_port_ops
500 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400501 /* Revision 0xC4 is UDMA100 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200502 static const struct ata_port_info info_c4 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400503 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400504 .pio_mask = 0x1f,
505 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400506 .udma_mask = ATA_UDMA5,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400507 .port_ops = &ali_c2_port_ops
508 };
509 /* Revision 0xC5 is UDMA133 with LBA48 DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200510 static const struct ata_port_info info_c5 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400511 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400512 .pio_mask = 0x1f,
513 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400514 .udma_mask = ATA_UDMA6,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400515 .port_ops = &ali_c5_port_ops
516 };
517
Tejun Heo1626aeb2007-05-04 12:43:58 +0200518 const struct ata_port_info *ppi[] = { NULL, NULL };
Auke Kok44c10132007-06-08 15:46:36 -0700519 u8 tmp;
Tejun Heof08048e2008-03-25 12:22:47 +0900520 int rc;
521
522 rc = pcim_enable_device(pdev);
523 if (rc)
524 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400525
Jeff Garzik669a5db2006-08-29 18:12:40 -0400526 /*
527 * The chipset revision selects the driver operations and
528 * mode data.
529 */
530
Auke Kok44c10132007-06-08 15:46:36 -0700531 if (pdev->revision < 0x20) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200532 ppi[0] = &info_early;
Auke Kok44c10132007-06-08 15:46:36 -0700533 } else if (pdev->revision < 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200534 ppi[0] = &info_20;
Auke Kok44c10132007-06-08 15:46:36 -0700535 } else if (pdev->revision == 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200536 ppi[0] = &info_c2;
Auke Kok44c10132007-06-08 15:46:36 -0700537 } else if (pdev->revision == 0xC3) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200538 ppi[0] = &info_c3;
Auke Kok44c10132007-06-08 15:46:36 -0700539 } else if (pdev->revision == 0xC4) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200540 ppi[0] = &info_c4;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400541 } else
Tejun Heo1626aeb2007-05-04 12:43:58 +0200542 ppi[0] = &info_c5;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400543
Alan34d8dfb2006-11-22 17:26:06 +0000544 ali_init_chipset(pdev);
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500545
Auke Kok44c10132007-06-08 15:46:36 -0700546 if (isa_bridge && pdev->revision >= 0x20 && pdev->revision < 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000547 /* Are we paired with a UDMA capable chip */
548 pci_read_config_byte(isa_bridge, 0x5E, &tmp);
549 if ((tmp & 0x1E) == 0x12)
Tejun Heo1626aeb2007-05-04 12:43:58 +0200550 ppi[0] = &info_20_udma;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400551 }
Ben Dookse8389f02008-07-24 16:38:06 +0100552
Tejun Heo9363c382008-04-07 22:47:16 +0900553 return ata_pci_sff_init_one(pdev, ppi, &ali_sht, NULL);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400554}
555
Tejun Heo438ac6d2007-03-02 17:31:26 +0900556#ifdef CONFIG_PM
Alan34d8dfb2006-11-22 17:26:06 +0000557static int ali_reinit_one(struct pci_dev *pdev)
558{
Tejun Heof08048e2008-03-25 12:22:47 +0900559 struct ata_host *host = dev_get_drvdata(&pdev->dev);
560 int rc;
561
562 rc = ata_pci_device_do_resume(pdev);
563 if (rc)
564 return rc;
Alan34d8dfb2006-11-22 17:26:06 +0000565 ali_init_chipset(pdev);
Tejun Heof08048e2008-03-25 12:22:47 +0900566 ata_host_resume(host);
567 return 0;
Alan34d8dfb2006-11-22 17:26:06 +0000568}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900569#endif
Alan34d8dfb2006-11-22 17:26:06 +0000570
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400571static const struct pci_device_id ali[] = {
572 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5228), },
573 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5229), },
574
575 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400576};
577
578static struct pci_driver ali_pci_driver = {
579 .name = DRV_NAME,
580 .id_table = ali,
581 .probe = ali_init_one,
Alan34d8dfb2006-11-22 17:26:06 +0000582 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900583#ifdef CONFIG_PM
Alan34d8dfb2006-11-22 17:26:06 +0000584 .suspend = ata_pci_device_suspend,
585 .resume = ali_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900586#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400587};
588
589static int __init ali_init(void)
590{
Alan Cox1b2c3572009-01-05 14:13:22 +0000591 int ret;
592 isa_bridge = pci_get_device(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1533, NULL);
593
594 ret = pci_register_driver(&ali_pci_driver);
595 if (ret < 0)
596 pci_dev_put(isa_bridge);
597 return ret;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400598}
599
600
601static void __exit ali_exit(void)
602{
603 pci_unregister_driver(&ali_pci_driver);
Alan Cox1b2c3572009-01-05 14:13:22 +0000604 pci_dev_put(isa_bridge);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400605}
606
607
608MODULE_AUTHOR("Alan Cox");
609MODULE_DESCRIPTION("low-level driver for ALi PATA");
610MODULE_LICENSE("GPL");
611MODULE_DEVICE_TABLE(pci, ali);
612MODULE_VERSION(DRV_VERSION);
613
614module_init(ali_init);
615module_exit(ali_exit);