blob: 6eb8cc9a3f1221f50a826cfe153605bec82b02a0 [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,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500110
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400111 .tf_load = ata_tf_load,
112 .tf_read = ata_tf_read,
113 .exec_command = ata_exec_command,
114 .check_status = ata_check_status,
115 .dev_select = ata_std_dev_select,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500116
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400117 .freeze = ata_bmdma_freeze,
118 .thaw = ata_bmdma_thaw,
119 .error_handler = ata_bmdma_error_handler,
120 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500121
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400122 .qc_prep = ata_qc_prep,
123 .qc_issue = ata_qc_issue_prot,
124 .data_xfer = ixp4xx_mmio_data_xfer,
125 .cable_detect = ata_cable_40wire,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500126
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400127 .irq_handler = ata_interrupt,
Tejun Heo358f9a72008-03-25 12:22:47 +0900128 .irq_clear = ata_noop_irq_clear,
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400129 .irq_on = ata_irq_on,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500130
Tejun Heo6bd99b42008-03-25 12:22:48 +0900131 .port_start = ata_sff_port_start,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500132};
133
Rod Whitbyaf183742008-01-06 10:05:28 +0900134static void ixp4xx_setup_port(struct ata_port *ap,
Tejun Heocbcdd872007-08-18 13:14:55 +0900135 struct ixp4xx_pata_data *data,
136 unsigned long raw_cs0, unsigned long raw_cs1)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500137{
Rod Whitbyaf183742008-01-06 10:05:28 +0900138 struct ata_ioports *ioaddr = &ap->ioaddr;
Tejun Heocbcdd872007-08-18 13:14:55 +0900139 unsigned long raw_cmd = raw_cs0;
140 unsigned long raw_ctl = raw_cs1 + 0x06;
141
Tejun Heo0d5ff562007-02-01 15:06:36 +0900142 ioaddr->cmd_addr = data->cs0;
143 ioaddr->altstatus_addr = data->cs1 + 0x06;
144 ioaddr->ctl_addr = data->cs1 + 0x06;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500145
146 ata_std_ports(ioaddr);
147
148#ifndef __ARMEB__
149
150 /* adjust the addresses to handle the address swizzling of the
151 * ixp4xx in little endian mode.
152 */
153
Tejun Heo0d5ff562007-02-01 15:06:36 +0900154 *(unsigned long *)&ioaddr->data_addr ^= 0x02;
155 *(unsigned long *)&ioaddr->cmd_addr ^= 0x03;
156 *(unsigned long *)&ioaddr->altstatus_addr ^= 0x03;
157 *(unsigned long *)&ioaddr->ctl_addr ^= 0x03;
158 *(unsigned long *)&ioaddr->error_addr ^= 0x03;
159 *(unsigned long *)&ioaddr->feature_addr ^= 0x03;
160 *(unsigned long *)&ioaddr->nsect_addr ^= 0x03;
161 *(unsigned long *)&ioaddr->lbal_addr ^= 0x03;
162 *(unsigned long *)&ioaddr->lbam_addr ^= 0x03;
163 *(unsigned long *)&ioaddr->lbah_addr ^= 0x03;
164 *(unsigned long *)&ioaddr->device_addr ^= 0x03;
165 *(unsigned long *)&ioaddr->status_addr ^= 0x03;
166 *(unsigned long *)&ioaddr->command_addr ^= 0x03;
Tejun Heocbcdd872007-08-18 13:14:55 +0900167
168 raw_cmd ^= 0x03;
169 raw_ctl ^= 0x03;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500170#endif
Tejun Heocbcdd872007-08-18 13:14:55 +0900171
172 ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", raw_cmd, raw_ctl);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500173}
174
175static __devinit int ixp4xx_pata_probe(struct platform_device *pdev)
176{
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500177 unsigned int irq;
178 struct resource *cs0, *cs1;
Tejun Heo5d728822007-04-17 23:44:08 +0900179 struct ata_host *host;
180 struct ata_port *ap;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500181 struct ixp4xx_pata_data *data = pdev->dev.platform_data;
182
183 cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0);
184 cs1 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
185
186 if (!cs0 || !cs1)
187 return -EINVAL;
188
Tejun Heo5d728822007-04-17 23:44:08 +0900189 /* allocate host */
190 host = ata_host_alloc(&pdev->dev, 1);
191 if (!host)
192 return -ENOMEM;
193
194 /* acquire resources and fill host */
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500195 pdev->dev.coherent_dma_mask = DMA_32BIT_MASK;
196
Tejun Heo24dc5f32007-01-20 16:00:28 +0900197 data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000);
198 data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500199
Scott Thompson991bf522007-10-02 13:53:01 -0700200 if (!data->cs0 || !data->cs1)
201 return -ENOMEM;
202
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500203 irq = platform_get_irq(pdev, 0);
204 if (irq)
Alessandro Zummo282c6b92007-03-18 15:23:33 +0100205 set_irq_type(irq, IRQT_RISING);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500206
207 /* Setup expansion bus chip selects */
208 *data->cs0_cfg = data->cs0_bits;
209 *data->cs1_cfg = data->cs1_bits;
210
Tejun Heo5d728822007-04-17 23:44:08 +0900211 ap = host->ports[0];
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500212
Tejun Heo5d728822007-04-17 23:44:08 +0900213 ap->ops = &ixp4xx_port_ops;
214 ap->pio_mask = 0x1f; /* PIO4 */
215 ap->flags |= ATA_FLAG_MMIO | ATA_FLAG_NO_LEGACY | ATA_FLAG_NO_ATAPI;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500216
Tejun Heocbcdd872007-08-18 13:14:55 +0900217 ixp4xx_setup_port(ap, data, cs0->start, cs1->start);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500218
219 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
220
Tejun Heo5d728822007-04-17 23:44:08 +0900221 /* activate host */
222 return ata_host_activate(host, irq, ata_interrupt, 0, &ixp4xx_sht);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500223}
224
225static __devexit int ixp4xx_pata_remove(struct platform_device *dev)
226{
227 struct ata_host *host = platform_get_drvdata(dev);
228
Tejun Heo24dc5f32007-01-20 16:00:28 +0900229 ata_host_detach(host);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500230
231 return 0;
232}
233
234static struct platform_driver ixp4xx_pata_platform_driver = {
235 .driver = {
236 .name = DRV_NAME,
237 .owner = THIS_MODULE,
238 },
239 .probe = ixp4xx_pata_probe,
240 .remove = __devexit_p(ixp4xx_pata_remove),
241};
242
243static int __init ixp4xx_pata_init(void)
244{
245 return platform_driver_register(&ixp4xx_pata_platform_driver);
246}
247
248static void __exit ixp4xx_pata_exit(void)
249{
250 platform_driver_unregister(&ixp4xx_pata_platform_driver);
251}
252
253MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
254MODULE_DESCRIPTION("low-level driver for ixp4xx Compact Flash PATA");
255MODULE_LICENSE("GPL");
256MODULE_VERSION(DRV_VERSION);
257
258module_init(ixp4xx_pata_init);
259module_exit(ixp4xx_pata_exit);