blob: d1644a8ef9fa67b4d2e2c9cb8221a70acd5434a6 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -05002/*
3 * ixp4xx PATA/Compact Flash driver
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -04004 * Copyright (C) 2006-07 Tower Technologies
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -05005 * Author: Alessandro Zummo <a.zummo@towertech.it>
6 *
7 * An ATA driver to handle a Compact Flash connected
8 * to the ixp4xx expansion bus in TrueIDE mode. The CF
9 * must have it chip selects connected to two CS lines
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -040010 * on the ixp4xx. In the irq is not available, you might
11 * want to modify both this driver and libata to run in
12 * polling mode.
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050013 */
14
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/libata.h>
18#include <linux/irq.h>
19#include <linux/platform_device.h>
20#include <scsi/scsi_host.h>
21
22#define DRV_NAME "pata_ixp4xx_cf"
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -040023#define DRV_VERSION "0.2"
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050024
Tejun Heo02607312007-08-06 18:36:23 +090025static int ixp4xx_set_mode(struct ata_link *link, struct ata_device **error)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050026{
Tejun Heof58229f2007-08-06 18:36:23 +090027 struct ata_device *dev;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050028
Tejun Heo1eca4362008-11-03 20:03:17 +090029 ata_for_each_dev(dev, link, ENABLED) {
Joe Perchesa9a79df2011-04-15 15:51:59 -070030 ata_dev_info(dev, "configured for PIO0\n");
Tejun Heo1eca4362008-11-03 20:03:17 +090031 dev->pio_mode = XFER_PIO_0;
32 dev->xfer_mode = XFER_PIO_0;
33 dev->xfer_shift = ATA_SHIFT_PIO;
34 dev->flags |= ATA_DFLAG_PIO;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050035 }
Alanb229a7b2007-01-24 11:47:07 +000036 return 0;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050037}
38
Bartlomiej Zolnierkiewicz989e0aa2016-12-30 15:01:17 +010039static unsigned int ixp4xx_mmio_data_xfer(struct ata_queued_cmd *qc,
Tejun Heo55dba312007-12-05 16:43:07 +090040 unsigned char *buf, unsigned int buflen, int rw)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050041{
42 unsigned int i;
43 unsigned int words = buflen >> 1;
44 u16 *buf16 = (u16 *) buf;
Bartlomiej Zolnierkiewicz989e0aa2016-12-30 15:01:17 +010045 struct ata_port *ap = qc->dev->link->ap;
Jeff Garzik59f99882007-05-28 07:07:20 -040046 void __iomem *mmio = ap->ioaddr.data_addr;
Jingoo Han61b8c342013-07-30 17:16:05 +090047 struct ixp4xx_pata_data *data = dev_get_platdata(ap->host->dev);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050048
49 /* set the expansion bus in 16bit mode and restore
50 * 8 bit mode after the transaction.
51 */
52 *data->cs0_cfg &= ~(0x01);
53 udelay(100);
54
55 /* Transfer multiple of 2 bytes */
Tejun Heo55dba312007-12-05 16:43:07 +090056 if (rw == READ)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050057 for (i = 0; i < words; i++)
58 buf16[i] = readw(mmio);
Tejun Heo55dba312007-12-05 16:43:07 +090059 else
60 for (i = 0; i < words; i++)
61 writew(buf16[i], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050062
63 /* Transfer trailing 1 byte, if any. */
64 if (unlikely(buflen & 0x01)) {
65 u16 align_buf[1] = { 0 };
66 unsigned char *trailing_buf = buf + buflen - 1;
67
Tejun Heo55dba312007-12-05 16:43:07 +090068 if (rw == READ) {
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050069 align_buf[0] = readw(mmio);
70 memcpy(trailing_buf, align_buf, 1);
Tejun Heo55dba312007-12-05 16:43:07 +090071 } else {
72 memcpy(align_buf, trailing_buf, 1);
73 writew(align_buf[0], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050074 }
Tejun Heo55dba312007-12-05 16:43:07 +090075 words++;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050076 }
77
78 udelay(100);
79 *data->cs0_cfg |= 0x01;
Tejun Heo55dba312007-12-05 16:43:07 +090080
81 return words << 1;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050082}
83
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050084static struct scsi_host_template ixp4xx_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +090085 ATA_PIO_SHT(DRV_NAME),
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050086};
87
88static struct ata_port_operations ixp4xx_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +090089 .inherits = &ata_sff_port_ops,
Tejun Heo5682ed32008-04-07 22:47:16 +090090 .sff_data_xfer = ixp4xx_mmio_data_xfer,
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -040091 .cable_detect = ata_cable_40wire,
Tejun Heo029cfd62008-03-25 12:22:49 +090092 .set_mode = ixp4xx_set_mode,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050093};
94
Rod Whitbyaf183742008-01-06 10:05:28 +090095static void ixp4xx_setup_port(struct ata_port *ap,
Tejun Heocbcdd872007-08-18 13:14:55 +090096 struct ixp4xx_pata_data *data,
97 unsigned long raw_cs0, unsigned long raw_cs1)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050098{
Rod Whitbyaf183742008-01-06 10:05:28 +090099 struct ata_ioports *ioaddr = &ap->ioaddr;
Tejun Heocbcdd872007-08-18 13:14:55 +0900100 unsigned long raw_cmd = raw_cs0;
101 unsigned long raw_ctl = raw_cs1 + 0x06;
102
Tejun Heo0d5ff562007-02-01 15:06:36 +0900103 ioaddr->cmd_addr = data->cs0;
104 ioaddr->altstatus_addr = data->cs1 + 0x06;
105 ioaddr->ctl_addr = data->cs1 + 0x06;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500106
Tejun Heo9363c382008-04-07 22:47:16 +0900107 ata_sff_std_ports(ioaddr);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500108
109#ifndef __ARMEB__
110
111 /* adjust the addresses to handle the address swizzling of the
112 * ixp4xx in little endian mode.
113 */
114
Tejun Heo0d5ff562007-02-01 15:06:36 +0900115 *(unsigned long *)&ioaddr->data_addr ^= 0x02;
116 *(unsigned long *)&ioaddr->cmd_addr ^= 0x03;
117 *(unsigned long *)&ioaddr->altstatus_addr ^= 0x03;
118 *(unsigned long *)&ioaddr->ctl_addr ^= 0x03;
119 *(unsigned long *)&ioaddr->error_addr ^= 0x03;
120 *(unsigned long *)&ioaddr->feature_addr ^= 0x03;
121 *(unsigned long *)&ioaddr->nsect_addr ^= 0x03;
122 *(unsigned long *)&ioaddr->lbal_addr ^= 0x03;
123 *(unsigned long *)&ioaddr->lbam_addr ^= 0x03;
124 *(unsigned long *)&ioaddr->lbah_addr ^= 0x03;
125 *(unsigned long *)&ioaddr->device_addr ^= 0x03;
126 *(unsigned long *)&ioaddr->status_addr ^= 0x03;
127 *(unsigned long *)&ioaddr->command_addr ^= 0x03;
Tejun Heocbcdd872007-08-18 13:14:55 +0900128
129 raw_cmd ^= 0x03;
130 raw_ctl ^= 0x03;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500131#endif
Tejun Heocbcdd872007-08-18 13:14:55 +0900132
133 ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", raw_cmd, raw_ctl);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500134}
135
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800136static int ixp4xx_pata_probe(struct platform_device *pdev)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500137{
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500138 unsigned int irq;
139 struct resource *cs0, *cs1;
Tejun Heo5d728822007-04-17 23:44:08 +0900140 struct ata_host *host;
141 struct ata_port *ap;
Jingoo Han61b8c342013-07-30 17:16:05 +0900142 struct ixp4xx_pata_data *data = dev_get_platdata(&pdev->dev);
Russell Kingd6cfaab2013-06-10 18:41:59 +0100143 int ret;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500144
145 cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0);
146 cs1 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
147
148 if (!cs0 || !cs1)
149 return -EINVAL;
150
Tejun Heo5d728822007-04-17 23:44:08 +0900151 /* allocate host */
152 host = ata_host_alloc(&pdev->dev, 1);
153 if (!host)
154 return -ENOMEM;
155
156 /* acquire resources and fill host */
Russell Kingd6cfaab2013-06-10 18:41:59 +0100157 ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
158 if (ret)
159 return ret;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500160
Tejun Heo24dc5f32007-01-20 16:00:28 +0900161 data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000);
162 data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500163
Scott Thompson991bf522007-10-02 13:53:01 -0700164 if (!data->cs0 || !data->cs1)
165 return -ENOMEM;
166
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500167 irq = platform_get_irq(pdev, 0);
168 if (irq)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200169 irq_set_irq_type(irq, IRQ_TYPE_EDGE_RISING);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500170
171 /* Setup expansion bus chip selects */
172 *data->cs0_cfg = data->cs0_bits;
173 *data->cs1_cfg = data->cs1_bits;
174
Tejun Heo5d728822007-04-17 23:44:08 +0900175 ap = host->ports[0];
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500176
Tejun Heo5d728822007-04-17 23:44:08 +0900177 ap->ops = &ixp4xx_port_ops;
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100178 ap->pio_mask = ATA_PIO4;
Sergei Shtylyov9cbe0562011-02-04 22:05:48 +0300179 ap->flags |= ATA_FLAG_NO_ATAPI;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500180
Tejun Heocbcdd872007-08-18 13:14:55 +0900181 ixp4xx_setup_port(ap, data, cs0->start, cs1->start);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500182
Joe Perches06296a12011-04-15 15:52:00 -0700183 ata_print_version_once(&pdev->dev, DRV_VERSION);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500184
Tejun Heo5d728822007-04-17 23:44:08 +0900185 /* activate host */
Tejun Heo9363c382008-04-07 22:47:16 +0900186 return ata_host_activate(host, irq, ata_sff_interrupt, 0, &ixp4xx_sht);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500187}
188
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500189static struct platform_driver ixp4xx_pata_platform_driver = {
190 .driver = {
191 .name = DRV_NAME,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500192 },
193 .probe = ixp4xx_pata_probe,
Brian Norris58d0ff22012-11-02 00:46:20 -0700194 .remove = ata_platform_remove_one,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500195};
196
Axel Lin99c8ea32011-11-27 14:44:26 +0800197module_platform_driver(ixp4xx_pata_platform_driver);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500198
199MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
200MODULE_DESCRIPTION("low-level driver for ixp4xx Compact Flash PATA");
201MODULE_LICENSE("GPL");
202MODULE_VERSION(DRV_VERSION);
Kay Sievers458622f2008-04-18 13:41:57 -0700203MODULE_ALIAS("platform:" DRV_NAME);