blob: 030878fedeb5c655641803a96108819b111b6c95 [file] [log] [blame]
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -05001/*
2 * ixp4xx PATA/Compact Flash driver
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -04003 * Copyright (C) 2006-07 Tower Technologies
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -05004 * Author: Alessandro Zummo <a.zummo@towertech.it>
5 *
6 * An ATA driver to handle a Compact Flash connected
7 * to the ixp4xx expansion bus in TrueIDE mode. The CF
8 * must have it chip selects connected to two CS lines
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -04009 * on the ixp4xx. In the irq is not available, you might
10 * want to modify both this driver and libata to run in
11 * polling mode.
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050012 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/libata.h>
22#include <linux/irq.h>
23#include <linux/platform_device.h>
24#include <scsi/scsi_host.h>
25
26#define DRV_NAME "pata_ixp4xx_cf"
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -040027#define DRV_VERSION "0.2"
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050028
Tejun Heo02607312007-08-06 18:36:23 +090029static int ixp4xx_set_mode(struct ata_link *link, struct ata_device **error)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050030{
Tejun Heof58229f2007-08-06 18:36:23 +090031 struct ata_device *dev;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050032
Tejun Heo02607312007-08-06 18:36:23 +090033 ata_link_for_each_dev(dev, link) {
Tejun Heo9666f402007-05-04 21:27:47 +020034 if (ata_dev_enabled(dev)) {
Alan3ddcc592007-02-20 17:45:55 +000035 ata_dev_printk(dev, KERN_INFO, "configured for PIO0\n");
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050036 dev->pio_mode = XFER_PIO_0;
37 dev->xfer_mode = XFER_PIO_0;
38 dev->xfer_shift = ATA_SHIFT_PIO;
39 dev->flags |= ATA_DFLAG_PIO;
40 }
41 }
Alanb229a7b2007-01-24 11:47:07 +000042 return 0;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050043}
44
Tejun Heo55dba312007-12-05 16:43:07 +090045static unsigned int ixp4xx_mmio_data_xfer(struct ata_device *dev,
46 unsigned char *buf, unsigned int buflen, int rw)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050047{
48 unsigned int i;
49 unsigned int words = buflen >> 1;
50 u16 *buf16 = (u16 *) buf;
Tejun Heo55dba312007-12-05 16:43:07 +090051 struct ata_port *ap = dev->link->ap;
Jeff Garzik59f99882007-05-28 07:07:20 -040052 void __iomem *mmio = ap->ioaddr.data_addr;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050053 struct ixp4xx_pata_data *data = ap->host->dev->platform_data;
54
55 /* set the expansion bus in 16bit mode and restore
56 * 8 bit mode after the transaction.
57 */
58 *data->cs0_cfg &= ~(0x01);
59 udelay(100);
60
61 /* Transfer multiple of 2 bytes */
Tejun Heo55dba312007-12-05 16:43:07 +090062 if (rw == READ)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050063 for (i = 0; i < words; i++)
64 buf16[i] = readw(mmio);
Tejun Heo55dba312007-12-05 16:43:07 +090065 else
66 for (i = 0; i < words; i++)
67 writew(buf16[i], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050068
69 /* Transfer trailing 1 byte, if any. */
70 if (unlikely(buflen & 0x01)) {
71 u16 align_buf[1] = { 0 };
72 unsigned char *trailing_buf = buf + buflen - 1;
73
Tejun Heo55dba312007-12-05 16:43:07 +090074 if (rw == READ) {
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050075 align_buf[0] = readw(mmio);
76 memcpy(trailing_buf, align_buf, 1);
Tejun Heo55dba312007-12-05 16:43:07 +090077 } else {
78 memcpy(align_buf, trailing_buf, 1);
79 writew(align_buf[0], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050080 }
Tejun Heo55dba312007-12-05 16:43:07 +090081 words++;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050082 }
83
84 udelay(100);
85 *data->cs0_cfg |= 0x01;
Tejun Heo55dba312007-12-05 16:43:07 +090086
87 return words << 1;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050088}
89
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050090static struct scsi_host_template ixp4xx_sht = {
91 .module = THIS_MODULE,
92 .name = DRV_NAME,
93 .ioctl = ata_scsi_ioctl,
94 .queuecommand = ata_scsi_queuecmd,
95 .can_queue = ATA_DEF_QUEUE,
96 .this_id = ATA_SHT_THIS_ID,
97 .sg_tablesize = LIBATA_MAX_PRD,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050098 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
99 .emulated = ATA_SHT_EMULATED,
100 .use_clustering = ATA_SHT_USE_CLUSTERING,
101 .proc_name = DRV_NAME,
102 .dma_boundary = ATA_DMA_BOUNDARY,
103 .slave_configure = ata_scsi_slave_config,
Tejun Heoc972b602006-11-29 12:10:46 +0900104 .slave_destroy = ata_scsi_slave_destroy,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500105 .bios_param = ata_std_bios_param,
106};
107
108static struct ata_port_operations ixp4xx_port_ops = {
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400109 .set_mode = ixp4xx_set_mode,
110 .mode_filter = ata_pci_default_filter,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500111
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400112 .tf_load = ata_tf_load,
113 .tf_read = ata_tf_read,
114 .exec_command = ata_exec_command,
115 .check_status = ata_check_status,
116 .dev_select = ata_std_dev_select,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500117
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400118 .freeze = ata_bmdma_freeze,
119 .thaw = ata_bmdma_thaw,
120 .error_handler = ata_bmdma_error_handler,
121 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500122
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400123 .qc_prep = ata_qc_prep,
124 .qc_issue = ata_qc_issue_prot,
125 .data_xfer = ixp4xx_mmio_data_xfer,
126 .cable_detect = ata_cable_40wire,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500127
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400128 .irq_handler = ata_interrupt,
129 .irq_clear = ata_bmdma_irq_clear,
130 .irq_on = ata_irq_on,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500131
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400132 .port_start = ata_port_start,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500133};
134
Rod Whitbyaf183742008-01-06 10:05:28 +0900135static void ixp4xx_setup_port(struct ata_port *ap,
Tejun Heocbcdd872007-08-18 13:14:55 +0900136 struct ixp4xx_pata_data *data,
137 unsigned long raw_cs0, unsigned long raw_cs1)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500138{
Rod Whitbyaf183742008-01-06 10:05:28 +0900139 struct ata_ioports *ioaddr = &ap->ioaddr;
Tejun Heocbcdd872007-08-18 13:14:55 +0900140 unsigned long raw_cmd = raw_cs0;
141 unsigned long raw_ctl = raw_cs1 + 0x06;
142
Tejun Heo0d5ff562007-02-01 15:06:36 +0900143 ioaddr->cmd_addr = data->cs0;
144 ioaddr->altstatus_addr = data->cs1 + 0x06;
145 ioaddr->ctl_addr = data->cs1 + 0x06;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500146
147 ata_std_ports(ioaddr);
148
149#ifndef __ARMEB__
150
151 /* adjust the addresses to handle the address swizzling of the
152 * ixp4xx in little endian mode.
153 */
154
Tejun Heo0d5ff562007-02-01 15:06:36 +0900155 *(unsigned long *)&ioaddr->data_addr ^= 0x02;
156 *(unsigned long *)&ioaddr->cmd_addr ^= 0x03;
157 *(unsigned long *)&ioaddr->altstatus_addr ^= 0x03;
158 *(unsigned long *)&ioaddr->ctl_addr ^= 0x03;
159 *(unsigned long *)&ioaddr->error_addr ^= 0x03;
160 *(unsigned long *)&ioaddr->feature_addr ^= 0x03;
161 *(unsigned long *)&ioaddr->nsect_addr ^= 0x03;
162 *(unsigned long *)&ioaddr->lbal_addr ^= 0x03;
163 *(unsigned long *)&ioaddr->lbam_addr ^= 0x03;
164 *(unsigned long *)&ioaddr->lbah_addr ^= 0x03;
165 *(unsigned long *)&ioaddr->device_addr ^= 0x03;
166 *(unsigned long *)&ioaddr->status_addr ^= 0x03;
167 *(unsigned long *)&ioaddr->command_addr ^= 0x03;
Tejun Heocbcdd872007-08-18 13:14:55 +0900168
169 raw_cmd ^= 0x03;
170 raw_ctl ^= 0x03;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500171#endif
Tejun Heocbcdd872007-08-18 13:14:55 +0900172
173 ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", raw_cmd, raw_ctl);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500174}
175
176static __devinit int ixp4xx_pata_probe(struct platform_device *pdev)
177{
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500178 unsigned int irq;
179 struct resource *cs0, *cs1;
Tejun Heo5d728822007-04-17 23:44:08 +0900180 struct ata_host *host;
181 struct ata_port *ap;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500182 struct ixp4xx_pata_data *data = pdev->dev.platform_data;
183
184 cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0);
185 cs1 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
186
187 if (!cs0 || !cs1)
188 return -EINVAL;
189
Tejun Heo5d728822007-04-17 23:44:08 +0900190 /* allocate host */
191 host = ata_host_alloc(&pdev->dev, 1);
192 if (!host)
193 return -ENOMEM;
194
195 /* acquire resources and fill host */
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500196 pdev->dev.coherent_dma_mask = DMA_32BIT_MASK;
197
Tejun Heo24dc5f32007-01-20 16:00:28 +0900198 data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000);
199 data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500200
Scott Thompson991bf522007-10-02 13:53:01 -0700201 if (!data->cs0 || !data->cs1)
202 return -ENOMEM;
203
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500204 irq = platform_get_irq(pdev, 0);
205 if (irq)
Alessandro Zummo282c6b92007-03-18 15:23:33 +0100206 set_irq_type(irq, IRQT_RISING);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500207
208 /* Setup expansion bus chip selects */
209 *data->cs0_cfg = data->cs0_bits;
210 *data->cs1_cfg = data->cs1_bits;
211
Tejun Heo5d728822007-04-17 23:44:08 +0900212 ap = host->ports[0];
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500213
Tejun Heo5d728822007-04-17 23:44:08 +0900214 ap->ops = &ixp4xx_port_ops;
215 ap->pio_mask = 0x1f; /* PIO4 */
216 ap->flags |= ATA_FLAG_MMIO | ATA_FLAG_NO_LEGACY | ATA_FLAG_NO_ATAPI;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500217
Tejun Heocbcdd872007-08-18 13:14:55 +0900218 ixp4xx_setup_port(ap, data, cs0->start, cs1->start);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500219
220 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
221
Tejun Heo5d728822007-04-17 23:44:08 +0900222 /* activate host */
223 return ata_host_activate(host, irq, ata_interrupt, 0, &ixp4xx_sht);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500224}
225
226static __devexit int ixp4xx_pata_remove(struct platform_device *dev)
227{
228 struct ata_host *host = platform_get_drvdata(dev);
229
Tejun Heo24dc5f32007-01-20 16:00:28 +0900230 ata_host_detach(host);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500231
232 return 0;
233}
234
235static struct platform_driver ixp4xx_pata_platform_driver = {
236 .driver = {
237 .name = DRV_NAME,
238 .owner = THIS_MODULE,
239 },
240 .probe = ixp4xx_pata_probe,
241 .remove = __devexit_p(ixp4xx_pata_remove),
242};
243
244static int __init ixp4xx_pata_init(void)
245{
246 return platform_driver_register(&ixp4xx_pata_platform_driver);
247}
248
249static void __exit ixp4xx_pata_exit(void)
250{
251 platform_driver_unregister(&ixp4xx_pata_platform_driver);
252}
253
254MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
255MODULE_DESCRIPTION("low-level driver for ixp4xx Compact Flash PATA");
256MODULE_LICENSE("GPL");
257MODULE_VERSION(DRV_VERSION);
258
259module_init(ixp4xx_pata_init);
260module_exit(ixp4xx_pata_exit);