blob: 19fdecf319a662f3de793a12501dd424fdec3011 [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 Heo1eca4362008-11-03 20:03:17 +090033 ata_for_each_dev(dev, link, ENABLED) {
34 ata_dev_printk(dev, KERN_INFO, "configured for PIO0\n");
35 dev->pio_mode = XFER_PIO_0;
36 dev->xfer_mode = XFER_PIO_0;
37 dev->xfer_shift = ATA_SHIFT_PIO;
38 dev->flags |= ATA_DFLAG_PIO;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050039 }
Alanb229a7b2007-01-24 11:47:07 +000040 return 0;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050041}
42
Tejun Heo55dba312007-12-05 16:43:07 +090043static unsigned int ixp4xx_mmio_data_xfer(struct ata_device *dev,
44 unsigned char *buf, unsigned int buflen, int rw)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050045{
46 unsigned int i;
47 unsigned int words = buflen >> 1;
48 u16 *buf16 = (u16 *) buf;
Tejun Heo55dba312007-12-05 16:43:07 +090049 struct ata_port *ap = dev->link->ap;
Jeff Garzik59f99882007-05-28 07:07:20 -040050 void __iomem *mmio = ap->ioaddr.data_addr;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050051 struct ixp4xx_pata_data *data = ap->host->dev->platform_data;
52
53 /* set the expansion bus in 16bit mode and restore
54 * 8 bit mode after the transaction.
55 */
56 *data->cs0_cfg &= ~(0x01);
57 udelay(100);
58
59 /* Transfer multiple of 2 bytes */
Tejun Heo55dba312007-12-05 16:43:07 +090060 if (rw == READ)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050061 for (i = 0; i < words; i++)
62 buf16[i] = readw(mmio);
Tejun Heo55dba312007-12-05 16:43:07 +090063 else
64 for (i = 0; i < words; i++)
65 writew(buf16[i], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050066
67 /* Transfer trailing 1 byte, if any. */
68 if (unlikely(buflen & 0x01)) {
69 u16 align_buf[1] = { 0 };
70 unsigned char *trailing_buf = buf + buflen - 1;
71
Tejun Heo55dba312007-12-05 16:43:07 +090072 if (rw == READ) {
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050073 align_buf[0] = readw(mmio);
74 memcpy(trailing_buf, align_buf, 1);
Tejun Heo55dba312007-12-05 16:43:07 +090075 } else {
76 memcpy(align_buf, trailing_buf, 1);
77 writew(align_buf[0], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050078 }
Tejun Heo55dba312007-12-05 16:43:07 +090079 words++;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050080 }
81
82 udelay(100);
83 *data->cs0_cfg |= 0x01;
Tejun Heo55dba312007-12-05 16:43:07 +090084
85 return words << 1;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050086}
87
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050088static struct scsi_host_template ixp4xx_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +090089 ATA_PIO_SHT(DRV_NAME),
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050090};
91
92static struct ata_port_operations ixp4xx_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +090093 .inherits = &ata_sff_port_ops,
Tejun Heo5682ed32008-04-07 22:47:16 +090094 .sff_data_xfer = ixp4xx_mmio_data_xfer,
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -040095 .cable_detect = ata_cable_40wire,
Tejun Heo029cfd62008-03-25 12:22:49 +090096 .set_mode = ixp4xx_set_mode,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050097};
98
Rod Whitbyaf183742008-01-06 10:05:28 +090099static void ixp4xx_setup_port(struct ata_port *ap,
Tejun Heocbcdd872007-08-18 13:14:55 +0900100 struct ixp4xx_pata_data *data,
101 unsigned long raw_cs0, unsigned long raw_cs1)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500102{
Rod Whitbyaf183742008-01-06 10:05:28 +0900103 struct ata_ioports *ioaddr = &ap->ioaddr;
Tejun Heocbcdd872007-08-18 13:14:55 +0900104 unsigned long raw_cmd = raw_cs0;
105 unsigned long raw_ctl = raw_cs1 + 0x06;
106
Tejun Heo0d5ff562007-02-01 15:06:36 +0900107 ioaddr->cmd_addr = data->cs0;
108 ioaddr->altstatus_addr = data->cs1 + 0x06;
109 ioaddr->ctl_addr = data->cs1 + 0x06;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500110
Tejun Heo9363c382008-04-07 22:47:16 +0900111 ata_sff_std_ports(ioaddr);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500112
113#ifndef __ARMEB__
114
115 /* adjust the addresses to handle the address swizzling of the
116 * ixp4xx in little endian mode.
117 */
118
Tejun Heo0d5ff562007-02-01 15:06:36 +0900119 *(unsigned long *)&ioaddr->data_addr ^= 0x02;
120 *(unsigned long *)&ioaddr->cmd_addr ^= 0x03;
121 *(unsigned long *)&ioaddr->altstatus_addr ^= 0x03;
122 *(unsigned long *)&ioaddr->ctl_addr ^= 0x03;
123 *(unsigned long *)&ioaddr->error_addr ^= 0x03;
124 *(unsigned long *)&ioaddr->feature_addr ^= 0x03;
125 *(unsigned long *)&ioaddr->nsect_addr ^= 0x03;
126 *(unsigned long *)&ioaddr->lbal_addr ^= 0x03;
127 *(unsigned long *)&ioaddr->lbam_addr ^= 0x03;
128 *(unsigned long *)&ioaddr->lbah_addr ^= 0x03;
129 *(unsigned long *)&ioaddr->device_addr ^= 0x03;
130 *(unsigned long *)&ioaddr->status_addr ^= 0x03;
131 *(unsigned long *)&ioaddr->command_addr ^= 0x03;
Tejun Heocbcdd872007-08-18 13:14:55 +0900132
133 raw_cmd ^= 0x03;
134 raw_ctl ^= 0x03;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500135#endif
Tejun Heocbcdd872007-08-18 13:14:55 +0900136
137 ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", raw_cmd, raw_ctl);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500138}
139
140static __devinit int ixp4xx_pata_probe(struct platform_device *pdev)
141{
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500142 unsigned int irq;
143 struct resource *cs0, *cs1;
Tejun Heo5d728822007-04-17 23:44:08 +0900144 struct ata_host *host;
145 struct ata_port *ap;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500146 struct ixp4xx_pata_data *data = pdev->dev.platform_data;
147
148 cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0);
149 cs1 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
150
151 if (!cs0 || !cs1)
152 return -EINVAL;
153
Tejun Heo5d728822007-04-17 23:44:08 +0900154 /* allocate host */
155 host = ata_host_alloc(&pdev->dev, 1);
156 if (!host)
157 return -ENOMEM;
158
159 /* acquire resources and fill host */
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500160 pdev->dev.coherent_dma_mask = DMA_32BIT_MASK;
161
Tejun Heo24dc5f32007-01-20 16:00:28 +0900162 data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000);
163 data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500164
Scott Thompson991bf522007-10-02 13:53:01 -0700165 if (!data->cs0 || !data->cs1)
166 return -ENOMEM;
167
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500168 irq = platform_get_irq(pdev, 0);
169 if (irq)
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100170 set_irq_type(irq, IRQ_TYPE_EDGE_RISING);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500171
172 /* Setup expansion bus chip selects */
173 *data->cs0_cfg = data->cs0_bits;
174 *data->cs1_cfg = data->cs1_bits;
175
Tejun Heo5d728822007-04-17 23:44:08 +0900176 ap = host->ports[0];
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500177
Tejun Heo5d728822007-04-17 23:44:08 +0900178 ap->ops = &ixp4xx_port_ops;
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100179 ap->pio_mask = ATA_PIO4;
Tejun Heo5d728822007-04-17 23:44:08 +0900180 ap->flags |= ATA_FLAG_MMIO | ATA_FLAG_NO_LEGACY | ATA_FLAG_NO_ATAPI;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500181
Tejun Heocbcdd872007-08-18 13:14:55 +0900182 ixp4xx_setup_port(ap, data, cs0->start, cs1->start);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500183
184 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
185
Tejun Heo5d728822007-04-17 23:44:08 +0900186 /* activate host */
Tejun Heo9363c382008-04-07 22:47:16 +0900187 return ata_host_activate(host, irq, ata_sff_interrupt, 0, &ixp4xx_sht);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500188}
189
190static __devexit int ixp4xx_pata_remove(struct platform_device *dev)
191{
192 struct ata_host *host = platform_get_drvdata(dev);
193
Tejun Heo24dc5f32007-01-20 16:00:28 +0900194 ata_host_detach(host);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500195
196 return 0;
197}
198
199static struct platform_driver ixp4xx_pata_platform_driver = {
200 .driver = {
201 .name = DRV_NAME,
202 .owner = THIS_MODULE,
203 },
204 .probe = ixp4xx_pata_probe,
205 .remove = __devexit_p(ixp4xx_pata_remove),
206};
207
208static int __init ixp4xx_pata_init(void)
209{
210 return platform_driver_register(&ixp4xx_pata_platform_driver);
211}
212
213static void __exit ixp4xx_pata_exit(void)
214{
215 platform_driver_unregister(&ixp4xx_pata_platform_driver);
216}
217
218MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
219MODULE_DESCRIPTION("low-level driver for ixp4xx Compact Flash PATA");
220MODULE_LICENSE("GPL");
221MODULE_VERSION(DRV_VERSION);
Kay Sievers458622f2008-04-18 13:41:57 -0700222MODULE_ALIAS("platform:" DRV_NAME);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500223
224module_init(ixp4xx_pata_init);
225module_exit(ixp4xx_pata_exit);