This source file includes following definitions.
- sl82c105_pre_reset
- sl82c105_configure_piomode
- sl82c105_set_piomode
- sl82c105_configure_dmamode
- sl82c105_reset_engine
- sl82c105_bmdma_start
- sl82c105_bmdma_stop
- sl82c105_qc_defer
- sl82c105_sff_irq_check
- sl82c105_bridge_revision
- sl82c105_fixup
- sl82c105_init_one
- sl82c105_reinit_one
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/pci.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"
29 #define DRV_VERSION "0.3.3"
30
31 enum {
32
33
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
46
47
48
49
50
51
52 static int sl82c105_pre_reset(struct ata_link *link, unsigned long deadline)
53 {
54 static const struct pci_bits sl82c105_enable_bits[] = {
55 { 0x40, 1, 0x01, 0x01 },
56 { 0x40, 1, 0x10, 0x10 }
57 };
58 struct ata_port *ap = link->ap;
59 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
60
61 if (ap->port_no && !pci_test_config_bits(pdev, &sl82c105_enable_bits[ap->port_no]))
62 return -ENOENT;
63 return ata_sff_prereset(link, deadline);
64 }
65
66
67
68
69
70
71
72
73
74
75
76
77
78 static void sl82c105_configure_piomode(struct ata_port *ap, struct ata_device *adev, int pio)
79 {
80 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
81 static u16 pio_timing[5] = {
82 0x50D, 0x407, 0x304, 0x242, 0x240
83 };
84 u16 dummy;
85 int timing = 0x44 + (8 * ap->port_no) + (4 * adev->devno);
86
87 pci_write_config_word(pdev, timing, pio_timing[pio]);
88
89 pci_read_config_word(pdev, timing, &dummy);
90 }
91
92
93
94
95
96
97
98
99
100
101 static void sl82c105_set_piomode(struct ata_port *ap, struct ata_device *adev)
102 {
103 sl82c105_configure_piomode(ap, adev, adev->pio_mode - XFER_PIO_0);
104 }
105
106
107
108
109
110
111
112
113
114
115 static void sl82c105_configure_dmamode(struct ata_port *ap, struct ata_device *adev)
116 {
117 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
118 static u16 dma_timing[3] = {
119 0x707, 0x201, 0x200
120 };
121 u16 dummy;
122 int timing = 0x44 + (8 * ap->port_no) + (4 * adev->devno);
123 int dma = adev->dma_mode - XFER_MW_DMA_0;
124
125 pci_write_config_word(pdev, timing, dma_timing[dma]);
126
127 pci_read_config_word(pdev, timing, &dummy);
128 }
129
130
131
132
133
134
135
136
137
138
139
140 static void sl82c105_reset_engine(struct ata_port *ap)
141 {
142 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
143 u16 val;
144
145 pci_read_config_word(pdev, 0x7E, &val);
146 pci_write_config_word(pdev, 0x7E, val | 4);
147 pci_write_config_word(pdev, 0x7E, val & ~4);
148 }
149
150
151
152
153
154
155
156
157
158
159
160
161 static void sl82c105_bmdma_start(struct ata_queued_cmd *qc)
162 {
163 struct ata_port *ap = qc->ap;
164
165 udelay(100);
166 sl82c105_reset_engine(ap);
167 udelay(100);
168
169
170 sl82c105_configure_dmamode(ap, qc->dev);
171
172 ata_bmdma_start(qc);
173 }
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190 static void sl82c105_bmdma_stop(struct ata_queued_cmd *qc)
191 {
192 struct ata_port *ap = qc->ap;
193
194 ata_bmdma_stop(qc);
195 sl82c105_reset_engine(ap);
196 udelay(100);
197
198
199
200 sl82c105_set_piomode(ap, qc->dev);
201 }
202
203
204
205
206
207
208
209
210
211
212
213 static int sl82c105_qc_defer(struct ata_queued_cmd *qc)
214 {
215 struct ata_host *host = qc->ap->host;
216 struct ata_port *alt = host->ports[1 ^ qc->ap->port_no];
217 int rc;
218
219
220 rc = ata_std_qc_defer(qc);
221 if (rc != 0)
222 return rc;
223
224
225
226 if (alt && alt->qc_active)
227 return ATA_DEFER_PORT;
228 return 0;
229 }
230
231 static bool sl82c105_sff_irq_check(struct ata_port *ap)
232 {
233 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
234 u32 val, mask = ap->port_no ? CTRL_IDE_IRQB : CTRL_IDE_IRQA;
235
236 pci_read_config_dword(pdev, 0x40, &val);
237
238 return val & mask;
239 }
240
241 static struct scsi_host_template sl82c105_sht = {
242 ATA_BMDMA_SHT(DRV_NAME),
243 };
244
245 static struct ata_port_operations sl82c105_port_ops = {
246 .inherits = &ata_bmdma_port_ops,
247 .qc_defer = sl82c105_qc_defer,
248 .bmdma_start = sl82c105_bmdma_start,
249 .bmdma_stop = sl82c105_bmdma_stop,
250 .cable_detect = ata_cable_40wire,
251 .set_piomode = sl82c105_set_piomode,
252 .prereset = sl82c105_pre_reset,
253 .sff_irq_check = sl82c105_sff_irq_check,
254 };
255
256
257
258
259
260
261
262
263
264
265 static int sl82c105_bridge_revision(struct pci_dev *pdev)
266 {
267 struct pci_dev *bridge;
268
269
270
271
272 bridge = pci_get_slot(pdev->bus,
273 PCI_DEVFN(PCI_SLOT(pdev->devfn), 0));
274 if (!bridge)
275 return -1;
276
277
278
279
280 if (bridge->vendor != PCI_VENDOR_ID_WINBOND ||
281 bridge->device != PCI_DEVICE_ID_WINBOND_83C553 ||
282 bridge->class >> 8 != PCI_CLASS_BRIDGE_ISA) {
283 pci_dev_put(bridge);
284 return -1;
285 }
286
287
288
289 pci_dev_put(bridge);
290 return bridge->revision;
291 }
292
293 static void sl82c105_fixup(struct pci_dev *pdev)
294 {
295 u32 val;
296
297 pci_read_config_dword(pdev, 0x40, &val);
298 val |= CTRL_P0EN | CTRL_P0F16 | CTRL_P1F16;
299 pci_write_config_dword(pdev, 0x40, val);
300 }
301
302 static int sl82c105_init_one(struct pci_dev *dev, const struct pci_device_id *id)
303 {
304 static const struct ata_port_info info_dma = {
305 .flags = ATA_FLAG_SLAVE_POSS,
306 .pio_mask = ATA_PIO4,
307 .mwdma_mask = ATA_MWDMA2,
308 .port_ops = &sl82c105_port_ops
309 };
310 static const struct ata_port_info info_early = {
311 .flags = ATA_FLAG_SLAVE_POSS,
312 .pio_mask = ATA_PIO4,
313 .port_ops = &sl82c105_port_ops
314 };
315
316 const struct ata_port_info *ppi[] = { &info_early,
317 NULL };
318 int rev;
319 int rc;
320
321 rc = pcim_enable_device(dev);
322 if (rc)
323 return rc;
324
325 rev = sl82c105_bridge_revision(dev);
326
327 if (rev == -1)
328 dev_warn(&dev->dev,
329 "pata_sl82c105: Unable to find bridge, disabling DMA\n");
330 else if (rev <= 5)
331 dev_warn(&dev->dev,
332 "pata_sl82c105: Early bridge revision, no DMA available\n");
333 else
334 ppi[0] = &info_dma;
335
336 sl82c105_fixup(dev);
337
338 return ata_pci_bmdma_init_one(dev, ppi, &sl82c105_sht, NULL, 0);
339 }
340
341 #ifdef CONFIG_PM_SLEEP
342 static int sl82c105_reinit_one(struct pci_dev *pdev)
343 {
344 struct ata_host *host = pci_get_drvdata(pdev);
345 int rc;
346
347 rc = ata_pci_device_do_resume(pdev);
348 if (rc)
349 return rc;
350
351 sl82c105_fixup(pdev);
352
353 ata_host_resume(host);
354 return 0;
355 }
356 #endif
357
358 static const struct pci_device_id sl82c105[] = {
359 { PCI_VDEVICE(WINBOND, PCI_DEVICE_ID_WINBOND_82C105), },
360
361 { },
362 };
363
364 static struct pci_driver sl82c105_pci_driver = {
365 .name = DRV_NAME,
366 .id_table = sl82c105,
367 .probe = sl82c105_init_one,
368 .remove = ata_pci_remove_one,
369 #ifdef CONFIG_PM_SLEEP
370 .suspend = ata_pci_device_suspend,
371 .resume = sl82c105_reinit_one,
372 #endif
373 };
374
375 module_pci_driver(sl82c105_pci_driver);
376
377 MODULE_AUTHOR("Alan Cox");
378 MODULE_DESCRIPTION("low-level driver for Sl82c105");
379 MODULE_LICENSE("GPL");
380 MODULE_DEVICE_TABLE(pci, sl82c105);
381 MODULE_VERSION(DRV_VERSION);