blob: f3d6d9b345bafd61517c075868db7a90804a462e [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
4 * Alan Cox <alan@redhat.com>
5 *
6 * based in part upon
7 * linux/drivers/ide/pci/alim15x3.c Version 0.17 2003/01/02
8 *
9 * Copyright (C) 1998-2000 Michel Aubry, Maintainer
10 * Copyright (C) 1998-2000 Andrzej Krzysztofowicz, Maintainer
11 * Copyright (C) 1999-2000 CJ, cjtsai@ali.com.tw, Maintainer
12 *
13 * Copyright (C) 1998-2000 Andre Hedrick (andre@linux-ide.org)
14 * May be copied or modified under the terms of the GNU General Public License
15 * Copyright (C) 2002 Alan Cox <alan@redhat.com>
16 * ALi (now ULi M5228) support by Clear Zhang <Clear.Zhang@ali.com.tw>
17 *
18 * Documentation
19 * Chipset documentation available under NDA only
20 *
21 * TODO/CHECK
22 * Cannot have ATAPI on both master & slave for rev < c2 (???) but
23 * otherwise should do atapi DMA.
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/pci.h>
29#include <linux/init.h>
30#include <linux/blkdev.h>
31#include <linux/delay.h>
32#include <scsi/scsi_host.h>
33#include <linux/libata.h>
34#include <linux/dmi.h>
35
36#define DRV_NAME "pata_ali"
Jeff Garzik2a3103c2007-08-31 04:54:06 -040037#define DRV_VERSION "0.7.5"
Jeff Garzik669a5db2006-08-29 18:12:40 -040038
Adrian Bunk18922252008-04-11 20:28:27 +030039static int ali_atapi_dma = 0;
Tejun Heo8243e632008-04-03 14:40:55 +090040module_param_named(atapi_dma, ali_atapi_dma, int, 0644);
41MODULE_PARM_DESC(atapi_dma, "Enable ATAPI DMA (0=disable, 1=enable)");
42
Jeff Garzik669a5db2006-08-29 18:12:40 -040043/*
44 * Cable special cases
45 */
46
Jeff Garzik18552562007-10-03 15:15:40 -040047static const struct dmi_system_id cable_dmi_table[] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -040048 {
49 .ident = "HP Pavilion N5430",
50 .matches = {
51 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
Alan Cox5c8d5202007-07-20 15:34:49 +010052 DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
Jeff Garzik669a5db2006-08-29 18:12:40 -040053 },
54 },
Daniel Exner03e6f482007-09-11 22:28:36 +020055 {
56 .ident = "Toshiba Satelite S1800-814",
57 .matches = {
58 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
59 DMI_MATCH(DMI_PRODUCT_NAME, "S1800-814"),
60 },
61 },
Jeff Garzik669a5db2006-08-29 18:12:40 -040062 { }
63};
64
65static int ali_cable_override(struct pci_dev *pdev)
66{
67 /* Fujitsu P2000 */
68 if (pdev->subsystem_vendor == 0x10CF && pdev->subsystem_device == 0x10AF)
69 return 1;
Alan Cox8f59a132007-11-19 14:36:28 +000070 /* Mitac 8317 (Winbook-A) and relatives */
Jeff Garzik11b7bec2007-11-23 21:12:14 -050071 if (pdev->subsystem_vendor == 0x1071 && pdev->subsystem_device == 0x8317)
Alan Cox8f59a132007-11-19 14:36:28 +000072 return 1;
Jeff Garzik669a5db2006-08-29 18:12:40 -040073 /* Systems by DMI */
74 if (dmi_check_system(cable_dmi_table))
75 return 1;
76 return 0;
77}
78
79/**
80 * ali_c2_cable_detect - cable detection
81 * @ap: ATA port
82 *
83 * Perform cable detection for C2 and later revisions
84 */
85
86static int ali_c2_cable_detect(struct ata_port *ap)
87{
88 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
89 u8 ata66;
90
91 /* Certain laptops use short but suitable cables and don't
92 implement the detect logic */
93
94 if (ali_cable_override(pdev))
Alan Coxfc085152006-10-10 14:28:11 -070095 return ATA_CBL_PATA40_SHORT;
Jeff Garzik669a5db2006-08-29 18:12:40 -040096
97 /* Host view cable detect 0x4A bit 0 primary bit 1 secondary
98 Bit set for 40 pin */
99 pci_read_config_byte(pdev, 0x4A, &ata66);
100 if (ata66 & (1 << ap->port_no))
101 return ATA_CBL_PATA40;
102 else
103 return ATA_CBL_PATA80;
104}
105
106/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400107 * ali_20_filter - filter for earlier ALI DMA
108 * @ap: ALi ATA port
109 * @adev: attached device
110 *
111 * Ensure that we do not do DMA on CD devices. We may be able to
112 * fix that later on. Also ensure we do not do UDMA on WDC drives
113 */
114
Alan Coxa76b62c2007-03-09 09:34:07 -0500115static unsigned long ali_20_filter(struct ata_device *adev, unsigned long mask)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400116{
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900117 char model_num[ATA_ID_PROD_LEN + 1];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400118 /* No DMA on anything but a disk for now */
119 if (adev->class != ATA_DEV_ATA)
120 mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900121 ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
Jeff Garzik669a5db2006-08-29 18:12:40 -0400122 if (strstr(model_num, "WDC"))
123 return mask &= ~ATA_MASK_UDMA;
Alan Coxa76b62c2007-03-09 09:34:07 -0500124 return ata_pci_default_filter(adev, mask);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400125}
126
127/**
128 * ali_fifo_control - FIFO manager
129 * @ap: ALi channel to control
130 * @adev: device for FIFO control
131 * @on: 0 for off 1 for on
132 *
133 * Enable or disable the FIFO on a given device. Because of the way the
134 * ALi FIFO works it provides a boost on ATA disk but can be confused by
135 * ATAPI and we must therefore manage it.
136 */
137
138static void ali_fifo_control(struct ata_port *ap, struct ata_device *adev, int on)
139{
140 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
141 int pio_fifo = 0x54 + ap->port_no;
142 u8 fifo;
143 int shift = 4 * adev->devno;
144
145 /* ATA - FIFO on set nibble to 0x05, ATAPI - FIFO off, set nibble to
146 0x00. Not all the docs agree but the behaviour we now use is the
147 one stated in the BIOS Programming Guide */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400148
Jeff Garzik669a5db2006-08-29 18:12:40 -0400149 pci_read_config_byte(pdev, pio_fifo, &fifo);
150 fifo &= ~(0x0F << shift);
151 if (on)
152 fifo |= (on << shift);
153 pci_write_config_byte(pdev, pio_fifo, fifo);
154}
155
156/**
157 * ali_program_modes - load mode registers
158 * @ap: ALi channel to load
159 * @adev: Device the timing is for
160 * @cmd: Command timing
161 * @data: Data timing
162 * @ultra: UDMA timing or zero for off
163 *
164 * Loads the timing registers for cmd/data and disable UDMA if
165 * ultra is zero. If ultra is set then load and enable the UDMA
166 * timing but do not touch the command/data timing.
167 */
168
169static void ali_program_modes(struct ata_port *ap, struct ata_device *adev, struct ata_timing *t, u8 ultra)
170{
171 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
172 int cas = 0x58 + 4 * ap->port_no; /* Command timing */
173 int cbt = 0x59 + 4 * ap->port_no; /* Command timing */
174 int drwt = 0x5A + 4 * ap->port_no + adev->devno; /* R/W timing */
175 int udmat = 0x56 + ap->port_no; /* UDMA timing */
176 int shift = 4 * adev->devno;
177 u8 udma;
178
179 if (t != NULL) {
180 t->setup = FIT(t->setup, 1, 8) & 7;
181 t->act8b = FIT(t->act8b, 1, 8) & 7;
182 t->rec8b = FIT(t->rec8b, 1, 16) & 15;
183 t->active = FIT(t->active, 1, 8) & 7;
184 t->recover = FIT(t->recover, 1, 16) & 15;
185
186 pci_write_config_byte(pdev, cas, t->setup);
187 pci_write_config_byte(pdev, cbt, (t->act8b << 4) | t->rec8b);
188 pci_write_config_byte(pdev, drwt, (t->active << 4) | t->recover);
189 }
190
191 /* Set up the UDMA enable */
192 pci_read_config_byte(pdev, udmat, &udma);
193 udma &= ~(0x0F << shift);
194 udma |= ultra << shift;
195 pci_write_config_byte(pdev, udmat, udma);
196}
197
198/**
199 * ali_set_piomode - set initial PIO mode data
200 * @ap: ATA interface
201 * @adev: ATA device
202 *
203 * Program the ALi registers for PIO mode. FIXME: add timings for
204 * PIO5.
205 */
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 *
238 * FIXME: MWDMA timings
239 */
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) {
290 ata_dev_printk(adev, KERN_WARNING,
291 "WARNING: ATAPI DMA disabled for reliablity issues. It can be enabled\n");
292 ata_dev_printk(adev, KERN_WARNING,
293 "WARNING: via pata_ali.atapi_dma modparam or corresponding sysfs node.\n");
294 }
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
Jeff Garzik669a5db2006-08-29 18:12:40 -0400341static struct scsi_host_template ali_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900342 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400343};
344
345/*
346 * Port operations for PIO only ALi
347 */
348
349static struct ata_port_operations ali_early_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400350 .set_piomode = ali_set_piomode,
351 .tf_load = ata_tf_load,
352 .tf_read = ata_tf_read,
353 .check_status = ata_check_status,
354 .exec_command = ata_exec_command,
355 .dev_select = ata_std_dev_select,
356
357 .freeze = ata_bmdma_freeze,
358 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800359 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400360 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800361 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400362
363 .qc_prep = ata_qc_prep,
364 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400365
Tejun Heo0d5ff562007-02-01 15:06:36 +0900366 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400367
368 .irq_handler = ata_interrupt,
Tejun Heo358f9a72008-03-25 12:22:47 +0900369 .irq_clear = ata_noop_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900370 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400371
Alan Cox81ad1832007-08-22 22:55:41 +0100372 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400373};
374
375/*
376 * Port operations for DMA capable ALi without cable
377 * detect
378 */
379static struct ata_port_operations ali_20_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400380 .set_piomode = ali_set_piomode,
381 .set_dmamode = ali_set_dmamode,
382 .mode_filter = ali_20_filter,
383
384 .tf_load = ata_tf_load,
385 .tf_read = ata_tf_read,
Tejun Heo8243e632008-04-03 14:40:55 +0900386 .check_atapi_dma = ali_check_atapi_dma,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400387 .check_status = ata_check_status,
388 .exec_command = ata_exec_command,
389 .dev_select = ata_std_dev_select,
390 .dev_config = ali_lock_sectors,
391
392 .freeze = ata_bmdma_freeze,
393 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800394 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400395 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800396 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400397
398 .bmdma_setup = ata_bmdma_setup,
399 .bmdma_start = ata_bmdma_start,
400 .bmdma_stop = ata_bmdma_stop,
401 .bmdma_status = ata_bmdma_status,
402
403 .qc_prep = ata_qc_prep,
404 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400405
Tejun Heo0d5ff562007-02-01 15:06:36 +0900406 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400407
408 .irq_handler = ata_interrupt,
409 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900410 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400411
Alan Cox81ad1832007-08-22 22:55:41 +0100412 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400413};
414
415/*
416 * Port operations for DMA capable ALi with cable detect
417 */
418static struct ata_port_operations ali_c2_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400419 .set_piomode = ali_set_piomode,
420 .set_dmamode = ali_set_dmamode,
421 .mode_filter = ata_pci_default_filter,
422 .tf_load = ata_tf_load,
423 .tf_read = ata_tf_read,
Alan Cox498222f2007-11-19 14:37:58 +0000424 .check_atapi_dma = ali_check_atapi_dma,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400425 .check_status = ata_check_status,
426 .exec_command = ata_exec_command,
427 .dev_select = ata_std_dev_select,
428 .dev_config = ali_lock_sectors,
429
430 .freeze = ata_bmdma_freeze,
431 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800432 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400433 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800434 .cable_detect = ali_c2_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400435
436 .bmdma_setup = ata_bmdma_setup,
437 .bmdma_start = ata_bmdma_start,
438 .bmdma_stop = ata_bmdma_stop,
439 .bmdma_status = ata_bmdma_status,
440
441 .qc_prep = ata_qc_prep,
442 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400443
Tejun Heo0d5ff562007-02-01 15:06:36 +0900444 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400445
446 .irq_handler = ata_interrupt,
447 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900448 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400449
Alan Cox81ad1832007-08-22 22:55:41 +0100450 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400451};
452
453/*
454 * Port operations for DMA capable ALi with cable detect and LBA48
455 */
456static struct ata_port_operations ali_c5_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400457 .set_piomode = ali_set_piomode,
458 .set_dmamode = ali_set_dmamode,
459 .mode_filter = ata_pci_default_filter,
460 .tf_load = ata_tf_load,
461 .tf_read = ata_tf_read,
Alan Cox498222f2007-11-19 14:37:58 +0000462 .check_atapi_dma = ali_check_atapi_dma,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400463 .check_status = ata_check_status,
464 .exec_command = ata_exec_command,
465 .dev_select = ata_std_dev_select,
Tejun Heo8243e632008-04-03 14:40:55 +0900466 .dev_config = ali_warn_atapi_dma,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400467
468 .freeze = ata_bmdma_freeze,
469 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800470 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400471 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800472 .cable_detect = ali_c2_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400473
474 .bmdma_setup = ata_bmdma_setup,
475 .bmdma_start = ata_bmdma_start,
476 .bmdma_stop = ata_bmdma_stop,
477 .bmdma_status = ata_bmdma_status,
478
479 .qc_prep = ata_qc_prep,
480 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400481
Tejun Heo0d5ff562007-02-01 15:06:36 +0900482 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400483
484 .irq_handler = ata_interrupt,
485 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900486 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400487
Alan Cox81ad1832007-08-22 22:55:41 +0100488 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400489};
490
Alan34d8dfb2006-11-22 17:26:06 +0000491
492/**
493 * ali_init_chipset - chip setup function
494 * @pdev: PCI device of ATA controller
495 *
496 * Perform the setup on the device that must be done both at boot
497 * and at resume time.
498 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500499
Alan34d8dfb2006-11-22 17:26:06 +0000500static void ali_init_chipset(struct pci_dev *pdev)
501{
Auke Kok44c10132007-06-08 15:46:36 -0700502 u8 tmp;
Alan34d8dfb2006-11-22 17:26:06 +0000503 struct pci_dev *north, *isa_bridge;
504
Alan34d8dfb2006-11-22 17:26:06 +0000505 /*
506 * The chipset revision selects the driver operations and
507 * mode data.
508 */
509
Auke Kok44c10132007-06-08 15:46:36 -0700510 if (pdev->revision >= 0x20 && pdev->revision < 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000511 /* 1543-E/F, 1543C-C, 1543C-D, 1543C-E */
512 pci_read_config_byte(pdev, 0x4B, &tmp);
513 /* Clear CD-ROM DMA write bit */
514 tmp &= 0x7F;
515 pci_write_config_byte(pdev, 0x4B, tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700516 } else if (pdev->revision >= 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000517 /* Enable cable detection logic */
518 pci_read_config_byte(pdev, 0x4B, &tmp);
519 pci_write_config_byte(pdev, 0x4B, tmp | 0x08);
520 }
Alan8e42a5a2006-12-04 16:36:05 +0000521 north = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
Alan34d8dfb2006-11-22 17:26:06 +0000522 isa_bridge = pci_get_device(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1533, NULL);
523
524 if (north && north->vendor == PCI_VENDOR_ID_AL && isa_bridge) {
525 /* Configure the ALi bridge logic. For non ALi rely on BIOS.
526 Set the south bridge enable bit */
527 pci_read_config_byte(isa_bridge, 0x79, &tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700528 if (pdev->revision == 0xC2)
Alan34d8dfb2006-11-22 17:26:06 +0000529 pci_write_config_byte(isa_bridge, 0x79, tmp | 0x04);
Auke Kok44c10132007-06-08 15:46:36 -0700530 else if (pdev->revision > 0xC2 && pdev->revision < 0xC5)
Alan34d8dfb2006-11-22 17:26:06 +0000531 pci_write_config_byte(isa_bridge, 0x79, tmp | 0x02);
532 }
Auke Kok44c10132007-06-08 15:46:36 -0700533 if (pdev->revision >= 0x20) {
Alan34d8dfb2006-11-22 17:26:06 +0000534 /*
535 * CD_ROM DMA on (0x53 bit 0). Enable this even if we want
536 * to use PIO. 0x53 bit 1 (rev 20 only) - enable FIFO control
537 * via 0x54/55.
538 */
539 pci_read_config_byte(pdev, 0x53, &tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700540 if (pdev->revision <= 0x20)
Alan34d8dfb2006-11-22 17:26:06 +0000541 tmp &= ~0x02;
Auke Kok44c10132007-06-08 15:46:36 -0700542 if (pdev->revision >= 0xc7)
Alan34d8dfb2006-11-22 17:26:06 +0000543 tmp |= 0x03;
544 else
545 tmp |= 0x01; /* CD_ROM enable for DMA */
546 pci_write_config_byte(pdev, 0x53, tmp);
547 }
548 pci_dev_put(isa_bridge);
549 pci_dev_put(north);
550 ata_pci_clear_simplex(pdev);
551}
Jeff Garzik669a5db2006-08-29 18:12:40 -0400552/**
553 * ali_init_one - discovery callback
554 * @pdev: PCI device ID
555 * @id: PCI table info
556 *
557 * An ALi IDE interface has been discovered. Figure out what revision
558 * and perform configuration work before handing it to the ATA layer
559 */
560
561static int ali_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
562{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200563 static const struct ata_port_info info_early = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400564 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400565 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400566 .pio_mask = 0x1f,
567 .port_ops = &ali_early_port_ops
568 };
569 /* Revision 0x20 added DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200570 static const struct ata_port_info info_20 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400571 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400572 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400573 .pio_mask = 0x1f,
574 .mwdma_mask = 0x07,
575 .port_ops = &ali_20_port_ops
576 };
577 /* Revision 0x20 with support logic added UDMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200578 static const struct ata_port_info info_20_udma = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400579 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400580 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400581 .pio_mask = 0x1f,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400582 .mwdma_mask = 0x07,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400583 .udma_mask = 0x07, /* UDMA33 */
584 .port_ops = &ali_20_port_ops
585 };
586 /* Revision 0xC2 adds UDMA66 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200587 static const struct ata_port_info info_c2 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400588 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400589 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400590 .pio_mask = 0x1f,
591 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400592 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400593 .port_ops = &ali_c2_port_ops
594 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400595 /* Revision 0xC3 is UDMA66 for now */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200596 static const struct ata_port_info info_c3 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400597 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400598 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400599 .pio_mask = 0x1f,
600 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400601 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400602 .port_ops = &ali_c2_port_ops
603 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400604 /* Revision 0xC4 is UDMA100 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200605 static const struct ata_port_info info_c4 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400606 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400607 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400608 .pio_mask = 0x1f,
609 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400610 .udma_mask = ATA_UDMA5,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400611 .port_ops = &ali_c2_port_ops
612 };
613 /* Revision 0xC5 is UDMA133 with LBA48 DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200614 static const struct ata_port_info info_c5 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400615 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400616 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400617 .pio_mask = 0x1f,
618 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400619 .udma_mask = ATA_UDMA6,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400620 .port_ops = &ali_c5_port_ops
621 };
622
Tejun Heo1626aeb2007-05-04 12:43:58 +0200623 const struct ata_port_info *ppi[] = { NULL, NULL };
Auke Kok44c10132007-06-08 15:46:36 -0700624 u8 tmp;
Alan34d8dfb2006-11-22 17:26:06 +0000625 struct pci_dev *isa_bridge;
Tejun Heof08048e2008-03-25 12:22:47 +0900626 int rc;
627
628 rc = pcim_enable_device(pdev);
629 if (rc)
630 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400631
Jeff Garzik669a5db2006-08-29 18:12:40 -0400632 /*
633 * The chipset revision selects the driver operations and
634 * mode data.
635 */
636
Auke Kok44c10132007-06-08 15:46:36 -0700637 if (pdev->revision < 0x20) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200638 ppi[0] = &info_early;
Auke Kok44c10132007-06-08 15:46:36 -0700639 } else if (pdev->revision < 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200640 ppi[0] = &info_20;
Auke Kok44c10132007-06-08 15:46:36 -0700641 } else if (pdev->revision == 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200642 ppi[0] = &info_c2;
Auke Kok44c10132007-06-08 15:46:36 -0700643 } else if (pdev->revision == 0xC3) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200644 ppi[0] = &info_c3;
Auke Kok44c10132007-06-08 15:46:36 -0700645 } else if (pdev->revision == 0xC4) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200646 ppi[0] = &info_c4;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400647 } else
Tejun Heo1626aeb2007-05-04 12:43:58 +0200648 ppi[0] = &info_c5;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400649
Alan34d8dfb2006-11-22 17:26:06 +0000650 ali_init_chipset(pdev);
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500651
Jeff Garzik669a5db2006-08-29 18:12:40 -0400652 isa_bridge = pci_get_device(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1533, NULL);
Auke Kok44c10132007-06-08 15:46:36 -0700653 if (isa_bridge && pdev->revision >= 0x20 && pdev->revision < 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000654 /* Are we paired with a UDMA capable chip */
655 pci_read_config_byte(isa_bridge, 0x5E, &tmp);
656 if ((tmp & 0x1E) == 0x12)
Tejun Heo1626aeb2007-05-04 12:43:58 +0200657 ppi[0] = &info_20_udma;
Alan34d8dfb2006-11-22 17:26:06 +0000658 pci_dev_put(isa_bridge);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400659 }
Tejun Heo1626aeb2007-05-04 12:43:58 +0200660 return ata_pci_init_one(pdev, ppi);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400661}
662
Tejun Heo438ac6d2007-03-02 17:31:26 +0900663#ifdef CONFIG_PM
Alan34d8dfb2006-11-22 17:26:06 +0000664static int ali_reinit_one(struct pci_dev *pdev)
665{
Tejun Heof08048e2008-03-25 12:22:47 +0900666 struct ata_host *host = dev_get_drvdata(&pdev->dev);
667 int rc;
668
669 rc = ata_pci_device_do_resume(pdev);
670 if (rc)
671 return rc;
Alan34d8dfb2006-11-22 17:26:06 +0000672 ali_init_chipset(pdev);
Tejun Heof08048e2008-03-25 12:22:47 +0900673 ata_host_resume(host);
674 return 0;
Alan34d8dfb2006-11-22 17:26:06 +0000675}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900676#endif
Alan34d8dfb2006-11-22 17:26:06 +0000677
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400678static const struct pci_device_id ali[] = {
679 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5228), },
680 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5229), },
681
682 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400683};
684
685static struct pci_driver ali_pci_driver = {
686 .name = DRV_NAME,
687 .id_table = ali,
688 .probe = ali_init_one,
Alan34d8dfb2006-11-22 17:26:06 +0000689 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900690#ifdef CONFIG_PM
Alan34d8dfb2006-11-22 17:26:06 +0000691 .suspend = ata_pci_device_suspend,
692 .resume = ali_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900693#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400694};
695
696static int __init ali_init(void)
697{
698 return pci_register_driver(&ali_pci_driver);
699}
700
701
702static void __exit ali_exit(void)
703{
704 pci_unregister_driver(&ali_pci_driver);
705}
706
707
708MODULE_AUTHOR("Alan Cox");
709MODULE_DESCRIPTION("low-level driver for ALi PATA");
710MODULE_LICENSE("GPL");
711MODULE_DEVICE_TABLE(pci, ali);
712MODULE_VERSION(DRV_VERSION);
713
714module_init(ali_init);
715module_exit(ali_exit);