4 * For the moment we drive the PATA port in legacy mode. That
5 * isn't making full use of the device functionality but it is
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/pci.h>
14 #include <linux/blkdev.h>
15 #include <linux/delay.h>
16 #include <linux/device.h>
17 #include <scsi/scsi_host.h>
18 #include <linux/libata.h>
19 #include <linux/ata.h>
21 #define DRV_NAME "pata_marvell"
22 #define DRV_VERSION "0.1.6"
25 * marvell_pata_active - check if PATA is active
28 * Returns 1 if the PATA port may be active. We know how to check this
29 * for the 6145 but not the other devices
32 static int marvell_pata_active(struct pci_dev
*pdev
)
38 /* We don't yet know how to do this for other devices */
39 if (pdev
->device
!= 0x6145)
42 barp
= pci_iomap(pdev
, 5, 0x10);
47 for(i
= 0; i
<= 0x0F; i
++)
48 printk("%02X:%02X ", i
, ioread8(barp
+ i
));
51 devices
= ioread32(barp
+ 0x0C);
52 pci_iounmap(pdev
, barp
);
60 * marvell_pre_reset - probe begin
62 * @deadline: deadline jiffies for the operation
64 * Perform the PATA port setup we need.
67 static int marvell_pre_reset(struct ata_link
*link
, unsigned long deadline
)
69 struct ata_port
*ap
= link
->ap
;
70 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
72 if (pdev
->device
== 0x6145 && ap
->port_no
== 0 &&
73 !marvell_pata_active(pdev
)) /* PATA enable ? */
76 return ata_sff_prereset(link
, deadline
);
79 static int marvell_cable_detect(struct ata_port
*ap
)
85 if (ioread8(ap
->ioaddr
.bmdma_addr
+ 1) & 1)
86 return ATA_CBL_PATA40
;
87 return ATA_CBL_PATA80
;
88 case 1: /* Legacy SATA port */
93 return 0; /* Our BUG macro needs the right markup */
96 /* No PIO or DMA methods needed for this device */
98 static struct scsi_host_template marvell_sht
= {
99 ATA_BMDMA_SHT(DRV_NAME
),
102 static struct ata_port_operations marvell_ops
= {
103 .inherits
= &ata_bmdma_port_ops
,
104 .cable_detect
= marvell_cable_detect
,
105 .prereset
= marvell_pre_reset
,
110 * marvell_init_one - Register Marvell ATA PCI device with kernel services
111 * @pdev: PCI device to register
112 * @ent: Entry in marvell_pci_tbl matching with @pdev
114 * Called from kernel PCI layer.
117 * Inherited from PCI layer (may sleep).
120 * Zero on success, or -ERRNO value.
123 static int marvell_init_one (struct pci_dev
*pdev
, const struct pci_device_id
*id
)
125 static const struct ata_port_info info
= {
126 .flags
= ATA_FLAG_SLAVE_POSS
,
128 .pio_mask
= ATA_PIO4
,
129 .mwdma_mask
= ATA_MWDMA2
,
130 .udma_mask
= ATA_UDMA5
,
132 .port_ops
= &marvell_ops
,
134 static const struct ata_port_info info_sata
= {
135 /* Slave possible as its magically mapped not real */
136 .flags
= ATA_FLAG_SLAVE_POSS
,
138 .pio_mask
= ATA_PIO4
,
139 .mwdma_mask
= ATA_MWDMA2
,
140 .udma_mask
= ATA_UDMA6
,
142 .port_ops
= &marvell_ops
,
144 const struct ata_port_info
*ppi
[] = { &info
, &info_sata
};
146 if (pdev
->device
== 0x6101)
147 ppi
[1] = &ata_dummy_port_info
;
149 #if defined(CONFIG_SATA_AHCI) || defined(CONFIG_SATA_AHCI_MODULE)
150 if (!marvell_pata_active(pdev
)) {
151 printk(KERN_INFO DRV_NAME
": PATA port not active, deferring to AHCI driver.\n");
155 return ata_pci_bmdma_init_one(pdev
, ppi
, &marvell_sht
, NULL
, 0);
158 static const struct pci_device_id marvell_pci_tbl
[] = {
159 { PCI_DEVICE(0x11AB, 0x6101), },
160 { PCI_DEVICE(0x11AB, 0x6121), },
161 { PCI_DEVICE(0x11AB, 0x6123), },
162 { PCI_DEVICE(0x11AB, 0x6145), },
163 { PCI_DEVICE(0x1B4B, 0x91A0), },
164 { PCI_DEVICE(0x1B4B, 0x91A4), },
166 { } /* terminate list */
169 static struct pci_driver marvell_pci_driver
= {
171 .id_table
= marvell_pci_tbl
,
172 .probe
= marvell_init_one
,
173 .remove
= ata_pci_remove_one
,
174 #ifdef CONFIG_PM_SLEEP
175 .suspend
= ata_pci_device_suspend
,
176 .resume
= ata_pci_device_resume
,
180 module_pci_driver(marvell_pci_driver
);
182 MODULE_AUTHOR("Alan Cox");
183 MODULE_DESCRIPTION("SCSI low-level driver for Marvell ATA in legacy mode");
184 MODULE_LICENSE("GPL");
185 MODULE_DEVICE_TABLE(pci
, marvell_pci_tbl
);
186 MODULE_VERSION(DRV_VERSION
);