2 * pata_pdc202xx_old.c - Promise PDC202xx PATA for new ATA layer
4 * Alan Cox <alan@redhat.com>
5 * (C) 2007 Bartlomiej Zolnierkiewicz
7 * Based in part on linux/drivers/ide/pci/pdc202xx_old.c
9 * First cut with LBA48/ATAPI
12 * Channel interlock/reset on both required
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/pci.h>
18 #include <linux/init.h>
19 #include <linux/blkdev.h>
20 #include <linux/delay.h>
21 #include <scsi/scsi_host.h>
22 #include <linux/libata.h>
24 #define DRV_NAME "pata_pdc202xx_old"
25 #define DRV_VERSION "0.4.0"
28 * pdc2024x_pre_reset - probe begin
31 * Set up cable type and use generic probe init
34 static int pdc2024x_pre_reset(struct ata_port
*ap
)
36 ap
->cbl
= ATA_CBL_PATA40
;
37 return ata_std_prereset(ap
);
41 static void pdc2024x_error_handler(struct ata_port
*ap
)
43 ata_bmdma_drive_eh(ap
, pdc2024x_pre_reset
, ata_std_softreset
, NULL
, ata_std_postreset
);
47 static int pdc2026x_pre_reset(struct ata_port
*ap
)
49 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
52 pci_read_config_word(pdev
, 0x50, &cis
);
53 if (cis
& (1 << (10 + ap
->port_no
)))
54 ap
->cbl
= ATA_CBL_PATA80
;
56 ap
->cbl
= ATA_CBL_PATA40
;
58 return ata_std_prereset(ap
);
61 static void pdc2026x_error_handler(struct ata_port
*ap
)
63 ata_bmdma_drive_eh(ap
, pdc2026x_pre_reset
, ata_std_softreset
, NULL
, ata_std_postreset
);
67 * pdc202xx_configure_piomode - set chip PIO timing
72 * Called to do the PIO mode setup. Our timing registers are shared
73 * so a configure_dmamode call will undo any work we do here and vice
77 static void pdc202xx_configure_piomode(struct ata_port
*ap
, struct ata_device
*adev
, int pio
)
79 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
80 int port
= 0x60 + 8 * ap
->port_no
+ 4 * adev
->devno
;
81 static u16 pio_timing
[5] = {
82 0x0913, 0x050C , 0x0308, 0x0206, 0x0104
86 pci_read_config_byte(pdev
, port
, &r_ap
);
87 pci_read_config_byte(pdev
, port
+ 1, &r_bp
);
88 r_ap
&= ~0x3F; /* Preserve ERRDY_EN, SYNC_IN */
90 r_ap
|= (pio_timing
[pio
] >> 8);
91 r_bp
|= (pio_timing
[pio
] & 0xFF);
93 if (ata_pio_need_iordy(adev
))
94 r_ap
|= 0x20; /* IORDY enable */
95 if (adev
->class == ATA_DEV_ATA
)
96 r_ap
|= 0x10; /* FIFO enable */
97 pci_write_config_byte(pdev
, port
, r_ap
);
98 pci_write_config_byte(pdev
, port
+ 1, r_bp
);
102 * pdc202xx_set_piomode - set initial PIO mode data
106 * Called to do the PIO mode setup. Our timing registers are shared
107 * but we want to set the PIO timing by default.
110 static void pdc202xx_set_piomode(struct ata_port
*ap
, struct ata_device
*adev
)
112 pdc202xx_configure_piomode(ap
, adev
, adev
->pio_mode
- XFER_PIO_0
);
116 * pdc202xx_configure_dmamode - set DMA mode in chip
120 * Load DMA cycle times into the chip ready for a DMA transfer
124 static void pdc202xx_set_dmamode(struct ata_port
*ap
, struct ata_device
*adev
)
126 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
127 int port
= 0x60 + 8 * ap
->port_no
+ 4 * adev
->devno
;
128 static u8 udma_timing
[6][2] = {
129 { 0x60, 0x03 }, /* 33 Mhz Clock */
132 { 0x40, 0x02 }, /* 66 Mhz Clock */
136 static u8 mdma_timing
[3][2] = {
143 pci_read_config_byte(pdev
, port
+ 1, &r_bp
);
144 pci_read_config_byte(pdev
, port
+ 2, &r_cp
);
149 if (adev
->dma_mode
>= XFER_UDMA_0
) {
150 int speed
= adev
->dma_mode
- XFER_UDMA_0
;
151 r_bp
|= udma_timing
[speed
][0];
152 r_cp
|= udma_timing
[speed
][1];
155 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
156 r_bp
|= mdma_timing
[speed
][0];
157 r_cp
|= mdma_timing
[speed
][1];
159 pci_write_config_byte(pdev
, port
+ 1, r_bp
);
160 pci_write_config_byte(pdev
, port
+ 2, r_cp
);
165 * pdc2026x_bmdma_start - DMA engine begin
168 * In UDMA3 or higher we have to clock switch for the duration of the
169 * DMA transfer sequence.
172 static void pdc2026x_bmdma_start(struct ata_queued_cmd
*qc
)
174 struct ata_port
*ap
= qc
->ap
;
175 struct ata_device
*adev
= qc
->dev
;
176 struct ata_taskfile
*tf
= &qc
->tf
;
177 int sel66
= ap
->port_no
? 0x08: 0x02;
179 void __iomem
*master
= ap
->host
->ports
[0]->ioaddr
.bmdma_addr
;
180 void __iomem
*clock
= master
+ 0x11;
181 void __iomem
*atapi_reg
= master
+ 0x20 + (4 * ap
->port_no
);
185 /* Check we keep host level locking here */
186 if (adev
->dma_mode
>= XFER_UDMA_2
)
187 iowrite8(ioread8(clock
) | sel66
, clock
);
189 iowrite8(ioread8(clock
) & ~sel66
, clock
);
191 /* The DMA clocks may have been trashed by a reset. FIXME: make conditional
192 and move to qc_issue ? */
193 pdc202xx_set_dmamode(ap
, qc
->dev
);
195 /* Cases the state machine will not complete correctly without help */
196 if ((tf
->flags
& ATA_TFLAG_LBA48
) || tf
->protocol
== ATA_PROT_ATAPI_DMA
)
198 len
= qc
->nbytes
/ 2;
200 if (tf
->flags
& ATA_TFLAG_WRITE
)
205 iowrite32(len
, atapi_reg
);
213 * pdc2026x_bmdma_end - DMA engine stop
216 * After a DMA completes we need to put the clock back to 33MHz for
220 static void pdc2026x_bmdma_stop(struct ata_queued_cmd
*qc
)
222 struct ata_port
*ap
= qc
->ap
;
223 struct ata_device
*adev
= qc
->dev
;
224 struct ata_taskfile
*tf
= &qc
->tf
;
226 int sel66
= ap
->port_no
? 0x08: 0x02;
227 /* The clock bits are in the same register for both channels */
228 void __iomem
*master
= ap
->host
->ports
[0]->ioaddr
.bmdma_addr
;
229 void __iomem
*clock
= master
+ 0x11;
230 void __iomem
*atapi_reg
= master
+ 0x20 + (4 * ap
->port_no
);
232 /* Cases the state machine will not complete correctly */
233 if (tf
->protocol
== ATA_PROT_ATAPI_DMA
|| ( tf
->flags
& ATA_TFLAG_LBA48
)) {
234 iowrite32(0, atapi_reg
);
235 iowrite8(ioread8(clock
) & ~sel66
, clock
);
237 /* Check we keep host level locking here */
238 /* Flip back to 33Mhz for PIO */
239 if (adev
->dma_mode
>= XFER_UDMA_2
)
240 iowrite8(ioread8(clock
) & ~sel66
, clock
);
246 * pdc2026x_dev_config - device setup hook
248 * @adev: newly found device
250 * Perform chip specific early setup. We need to lock the transfer
251 * sizes to 8bit to avoid making the state engine on the 2026x cards
255 static void pdc2026x_dev_config(struct ata_port
*ap
, struct ata_device
*adev
)
257 adev
->max_sectors
= 256;
260 static struct scsi_host_template pdc202xx_sht
= {
261 .module
= THIS_MODULE
,
263 .ioctl
= ata_scsi_ioctl
,
264 .queuecommand
= ata_scsi_queuecmd
,
265 .can_queue
= ATA_DEF_QUEUE
,
266 .this_id
= ATA_SHT_THIS_ID
,
267 .sg_tablesize
= LIBATA_MAX_PRD
,
268 .cmd_per_lun
= ATA_SHT_CMD_PER_LUN
,
269 .emulated
= ATA_SHT_EMULATED
,
270 .use_clustering
= ATA_SHT_USE_CLUSTERING
,
271 .proc_name
= DRV_NAME
,
272 .dma_boundary
= ATA_DMA_BOUNDARY
,
273 .slave_configure
= ata_scsi_slave_config
,
274 .slave_destroy
= ata_scsi_slave_destroy
,
275 .bios_param
= ata_std_bios_param
,
277 .resume
= ata_scsi_device_resume
,
278 .suspend
= ata_scsi_device_suspend
,
282 static struct ata_port_operations pdc2024x_port_ops
= {
283 .port_disable
= ata_port_disable
,
284 .set_piomode
= pdc202xx_set_piomode
,
285 .set_dmamode
= pdc202xx_set_dmamode
,
286 .mode_filter
= ata_pci_default_filter
,
287 .tf_load
= ata_tf_load
,
288 .tf_read
= ata_tf_read
,
289 .check_status
= ata_check_status
,
290 .exec_command
= ata_exec_command
,
291 .dev_select
= ata_std_dev_select
,
293 .freeze
= ata_bmdma_freeze
,
294 .thaw
= ata_bmdma_thaw
,
295 .error_handler
= pdc2024x_error_handler
,
296 .post_internal_cmd
= ata_bmdma_post_internal_cmd
,
298 .bmdma_setup
= ata_bmdma_setup
,
299 .bmdma_start
= ata_bmdma_start
,
300 .bmdma_stop
= ata_bmdma_stop
,
301 .bmdma_status
= ata_bmdma_status
,
303 .qc_prep
= ata_qc_prep
,
304 .qc_issue
= ata_qc_issue_prot
,
305 .data_xfer
= ata_data_xfer
,
307 .irq_handler
= ata_interrupt
,
308 .irq_clear
= ata_bmdma_irq_clear
,
309 .irq_on
= ata_irq_on
,
310 .irq_ack
= ata_irq_ack
,
312 .port_start
= ata_port_start
,
315 static struct ata_port_operations pdc2026x_port_ops
= {
316 .port_disable
= ata_port_disable
,
317 .set_piomode
= pdc202xx_set_piomode
,
318 .set_dmamode
= pdc202xx_set_dmamode
,
319 .mode_filter
= ata_pci_default_filter
,
320 .tf_load
= ata_tf_load
,
321 .tf_read
= ata_tf_read
,
322 .check_status
= ata_check_status
,
323 .exec_command
= ata_exec_command
,
324 .dev_select
= ata_std_dev_select
,
325 .dev_config
= pdc2026x_dev_config
,
327 .freeze
= ata_bmdma_freeze
,
328 .thaw
= ata_bmdma_thaw
,
329 .error_handler
= pdc2026x_error_handler
,
330 .post_internal_cmd
= ata_bmdma_post_internal_cmd
,
332 .bmdma_setup
= ata_bmdma_setup
,
333 .bmdma_start
= pdc2026x_bmdma_start
,
334 .bmdma_stop
= pdc2026x_bmdma_stop
,
335 .bmdma_status
= ata_bmdma_status
,
337 .qc_prep
= ata_qc_prep
,
338 .qc_issue
= ata_qc_issue_prot
,
339 .data_xfer
= ata_data_xfer
,
341 .irq_handler
= ata_interrupt
,
342 .irq_clear
= ata_bmdma_irq_clear
,
343 .irq_on
= ata_irq_on
,
344 .irq_ack
= ata_irq_ack
,
346 .port_start
= ata_port_start
,
349 static int pdc202xx_init_one(struct pci_dev
*dev
, const struct pci_device_id
*id
)
351 static struct ata_port_info info
[3] = {
353 .sht
= &pdc202xx_sht
,
354 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
357 .udma_mask
= ATA_UDMA2
,
358 .port_ops
= &pdc2024x_port_ops
361 .sht
= &pdc202xx_sht
,
362 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
365 .udma_mask
= ATA_UDMA4
,
366 .port_ops
= &pdc2026x_port_ops
369 .sht
= &pdc202xx_sht
,
370 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
373 .udma_mask
= ATA_UDMA5
,
374 .port_ops
= &pdc2026x_port_ops
378 static struct ata_port_info
*port_info
[2];
380 port_info
[0] = port_info
[1] = &info
[id
->driver_data
];
382 if (dev
->device
== PCI_DEVICE_ID_PROMISE_20265
) {
383 struct pci_dev
*bridge
= dev
->bus
->self
;
384 /* Don't grab anything behind a Promise I2O RAID */
385 if (bridge
&& bridge
->vendor
== PCI_VENDOR_ID_INTEL
) {
386 if( bridge
->device
== PCI_DEVICE_ID_INTEL_I960
)
388 if( bridge
->device
== PCI_DEVICE_ID_INTEL_I960RM
)
392 return ata_pci_init_one(dev
, port_info
, 2);
395 static const struct pci_device_id pdc202xx
[] = {
396 { PCI_VDEVICE(PROMISE
, PCI_DEVICE_ID_PROMISE_20246
), 0 },
397 { PCI_VDEVICE(PROMISE
, PCI_DEVICE_ID_PROMISE_20262
), 1 },
398 { PCI_VDEVICE(PROMISE
, PCI_DEVICE_ID_PROMISE_20263
), 1 },
399 { PCI_VDEVICE(PROMISE
, PCI_DEVICE_ID_PROMISE_20265
), 2 },
400 { PCI_VDEVICE(PROMISE
, PCI_DEVICE_ID_PROMISE_20267
), 2 },
405 static struct pci_driver pdc202xx_pci_driver
= {
407 .id_table
= pdc202xx
,
408 .probe
= pdc202xx_init_one
,
409 .remove
= ata_pci_remove_one
,
411 .suspend
= ata_pci_device_suspend
,
412 .resume
= ata_pci_device_resume
,
416 static int __init
pdc202xx_init(void)
418 return pci_register_driver(&pdc202xx_pci_driver
);
421 static void __exit
pdc202xx_exit(void)
423 pci_unregister_driver(&pdc202xx_pci_driver
);
426 MODULE_AUTHOR("Alan Cox");
427 MODULE_DESCRIPTION("low-level driver for Promise 2024x and 20262-20267");
428 MODULE_LICENSE("GPL");
429 MODULE_DEVICE_TABLE(pci
, pdc202xx
);
430 MODULE_VERSION(DRV_VERSION
);
432 module_init(pdc202xx_init
);
433 module_exit(pdc202xx_exit
);