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/init.h>
24#include <linux/blkdev.h>
25#include <linux/delay.h>
26#include <scsi/scsi_host.h>
27#include <linux/libata.h>
28
29#define DRV_NAME "pata_hpt366"
30#define DRV_VERSION "0.6.2"
31
32struct hpt_clock {
33 u8 xfer_mode;
34 u32 timing;
35};
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60static const struct hpt_clock hpt366_40[] = {
61 { XFER_UDMA_4, 0x900fd943 },
62 { XFER_UDMA_3, 0x900ad943 },
63 { XFER_UDMA_2, 0x900bd943 },
64 { XFER_UDMA_1, 0x9008d943 },
65 { XFER_UDMA_0, 0x9008d943 },
66
67 { XFER_MW_DMA_2, 0xa008d943 },
68 { XFER_MW_DMA_1, 0xa010d955 },
69 { XFER_MW_DMA_0, 0xa010d9fc },
70
71 { XFER_PIO_4, 0xc008d963 },
72 { XFER_PIO_3, 0xc010d974 },
73 { XFER_PIO_2, 0xc010d997 },
74 { XFER_PIO_1, 0xc010d9c7 },
75 { XFER_PIO_0, 0xc018d9d9 },
76 { 0, 0x0120d9d9 }
77};
78
79static const struct hpt_clock hpt366_33[] = {
80 { XFER_UDMA_4, 0x90c9a731 },
81 { XFER_UDMA_3, 0x90cfa731 },
82 { XFER_UDMA_2, 0x90caa731 },
83 { XFER_UDMA_1, 0x90cba731 },
84 { XFER_UDMA_0, 0x90c8a731 },
85
86 { XFER_MW_DMA_2, 0xa0c8a731 },
87 { XFER_MW_DMA_1, 0xa0c8a732 },
88 { XFER_MW_DMA_0, 0xa0c8a797 },
89
90 { XFER_PIO_4, 0xc0c8a731 },
91 { XFER_PIO_3, 0xc0c8a742 },
92 { XFER_PIO_2, 0xc0d0a753 },
93 { XFER_PIO_1, 0xc0d0a7a3 },
94 { XFER_PIO_0, 0xc0d0a7aa },
95 { 0, 0x0120a7a7 }
96};
97
98static const struct hpt_clock hpt366_25[] = {
99 { XFER_UDMA_4, 0x90c98521 },
100 { XFER_UDMA_3, 0x90cf8521 },
101 { XFER_UDMA_2, 0x90cf8521 },
102 { XFER_UDMA_1, 0x90cb8521 },
103 { XFER_UDMA_0, 0x90cb8521 },
104
105 { XFER_MW_DMA_2, 0xa0ca8521 },
106 { XFER_MW_DMA_1, 0xa0ca8532 },
107 { XFER_MW_DMA_0, 0xa0ca8575 },
108
109 { XFER_PIO_4, 0xc0ca8521 },
110 { XFER_PIO_3, 0xc0ca8532 },
111 { XFER_PIO_2, 0xc0ca8542 },
112 { XFER_PIO_1, 0xc0d08572 },
113 { XFER_PIO_0, 0xc0d08585 },
114 { 0, 0x01208585 }
115};
116
117static const char *bad_ata33[] = {
118 "Maxtor 92720U8", "Maxtor 92040U6", "Maxtor 91360U4", "Maxtor 91020U3", "Maxtor 90845U3", "Maxtor 90650U2",
119 "Maxtor 91360D8", "Maxtor 91190D7", "Maxtor 91020D6", "Maxtor 90845D5", "Maxtor 90680D4", "Maxtor 90510D3", "Maxtor 90340D2",
120 "Maxtor 91152D8", "Maxtor 91008D7", "Maxtor 90845D6", "Maxtor 90840D6", "Maxtor 90720D5", "Maxtor 90648D5", "Maxtor 90576D4",
121 "Maxtor 90510D4",
122 "Maxtor 90432D3", "Maxtor 90288D2", "Maxtor 90256D2",
123 "Maxtor 91000D8", "Maxtor 90910D8", "Maxtor 90875D7", "Maxtor 90840D7", "Maxtor 90750D6", "Maxtor 90625D5", "Maxtor 90500D4",
124 "Maxtor 91728D8", "Maxtor 91512D7", "Maxtor 91303D6", "Maxtor 91080D5", "Maxtor 90845D4", "Maxtor 90680D4", "Maxtor 90648D3", "Maxtor 90432D2",
125 NULL
126};
127
128static const char *bad_ata66_4[] = {
129 "IBM-DTLA-307075",
130 "IBM-DTLA-307060",
131 "IBM-DTLA-307045",
132 "IBM-DTLA-307030",
133 "IBM-DTLA-307020",
134 "IBM-DTLA-307015",
135 "IBM-DTLA-305040",
136 "IBM-DTLA-305030",
137 "IBM-DTLA-305020",
138 "IC35L010AVER07-0",
139 "IC35L020AVER07-0",
140 "IC35L030AVER07-0",
141 "IC35L040AVER07-0",
142 "IC35L060AVER07-0",
143 "WDC AC310200R",
144 NULL
145};
146
147static const char *bad_ata66_3[] = {
148 "WDC AC310200R",
149 NULL
150};
151
152static int hpt_dma_blacklisted(const struct ata_device *dev, char *modestr, const char *list[])
153{
154 unsigned char model_num[ATA_ID_PROD_LEN + 1];
155 int i = 0;
156
157 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
158
159 while (list[i] != NULL) {
160 if (!strcmp(list[i], model_num)) {
161 printk(KERN_WARNING DRV_NAME ": %s is not supported for %s.\n",
162 modestr, list[i]);
163 return 1;
164 }
165 i++;
166 }
167 return 0;
168}
169
170
171
172
173
174
175
176
177static unsigned long hpt366_filter(struct ata_device *adev, unsigned long mask)
178{
179 if (adev->class == ATA_DEV_ATA) {
180 if (hpt_dma_blacklisted(adev, "UDMA", bad_ata33))
181 mask &= ~ATA_MASK_UDMA;
182 if (hpt_dma_blacklisted(adev, "UDMA3", bad_ata66_3))
183 mask &= ~(0xF8 << ATA_SHIFT_UDMA);
184 if (hpt_dma_blacklisted(adev, "UDMA4", bad_ata66_4))
185 mask &= ~(0xF0 << ATA_SHIFT_UDMA);
186 } else if (adev->class == ATA_DEV_ATAPI)
187 mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
188
189 return ata_bmdma_mode_filter(adev, mask);
190}
191
192static int hpt36x_cable_detect(struct ata_port *ap)
193{
194 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
195 u8 ata66;
196
197
198
199
200
201 pci_read_config_byte(pdev, 0x5A, &ata66);
202 if (ata66 & 2)
203 return ATA_CBL_PATA40;
204 return ATA_CBL_PATA80;
205}
206
207static void hpt366_set_mode(struct ata_port *ap, struct ata_device *adev,
208 u8 mode)
209{
210 struct hpt_clock *clocks = ap->host->private_data;
211 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
212 u32 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
213 u32 addr2 = 0x51 + 4 * ap->port_no;
214 u32 mask, reg;
215 u8 fast;
216
217
218 pci_read_config_byte(pdev, addr2, &fast);
219 if (fast & 0x80) {
220 fast &= ~0x80;
221 pci_write_config_byte(pdev, addr2, fast);
222 }
223
224
225 if (mode < XFER_MW_DMA_0)
226 mask = 0xc1f8ffff;
227 else if (mode < XFER_UDMA_0)
228 mask = 0x303800ff;
229 else
230 mask = 0x30070000;
231
232 while (clocks->xfer_mode) {
233 if (clocks->xfer_mode == mode)
234 break;
235 clocks++;
236 }
237 if (!clocks->xfer_mode)
238 BUG();
239
240
241
242
243
244
245 pci_read_config_dword(pdev, addr1, ®);
246 reg = ((reg & ~mask) | (clocks->timing & mask)) & ~0xc0000000;
247 pci_write_config_dword(pdev, addr1, reg);
248}
249
250
251
252
253
254
255
256
257
258static void hpt366_set_piomode(struct ata_port *ap, struct ata_device *adev)
259{
260 hpt366_set_mode(ap, adev, adev->pio_mode);
261}
262
263
264
265
266
267
268
269
270
271
272static void hpt366_set_dmamode(struct ata_port *ap, struct ata_device *adev)
273{
274 hpt366_set_mode(ap, adev, adev->dma_mode);
275}
276
277static struct scsi_host_template hpt36x_sht = {
278 ATA_BMDMA_SHT(DRV_NAME),
279};
280
281
282
283
284
285static struct ata_port_operations hpt366_port_ops = {
286 .inherits = &ata_bmdma_port_ops,
287 .cable_detect = hpt36x_cable_detect,
288 .mode_filter = hpt366_filter,
289 .set_piomode = hpt366_set_piomode,
290 .set_dmamode = hpt366_set_dmamode,
291};
292
293
294
295
296
297
298
299
300
301static void hpt36x_init_chipset(struct pci_dev *dev)
302{
303 u8 drive_fast;
304 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, (L1_CACHE_BYTES / 4));
305 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x78);
306 pci_write_config_byte(dev, PCI_MIN_GNT, 0x08);
307 pci_write_config_byte(dev, PCI_MAX_LAT, 0x08);
308
309 pci_read_config_byte(dev, 0x51, &drive_fast);
310 if (drive_fast & 0x80)
311 pci_write_config_byte(dev, 0x51, drive_fast & ~0x80);
312}
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335static int hpt36x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
336{
337 static const struct ata_port_info info_hpt366 = {
338 .flags = ATA_FLAG_SLAVE_POSS,
339 .pio_mask = ATA_PIO4,
340 .mwdma_mask = ATA_MWDMA2,
341 .udma_mask = ATA_UDMA4,
342 .port_ops = &hpt366_port_ops
343 };
344 const struct ata_port_info *ppi[] = { &info_hpt366, NULL };
345
346 void *hpriv = NULL;
347 u32 class_rev;
348 u32 reg1;
349 int rc;
350
351 rc = pcim_enable_device(dev);
352 if (rc)
353 return rc;
354
355 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
356 class_rev &= 0xFF;
357
358
359
360 if (class_rev > 2)
361 return -ENODEV;
362
363 hpt36x_init_chipset(dev);
364
365 pci_read_config_dword(dev, 0x40, ®1);
366
367
368
369 switch((reg1 & 0x700) >> 8) {
370 case 9:
371 hpriv = &hpt366_40;
372 break;
373 case 5:
374 hpriv = &hpt366_25;
375 break;
376 default:
377 hpriv = &hpt366_33;
378 break;
379 }
380
381 return ata_pci_sff_init_one(dev, ppi, &hpt36x_sht, hpriv);
382}
383
384#ifdef CONFIG_PM
385static int hpt36x_reinit_one(struct pci_dev *dev)
386{
387 struct ata_host *host = dev_get_drvdata(&dev->dev);
388 int rc;
389
390 rc = ata_pci_device_do_resume(dev);
391 if (rc)
392 return rc;
393 hpt36x_init_chipset(dev);
394 ata_host_resume(host);
395 return 0;
396}
397#endif
398
399static const struct pci_device_id hpt36x[] = {
400 { PCI_VDEVICE(TTI, PCI_DEVICE_ID_TTI_HPT366), },
401 { },
402};
403
404static struct pci_driver hpt36x_pci_driver = {
405 .name = DRV_NAME,
406 .id_table = hpt36x,
407 .probe = hpt36x_init_one,
408 .remove = ata_pci_remove_one,
409#ifdef CONFIG_PM
410 .suspend = ata_pci_device_suspend,
411 .resume = hpt36x_reinit_one,
412#endif
413};
414
415static int __init hpt36x_init(void)
416{
417 return pci_register_driver(&hpt36x_pci_driver);
418}
419
420static void __exit hpt36x_exit(void)
421{
422 pci_unregister_driver(&hpt36x_pci_driver);
423}
424
425MODULE_AUTHOR("Alan Cox");
426MODULE_DESCRIPTION("low-level driver for the Highpoint HPT366/368");
427MODULE_LICENSE("GPL");
428MODULE_DEVICE_TABLE(pci, hpt36x);
429MODULE_VERSION(DRV_VERSION);
430
431module_init(hpt36x_init);
432module_exit(hpt36x_exit);
433