blob: 9de6e429d0d158f69c4f7778a690ed25be011d05 [file] [log] [blame]
Alan Cox75742cb2006-10-16 16:40:06 +01001/*
2 * Marvell PATA driver.
3 *
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
6 * easy to get working.
7 *
8 * (c) 2006 Red Hat <alan@redhat.com>
9 */
10
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/pci.h>
14#include <linux/init.h>
15#include <linux/blkdev.h>
16#include <linux/delay.h>
17#include <linux/device.h>
18#include <scsi/scsi_host.h>
19#include <linux/libata.h>
20#include <linux/ata.h>
21
22#define DRV_NAME "pata_marvell"
Alan Cox307c6052007-03-07 16:48:09 +000023#define DRV_VERSION "0.1.4"
Alan Cox75742cb2006-10-16 16:40:06 +010024
25/**
26 * marvell_pre_reset - check for 40/80 pin
Tejun Heocc0680a2007-08-06 18:36:23 +090027 * @link: link
Tejun Heod4b2bab2007-02-02 16:50:52 +090028 * @deadline: deadline jiffies for the operation
Alan Cox75742cb2006-10-16 16:40:06 +010029 *
30 * Perform the PATA port setup we need.
31 */
32
Tejun Heocc0680a2007-08-06 18:36:23 +090033static int marvell_pre_reset(struct ata_link *link, unsigned long deadline)
Alan Cox75742cb2006-10-16 16:40:06 +010034{
Tejun Heocc0680a2007-08-06 18:36:23 +090035 struct ata_port *ap = link->ap;
Alan Cox75742cb2006-10-16 16:40:06 +010036 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
37 u32 devices;
Alan Cox75742cb2006-10-16 16:40:06 +010038 void __iomem *barp;
39 int i;
40
41 /* Check if our port is enabled */
42
Jeff Garzik6e9d8622006-10-21 15:54:13 -040043 barp = pci_iomap(pdev, 5, 0x10);
Alan Cox75742cb2006-10-16 16:40:06 +010044 if (barp == NULL)
45 return -ENOMEM;
46 printk("BAR5:");
47 for(i = 0; i <= 0x0F; i++)
Jiri Slaby90925d32007-10-02 13:53:01 -070048 printk("%02X:%02X ", i, ioread8(barp + i));
Alan Cox75742cb2006-10-16 16:40:06 +010049 printk("\n");
Jeff Garzikf20b16f2006-12-11 11:14:06 -050050
Jiri Slaby90925d32007-10-02 13:53:01 -070051 devices = ioread32(barp + 0x0C);
Jeff Garzik6e9d8622006-10-21 15:54:13 -040052 pci_iounmap(pdev, barp);
Jeff Garzikf20b16f2006-12-11 11:14:06 -050053
Jeff Garzik6e9d8622006-10-21 15:54:13 -040054 if ((pdev->device == 0x6145) && (ap->port_no == 0) &&
55 (!(devices & 0x10))) /* PATA enable ? */
Alan Cox75742cb2006-10-16 16:40:06 +010056 return -ENOENT;
Jeff Garzik27c78b32007-03-09 09:41:19 -050057
Tejun Heocc0680a2007-08-06 18:36:23 +090058 return ata_std_prereset(link, deadline);
Alan Cox307c6052007-03-07 16:48:09 +000059}
Alan Cox75742cb2006-10-16 16:40:06 +010060
Alan Cox307c6052007-03-07 16:48:09 +000061static int marvell_cable_detect(struct ata_port *ap)
62{
Alan Cox75742cb2006-10-16 16:40:06 +010063 /* Cable type */
64 switch(ap->port_no)
65 {
Jeff Garzik6e9d8622006-10-21 15:54:13 -040066 case 0:
Tejun Heo0d5ff562007-02-01 15:06:36 +090067 if (ioread8(ap->ioaddr.bmdma_addr + 1) & 1)
Alan Cox307c6052007-03-07 16:48:09 +000068 return ATA_CBL_PATA40;
69 return ATA_CBL_PATA80;
Jeff Garzik6e9d8622006-10-21 15:54:13 -040070 case 1: /* Legacy SATA port */
Alan Cox307c6052007-03-07 16:48:09 +000071 return ATA_CBL_SATA;
Alan Cox75742cb2006-10-16 16:40:06 +010072 }
Tejun Heod4b2bab2007-02-02 16:50:52 +090073
Alan Cox307c6052007-03-07 16:48:09 +000074 BUG();
75 return 0; /* Our BUG macro needs the right markup */
Alan Cox75742cb2006-10-16 16:40:06 +010076}
77
78/**
79 * marvell_error_handler - Setup and error handler
80 * @ap: Port to handle
81 *
82 * LOCKING:
83 * None (inherited from caller).
84 */
85
86static void marvell_error_handler(struct ata_port *ap)
87{
Harvey Harrison42268e22008-02-13 21:14:29 -080088 ata_bmdma_drive_eh(ap, marvell_pre_reset, ata_std_softreset, NULL,
89 ata_std_postreset);
Alan Cox75742cb2006-10-16 16:40:06 +010090}
91
92/* No PIO or DMA methods needed for this device */
93
94static struct scsi_host_template marvell_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +090095 ATA_BMDMA_SHT(DRV_NAME),
Alan Cox75742cb2006-10-16 16:40:06 +010096};
97
98static const struct ata_port_operations marvell_ops = {
Alan Cox75742cb2006-10-16 16:40:06 +010099 /* Task file is PCI ATA format, use helpers */
100 .tf_load = ata_tf_load,
101 .tf_read = ata_tf_read,
102 .check_status = ata_check_status,
103 .exec_command = ata_exec_command,
104 .dev_select = ata_std_dev_select,
105
Tejun Heo6bd99b42008-03-25 12:22:48 +0900106 .mode_filter = ata_pci_default_filter,
Alan Cox75742cb2006-10-16 16:40:06 +0100107 .freeze = ata_bmdma_freeze,
108 .thaw = ata_bmdma_thaw,
109 .error_handler = marvell_error_handler,
110 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Cox307c6052007-03-07 16:48:09 +0000111 .cable_detect = marvell_cable_detect,
Alan Cox75742cb2006-10-16 16:40:06 +0100112
113 /* BMDMA handling is PCI ATA format, use helpers */
114 .bmdma_setup = ata_bmdma_setup,
115 .bmdma_start = ata_bmdma_start,
116 .bmdma_stop = ata_bmdma_stop,
117 .bmdma_status = ata_bmdma_status,
118 .qc_prep = ata_qc_prep,
119 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900120 .data_xfer = ata_data_xfer,
Alan Cox75742cb2006-10-16 16:40:06 +0100121
122 /* Timeout handling */
Alan Cox75742cb2006-10-16 16:40:06 +0100123 .irq_handler = ata_interrupt,
124 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900125 .irq_on = ata_irq_on,
Alan Cox75742cb2006-10-16 16:40:06 +0100126
127 /* Generic PATA PCI ATA helpers */
Alan Cox81ad1832007-08-22 22:55:41 +0100128 .port_start = ata_sff_port_start,
Alan Cox75742cb2006-10-16 16:40:06 +0100129};
130
131
132/**
133 * marvell_init_one - Register Marvell ATA PCI device with kernel services
134 * @pdev: PCI device to register
135 * @ent: Entry in marvell_pci_tbl matching with @pdev
136 *
137 * Called from kernel PCI layer.
138 *
139 * LOCKING:
140 * Inherited from PCI layer (may sleep).
141 *
142 * RETURNS:
143 * Zero on success, or -ERRNO value.
144 */
145
146static int marvell_init_one (struct pci_dev *pdev, const struct pci_device_id *id)
147{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200148 static const struct ata_port_info info = {
Alan Cox75742cb2006-10-16 16:40:06 +0100149 .sht = &marvell_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400150 .flags = ATA_FLAG_SLAVE_POSS,
Alan Cox75742cb2006-10-16 16:40:06 +0100151
152 .pio_mask = 0x1f,
153 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400154 .udma_mask = ATA_UDMA5,
Alan Cox75742cb2006-10-16 16:40:06 +0100155
156 .port_ops = &marvell_ops,
157 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200158 static const struct ata_port_info info_sata = {
Alan Cox75742cb2006-10-16 16:40:06 +0100159 .sht = &marvell_sht,
160 /* Slave possible as its magically mapped not real */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400161 .flags = ATA_FLAG_SLAVE_POSS,
Alan Cox75742cb2006-10-16 16:40:06 +0100162
163 .pio_mask = 0x1f,
164 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400165 .udma_mask = ATA_UDMA6,
Alan Cox75742cb2006-10-16 16:40:06 +0100166
167 .port_ops = &marvell_ops,
168 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200169 const struct ata_port_info *ppi[] = { &info, &info_sata };
Jeff Garzik6e9d8622006-10-21 15:54:13 -0400170
Alan Cox75742cb2006-10-16 16:40:06 +0100171 if (pdev->device == 0x6101)
Tejun Heo1626aeb2007-05-04 12:43:58 +0200172 ppi[1] = &ata_dummy_port_info;
Jeff Garzik6e9d8622006-10-21 15:54:13 -0400173
Tejun Heo1626aeb2007-05-04 12:43:58 +0200174 return ata_pci_init_one(pdev, ppi);
Alan Cox75742cb2006-10-16 16:40:06 +0100175}
176
177static const struct pci_device_id marvell_pci_tbl[] = {
178 { PCI_DEVICE(0x11AB, 0x6101), },
Alan Coxd36ee182007-08-23 20:19:55 +0100179 { PCI_DEVICE(0x11AB, 0x6121), },
180 { PCI_DEVICE(0x11AB, 0x6123), },
Alan Cox75742cb2006-10-16 16:40:06 +0100181 { PCI_DEVICE(0x11AB, 0x6145), },
182 { } /* terminate list */
183};
184
185static struct pci_driver marvell_pci_driver = {
186 .name = DRV_NAME,
187 .id_table = marvell_pci_tbl,
188 .probe = marvell_init_one,
189 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900190#ifdef CONFIG_PM
Alan30ced0f2006-11-22 16:57:36 +0000191 .suspend = ata_pci_device_suspend,
192 .resume = ata_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900193#endif
Alan Cox75742cb2006-10-16 16:40:06 +0100194};
195
196static int __init marvell_init(void)
197{
198 return pci_register_driver(&marvell_pci_driver);
199}
200
201static void __exit marvell_exit(void)
202{
203 pci_unregister_driver(&marvell_pci_driver);
204}
205
206module_init(marvell_init);
207module_exit(marvell_exit);
208
209MODULE_AUTHOR("Alan Cox");
210MODULE_DESCRIPTION("SCSI low-level driver for Marvell ATA in legacy mode");
211MODULE_LICENSE("GPL");
212MODULE_DEVICE_TABLE(pci, marvell_pci_tbl);
213MODULE_VERSION(DRV_VERSION);
214