2 * pata_cmd64x.c - CMD64x PATA for new ATA layer
4 * Alan Cox <alan@lxorguk.ukuu.org.uk>
5 * (C) 2009-2010 Bartlomiej Zolnierkiewicz
8 * linux/drivers/ide/pci/cmd64x.c Version 1.30 Sept 10, 2002
10 * cmd64x.c: Enable interrupts at initialization time on Ultra/PCI machines.
11 * Note, this driver is not used at all on other systems because
12 * there the "BIOS" has done all of the following already.
13 * Due to massive hardware bugs, UltraDMA is only supported
14 * on the 646U2 and not on the 646U.
16 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
17 * Copyright (C) 1998 David S. Miller (davem@redhat.com)
19 * Copyright (C) 1999-2002 Andre Hedrick <andre@linux-ide.org>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/pci.h>
28 #include <linux/init.h>
29 #include <linux/blkdev.h>
30 #include <linux/delay.h>
31 #include <scsi/scsi_host.h>
32 #include <linux/libata.h>
34 #define DRV_NAME "pata_cmd64x"
35 #define DRV_VERSION "0.2.5"
38 * CMD64x specific registers definition.
50 ARTTIM23_DIS_RA2
= 0x04,
51 ARTTIM23_DIS_RA3
= 0x08,
52 ARTTIM23_INTR_CH1
= 0x10,
58 MRDMODE_INTR_CH0
= 0x04,
59 MRDMODE_INTR_CH1
= 0x08,
69 static int cmd648_cable_detect(struct ata_port
*ap
)
71 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
74 /* Check cable detect bits */
75 pci_read_config_byte(pdev
, BMIDECSR
, &r
);
76 if (r
& (1 << ap
->port_no
))
77 return ATA_CBL_PATA80
;
78 return ATA_CBL_PATA40
;
82 * cmd64x_set_piomode - set PIO and MWDMA timing
87 * Called to do the PIO and MWDMA mode setup.
90 static void cmd64x_set_timing(struct ata_port
*ap
, struct ata_device
*adev
, u8 mode
)
92 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
94 const unsigned long T
= 1000000 / 33;
95 const u8 setup_data
[] = { 0x40, 0x40, 0x40, 0x80, 0x00 };
99 /* Port layout is not logical so use a table */
100 const u8 arttim_port
[2][2] = {
101 { ARTTIM0
, ARTTIM1
},
102 { ARTTIM23
, ARTTIM23
}
104 const u8 drwtim_port
[2][2] = {
105 { DRWTIM0
, DRWTIM1
},
109 int arttim
= arttim_port
[ap
->port_no
][adev
->devno
];
110 int drwtim
= drwtim_port
[ap
->port_no
][adev
->devno
];
112 /* ata_timing_compute is smart and will produce timings for MWDMA
113 that don't violate the drives PIO capabilities. */
114 if (ata_timing_compute(adev
, mode
, &t
, T
, 0) < 0) {
115 printk(KERN_ERR DRV_NAME
": mode computation failed.\n");
119 /* Slave has shared address setup */
120 struct ata_device
*pair
= ata_dev_pair(adev
);
123 struct ata_timing tp
;
125 ata_timing_compute(pair
, pair
->pio_mode
, &tp
, T
, 0);
126 ata_timing_merge(&t
, &tp
, &t
, ATA_TIMING_SETUP
);
127 if (pair
->dma_mode
) {
128 ata_timing_compute(pair
, pair
->dma_mode
,
130 ata_timing_merge(&tp
, &t
, &t
, ATA_TIMING_SETUP
);
135 printk(KERN_DEBUG DRV_NAME
": active %d recovery %d setup %d.\n",
136 t
.active
, t
.recover
, t
.setup
);
137 if (t
.recover
> 16) {
138 t
.active
+= t
.recover
- 16;
144 /* Now convert the clocks into values we can actually stuff into
149 else if (t
.recover
> 1)
157 t
.setup
= setup_data
[t
.setup
];
159 t
.active
&= 0x0F; /* 0 = 16 */
161 /* Load setup timing */
162 pci_read_config_byte(pdev
, arttim
, ®
);
165 pci_write_config_byte(pdev
, arttim
, reg
);
167 /* Load active/recovery */
168 pci_write_config_byte(pdev
, drwtim
, (t
.active
<< 4) | t
.recover
);
172 * cmd64x_set_piomode - set initial PIO mode data
176 * Used when configuring the devices ot set the PIO timings. All the
177 * actual work is done by the PIO/MWDMA setting helper
180 static void cmd64x_set_piomode(struct ata_port
*ap
, struct ata_device
*adev
)
182 cmd64x_set_timing(ap
, adev
, adev
->pio_mode
);
186 * cmd64x_set_dmamode - set initial DMA mode data
190 * Called to do the DMA mode setup.
193 static void cmd64x_set_dmamode(struct ata_port
*ap
, struct ata_device
*adev
)
195 static const u8 udma_data
[] = {
196 0x30, 0x20, 0x10, 0x20, 0x10, 0x00
199 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
202 int pciU
= UDIDETCR0
+ 8 * ap
->port_no
;
203 int pciD
= BMIDESR0
+ 8 * ap
->port_no
;
204 int shift
= 2 * adev
->devno
;
206 pci_read_config_byte(pdev
, pciD
, ®D
);
207 pci_read_config_byte(pdev
, pciU
, ®U
);
210 regD
&= ~(0x20 << adev
->devno
);
211 /* DMA control bits */
212 regU
&= ~(0x30 << shift
);
213 /* DMA timing bits */
214 regU
&= ~(0x05 << adev
->devno
);
216 if (adev
->dma_mode
>= XFER_UDMA_0
) {
217 /* Merge the timing value */
218 regU
|= udma_data
[adev
->dma_mode
- XFER_UDMA_0
] << shift
;
219 /* Merge the control bits */
220 regU
|= 1 << adev
->devno
; /* UDMA on */
221 if (adev
->dma_mode
> XFER_UDMA_2
) /* 15nS timing */
222 regU
|= 4 << adev
->devno
;
224 regU
&= ~ (1 << adev
->devno
); /* UDMA off */
225 cmd64x_set_timing(ap
, adev
, adev
->dma_mode
);
228 regD
|= 0x20 << adev
->devno
;
230 pci_write_config_byte(pdev
, pciU
, regU
);
231 pci_write_config_byte(pdev
, pciD
, regD
);
235 * cmd648_dma_stop - DMA stop callback
236 * @qc: Command in progress
241 static void cmd648_bmdma_stop(struct ata_queued_cmd
*qc
)
243 struct ata_port
*ap
= qc
->ap
;
244 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
246 int dma_mask
= ap
->port_no
? ARTTIM23_INTR_CH1
: CFR_INTR_CH0
;
247 int dma_reg
= ap
->port_no
? ARTTIM23
: CFR
;
251 pci_read_config_byte(pdev
, dma_reg
, &dma_intr
);
252 pci_write_config_byte(pdev
, dma_reg
, dma_intr
| dma_mask
);
256 * cmd646r1_dma_stop - DMA stop callback
257 * @qc: Command in progress
259 * Stub for now while investigating the r1 quirk in the old driver.
262 static void cmd646r1_bmdma_stop(struct ata_queued_cmd
*qc
)
267 static struct scsi_host_template cmd64x_sht
= {
268 ATA_BMDMA_SHT(DRV_NAME
),
271 static const struct ata_port_operations cmd64x_base_ops
= {
272 .inherits
= &ata_bmdma_port_ops
,
273 .set_piomode
= cmd64x_set_piomode
,
274 .set_dmamode
= cmd64x_set_dmamode
,
277 static struct ata_port_operations cmd64x_port_ops
= {
278 .inherits
= &cmd64x_base_ops
,
279 .cable_detect
= ata_cable_40wire
,
282 static struct ata_port_operations cmd646r1_port_ops
= {
283 .inherits
= &cmd64x_base_ops
,
284 .bmdma_stop
= cmd646r1_bmdma_stop
,
285 .cable_detect
= ata_cable_40wire
,
288 static struct ata_port_operations cmd648_port_ops
= {
289 .inherits
= &cmd64x_base_ops
,
290 .bmdma_stop
= cmd648_bmdma_stop
,
291 .cable_detect
= cmd648_cable_detect
,
294 static int cmd64x_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
296 static const struct ata_port_info cmd_info
[6] = {
297 { /* CMD 643 - no UDMA */
298 .flags
= ATA_FLAG_SLAVE_POSS
,
299 .pio_mask
= ATA_PIO4
,
300 .mwdma_mask
= ATA_MWDMA2
,
301 .port_ops
= &cmd64x_port_ops
303 { /* CMD 646 with broken UDMA */
304 .flags
= ATA_FLAG_SLAVE_POSS
,
305 .pio_mask
= ATA_PIO4
,
306 .mwdma_mask
= ATA_MWDMA2
,
307 .port_ops
= &cmd64x_port_ops
309 { /* CMD 646 with working UDMA */
310 .flags
= ATA_FLAG_SLAVE_POSS
,
311 .pio_mask
= ATA_PIO4
,
312 .mwdma_mask
= ATA_MWDMA2
,
313 .udma_mask
= ATA_UDMA2
,
314 .port_ops
= &cmd64x_port_ops
316 { /* CMD 646 rev 1 */
317 .flags
= ATA_FLAG_SLAVE_POSS
,
318 .pio_mask
= ATA_PIO4
,
319 .mwdma_mask
= ATA_MWDMA2
,
320 .port_ops
= &cmd646r1_port_ops
323 .flags
= ATA_FLAG_SLAVE_POSS
,
324 .pio_mask
= ATA_PIO4
,
325 .mwdma_mask
= ATA_MWDMA2
,
326 .udma_mask
= ATA_UDMA4
,
327 .port_ops
= &cmd648_port_ops
330 .flags
= ATA_FLAG_SLAVE_POSS
,
331 .pio_mask
= ATA_PIO4
,
332 .mwdma_mask
= ATA_MWDMA2
,
333 .udma_mask
= ATA_UDMA5
,
334 .port_ops
= &cmd648_port_ops
337 const struct ata_port_info
*ppi
[] = { &cmd_info
[id
->driver_data
], NULL
};
341 rc
= pcim_enable_device(pdev
);
345 if (id
->driver_data
== 0) /* 643 */
346 ata_pci_bmdma_clear_simplex(pdev
);
348 if (pdev
->device
== PCI_DEVICE_ID_CMD_646
) {
349 /* Does UDMA work ? */
350 if (pdev
->revision
> 4)
351 ppi
[0] = &cmd_info
[2];
352 /* Early rev with other problems ? */
353 else if (pdev
->revision
== 1)
354 ppi
[0] = &cmd_info
[3];
357 pci_write_config_byte(pdev
, PCI_LATENCY_TIMER
, 64);
358 pci_read_config_byte(pdev
, MRDMODE
, &mrdmode
);
359 mrdmode
&= ~ 0x30; /* IRQ set up */
360 mrdmode
|= 0x02; /* Memory read line enable */
361 pci_write_config_byte(pdev
, MRDMODE
, mrdmode
);
363 /* Force PIO 0 here.. */
365 /* PPC specific fixup copied from old driver */
367 pci_write_config_byte(pdev
, UDIDETCR0
, 0xF0);
370 return ata_pci_sff_init_one(pdev
, ppi
, &cmd64x_sht
, NULL
, 0);
374 static int cmd64x_reinit_one(struct pci_dev
*pdev
)
376 struct ata_host
*host
= dev_get_drvdata(&pdev
->dev
);
380 rc
= ata_pci_device_do_resume(pdev
);
384 pci_write_config_byte(pdev
, PCI_LATENCY_TIMER
, 64);
385 pci_read_config_byte(pdev
, MRDMODE
, &mrdmode
);
386 mrdmode
&= ~ 0x30; /* IRQ set up */
387 mrdmode
|= 0x02; /* Memory read line enable */
388 pci_write_config_byte(pdev
, MRDMODE
, mrdmode
);
390 pci_write_config_byte(pdev
, UDIDETCR0
, 0xF0);
392 ata_host_resume(host
);
397 static const struct pci_device_id cmd64x
[] = {
398 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_643
), 0 },
399 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_646
), 1 },
400 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_648
), 4 },
401 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_649
), 5 },
406 static struct pci_driver cmd64x_pci_driver
= {
409 .probe
= cmd64x_init_one
,
410 .remove
= ata_pci_remove_one
,
412 .suspend
= ata_pci_device_suspend
,
413 .resume
= cmd64x_reinit_one
,
417 static int __init
cmd64x_init(void)
419 return pci_register_driver(&cmd64x_pci_driver
);
422 static void __exit
cmd64x_exit(void)
424 pci_unregister_driver(&cmd64x_pci_driver
);
427 MODULE_AUTHOR("Alan Cox");
428 MODULE_DESCRIPTION("low-level driver for CMD64x series PATA controllers");
429 MODULE_LICENSE("GPL");
430 MODULE_DEVICE_TABLE(pci
, cmd64x
);
431 MODULE_VERSION(DRV_VERSION
);
433 module_init(cmd64x_init
);
434 module_exit(cmd64x_exit
);