2 * pata_rdc - Driver for later RDC PATA controllers
4 * This is actually a driver for hardware meeting
5 * INCITS 370-2004 (1510D): ATA Host Adapter Standards
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2, or (at your option)
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; see the file COPYING. If not, write to
21 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/pci.h>
27 #include <linux/init.h>
28 #include <linux/blkdev.h>
29 #include <linux/delay.h>
30 #include <linux/device.h>
31 #include <linux/gfp.h>
32 #include <scsi/scsi_host.h>
33 #include <linux/libata.h>
34 #include <linux/dmi.h>
36 #define DRV_NAME "pata_rdc"
37 #define DRV_VERSION "0.01"
39 struct rdc_host_priv
{
44 * rdc_pata_cable_detect - Probe host controller cable detect info
45 * @ap: Port for which cable detect info is desired
47 * Read 80c cable indicator from ATA PCI device's PCI config
48 * register. This register is normally set by firmware (BIOS).
51 * None (inherited from caller).
54 static int rdc_pata_cable_detect(struct ata_port
*ap
)
56 struct rdc_host_priv
*hpriv
= ap
->host
->private_data
;
59 /* check BIOS cable detect results */
60 mask
= 0x30 << (2 * ap
->port_no
);
61 if ((hpriv
->saved_iocfg
& mask
) == 0)
62 return ATA_CBL_PATA40
;
63 return ATA_CBL_PATA80
;
67 * rdc_pata_prereset - prereset for PATA host controller
69 * @deadline: deadline jiffies for the operation
72 * None (inherited from caller).
74 static int rdc_pata_prereset(struct ata_link
*link
, unsigned long deadline
)
76 struct ata_port
*ap
= link
->ap
;
77 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
79 static const struct pci_bits rdc_enable_bits
[] = {
80 { 0x41U
, 1U, 0x80UL
, 0x80UL
}, /* port 0 */
81 { 0x43U
, 1U, 0x80UL
, 0x80UL
}, /* port 1 */
84 if (!pci_test_config_bits(pdev
, &rdc_enable_bits
[ap
->port_no
]))
86 return ata_sff_prereset(link
, deadline
);
89 static DEFINE_SPINLOCK(rdc_lock
);
92 * rdc_set_piomode - Initialize host controller PATA PIO timings
93 * @ap: Port whose timings we are configuring
96 * Set PIO mode for device, in host controller PCI config space.
99 * None (inherited from caller).
102 static void rdc_set_piomode(struct ata_port
*ap
, struct ata_device
*adev
)
104 unsigned int pio
= adev
->pio_mode
- XFER_PIO_0
;
105 struct pci_dev
*dev
= to_pci_dev(ap
->host
->dev
);
107 unsigned int is_slave
= (adev
->devno
!= 0);
108 unsigned int master_port
= ap
->port_no
? 0x42 : 0x40;
109 unsigned int slave_port
= 0x44;
115 static const /* ISP RTC */
116 u8 timings
[][2] = { { 0, 0 },
123 control
|= 1; /* TIME1 enable */
124 if (ata_pio_need_iordy(adev
))
125 control
|= 2; /* IE enable */
127 if (adev
->class == ATA_DEV_ATA
)
128 control
|= 4; /* PPE enable */
130 spin_lock_irqsave(&rdc_lock
, flags
);
132 /* PIO configuration clears DTE unconditionally. It will be
133 * programmed in set_dmamode which is guaranteed to be called
134 * after set_piomode if any DMA mode is available.
136 pci_read_config_word(dev
, master_port
, &master_data
);
138 /* clear TIME1|IE1|PPE1|DTE1 */
139 master_data
&= 0xff0f;
140 /* Enable SITRE (separate slave timing register) */
141 master_data
|= 0x4000;
142 /* enable PPE1, IE1 and TIME1 as needed */
143 master_data
|= (control
<< 4);
144 pci_read_config_byte(dev
, slave_port
, &slave_data
);
145 slave_data
&= (ap
->port_no
? 0x0f : 0xf0);
146 /* Load the timing nibble for this slave */
147 slave_data
|= ((timings
[pio
][0] << 2) | timings
[pio
][1])
148 << (ap
->port_no
? 4 : 0);
150 /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */
151 master_data
&= 0xccf0;
152 /* Enable PPE, IE and TIME as appropriate */
153 master_data
|= control
;
154 /* load ISP and RCT */
156 (timings
[pio
][0] << 12) |
157 (timings
[pio
][1] << 8);
159 pci_write_config_word(dev
, master_port
, master_data
);
161 pci_write_config_byte(dev
, slave_port
, slave_data
);
163 /* Ensure the UDMA bit is off - it will be turned back on if
166 pci_read_config_byte(dev
, 0x48, &udma_enable
);
167 udma_enable
&= ~(1 << (2 * ap
->port_no
+ adev
->devno
));
168 pci_write_config_byte(dev
, 0x48, udma_enable
);
170 spin_unlock_irqrestore(&rdc_lock
, flags
);
174 * rdc_set_dmamode - Initialize host controller PATA PIO timings
175 * @ap: Port whose timings we are configuring
176 * @adev: Drive in question
178 * Set UDMA mode for device, in host controller PCI config space.
181 * None (inherited from caller).
184 static void rdc_set_dmamode(struct ata_port
*ap
, struct ata_device
*adev
)
186 struct pci_dev
*dev
= to_pci_dev(ap
->host
->dev
);
188 u8 master_port
= ap
->port_no
? 0x42 : 0x40;
190 u8 speed
= adev
->dma_mode
;
191 int devid
= adev
->devno
+ 2 * ap
->port_no
;
194 static const /* ISP RTC */
195 u8 timings
[][2] = { { 0, 0 },
201 spin_lock_irqsave(&rdc_lock
, flags
);
203 pci_read_config_word(dev
, master_port
, &master_data
);
204 pci_read_config_byte(dev
, 0x48, &udma_enable
);
206 if (speed
>= XFER_UDMA_0
) {
207 unsigned int udma
= adev
->dma_mode
- XFER_UDMA_0
;
210 int u_clock
, u_speed
;
213 * UDMA is handled by a combination of clock switching and
214 * selection of dividers
216 * Handy rule: Odd modes are UDMATIMx 01, even are 02
217 * except UDMA0 which is 00
219 u_speed
= min(2 - (udma
& 1), udma
);
221 u_clock
= 0x1000; /* 100Mhz */
223 u_clock
= 1; /* 66Mhz */
225 u_clock
= 0; /* 33Mhz */
227 udma_enable
|= (1 << devid
);
229 /* Load the CT/RP selection */
230 pci_read_config_word(dev
, 0x4A, &udma_timing
);
231 udma_timing
&= ~(3 << (4 * devid
));
232 udma_timing
|= u_speed
<< (4 * devid
);
233 pci_write_config_word(dev
, 0x4A, udma_timing
);
235 /* Select a 33/66/100Mhz clock */
236 pci_read_config_word(dev
, 0x54, &ideconf
);
237 ideconf
&= ~(0x1001 << devid
);
238 ideconf
|= u_clock
<< devid
;
239 pci_write_config_word(dev
, 0x54, ideconf
);
242 * MWDMA is driven by the PIO timings. We must also enable
243 * IORDY unconditionally along with TIME1. PPE has already
244 * been set when the PIO timing was set.
246 unsigned int mwdma
= adev
->dma_mode
- XFER_MW_DMA_0
;
247 unsigned int control
;
249 const unsigned int needed_pio
[3] = {
250 XFER_PIO_0
, XFER_PIO_3
, XFER_PIO_4
252 int pio
= needed_pio
[mwdma
] - XFER_PIO_0
;
254 control
= 3; /* IORDY|TIME1 */
256 /* If the drive MWDMA is faster than it can do PIO then
257 we must force PIO into PIO0 */
259 if (adev
->pio_mode
< needed_pio
[mwdma
])
260 /* Enable DMA timing only */
261 control
|= 8; /* PIO cycles in PIO0 */
263 if (adev
->devno
) { /* Slave */
264 master_data
&= 0xFF4F; /* Mask out IORDY|TIME1|DMAONLY */
265 master_data
|= control
<< 4;
266 pci_read_config_byte(dev
, 0x44, &slave_data
);
267 slave_data
&= (ap
->port_no
? 0x0f : 0xf0);
268 /* Load the matching timing */
269 slave_data
|= ((timings
[pio
][0] << 2) | timings
[pio
][1]) << (ap
->port_no
? 4 : 0);
270 pci_write_config_byte(dev
, 0x44, slave_data
);
271 } else { /* Master */
272 master_data
&= 0xCCF4; /* Mask out IORDY|TIME1|DMAONLY
273 and master timing bits */
274 master_data
|= control
;
276 (timings
[pio
][0] << 12) |
277 (timings
[pio
][1] << 8);
280 udma_enable
&= ~(1 << devid
);
281 pci_write_config_word(dev
, master_port
, master_data
);
283 pci_write_config_byte(dev
, 0x48, udma_enable
);
285 spin_unlock_irqrestore(&rdc_lock
, flags
);
288 static struct ata_port_operations rdc_pata_ops
= {
289 .inherits
= &ata_bmdma32_port_ops
,
290 .cable_detect
= rdc_pata_cable_detect
,
291 .set_piomode
= rdc_set_piomode
,
292 .set_dmamode
= rdc_set_dmamode
,
293 .prereset
= rdc_pata_prereset
,
296 static struct ata_port_info rdc_port_info
= {
298 .flags
= ATA_FLAG_SLAVE_POSS
,
299 .pio_mask
= ATA_PIO4
,
300 .mwdma_mask
= ATA_MWDMA12_ONLY
,
301 .udma_mask
= ATA_UDMA5
,
302 .port_ops
= &rdc_pata_ops
,
305 static struct scsi_host_template rdc_sht
= {
306 ATA_BMDMA_SHT(DRV_NAME
),
310 * rdc_init_one - Register PIIX ATA PCI device with kernel services
311 * @pdev: PCI device to register
312 * @ent: Entry in rdc_pci_tbl matching with @pdev
314 * Called from kernel PCI layer. We probe for combined mode (sigh),
315 * and then hand over control to libata, for it to do the rest.
318 * Inherited from PCI layer (may sleep).
321 * Zero on success, or -ERRNO value.
324 static int rdc_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
326 struct device
*dev
= &pdev
->dev
;
327 struct ata_port_info port_info
[2];
328 const struct ata_port_info
*ppi
[] = { &port_info
[0], &port_info
[1] };
329 struct ata_host
*host
;
330 struct rdc_host_priv
*hpriv
;
333 ata_print_version_once(&pdev
->dev
, DRV_VERSION
);
335 port_info
[0] = rdc_port_info
;
336 port_info
[1] = rdc_port_info
;
338 /* enable device and prepare host */
339 rc
= pcim_enable_device(pdev
);
343 hpriv
= devm_kzalloc(dev
, sizeof(*hpriv
), GFP_KERNEL
);
347 /* Save IOCFG, this will be used for cable detection, quirk
348 * detection and restoration on detach.
350 pci_read_config_dword(pdev
, 0x54, &hpriv
->saved_iocfg
);
352 rc
= ata_pci_bmdma_prepare_host(pdev
, ppi
, &host
);
355 host
->private_data
= hpriv
;
359 host
->flags
|= ATA_HOST_PARALLEL_SCAN
;
361 pci_set_master(pdev
);
362 return ata_pci_sff_activate_host(host
, ata_bmdma_interrupt
, &rdc_sht
);
365 static void rdc_remove_one(struct pci_dev
*pdev
)
367 struct ata_host
*host
= dev_get_drvdata(&pdev
->dev
);
368 struct rdc_host_priv
*hpriv
= host
->private_data
;
370 pci_write_config_dword(pdev
, 0x54, hpriv
->saved_iocfg
);
372 ata_pci_remove_one(pdev
);
375 static const struct pci_device_id rdc_pci_tbl
[] = {
376 { PCI_DEVICE(0x17F3, 0x1011), },
377 { PCI_DEVICE(0x17F3, 0x1012), },
378 { } /* terminate list */
381 static struct pci_driver rdc_pci_driver
= {
383 .id_table
= rdc_pci_tbl
,
384 .probe
= rdc_init_one
,
385 .remove
= rdc_remove_one
,
387 .suspend
= ata_pci_device_suspend
,
388 .resume
= ata_pci_device_resume
,
393 module_pci_driver(rdc_pci_driver
);
395 MODULE_AUTHOR("Alan Cox (based on ata_piix)");
396 MODULE_DESCRIPTION("SCSI low-level driver for RDC PATA controllers");
397 MODULE_LICENSE("GPL");
398 MODULE_DEVICE_TABLE(pci
, rdc_pci_tbl
);
399 MODULE_VERSION(DRV_VERSION
);