[PATCH] libata: set IRQF_SHARED for legacy PCI IDE IRQs
[deliverable/linux.git] / drivers / ata / pata_via.c
CommitLineData
669a5db4
JG
1/*
2 * pata_via.c - VIA PATA for new ATA layer
3 * (C) 2005-2006 Red Hat Inc
4 * Alan Cox <alan@redhat.com>
5 *
6 * Documentation
7 * Most chipset documentation available under NDA only
8 *
9 * VIA version guide
10 * VIA VT82C561 - early design, uses ata_generic currently
11 * VIA VT82C576 - MWDMA, 33Mhz
12 * VIA VT82C586 - MWDMA, 33Mhz
13 * VIA VT82C586a - Added UDMA to 33Mhz
14 * VIA VT82C586b - UDMA33
15 * VIA VT82C596a - Nonfunctional UDMA66
16 * VIA VT82C596b - Working UDMA66
17 * VIA VT82C686 - Nonfunctional UDMA66
18 * VIA VT82C686a - Working UDMA66
19 * VIA VT82C686b - Updated to UDMA100
20 * VIA VT8231 - UDMA100
21 * VIA VT8233 - UDMA100
22 * VIA VT8233a - UDMA133
23 * VIA VT8233c - UDMA100
24 * VIA VT8235 - UDMA133
25 * VIA VT8237 - UDMA133
26 *
27 * Most registers remain compatible across chips. Others start reserved
28 * and acquire sensible semantics if set to 1 (eg cable detect). A few
29 * exceptions exist, notably around the FIFO settings.
30 *
31 * One additional quirk of the VIA design is that like ALi they use few
32 * PCI IDs for a lot of chips.
33 *
34 * Based heavily on:
35 *
36 * Version 3.38
37 *
38 * VIA IDE driver for Linux. Supported southbridges:
39 *
40 * vt82c576, vt82c586, vt82c586a, vt82c586b, vt82c596a, vt82c596b,
41 * vt82c686, vt82c686a, vt82c686b, vt8231, vt8233, vt8233c, vt8233a,
42 * vt8235, vt8237
43 *
44 * Copyright (c) 2000-2002 Vojtech Pavlik
45 *
46 * Based on the work of:
47 * Michel Aubry
48 * Jeff Garzik
49 * Andre Hedrick
50
51 */
52
53#include <linux/kernel.h>
54#include <linux/module.h>
55#include <linux/pci.h>
56#include <linux/init.h>
57#include <linux/blkdev.h>
58#include <linux/delay.h>
59#include <scsi/scsi_host.h>
60#include <linux/libata.h>
61
62#define DRV_NAME "pata_via"
627d2d32 63#define DRV_VERSION "0.2.0"
669a5db4
JG
64
65/*
66 * The following comes directly from Vojtech Pavlik's ide/pci/via82cxxx
67 * driver.
68 */
69
70enum {
71 VIA_UDMA = 0x007,
72 VIA_UDMA_NONE = 0x000,
73 VIA_UDMA_33 = 0x001,
74 VIA_UDMA_66 = 0x002,
75 VIA_UDMA_100 = 0x003,
76 VIA_UDMA_133 = 0x004,
77 VIA_BAD_PREQ = 0x010, /* Crashes if PREQ# till DDACK# set */
78 VIA_BAD_CLK66 = 0x020, /* 66 MHz clock doesn't work correctly */
79 VIA_SET_FIFO = 0x040, /* Needs to have FIFO split set */
80 VIA_NO_UNMASK = 0x080, /* Doesn't work with IRQ unmasking on */
81 VIA_BAD_ID = 0x100, /* Has wrong vendor ID (0x1107) */
82 VIA_BAD_AST = 0x200, /* Don't touch Address Setup Timing */
83 VIA_NO_ENABLES = 0x400, /* Has no enablebits */
84};
85
86/*
87 * VIA SouthBridge chips.
88 */
89
90static const struct via_isa_bridge {
91 const char *name;
92 u16 id;
93 u8 rev_min;
94 u8 rev_max;
95 u16 flags;
96} via_isa_bridges[] = {
97 { "cx700", PCI_DEVICE_ID_VIA_CX700, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
98 { "vt6410", PCI_DEVICE_ID_VIA_6410, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST | VIA_NO_ENABLES},
99 { "vt8237a", PCI_DEVICE_ID_VIA_8237A, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
100 { "vt8237", PCI_DEVICE_ID_VIA_8237, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
101 { "vt8235", PCI_DEVICE_ID_VIA_8235, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
102 { "vt8233a", PCI_DEVICE_ID_VIA_8233A, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
103 { "vt8233c", PCI_DEVICE_ID_VIA_8233C_0, 0x00, 0x2f, VIA_UDMA_100 },
104 { "vt8233", PCI_DEVICE_ID_VIA_8233_0, 0x00, 0x2f, VIA_UDMA_100 },
105 { "vt8231", PCI_DEVICE_ID_VIA_8231, 0x00, 0x2f, VIA_UDMA_100 },
106 { "vt82c686b", PCI_DEVICE_ID_VIA_82C686, 0x40, 0x4f, VIA_UDMA_100 },
107 { "vt82c686a", PCI_DEVICE_ID_VIA_82C686, 0x10, 0x2f, VIA_UDMA_66 },
108 { "vt82c686", PCI_DEVICE_ID_VIA_82C686, 0x00, 0x0f, VIA_UDMA_33 | VIA_BAD_CLK66 },
109 { "vt82c596b", PCI_DEVICE_ID_VIA_82C596, 0x10, 0x2f, VIA_UDMA_66 },
110 { "vt82c596a", PCI_DEVICE_ID_VIA_82C596, 0x00, 0x0f, VIA_UDMA_33 | VIA_BAD_CLK66 },
111 { "vt82c586b", PCI_DEVICE_ID_VIA_82C586_0, 0x47, 0x4f, VIA_UDMA_33 | VIA_SET_FIFO },
112 { "vt82c586b", PCI_DEVICE_ID_VIA_82C586_0, 0x40, 0x46, VIA_UDMA_33 | VIA_SET_FIFO | VIA_BAD_PREQ },
113 { "vt82c586b", PCI_DEVICE_ID_VIA_82C586_0, 0x30, 0x3f, VIA_UDMA_33 | VIA_SET_FIFO },
114 { "vt82c586a", PCI_DEVICE_ID_VIA_82C586_0, 0x20, 0x2f, VIA_UDMA_33 | VIA_SET_FIFO },
115 { "vt82c586", PCI_DEVICE_ID_VIA_82C586_0, 0x00, 0x0f, VIA_UDMA_NONE | VIA_SET_FIFO },
116 { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, VIA_UDMA_NONE | VIA_SET_FIFO | VIA_NO_UNMASK },
117 { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, VIA_UDMA_NONE | VIA_SET_FIFO | VIA_NO_UNMASK | VIA_BAD_ID },
118 { NULL }
119};
120
121/**
122 * via_cable_detect - cable detection
123 * @ap: ATA port
124 *
125 * Perform cable detection. Actually for the VIA case the BIOS
126 * already did this for us. We read the values provided by the
127 * BIOS. If you are using an 8235 in a non-PC configuration you
128 * may need to update this code.
129 *
130 * Hotplug also impacts on this.
131 */
132
133static int via_cable_detect(struct ata_port *ap) {
134 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
135 u32 ata66;
136
137 pci_read_config_dword(pdev, 0x50, &ata66);
138 /* Check both the drive cable reporting bits, we might not have
139 two drives */
140 if (ata66 & (0x10100000 >> (16 * ap->port_no)))
141 return ATA_CBL_PATA80;
142 else
143 return ATA_CBL_PATA40;
144}
145
146static int via_pre_reset(struct ata_port *ap)
147{
148 const struct via_isa_bridge *config = ap->host->private_data;
149
150 if (!(config->flags & VIA_NO_ENABLES)) {
151 static const struct pci_bits via_enable_bits[] = {
152 { 0x40, 1, 0x02, 0x02 },
153 { 0x40, 1, 0x01, 0x01 }
154 };
155
156 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
85cd7251 157
c961922b
AC
158 if (!pci_test_config_bits(pdev, &via_enable_bits[ap->port_no]))
159 return -ENOENT;
669a5db4
JG
160 }
161
162 if ((config->flags & VIA_UDMA) >= VIA_UDMA_66)
163 ap->cbl = via_cable_detect(ap);
164 else
165 ap->cbl = ATA_CBL_PATA40;
166 return ata_std_prereset(ap);
167}
168
169
170/**
171 * via_error_handler - reset for VIA chips
172 * @ap: ATA port
173 *
174 * Handle the reset callback for the later chips with cable detect
175 */
176
177static void via_error_handler(struct ata_port *ap)
178{
179 ata_bmdma_drive_eh(ap, via_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
180}
181
182/**
183 * via_do_set_mode - set initial PIO mode data
184 * @ap: ATA interface
185 * @adev: ATA device
186 * @mode: ATA mode being programmed
187 * @tdiv: Clocks per PCI clock
188 * @set_ast: Set to program address setup
189 * @udma_type: UDMA mode/format of registers
190 *
191 * Program the VIA registers for DMA and PIO modes. Uses the ata timing
192 * support in order to compute modes.
193 *
194 * FIXME: Hotplug will require we serialize multiple mode changes
195 * on the two channels.
196 */
197
198static void via_do_set_mode(struct ata_port *ap, struct ata_device *adev, int mode, int tdiv, int set_ast, int udma_type)
199{
200 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
201 struct ata_device *peer = ata_dev_pair(adev);
202 struct ata_timing t, p;
203 static int via_clock = 33333; /* Bus clock in kHZ - ought to be tunable one day */
204 unsigned long T = 1000000000 / via_clock;
205 unsigned long UT = T/tdiv;
206 int ut;
207 int offset = 3 - (2*ap->port_no) - adev->devno;
208
209
210 /* Calculate the timing values we require */
211 ata_timing_compute(adev, mode, &t, T, UT);
212
213 /* We share 8bit timing so we must merge the constraints */
214 if (peer) {
215 if (peer->pio_mode) {
216 ata_timing_compute(peer, peer->pio_mode, &p, T, UT);
217 ata_timing_merge(&p, &t, &t, ATA_TIMING_8BIT);
218 }
219 }
220
221 /* Address setup is programmable but breaks on UDMA133 setups */
222 if (set_ast) {
223 u8 setup; /* 2 bits per drive */
224 int shift = 2 * offset;
225
226 pci_read_config_byte(pdev, 0x4C, &setup);
227 setup &= ~(3 << shift);
228 setup |= FIT(t.setup, 1, 4) << shift; /* 1,4 or 1,4 - 1 FIXME */
229 pci_write_config_byte(pdev, 0x4C, setup);
230 }
231
232 /* Load the PIO mode bits */
233 pci_write_config_byte(pdev, 0x4F - ap->port_no,
234 ((FIT(t.act8b, 1, 16) - 1) << 4) | (FIT(t.rec8b, 1, 16) - 1));
235 pci_write_config_byte(pdev, 0x48 + offset,
236 ((FIT(t.active, 1, 16) - 1) << 4) | (FIT(t.recover, 1, 16) - 1));
237
238 /* Load the UDMA bits according to type */
239 switch(udma_type) {
240 default:
241 /* BUG() ? */
242 /* fall through */
243 case 33:
244 ut = t.udma ? (0xe0 | (FIT(t.udma, 2, 5) - 2)) : 0x03;
245 break;
246 case 66:
247 ut = t.udma ? (0xe8 | (FIT(t.udma, 2, 9) - 2)) : 0x0f;
248 break;
249 case 100:
250 ut = t.udma ? (0xe0 | (FIT(t.udma, 2, 9) - 2)) : 0x07;
251 break;
252 case 133:
253 ut = t.udma ? (0xe0 | (FIT(t.udma, 2, 9) - 2)) : 0x07;
254 break;
255 }
256 /* Set UDMA unless device is not UDMA capable */
257 if (udma_type)
258 pci_write_config_byte(pdev, 0x50 + offset, ut);
259}
260
261static void via_set_piomode(struct ata_port *ap, struct ata_device *adev)
262{
263 const struct via_isa_bridge *config = ap->host->private_data;
264 int set_ast = (config->flags & VIA_BAD_AST) ? 0 : 1;
265 int mode = config->flags & VIA_UDMA;
266 static u8 tclock[5] = { 1, 1, 2, 3, 4 };
267 static u8 udma[5] = { 0, 33, 66, 100, 133 };
268
269 via_do_set_mode(ap, adev, adev->pio_mode, tclock[mode], set_ast, udma[mode]);
270}
271
272static void via_set_dmamode(struct ata_port *ap, struct ata_device *adev)
273{
274 const struct via_isa_bridge *config = ap->host->private_data;
275 int set_ast = (config->flags & VIA_BAD_AST) ? 0 : 1;
276 int mode = config->flags & VIA_UDMA;
277 static u8 tclock[5] = { 1, 1, 2, 3, 4 };
278 static u8 udma[5] = { 0, 33, 66, 100, 133 };
279
280 via_do_set_mode(ap, adev, adev->dma_mode, tclock[mode], set_ast, udma[mode]);
281}
282
283static struct scsi_host_template via_sht = {
284 .module = THIS_MODULE,
285 .name = DRV_NAME,
286 .ioctl = ata_scsi_ioctl,
287 .queuecommand = ata_scsi_queuecmd,
288 .can_queue = ATA_DEF_QUEUE,
289 .this_id = ATA_SHT_THIS_ID,
290 .sg_tablesize = LIBATA_MAX_PRD,
669a5db4
JG
291 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
292 .emulated = ATA_SHT_EMULATED,
293 .use_clustering = ATA_SHT_USE_CLUSTERING,
294 .proc_name = DRV_NAME,
295 .dma_boundary = ATA_DMA_BOUNDARY,
296 .slave_configure = ata_scsi_slave_config,
afdfe899 297 .slave_destroy = ata_scsi_slave_destroy,
669a5db4 298 .bios_param = ata_std_bios_param,
627d2d32
A
299 .resume = ata_scsi_device_resume,
300 .suspend = ata_scsi_device_suspend,
669a5db4
JG
301};
302
303static struct ata_port_operations via_port_ops = {
304 .port_disable = ata_port_disable,
305 .set_piomode = via_set_piomode,
306 .set_dmamode = via_set_dmamode,
307 .mode_filter = ata_pci_default_filter,
308
309 .tf_load = ata_tf_load,
310 .tf_read = ata_tf_read,
311 .check_status = ata_check_status,
312 .exec_command = ata_exec_command,
313 .dev_select = ata_std_dev_select,
314
315 .freeze = ata_bmdma_freeze,
316 .thaw = ata_bmdma_thaw,
317 .error_handler = via_error_handler,
318 .post_internal_cmd = ata_bmdma_post_internal_cmd,
319
320 .bmdma_setup = ata_bmdma_setup,
321 .bmdma_start = ata_bmdma_start,
322 .bmdma_stop = ata_bmdma_stop,
323 .bmdma_status = ata_bmdma_status,
324
325 .qc_prep = ata_qc_prep,
326 .qc_issue = ata_qc_issue_prot,
bda30288 327
669a5db4
JG
328 .data_xfer = ata_pio_data_xfer,
329
330 .irq_handler = ata_interrupt,
331 .irq_clear = ata_bmdma_irq_clear,
332
333 .port_start = ata_port_start,
334 .port_stop = ata_port_stop,
335 .host_stop = ata_host_stop
336};
337
338static struct ata_port_operations via_port_ops_noirq = {
339 .port_disable = ata_port_disable,
340 .set_piomode = via_set_piomode,
341 .set_dmamode = via_set_dmamode,
342 .mode_filter = ata_pci_default_filter,
343
344 .tf_load = ata_tf_load,
345 .tf_read = ata_tf_read,
346 .check_status = ata_check_status,
347 .exec_command = ata_exec_command,
348 .dev_select = ata_std_dev_select,
349
350 .freeze = ata_bmdma_freeze,
351 .thaw = ata_bmdma_thaw,
352 .error_handler = via_error_handler,
353 .post_internal_cmd = ata_bmdma_post_internal_cmd,
354
355 .bmdma_setup = ata_bmdma_setup,
356 .bmdma_start = ata_bmdma_start,
357 .bmdma_stop = ata_bmdma_stop,
358 .bmdma_status = ata_bmdma_status,
359
360 .qc_prep = ata_qc_prep,
361 .qc_issue = ata_qc_issue_prot,
bda30288 362
669a5db4
JG
363 .data_xfer = ata_pio_data_xfer_noirq,
364
365 .irq_handler = ata_interrupt,
366 .irq_clear = ata_bmdma_irq_clear,
367
368 .port_start = ata_port_start,
369 .port_stop = ata_port_stop,
370 .host_stop = ata_host_stop
371};
372
627d2d32
A
373/**
374 * via_config_fifo - set up the FIFO
375 * @pdev: PCI device
376 * @flags: configuration flags
377 *
378 * Set the FIFO properties for this device if neccessary. Used both on
379 * set up and on and the resume path
380 */
381
382static void via_config_fifo(struct pci_dev *pdev, unsigned int flags)
383{
384 u8 enable;
385
386 /* 0x40 low bits indicate enabled channels */
387 pci_read_config_byte(pdev, 0x40 , &enable);
388 enable &= 3;
389
390 if (flags & VIA_SET_FIFO) {
391 u8 fifo_setting[4] = {0x00, 0x60, 0x00, 0x20};
392 u8 fifo;
393
394 pci_read_config_byte(pdev, 0x43, &fifo);
395
396 /* Clear PREQ# until DDACK# for errata */
397 if (flags & VIA_BAD_PREQ)
398 fifo &= 0x7F;
399 else
400 fifo &= 0x9f;
401 /* Turn on FIFO for enabled channels */
402 fifo |= fifo_setting[enable];
403 pci_write_config_byte(pdev, 0x43, fifo);
404 }
405}
406
669a5db4
JG
407/**
408 * via_init_one - discovery callback
627d2d32 409 * @pdev: PCI device
669a5db4
JG
410 * @id: PCI table info
411 *
412 * A VIA IDE interface has been discovered. Figure out what revision
413 * and perform configuration work before handing it to the ATA layer
414 */
415
416static int via_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
417{
418 /* Early VIA without UDMA support */
419 static struct ata_port_info via_mwdma_info = {
420 .sht = &via_sht,
421 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
422 .pio_mask = 0x1f,
423 .mwdma_mask = 0x07,
424 .port_ops = &via_port_ops
425 };
426 /* Ditto with IRQ masking required */
427 static struct ata_port_info via_mwdma_info_borked = {
428 .sht = &via_sht,
429 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
430 .pio_mask = 0x1f,
431 .mwdma_mask = 0x07,
432 .port_ops = &via_port_ops_noirq,
433 };
434 /* VIA UDMA 33 devices (and borked 66) */
435 static struct ata_port_info via_udma33_info = {
436 .sht = &via_sht,
437 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
438 .pio_mask = 0x1f,
439 .mwdma_mask = 0x07,
440 .udma_mask = 0x7,
441 .port_ops = &via_port_ops
442 };
443 /* VIA UDMA 66 devices */
444 static struct ata_port_info via_udma66_info = {
445 .sht = &via_sht,
446 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
447 .pio_mask = 0x1f,
448 .mwdma_mask = 0x07,
449 .udma_mask = 0x1f,
450 .port_ops = &via_port_ops
451 };
452 /* VIA UDMA 100 devices */
453 static struct ata_port_info via_udma100_info = {
454 .sht = &via_sht,
455 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
456 .pio_mask = 0x1f,
457 .mwdma_mask = 0x07,
458 .udma_mask = 0x3f,
459 .port_ops = &via_port_ops
460 };
461 /* UDMA133 with bad AST (All current 133) */
462 static struct ata_port_info via_udma133_info = {
463 .sht = &via_sht,
464 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
465 .pio_mask = 0x1f,
466 .mwdma_mask = 0x07,
467 .udma_mask = 0x7f, /* FIXME: should check north bridge */
468 .port_ops = &via_port_ops
469 };
470 struct ata_port_info *port_info[2], *type;
471 struct pci_dev *isa = NULL;
472 const struct via_isa_bridge *config;
473 static int printed_version;
474 u8 t;
475 u8 enable;
476 u32 timing;
477
478 if (!printed_version++)
479 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
480
481 /* To find out how the IDE will behave and what features we
482 actually have to look at the bridge not the IDE controller */
483 for (config = via_isa_bridges; config->id; config++)
484 if ((isa = pci_get_device(PCI_VENDOR_ID_VIA +
485 !!(config->flags & VIA_BAD_ID),
486 config->id, NULL))) {
487
488 pci_read_config_byte(isa, PCI_REVISION_ID, &t);
489 if (t >= config->rev_min &&
490 t <= config->rev_max)
491 break;
492 pci_dev_put(isa);
493 }
494
495 if (!config->id) {
496 printk(KERN_WARNING "via: Unknown VIA SouthBridge, disabling.\n");
497 return -ENODEV;
498 }
499 pci_dev_put(isa);
500
501 /* 0x40 low bits indicate enabled channels */
502 pci_read_config_byte(pdev, 0x40 , &enable);
503 enable &= 3;
504 if (enable == 0) {
505 return -ENODEV;
506 }
507
508 /* Initialise the FIFO for the enabled channels. */
627d2d32
A
509 via_config_fifo(pdev, config->flags);
510
669a5db4
JG
511 /* Clock set up */
512 switch(config->flags & VIA_UDMA) {
513 case VIA_UDMA_NONE:
514 if (config->flags & VIA_NO_UNMASK)
515 type = &via_mwdma_info_borked;
516 else
517 type = &via_mwdma_info;
518 break;
519 case VIA_UDMA_33:
520 type = &via_udma33_info;
521 break;
522 case VIA_UDMA_66:
523 type = &via_udma66_info;
524 /* The 66 MHz devices require we enable the clock */
525 pci_read_config_dword(pdev, 0x50, &timing);
526 timing |= 0x80008;
527 pci_write_config_dword(pdev, 0x50, timing);
528 break;
529 case VIA_UDMA_100:
530 type = &via_udma100_info;
531 break;
532 case VIA_UDMA_133:
533 type = &via_udma133_info;
534 break;
535 default:
536 WARN_ON(1);
537 return -ENODEV;
538 }
539
540 if (config->flags & VIA_BAD_CLK66) {
541 /* Disable the 66MHz clock on problem devices */
542 pci_read_config_dword(pdev, 0x50, &timing);
543 timing &= ~0x80008;
544 pci_write_config_dword(pdev, 0x50, timing);
545 }
546
547 /* We have established the device type, now fire it up */
548 type->private_data = (void *)config;
549
550 port_info[0] = port_info[1] = type;
551 return ata_pci_init_one(pdev, port_info, 2);
552}
553
627d2d32
A
554/**
555 * via_reinit_one - reinit after resume
556 * @pdev; PCI device
557 *
558 * Called when the VIA PATA device is resumed. We must then
559 * reconfigure the fifo and other setup we may have altered. In
560 * addition the kernel needs to have the resume methods on PCI
561 * quirk supported.
562 */
563
564static int via_reinit_one(struct pci_dev *pdev)
565{
566 u32 timing;
567 struct ata_host *host = dev_get_drvdata(&pdev->dev);
568 const struct via_isa_bridge *config = host->private_data;
569
570 via_config_fifo(pdev, config->flags);
571
572 if ((config->flags & VIA_UDMA) == VIA_UDMA_66) {
573 /* The 66 MHz devices require we enable the clock */
574 pci_read_config_dword(pdev, 0x50, &timing);
575 timing |= 0x80008;
576 pci_write_config_dword(pdev, 0x50, timing);
577 }
578 if (config->flags & VIA_BAD_CLK66) {
579 /* Disable the 66MHz clock on problem devices */
580 pci_read_config_dword(pdev, 0x50, &timing);
581 timing &= ~0x80008;
582 pci_write_config_dword(pdev, 0x50, timing);
583 }
584 return ata_pci_device_resume(pdev);
585}
586
669a5db4 587static const struct pci_device_id via[] = {
2d2744fc
JG
588 { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_82C576_1), },
589 { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_82C586_1), },
590 { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_6410), },
591 { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_SATA_EIDE), },
592
593 { },
669a5db4
JG
594};
595
596static struct pci_driver via_pci_driver = {
2d2744fc 597 .name = DRV_NAME,
669a5db4
JG
598 .id_table = via,
599 .probe = via_init_one,
627d2d32
A
600 .remove = ata_pci_remove_one,
601 .suspend = ata_pci_device_suspend,
602 .resume = via_reinit_one,
669a5db4
JG
603};
604
605static int __init via_init(void)
606{
607 return pci_register_driver(&via_pci_driver);
608}
609
669a5db4
JG
610static void __exit via_exit(void)
611{
612 pci_unregister_driver(&via_pci_driver);
613}
614
669a5db4
JG
615MODULE_AUTHOR("Alan Cox");
616MODULE_DESCRIPTION("low-level driver for VIA PATA");
617MODULE_LICENSE("GPL");
618MODULE_DEVICE_TABLE(pci, via);
619MODULE_VERSION(DRV_VERSION);
620
621module_init(via_init);
622module_exit(via_exit);
This page took 0.10964 seconds and 5 git commands to generate.