blob: 62aa2f90329ab9fbd027726dba4b38ff36619e05 [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
39/*
40 * Cable special cases
41 */
42
Jeff Garzik18552562007-10-03 15:15:40 -040043static const struct dmi_system_id cable_dmi_table[] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -040044 {
45 .ident = "HP Pavilion N5430",
46 .matches = {
47 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
Alan Cox5c8d5202007-07-20 15:34:49 +010048 DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
Jeff Garzik669a5db2006-08-29 18:12:40 -040049 },
50 },
Daniel Exner03e6f482007-09-11 22:28:36 +020051 {
52 .ident = "Toshiba Satelite S1800-814",
53 .matches = {
54 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
55 DMI_MATCH(DMI_PRODUCT_NAME, "S1800-814"),
56 },
57 },
Jeff Garzik669a5db2006-08-29 18:12:40 -040058 { }
59};
60
61static int ali_cable_override(struct pci_dev *pdev)
62{
63 /* Fujitsu P2000 */
64 if (pdev->subsystem_vendor == 0x10CF && pdev->subsystem_device == 0x10AF)
65 return 1;
Alan Cox8f59a132007-11-19 14:36:28 +000066 /* Mitac 8317 (Winbook-A) and relatives */
67 if (pdev->subsystem_vendor == 0x1071 && pdev->subsystem_device == 0x8317)
68 return 1;
Jeff Garzik669a5db2006-08-29 18:12:40 -040069 /* Systems by DMI */
70 if (dmi_check_system(cable_dmi_table))
71 return 1;
72 return 0;
73}
74
75/**
76 * ali_c2_cable_detect - cable detection
77 * @ap: ATA port
78 *
79 * Perform cable detection for C2 and later revisions
80 */
81
82static int ali_c2_cable_detect(struct ata_port *ap)
83{
84 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
85 u8 ata66;
86
87 /* Certain laptops use short but suitable cables and don't
88 implement the detect logic */
89
90 if (ali_cable_override(pdev))
Alan Coxfc085152006-10-10 14:28:11 -070091 return ATA_CBL_PATA40_SHORT;
Jeff Garzik669a5db2006-08-29 18:12:40 -040092
93 /* Host view cable detect 0x4A bit 0 primary bit 1 secondary
94 Bit set for 40 pin */
95 pci_read_config_byte(pdev, 0x4A, &ata66);
96 if (ata66 & (1 << ap->port_no))
97 return ATA_CBL_PATA40;
98 else
99 return ATA_CBL_PATA80;
100}
101
102/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400103 * ali_20_filter - filter for earlier ALI DMA
104 * @ap: ALi ATA port
105 * @adev: attached device
106 *
107 * Ensure that we do not do DMA on CD devices. We may be able to
108 * fix that later on. Also ensure we do not do UDMA on WDC drives
109 */
110
Alan Coxa76b62c2007-03-09 09:34:07 -0500111static unsigned long ali_20_filter(struct ata_device *adev, unsigned long mask)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400112{
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900113 char model_num[ATA_ID_PROD_LEN + 1];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400114 /* No DMA on anything but a disk for now */
115 if (adev->class != ATA_DEV_ATA)
116 mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900117 ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
Jeff Garzik669a5db2006-08-29 18:12:40 -0400118 if (strstr(model_num, "WDC"))
119 return mask &= ~ATA_MASK_UDMA;
Alan Coxa76b62c2007-03-09 09:34:07 -0500120 return ata_pci_default_filter(adev, mask);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400121}
122
123/**
124 * ali_fifo_control - FIFO manager
125 * @ap: ALi channel to control
126 * @adev: device for FIFO control
127 * @on: 0 for off 1 for on
128 *
129 * Enable or disable the FIFO on a given device. Because of the way the
130 * ALi FIFO works it provides a boost on ATA disk but can be confused by
131 * ATAPI and we must therefore manage it.
132 */
133
134static void ali_fifo_control(struct ata_port *ap, struct ata_device *adev, int on)
135{
136 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
137 int pio_fifo = 0x54 + ap->port_no;
138 u8 fifo;
139 int shift = 4 * adev->devno;
140
141 /* ATA - FIFO on set nibble to 0x05, ATAPI - FIFO off, set nibble to
142 0x00. Not all the docs agree but the behaviour we now use is the
143 one stated in the BIOS Programming Guide */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400144
Jeff Garzik669a5db2006-08-29 18:12:40 -0400145 pci_read_config_byte(pdev, pio_fifo, &fifo);
146 fifo &= ~(0x0F << shift);
147 if (on)
148 fifo |= (on << shift);
149 pci_write_config_byte(pdev, pio_fifo, fifo);
150}
151
152/**
153 * ali_program_modes - load mode registers
154 * @ap: ALi channel to load
155 * @adev: Device the timing is for
156 * @cmd: Command timing
157 * @data: Data timing
158 * @ultra: UDMA timing or zero for off
159 *
160 * Loads the timing registers for cmd/data and disable UDMA if
161 * ultra is zero. If ultra is set then load and enable the UDMA
162 * timing but do not touch the command/data timing.
163 */
164
165static void ali_program_modes(struct ata_port *ap, struct ata_device *adev, struct ata_timing *t, u8 ultra)
166{
167 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
168 int cas = 0x58 + 4 * ap->port_no; /* Command timing */
169 int cbt = 0x59 + 4 * ap->port_no; /* Command timing */
170 int drwt = 0x5A + 4 * ap->port_no + adev->devno; /* R/W timing */
171 int udmat = 0x56 + ap->port_no; /* UDMA timing */
172 int shift = 4 * adev->devno;
173 u8 udma;
174
175 if (t != NULL) {
176 t->setup = FIT(t->setup, 1, 8) & 7;
177 t->act8b = FIT(t->act8b, 1, 8) & 7;
178 t->rec8b = FIT(t->rec8b, 1, 16) & 15;
179 t->active = FIT(t->active, 1, 8) & 7;
180 t->recover = FIT(t->recover, 1, 16) & 15;
181
182 pci_write_config_byte(pdev, cas, t->setup);
183 pci_write_config_byte(pdev, cbt, (t->act8b << 4) | t->rec8b);
184 pci_write_config_byte(pdev, drwt, (t->active << 4) | t->recover);
185 }
186
187 /* Set up the UDMA enable */
188 pci_read_config_byte(pdev, udmat, &udma);
189 udma &= ~(0x0F << shift);
190 udma |= ultra << shift;
191 pci_write_config_byte(pdev, udmat, udma);
192}
193
194/**
195 * ali_set_piomode - set initial PIO mode data
196 * @ap: ATA interface
197 * @adev: ATA device
198 *
199 * Program the ALi registers for PIO mode. FIXME: add timings for
200 * PIO5.
201 */
202
203static void ali_set_piomode(struct ata_port *ap, struct ata_device *adev)
204{
205 struct ata_device *pair = ata_dev_pair(adev);
206 struct ata_timing t;
207 unsigned long T = 1000000000 / 33333; /* PCI clock based */
208
209 ata_timing_compute(adev, adev->pio_mode, &t, T, 1);
210 if (pair) {
211 struct ata_timing p;
212 ata_timing_compute(pair, pair->pio_mode, &p, T, 1);
213 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
214 if (pair->dma_mode) {
215 ata_timing_compute(pair, pair->dma_mode, &p, T, 1);
216 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
217 }
218 }
219
220 /* PIO FIFO is only permitted on ATA disk */
221 if (adev->class != ATA_DEV_ATA)
222 ali_fifo_control(ap, adev, 0x00);
223 ali_program_modes(ap, adev, &t, 0);
224 if (adev->class == ATA_DEV_ATA)
225 ali_fifo_control(ap, adev, 0x05);
226
227}
228
229/**
230 * ali_set_dmamode - set initial DMA mode data
231 * @ap: ATA interface
232 * @adev: ATA device
233 *
234 * FIXME: MWDMA timings
235 */
236
237static void ali_set_dmamode(struct ata_port *ap, struct ata_device *adev)
238{
239 static u8 udma_timing[7] = { 0xC, 0xB, 0xA, 0x9, 0x8, 0xF, 0xD };
240 struct ata_device *pair = ata_dev_pair(adev);
241 struct ata_timing t;
242 unsigned long T = 1000000000 / 33333; /* PCI clock based */
243 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
244
245
246 if (adev->class == ATA_DEV_ATA)
247 ali_fifo_control(ap, adev, 0x08);
248
249 if (adev->dma_mode >= XFER_UDMA_0) {
250 ali_program_modes(ap, adev, NULL, udma_timing[adev->dma_mode - XFER_UDMA_0]);
251 if (adev->dma_mode >= XFER_UDMA_3) {
252 u8 reg4b;
253 pci_read_config_byte(pdev, 0x4B, &reg4b);
254 reg4b |= 1;
255 pci_write_config_byte(pdev, 0x4B, reg4b);
256 }
257 } else {
258 ata_timing_compute(adev, adev->dma_mode, &t, T, 1);
259 if (pair) {
260 struct ata_timing p;
261 ata_timing_compute(pair, pair->pio_mode, &p, T, 1);
262 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
263 if (pair->dma_mode) {
264 ata_timing_compute(pair, pair->dma_mode, &p, T, 1);
265 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP|ATA_TIMING_8BIT);
266 }
267 }
268 ali_program_modes(ap, adev, &t, 0);
269 }
270}
271
272/**
273 * ali_lock_sectors - Keep older devices to 255 sector mode
Jeff Garzik669a5db2006-08-29 18:12:40 -0400274 * @adev: Device
275 *
276 * Called during the bus probe for each device that is found. We use
277 * this call to lock the sector count of the device to 255 or less on
278 * older ALi controllers. If we didn't do this then large I/O's would
279 * require LBA48 commands which the older ALi requires are issued by
280 * slower PIO methods
281 */
282
Alancd0d3bb2007-03-02 00:56:15 +0000283static void ali_lock_sectors(struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400284{
285 adev->max_sectors = 255;
286}
287
Alan Cox498222f2007-11-19 14:37:58 +0000288/**
289 * ali_check_atapi_dma - DMA check for most ALi controllers
290 * @adev: Device
291 *
292 * Called to decide whether commands should be sent by DMA or PIO
293 */
294
295static int ali_check_atapi_dma(struct ata_queued_cmd *qc)
296{
297 /* If its not a media command, its not worth it */
298 if (qc->nbytes < 2048)
299 return -EOPNOTSUPP;
300 return 0;
301}
302
Jeff Garzik669a5db2006-08-29 18:12:40 -0400303static struct scsi_host_template ali_sht = {
304 .module = THIS_MODULE,
305 .name = DRV_NAME,
306 .ioctl = ata_scsi_ioctl,
307 .queuecommand = ata_scsi_queuecmd,
308 .can_queue = ATA_DEF_QUEUE,
309 .this_id = ATA_SHT_THIS_ID,
310 .sg_tablesize = LIBATA_MAX_PRD,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400311 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
312 .emulated = ATA_SHT_EMULATED,
313 .use_clustering = ATA_SHT_USE_CLUSTERING,
314 .proc_name = DRV_NAME,
315 .dma_boundary = ATA_DMA_BOUNDARY,
316 .slave_configure = ata_scsi_slave_config,
Tejun Heoafdfe892006-11-29 11:26:47 +0900317 .slave_destroy = ata_scsi_slave_destroy,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400318 .bios_param = ata_std_bios_param,
319};
320
321/*
322 * Port operations for PIO only ALi
323 */
324
325static struct ata_port_operations ali_early_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400326 .set_piomode = ali_set_piomode,
327 .tf_load = ata_tf_load,
328 .tf_read = ata_tf_read,
329 .check_status = ata_check_status,
330 .exec_command = ata_exec_command,
331 .dev_select = ata_std_dev_select,
332
333 .freeze = ata_bmdma_freeze,
334 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800335 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400336 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800337 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400338
339 .qc_prep = ata_qc_prep,
340 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400341
Tejun Heo0d5ff562007-02-01 15:06:36 +0900342 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400343
344 .irq_handler = ata_interrupt,
345 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900346 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400347
Alan Cox81ad1832007-08-22 22:55:41 +0100348 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400349};
350
351/*
352 * Port operations for DMA capable ALi without cable
353 * detect
354 */
355static struct ata_port_operations ali_20_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400356 .set_piomode = ali_set_piomode,
357 .set_dmamode = ali_set_dmamode,
358 .mode_filter = ali_20_filter,
359
360 .tf_load = ata_tf_load,
361 .tf_read = ata_tf_read,
362 .check_status = ata_check_status,
363 .exec_command = ata_exec_command,
364 .dev_select = ata_std_dev_select,
365 .dev_config = ali_lock_sectors,
366
367 .freeze = ata_bmdma_freeze,
368 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800369 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400370 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800371 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400372
373 .bmdma_setup = ata_bmdma_setup,
374 .bmdma_start = ata_bmdma_start,
375 .bmdma_stop = ata_bmdma_stop,
376 .bmdma_status = ata_bmdma_status,
377
378 .qc_prep = ata_qc_prep,
379 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400380
Tejun Heo0d5ff562007-02-01 15:06:36 +0900381 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400382
383 .irq_handler = ata_interrupt,
384 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900385 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400386
Alan Cox81ad1832007-08-22 22:55:41 +0100387 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400388};
389
390/*
391 * Port operations for DMA capable ALi with cable detect
392 */
393static struct ata_port_operations ali_c2_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400394 .set_piomode = ali_set_piomode,
395 .set_dmamode = ali_set_dmamode,
396 .mode_filter = ata_pci_default_filter,
397 .tf_load = ata_tf_load,
398 .tf_read = ata_tf_read,
Alan Cox498222f2007-11-19 14:37:58 +0000399 .check_atapi_dma = ali_check_atapi_dma,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400400 .check_status = ata_check_status,
401 .exec_command = ata_exec_command,
402 .dev_select = ata_std_dev_select,
403 .dev_config = ali_lock_sectors,
404
405 .freeze = ata_bmdma_freeze,
406 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800407 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400408 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800409 .cable_detect = ali_c2_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400410
411 .bmdma_setup = ata_bmdma_setup,
412 .bmdma_start = ata_bmdma_start,
413 .bmdma_stop = ata_bmdma_stop,
414 .bmdma_status = ata_bmdma_status,
415
416 .qc_prep = ata_qc_prep,
417 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400418
Tejun Heo0d5ff562007-02-01 15:06:36 +0900419 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400420
421 .irq_handler = ata_interrupt,
422 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900423 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400424
Alan Cox81ad1832007-08-22 22:55:41 +0100425 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400426};
427
428/*
429 * Port operations for DMA capable ALi with cable detect and LBA48
430 */
431static struct ata_port_operations ali_c5_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400432 .set_piomode = ali_set_piomode,
433 .set_dmamode = ali_set_dmamode,
434 .mode_filter = ata_pci_default_filter,
435 .tf_load = ata_tf_load,
436 .tf_read = ata_tf_read,
Alan Cox498222f2007-11-19 14:37:58 +0000437 .check_atapi_dma = ali_check_atapi_dma,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400438 .check_status = ata_check_status,
439 .exec_command = ata_exec_command,
440 .dev_select = ata_std_dev_select,
441
442 .freeze = ata_bmdma_freeze,
443 .thaw = ata_bmdma_thaw,
Alan Coxb723d142007-03-26 21:43:37 -0800444 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400445 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxb723d142007-03-26 21:43:37 -0800446 .cable_detect = ali_c2_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400447
448 .bmdma_setup = ata_bmdma_setup,
449 .bmdma_start = ata_bmdma_start,
450 .bmdma_stop = ata_bmdma_stop,
451 .bmdma_status = ata_bmdma_status,
452
453 .qc_prep = ata_qc_prep,
454 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400455
Tejun Heo0d5ff562007-02-01 15:06:36 +0900456 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400457
458 .irq_handler = ata_interrupt,
459 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900460 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400461
Alan Cox81ad1832007-08-22 22:55:41 +0100462 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400463};
464
Alan34d8dfb2006-11-22 17:26:06 +0000465
466/**
467 * ali_init_chipset - chip setup function
468 * @pdev: PCI device of ATA controller
469 *
470 * Perform the setup on the device that must be done both at boot
471 * and at resume time.
472 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500473
Alan34d8dfb2006-11-22 17:26:06 +0000474static void ali_init_chipset(struct pci_dev *pdev)
475{
Auke Kok44c10132007-06-08 15:46:36 -0700476 u8 tmp;
Alan34d8dfb2006-11-22 17:26:06 +0000477 struct pci_dev *north, *isa_bridge;
478
Alan34d8dfb2006-11-22 17:26:06 +0000479 /*
480 * The chipset revision selects the driver operations and
481 * mode data.
482 */
483
Auke Kok44c10132007-06-08 15:46:36 -0700484 if (pdev->revision >= 0x20 && pdev->revision < 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000485 /* 1543-E/F, 1543C-C, 1543C-D, 1543C-E */
486 pci_read_config_byte(pdev, 0x4B, &tmp);
487 /* Clear CD-ROM DMA write bit */
488 tmp &= 0x7F;
489 pci_write_config_byte(pdev, 0x4B, tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700490 } else if (pdev->revision >= 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000491 /* Enable cable detection logic */
492 pci_read_config_byte(pdev, 0x4B, &tmp);
493 pci_write_config_byte(pdev, 0x4B, tmp | 0x08);
494 }
Alan8e42a5a2006-12-04 16:36:05 +0000495 north = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
Alan34d8dfb2006-11-22 17:26:06 +0000496 isa_bridge = pci_get_device(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1533, NULL);
497
498 if (north && north->vendor == PCI_VENDOR_ID_AL && isa_bridge) {
499 /* Configure the ALi bridge logic. For non ALi rely on BIOS.
500 Set the south bridge enable bit */
501 pci_read_config_byte(isa_bridge, 0x79, &tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700502 if (pdev->revision == 0xC2)
Alan34d8dfb2006-11-22 17:26:06 +0000503 pci_write_config_byte(isa_bridge, 0x79, tmp | 0x04);
Auke Kok44c10132007-06-08 15:46:36 -0700504 else if (pdev->revision > 0xC2 && pdev->revision < 0xC5)
Alan34d8dfb2006-11-22 17:26:06 +0000505 pci_write_config_byte(isa_bridge, 0x79, tmp | 0x02);
506 }
Auke Kok44c10132007-06-08 15:46:36 -0700507 if (pdev->revision >= 0x20) {
Alan34d8dfb2006-11-22 17:26:06 +0000508 /*
509 * CD_ROM DMA on (0x53 bit 0). Enable this even if we want
510 * to use PIO. 0x53 bit 1 (rev 20 only) - enable FIFO control
511 * via 0x54/55.
512 */
513 pci_read_config_byte(pdev, 0x53, &tmp);
Auke Kok44c10132007-06-08 15:46:36 -0700514 if (pdev->revision <= 0x20)
Alan34d8dfb2006-11-22 17:26:06 +0000515 tmp &= ~0x02;
Auke Kok44c10132007-06-08 15:46:36 -0700516 if (pdev->revision >= 0xc7)
Alan34d8dfb2006-11-22 17:26:06 +0000517 tmp |= 0x03;
518 else
519 tmp |= 0x01; /* CD_ROM enable for DMA */
520 pci_write_config_byte(pdev, 0x53, tmp);
521 }
522 pci_dev_put(isa_bridge);
523 pci_dev_put(north);
524 ata_pci_clear_simplex(pdev);
525}
Jeff Garzik669a5db2006-08-29 18:12:40 -0400526/**
527 * ali_init_one - discovery callback
528 * @pdev: PCI device ID
529 * @id: PCI table info
530 *
531 * An ALi IDE interface has been discovered. Figure out what revision
532 * and perform configuration work before handing it to the ATA layer
533 */
534
535static int ali_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
536{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200537 static const struct ata_port_info info_early = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400538 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400539 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400540 .pio_mask = 0x1f,
541 .port_ops = &ali_early_port_ops
542 };
543 /* Revision 0x20 added DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200544 static const struct ata_port_info info_20 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400545 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400546 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400547 .pio_mask = 0x1f,
548 .mwdma_mask = 0x07,
549 .port_ops = &ali_20_port_ops
550 };
551 /* Revision 0x20 with support logic added UDMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200552 static const struct ata_port_info info_20_udma = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400553 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400554 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400555 .pio_mask = 0x1f,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400556 .mwdma_mask = 0x07,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400557 .udma_mask = 0x07, /* UDMA33 */
558 .port_ops = &ali_20_port_ops
559 };
560 /* Revision 0xC2 adds UDMA66 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200561 static const struct ata_port_info info_c2 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400562 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400563 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400564 .pio_mask = 0x1f,
565 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400566 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400567 .port_ops = &ali_c2_port_ops
568 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400569 /* Revision 0xC3 is UDMA66 for now */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200570 static const struct ata_port_info info_c3 = {
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,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400575 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400576 .port_ops = &ali_c2_port_ops
577 };
Chuck Ebbertee581502007-06-25 19:13:32 -0400578 /* Revision 0xC4 is UDMA100 */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200579 static const struct ata_port_info info_c4 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400580 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400581 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_PIO_LBA48,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400582 .pio_mask = 0x1f,
583 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400584 .udma_mask = ATA_UDMA5,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400585 .port_ops = &ali_c2_port_ops
586 };
587 /* Revision 0xC5 is UDMA133 with LBA48 DMA */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200588 static const struct ata_port_info info_c5 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400589 .sht = &ali_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400590 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400591 .pio_mask = 0x1f,
592 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400593 .udma_mask = ATA_UDMA6,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400594 .port_ops = &ali_c5_port_ops
595 };
596
Tejun Heo1626aeb2007-05-04 12:43:58 +0200597 const struct ata_port_info *ppi[] = { NULL, NULL };
Auke Kok44c10132007-06-08 15:46:36 -0700598 u8 tmp;
Alan34d8dfb2006-11-22 17:26:06 +0000599 struct pci_dev *isa_bridge;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400600
Jeff Garzik669a5db2006-08-29 18:12:40 -0400601 /*
602 * The chipset revision selects the driver operations and
603 * mode data.
604 */
605
Auke Kok44c10132007-06-08 15:46:36 -0700606 if (pdev->revision < 0x20) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200607 ppi[0] = &info_early;
Auke Kok44c10132007-06-08 15:46:36 -0700608 } else if (pdev->revision < 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200609 ppi[0] = &info_20;
Auke Kok44c10132007-06-08 15:46:36 -0700610 } else if (pdev->revision == 0xC2) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200611 ppi[0] = &info_c2;
Auke Kok44c10132007-06-08 15:46:36 -0700612 } else if (pdev->revision == 0xC3) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200613 ppi[0] = &info_c3;
Auke Kok44c10132007-06-08 15:46:36 -0700614 } else if (pdev->revision == 0xC4) {
Tejun Heo1626aeb2007-05-04 12:43:58 +0200615 ppi[0] = &info_c4;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400616 } else
Tejun Heo1626aeb2007-05-04 12:43:58 +0200617 ppi[0] = &info_c5;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400618
Alan34d8dfb2006-11-22 17:26:06 +0000619 ali_init_chipset(pdev);
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500620
Jeff Garzik669a5db2006-08-29 18:12:40 -0400621 isa_bridge = pci_get_device(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1533, NULL);
Auke Kok44c10132007-06-08 15:46:36 -0700622 if (isa_bridge && pdev->revision >= 0x20 && pdev->revision < 0xC2) {
Alan34d8dfb2006-11-22 17:26:06 +0000623 /* Are we paired with a UDMA capable chip */
624 pci_read_config_byte(isa_bridge, 0x5E, &tmp);
625 if ((tmp & 0x1E) == 0x12)
Tejun Heo1626aeb2007-05-04 12:43:58 +0200626 ppi[0] = &info_20_udma;
Alan34d8dfb2006-11-22 17:26:06 +0000627 pci_dev_put(isa_bridge);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400628 }
Tejun Heo1626aeb2007-05-04 12:43:58 +0200629 return ata_pci_init_one(pdev, ppi);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400630}
631
Tejun Heo438ac6d2007-03-02 17:31:26 +0900632#ifdef CONFIG_PM
Alan34d8dfb2006-11-22 17:26:06 +0000633static int ali_reinit_one(struct pci_dev *pdev)
634{
635 ali_init_chipset(pdev);
636 return ata_pci_device_resume(pdev);
637}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900638#endif
Alan34d8dfb2006-11-22 17:26:06 +0000639
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400640static const struct pci_device_id ali[] = {
641 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5228), },
642 { PCI_VDEVICE(AL, PCI_DEVICE_ID_AL_M5229), },
643
644 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400645};
646
647static struct pci_driver ali_pci_driver = {
648 .name = DRV_NAME,
649 .id_table = ali,
650 .probe = ali_init_one,
Alan34d8dfb2006-11-22 17:26:06 +0000651 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900652#ifdef CONFIG_PM
Alan34d8dfb2006-11-22 17:26:06 +0000653 .suspend = ata_pci_device_suspend,
654 .resume = ali_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900655#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400656};
657
658static int __init ali_init(void)
659{
660 return pci_register_driver(&ali_pci_driver);
661}
662
663
664static void __exit ali_exit(void)
665{
666 pci_unregister_driver(&ali_pci_driver);
667}
668
669
670MODULE_AUTHOR("Alan Cox");
671MODULE_DESCRIPTION("low-level driver for ALi PATA");
672MODULE_LICENSE("GPL");
673MODULE_DEVICE_TABLE(pci, ali);
674MODULE_VERSION(DRV_VERSION);
675
676module_init(ali_init);
677module_exit(ali_exit);