blob: ece366bced0ce97243212e150d338c62e4a30fa6 [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_sl82c105.c - SL82C105 PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
4 * Alan Cox <alan@redhat.com>
5 *
6 * Based in part on linux/drivers/ide/pci/sl82c105.c
7 * SL82C105/Winbond 553 IDE driver
8 *
9 * and in part on the documentation and errata sheet
Alan16728da2007-02-20 17:51:51 +000010 *
11 *
12 * Note: The controller like many controllers has shared timings for
13 * PIO and DMA. We thus flip to the DMA timings in dma_start and flip back
14 * in the dma_stop function. Thus we actually don't need a set_dmamode
15 * method as the PIO method is always called and will set the right PIO
16 * timing parameters.
Jeff Garzik669a5db2006-08-29 18:12:40 -040017 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040018
Jeff Garzik669a5db2006-08-29 18:12:40 -040019#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/pci.h>
22#include <linux/init.h>
23#include <linux/blkdev.h>
24#include <linux/delay.h>
25#include <scsi/scsi_host.h>
26#include <linux/libata.h>
27
28#define DRV_NAME "pata_sl82c105"
Alan Cox92ba5d02008-01-28 16:08:23 +000029#define DRV_VERSION "0.3.3"
Jeff Garzik669a5db2006-08-29 18:12:40 -040030
31enum {
32 /*
33 * SL82C105 PCI config register 0x40 bits.
34 */
35 CTRL_IDE_IRQB = (1 << 30),
36 CTRL_IDE_IRQA = (1 << 28),
37 CTRL_LEGIRQ = (1 << 11),
38 CTRL_P1F16 = (1 << 5),
39 CTRL_P1EN = (1 << 4),
40 CTRL_P0F16 = (1 << 1),
41 CTRL_P0EN = (1 << 0)
42};
43
44/**
45 * sl82c105_pre_reset - probe begin
Tejun Heocc0680a2007-08-06 18:36:23 +090046 * @link: ATA link
Tejun Heod4b2bab2007-02-02 16:50:52 +090047 * @deadline: deadline jiffies for the operation
Jeff Garzik669a5db2006-08-29 18:12:40 -040048 *
49 * Set up cable type and use generic probe init
50 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040051
Tejun Heocc0680a2007-08-06 18:36:23 +090052static int sl82c105_pre_reset(struct ata_link *link, unsigned long deadline)
Jeff Garzik669a5db2006-08-29 18:12:40 -040053{
54 static const struct pci_bits sl82c105_enable_bits[] = {
55 { 0x40, 1, 0x01, 0x01 },
56 { 0x40, 1, 0x10, 0x10 }
57 };
Tejun Heocc0680a2007-08-06 18:36:23 +090058 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -040059 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
60
Alan Coxc9619222006-09-26 17:53:38 +010061 if (ap->port_no && !pci_test_config_bits(pdev, &sl82c105_enable_bits[ap->port_no]))
62 return -ENOENT;
Tejun Heocc0680a2007-08-06 18:36:23 +090063 return ata_std_prereset(link, deadline);
Jeff Garzik669a5db2006-08-29 18:12:40 -040064}
65
66
67static void sl82c105_error_handler(struct ata_port *ap)
68{
69 ata_bmdma_drive_eh(ap, sl82c105_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
70}
71
72
73/**
74 * sl82c105_configure_piomode - set chip PIO timing
75 * @ap: ATA interface
76 * @adev: ATA device
77 * @pio: PIO mode
78 *
79 * Called to do the PIO mode setup. Our timing registers are shared
80 * so a configure_dmamode call will undo any work we do here and vice
81 * versa
82 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040083
Jeff Garzik669a5db2006-08-29 18:12:40 -040084static void sl82c105_configure_piomode(struct ata_port *ap, struct ata_device *adev, int pio)
85{
86 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
87 static u16 pio_timing[5] = {
88 0x50D, 0x407, 0x304, 0x242, 0x240
89 };
90 u16 dummy;
91 int timing = 0x44 + (8 * ap->port_no) + (4 * adev->devno);
Jeff Garzik85cd7252006-08-31 00:03:49 -040092
Jeff Garzik669a5db2006-08-29 18:12:40 -040093 pci_write_config_word(pdev, timing, pio_timing[pio]);
94 /* Can we lose this oddity of the old driver */
95 pci_read_config_word(pdev, timing, &dummy);
96}
97
98/**
99 * sl82c105_set_piomode - set initial PIO mode data
100 * @ap: ATA interface
101 * @adev: ATA device
102 *
103 * Called to do the PIO mode setup. Our timing registers are shared
104 * but we want to set the PIO timing by default.
105 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400106
Jeff Garzik669a5db2006-08-29 18:12:40 -0400107static void sl82c105_set_piomode(struct ata_port *ap, struct ata_device *adev)
108{
109 sl82c105_configure_piomode(ap, adev, adev->pio_mode - XFER_PIO_0);
110}
111
112/**
113 * sl82c105_configure_dmamode - set DMA mode in chip
114 * @ap: ATA interface
115 * @adev: ATA device
116 *
117 * Load DMA cycle times into the chip ready for a DMA transfer
118 * to occur.
119 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400120
Jeff Garzik669a5db2006-08-29 18:12:40 -0400121static void sl82c105_configure_dmamode(struct ata_port *ap, struct ata_device *adev)
122{
123 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
124 static u16 dma_timing[3] = {
125 0x707, 0x201, 0x200
126 };
127 u16 dummy;
128 int timing = 0x44 + (8 * ap->port_no) + (4 * adev->devno);
129 int dma = adev->dma_mode - XFER_MW_DMA_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400130
Jeff Garzik669a5db2006-08-29 18:12:40 -0400131 pci_write_config_word(pdev, timing, dma_timing[dma]);
132 /* Can we lose this oddity of the old driver */
133 pci_read_config_word(pdev, timing, &dummy);
134}
135
136/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400137 * sl82c105_reset_engine - Reset the DMA engine
138 * @ap: ATA interface
139 *
140 * The sl82c105 has some serious problems with the DMA engine
Jeff Garzik85cd7252006-08-31 00:03:49 -0400141 * when transfers don't run as expected or ATAPI is used. The
Jeff Garzik669a5db2006-08-29 18:12:40 -0400142 * recommended fix is to reset the engine each use using a chip
143 * test register.
144 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400145
Jeff Garzik669a5db2006-08-29 18:12:40 -0400146static void sl82c105_reset_engine(struct ata_port *ap)
147{
148 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
149 u16 val;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400150
Jeff Garzik669a5db2006-08-29 18:12:40 -0400151 pci_read_config_word(pdev, 0x7E, &val);
152 pci_write_config_word(pdev, 0x7E, val | 4);
153 pci_write_config_word(pdev, 0x7E, val & ~4);
154}
155
156/**
157 * sl82c105_bmdma_start - DMA engine begin
158 * @qc: ATA command
159 *
160 * Reset the DMA engine each use as recommended by the errata
Jeff Garzik85cd7252006-08-31 00:03:49 -0400161 * document.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400162 *
163 * FIXME: if we switch clock at BMDMA start/end we might get better
164 * PIO performance on DMA capable devices.
165 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400166
Jeff Garzik669a5db2006-08-29 18:12:40 -0400167static void sl82c105_bmdma_start(struct ata_queued_cmd *qc)
168{
169 struct ata_port *ap = qc->ap;
170
Olaf Hering8361cd72007-02-10 21:36:14 +0100171 udelay(100);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400172 sl82c105_reset_engine(ap);
Olaf Hering8361cd72007-02-10 21:36:14 +0100173 udelay(100);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400174
Jeff Garzik669a5db2006-08-29 18:12:40 -0400175 /* Set the clocks for DMA */
176 sl82c105_configure_dmamode(ap, qc->dev);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400177 /* Activate DMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400178 ata_bmdma_start(qc);
179}
180
181/**
182 * sl82c105_bmdma_end - DMA engine stop
183 * @qc: ATA command
184 *
185 * Reset the DMA engine each use as recommended by the errata
186 * document.
187 *
188 * This function is also called to turn off DMA when a timeout occurs
189 * during DMA operation. In both cases we need to reset the engine,
190 * so no actual eng_timeout handler is required.
191 *
192 * We assume bmdma_stop is always called if bmdma_start as called. If
193 * not then we may need to wrap qc_issue.
194 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400195
Jeff Garzik669a5db2006-08-29 18:12:40 -0400196static void sl82c105_bmdma_stop(struct ata_queued_cmd *qc)
197{
198 struct ata_port *ap = qc->ap;
199
200 ata_bmdma_stop(qc);
201 sl82c105_reset_engine(ap);
Olaf Hering8361cd72007-02-10 21:36:14 +0100202 udelay(100);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400203
Jeff Garzik669a5db2006-08-29 18:12:40 -0400204 /* This will redo the initial setup of the DMA device to matching
205 PIO timings */
Alan16728da2007-02-20 17:51:51 +0000206 sl82c105_set_piomode(ap, qc->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400207}
208
Alan Cox92ba5d02008-01-28 16:08:23 +0000209/**
210 * sl82c105_qc_defer - implement serialization
211 * @qc: command
212 *
213 * We must issue one command per host not per channel because
214 * of the reset bug.
215 *
216 * Q: is the scsi host lock sufficient ?
217 */
218
219static int sl82c105_qc_defer(struct ata_queued_cmd *qc)
220{
221 struct ata_host *host = qc->ap->host;
222 struct ata_port *alt = host->ports[1 ^ qc->ap->port_no];
223 int rc;
224
225 /* First apply the usual rules */
226 rc = ata_std_qc_defer(qc);
227 if (rc != 0)
228 return rc;
229
230 /* Now apply serialization rules. Only allow a command if the
231 other channel state machine is idle */
232 if (alt && alt->qc_active)
233 return ATA_DEFER_PORT;
234 return 0;
235}
236
Jeff Garzik669a5db2006-08-29 18:12:40 -0400237static struct scsi_host_template sl82c105_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900238 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400239};
240
241static struct ata_port_operations sl82c105_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400242 .set_piomode = sl82c105_set_piomode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400243 .mode_filter = ata_pci_default_filter,
244
245 .tf_load = ata_tf_load,
246 .tf_read = ata_tf_read,
247 .check_status = ata_check_status,
248 .exec_command = ata_exec_command,
249 .dev_select = ata_std_dev_select,
250
Jeff Garzikbf7551c2007-03-02 18:09:05 -0500251 .freeze = ata_bmdma_freeze,
252 .thaw = ata_bmdma_thaw,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400253 .error_handler = sl82c105_error_handler,
Jeff Garzikbf7551c2007-03-02 18:09:05 -0500254 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxc45a6322007-03-26 21:43:41 -0800255 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400256
257 .bmdma_setup = ata_bmdma_setup,
258 .bmdma_start = sl82c105_bmdma_start,
259 .bmdma_stop = sl82c105_bmdma_stop,
260 .bmdma_status = ata_bmdma_status,
261
Alan Cox92ba5d02008-01-28 16:08:23 +0000262 .qc_defer = sl82c105_qc_defer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400263 .qc_prep = ata_qc_prep,
264 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400265
Tejun Heo0d5ff562007-02-01 15:06:36 +0900266 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400267
268 .irq_handler = ata_interrupt,
269 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900270 .irq_on = ata_irq_on,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400271
Alan Cox81ad1832007-08-22 22:55:41 +0100272 .port_start = ata_sff_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400273};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400274
275/**
276 * sl82c105_bridge_revision - find bridge version
277 * @pdev: PCI device for the ATA function
278 *
279 * Locates the PCI bridge associated with the ATA function and
280 * providing it is a Winbond 553 reports the revision. If it cannot
281 * find a revision or the right device it returns -1
282 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400283
Jeff Garzik669a5db2006-08-29 18:12:40 -0400284static int sl82c105_bridge_revision(struct pci_dev *pdev)
285{
286 struct pci_dev *bridge;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400287
288 /*
289 * The bridge should be part of the same device, but function 0.
290 */
291 bridge = pci_get_slot(pdev->bus,
292 PCI_DEVFN(PCI_SLOT(pdev->devfn), 0));
293 if (!bridge)
294 return -1;
295
296 /*
297 * Make sure it is a Winbond 553 and is an ISA bridge.
298 */
299 if (bridge->vendor != PCI_VENDOR_ID_WINBOND ||
300 bridge->device != PCI_DEVICE_ID_WINBOND_83C553 ||
301 bridge->class >> 8 != PCI_CLASS_BRIDGE_ISA) {
302 pci_dev_put(bridge);
303 return -1;
304 }
305 /*
306 * We need to find function 0's revision, not function 1
307 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400308 pci_dev_put(bridge);
Auke Kok44c10132007-06-08 15:46:36 -0700309 return bridge->revision;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400310}
311
Jeff Garzik85cd7252006-08-31 00:03:49 -0400312
Jeff Garzik669a5db2006-08-29 18:12:40 -0400313static int sl82c105_init_one(struct pci_dev *dev, const struct pci_device_id *id)
314{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200315 static const struct ata_port_info info_dma = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400316 .sht = &sl82c105_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400317 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400318 .pio_mask = 0x1f,
319 .mwdma_mask = 0x07,
320 .port_ops = &sl82c105_port_ops
321 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200322 static const struct ata_port_info info_early = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400323 .sht = &sl82c105_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400324 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400325 .pio_mask = 0x1f,
326 .port_ops = &sl82c105_port_ops
327 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200328 /* for now use only the first port */
329 const struct ata_port_info *ppi[] = { &info_early,
Alan Cox92ba5d02008-01-28 16:08:23 +0000330 NULL };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400331 u32 val;
332 int rev;
Tejun Heof08048e2008-03-25 12:22:47 +0900333 int rc;
334
335 rc = pcim_enable_device(dev);
336 if (rc)
337 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400338
339 rev = sl82c105_bridge_revision(dev);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400340
Jeff Garzik669a5db2006-08-29 18:12:40 -0400341 if (rev == -1)
342 dev_printk(KERN_WARNING, &dev->dev, "pata_sl82c105: Unable to find bridge, disabling DMA.\n");
343 else if (rev <= 5)
344 dev_printk(KERN_WARNING, &dev->dev, "pata_sl82c105: Early bridge revision, no DMA available.\n");
Tejun Heo1626aeb2007-05-04 12:43:58 +0200345 else
346 ppi[0] = &info_dma;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400347
Jeff Garzik669a5db2006-08-29 18:12:40 -0400348 pci_read_config_dword(dev, 0x40, &val);
349 val |= CTRL_P0EN | CTRL_P0F16 | CTRL_P1F16;
350 pci_write_config_dword(dev, 0x40, val);
351
Tejun Heo1626aeb2007-05-04 12:43:58 +0200352 return ata_pci_init_one(dev, ppi);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400353}
354
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400355static const struct pci_device_id sl82c105[] = {
356 { PCI_VDEVICE(WINBOND, PCI_DEVICE_ID_WINBOND_82C105), },
357
358 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400359};
360
361static struct pci_driver sl82c105_pci_driver = {
362 .name = DRV_NAME,
363 .id_table = sl82c105,
364 .probe = sl82c105_init_one,
365 .remove = ata_pci_remove_one
366};
367
368static int __init sl82c105_init(void)
369{
370 return pci_register_driver(&sl82c105_pci_driver);
371}
372
Jeff Garzik669a5db2006-08-29 18:12:40 -0400373static void __exit sl82c105_exit(void)
374{
375 pci_unregister_driver(&sl82c105_pci_driver);
376}
377
Jeff Garzik669a5db2006-08-29 18:12:40 -0400378MODULE_AUTHOR("Alan Cox");
379MODULE_DESCRIPTION("low-level driver for Sl82c105");
380MODULE_LICENSE("GPL");
381MODULE_DEVICE_TABLE(pci, sl82c105);
382MODULE_VERSION(DRV_VERSION);
383
384module_init(sl82c105_init);
385module_exit(sl82c105_exit);