blob: 8ab236c54823c828d60832c0c1f4d501e8653458 [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
27 * @ap: Port
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 Heod4b2bab2007-02-02 16:50:52 +090033static int marvell_pre_reset(struct ata_port *ap, unsigned long deadline)
Alan Cox75742cb2006-10-16 16:40:06 +010034{
35 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
36 u32 devices;
Alan Cox75742cb2006-10-16 16:40:06 +010037 void __iomem *barp;
38 int i;
39
40 /* Check if our port is enabled */
41
Jeff Garzik6e9d8622006-10-21 15:54:13 -040042 barp = pci_iomap(pdev, 5, 0x10);
Alan Cox75742cb2006-10-16 16:40:06 +010043 if (barp == NULL)
44 return -ENOMEM;
45 printk("BAR5:");
46 for(i = 0; i <= 0x0F; i++)
47 printk("%02X:%02X ", i, readb(barp + i));
48 printk("\n");
Jeff Garzikf20b16f2006-12-11 11:14:06 -050049
Alan Cox75742cb2006-10-16 16:40:06 +010050 devices = readl(barp + 0x0C);
Jeff Garzik6e9d8622006-10-21 15:54:13 -040051 pci_iounmap(pdev, barp);
Jeff Garzikf20b16f2006-12-11 11:14:06 -050052
Jeff Garzik6e9d8622006-10-21 15:54:13 -040053 if ((pdev->device == 0x6145) && (ap->port_no == 0) &&
54 (!(devices & 0x10))) /* PATA enable ? */
Alan Cox75742cb2006-10-16 16:40:06 +010055 return -ENOENT;
Alan Cox307c6052007-03-07 16:48:09 +000056 return ata_std_prereset(ap);
57}
Alan Cox75742cb2006-10-16 16:40:06 +010058
Alan Cox307c6052007-03-07 16:48:09 +000059static int marvell_cable_detect(struct ata_port *ap)
60{
Alan Cox75742cb2006-10-16 16:40:06 +010061 /* Cable type */
62 switch(ap->port_no)
63 {
Jeff Garzik6e9d8622006-10-21 15:54:13 -040064 case 0:
Tejun Heo0d5ff562007-02-01 15:06:36 +090065 if (ioread8(ap->ioaddr.bmdma_addr + 1) & 1)
Alan Cox307c6052007-03-07 16:48:09 +000066 return ATA_CBL_PATA40;
67 return ATA_CBL_PATA80;
Jeff Garzik6e9d8622006-10-21 15:54:13 -040068 case 1: /* Legacy SATA port */
Alan Cox307c6052007-03-07 16:48:09 +000069 return ATA_CBL_SATA;
Alan Cox75742cb2006-10-16 16:40:06 +010070 }
Tejun Heod4b2bab2007-02-02 16:50:52 +090071
Alan Cox307c6052007-03-07 16:48:09 +000072 BUG();
73 return 0; /* Our BUG macro needs the right markup */
Alan Cox75742cb2006-10-16 16:40:06 +010074}
75
76/**
77 * marvell_error_handler - Setup and error handler
78 * @ap: Port to handle
79 *
80 * LOCKING:
81 * None (inherited from caller).
82 */
83
84static void marvell_error_handler(struct ata_port *ap)
85{
Jeff Garzik6e9d8622006-10-21 15:54:13 -040086 return ata_bmdma_drive_eh(ap, marvell_pre_reset, ata_std_softreset,
87 NULL, ata_std_postreset);
Alan Cox75742cb2006-10-16 16:40:06 +010088}
89
90/* No PIO or DMA methods needed for this device */
91
92static struct scsi_host_template marvell_sht = {
93 .module = THIS_MODULE,
94 .name = DRV_NAME,
95 .ioctl = ata_scsi_ioctl,
96 .queuecommand = ata_scsi_queuecmd,
97 .can_queue = ATA_DEF_QUEUE,
98 .this_id = ATA_SHT_THIS_ID,
99 .sg_tablesize = LIBATA_MAX_PRD,
Alan Cox75742cb2006-10-16 16:40:06 +0100100 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
101 .emulated = ATA_SHT_EMULATED,
102 .use_clustering = ATA_SHT_USE_CLUSTERING,
103 .proc_name = DRV_NAME,
104 .dma_boundary = ATA_DMA_BOUNDARY,
105 .slave_configure = ata_scsi_slave_config,
Tejun Heoc972b602006-11-29 12:10:46 +0900106 .slave_destroy = ata_scsi_slave_destroy,
Alan Cox75742cb2006-10-16 16:40:06 +0100107 /* Use standard CHS mapping rules */
108 .bios_param = ata_std_bios_param,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900109#ifdef CONFIG_PM
Alan30ced0f2006-11-22 16:57:36 +0000110 .resume = ata_scsi_device_resume,
111 .suspend = ata_scsi_device_suspend,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900112#endif
Alan Cox75742cb2006-10-16 16:40:06 +0100113};
114
115static const struct ata_port_operations marvell_ops = {
116 .port_disable = ata_port_disable,
117
118 /* Task file is PCI ATA format, use helpers */
119 .tf_load = ata_tf_load,
120 .tf_read = ata_tf_read,
121 .check_status = ata_check_status,
122 .exec_command = ata_exec_command,
123 .dev_select = ata_std_dev_select,
124
125 .freeze = ata_bmdma_freeze,
126 .thaw = ata_bmdma_thaw,
127 .error_handler = marvell_error_handler,
128 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Cox307c6052007-03-07 16:48:09 +0000129 .cable_detect = marvell_cable_detect,
Alan Cox75742cb2006-10-16 16:40:06 +0100130
131 /* BMDMA handling is PCI ATA format, use helpers */
132 .bmdma_setup = ata_bmdma_setup,
133 .bmdma_start = ata_bmdma_start,
134 .bmdma_stop = ata_bmdma_stop,
135 .bmdma_status = ata_bmdma_status,
136 .qc_prep = ata_qc_prep,
137 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900138 .data_xfer = ata_data_xfer,
Alan Cox75742cb2006-10-16 16:40:06 +0100139
140 /* Timeout handling */
Alan Cox75742cb2006-10-16 16:40:06 +0100141 .irq_handler = ata_interrupt,
142 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900143 .irq_on = ata_irq_on,
144 .irq_ack = ata_irq_ack,
Alan Cox75742cb2006-10-16 16:40:06 +0100145
146 /* Generic PATA PCI ATA helpers */
147 .port_start = ata_port_start,
Alan Cox75742cb2006-10-16 16:40:06 +0100148};
149
150
151/**
152 * marvell_init_one - Register Marvell ATA PCI device with kernel services
153 * @pdev: PCI device to register
154 * @ent: Entry in marvell_pci_tbl matching with @pdev
155 *
156 * Called from kernel PCI layer.
157 *
158 * LOCKING:
159 * Inherited from PCI layer (may sleep).
160 *
161 * RETURNS:
162 * Zero on success, or -ERRNO value.
163 */
164
165static int marvell_init_one (struct pci_dev *pdev, const struct pci_device_id *id)
166{
167 static struct ata_port_info info = {
168 .sht = &marvell_sht,
Jeff Garzik6e9d8622006-10-21 15:54:13 -0400169 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
Alan Cox75742cb2006-10-16 16:40:06 +0100170
171 .pio_mask = 0x1f,
172 .mwdma_mask = 0x07,
173 .udma_mask = 0x3f,
174
175 .port_ops = &marvell_ops,
176 };
177 static struct ata_port_info info_sata = {
178 .sht = &marvell_sht,
179 /* Slave possible as its magically mapped not real */
Jeff Garzik6e9d8622006-10-21 15:54:13 -0400180 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
Alan Cox75742cb2006-10-16 16:40:06 +0100181
182 .pio_mask = 0x1f,
183 .mwdma_mask = 0x07,
184 .udma_mask = 0x7f,
185
186 .port_ops = &marvell_ops,
187 };
188 struct ata_port_info *port_info[2] = { &info, &info_sata };
189 int n_port = 2;
Jeff Garzik6e9d8622006-10-21 15:54:13 -0400190
Alan Cox75742cb2006-10-16 16:40:06 +0100191 if (pdev->device == 0x6101)
192 n_port = 1;
Jeff Garzik6e9d8622006-10-21 15:54:13 -0400193
Alan Cox75742cb2006-10-16 16:40:06 +0100194 return ata_pci_init_one(pdev, port_info, n_port);
195}
196
197static const struct pci_device_id marvell_pci_tbl[] = {
198 { PCI_DEVICE(0x11AB, 0x6101), },
199 { PCI_DEVICE(0x11AB, 0x6145), },
200 { } /* terminate list */
201};
202
203static struct pci_driver marvell_pci_driver = {
204 .name = DRV_NAME,
205 .id_table = marvell_pci_tbl,
206 .probe = marvell_init_one,
207 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900208#ifdef CONFIG_PM
Alan30ced0f2006-11-22 16:57:36 +0000209 .suspend = ata_pci_device_suspend,
210 .resume = ata_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900211#endif
Alan Cox75742cb2006-10-16 16:40:06 +0100212};
213
214static int __init marvell_init(void)
215{
216 return pci_register_driver(&marvell_pci_driver);
217}
218
219static void __exit marvell_exit(void)
220{
221 pci_unregister_driver(&marvell_pci_driver);
222}
223
224module_init(marvell_init);
225module_exit(marvell_exit);
226
227MODULE_AUTHOR("Alan Cox");
228MODULE_DESCRIPTION("SCSI low-level driver for Marvell ATA in legacy mode");
229MODULE_LICENSE("GPL");
230MODULE_DEVICE_TABLE(pci, marvell_pci_tbl);
231MODULE_VERSION(DRV_VERSION);
232