blob: 99c63087c8ae93eec26dc87780d91ab89277830c [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>
Linus Walleij47adef22021-07-26 10:44:45 +020016#include <linux/mfd/syscon.h>
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050017#include <linux/module.h>
18#include <linux/libata.h>
19#include <linux/irq.h>
20#include <linux/platform_device.h>
Linus Walleij47adef22021-07-26 10:44:45 +020021#include <linux/regmap.h>
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050022#include <scsi/scsi_host.h>
23
24#define DRV_NAME "pata_ixp4xx_cf"
Linus Walleij47adef22021-07-26 10:44:45 +020025#define DRV_VERSION "1.0"
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050026
Linus Walleij47adef22021-07-26 10:44:45 +020027struct ixp4xx_pata {
28 struct ata_host *host;
29 struct regmap *rmap;
30 u32 cmd_csreg;
31 void __iomem *cmd;
32 void __iomem *ctl;
33};
34
35#define IXP4XX_EXP_TIMING_STRIDE 0x04
36/* The timings for the chipselect is in bits 29..16 */
37#define IXP4XX_EXP_T1_T5_MASK GENMASK(29, 16)
38#define IXP4XX_EXP_PIO_0_8 0x0a470000
39#define IXP4XX_EXP_PIO_1_8 0x06430000
40#define IXP4XX_EXP_PIO_2_8 0x02410000
41#define IXP4XX_EXP_PIO_3_8 0x00820000
42#define IXP4XX_EXP_PIO_4_8 0x00400000
43#define IXP4XX_EXP_PIO_0_16 0x29640000
44#define IXP4XX_EXP_PIO_1_16 0x05030000
45#define IXP4XX_EXP_PIO_2_16 0x00b20000
46#define IXP4XX_EXP_PIO_3_16 0x00820000
47#define IXP4XX_EXP_PIO_4_16 0x00400000
48#define IXP4XX_EXP_BW_MASK (BIT(6)|BIT(0))
49#define IXP4XX_EXP_BYTE_RD16 BIT(6) /* Byte reads on half-word devices */
50#define IXP4XX_EXP_BYTE_EN BIT(0) /* Use 8bit data bus if set */
51
52static void ixp4xx_set_8bit_timing(struct ixp4xx_pata *ixpp, u8 pio_mode)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050053{
Linus Walleij47adef22021-07-26 10:44:45 +020054 switch (pio_mode) {
55 case XFER_PIO_0:
56 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
57 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_0_8);
58 break;
59 case XFER_PIO_1:
60 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
61 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_1_8);
62 break;
63 case XFER_PIO_2:
64 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
65 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_2_8);
66 break;
67 case XFER_PIO_3:
68 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
69 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_3_8);
70 break;
71 case XFER_PIO_4:
72 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
73 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_4_8);
74 break;
75 default:
76 break;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050077 }
Linus Walleij47adef22021-07-26 10:44:45 +020078 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
79 IXP4XX_EXP_BW_MASK, IXP4XX_EXP_BYTE_RD16|IXP4XX_EXP_BYTE_EN);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -050080}
81
Linus Walleij47adef22021-07-26 10:44:45 +020082static void ixp4xx_set_16bit_timing(struct ixp4xx_pata *ixpp, u8 pio_mode)
83{
84 switch (pio_mode){
85 case XFER_PIO_0:
86 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
87 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_0_16);
88 break;
89 case XFER_PIO_1:
90 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
91 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_1_16);
92 break;
93 case XFER_PIO_2:
94 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
95 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_2_16);
96 break;
97 case XFER_PIO_3:
98 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
99 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_3_16);
100 break;
101 case XFER_PIO_4:
102 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
103 IXP4XX_EXP_T1_T5_MASK, IXP4XX_EXP_PIO_4_16);
104 break;
105 default:
106 break;
107 }
108 regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg,
109 IXP4XX_EXP_BW_MASK, IXP4XX_EXP_BYTE_RD16);
110}
111
112/* This sets up the timing on the chipselect CMD accordingly */
113static void ixp4xx_set_piomode(struct ata_port *ap, struct ata_device *adev)
114{
115 struct ixp4xx_pata *ixpp = ap->host->private_data;
116
117 ata_dev_printk(adev, KERN_INFO, "configured for PIO%d 8bit\n",
118 adev->pio_mode - XFER_PIO_0);
119 ixp4xx_set_8bit_timing(ixpp, adev->pio_mode);
120}
121
122
Bartlomiej Zolnierkiewicz989e0aa2016-12-30 15:01:17 +0100123static unsigned int ixp4xx_mmio_data_xfer(struct ata_queued_cmd *qc,
Linus Walleij47adef22021-07-26 10:44:45 +0200124 unsigned char *buf, unsigned int buflen, int rw)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500125{
126 unsigned int i;
127 unsigned int words = buflen >> 1;
128 u16 *buf16 = (u16 *) buf;
Linus Walleij47adef22021-07-26 10:44:45 +0200129 struct ata_device *adev = qc->dev;
Bartlomiej Zolnierkiewicz989e0aa2016-12-30 15:01:17 +0100130 struct ata_port *ap = qc->dev->link->ap;
Jeff Garzik59f99882007-05-28 07:07:20 -0400131 void __iomem *mmio = ap->ioaddr.data_addr;
Linus Walleij47adef22021-07-26 10:44:45 +0200132 struct ixp4xx_pata *ixpp = ap->host->private_data;
133 unsigned long flags;
134
135 ata_dev_printk(adev, KERN_DEBUG, "%s %d bytes\n", (rw == READ) ? "READ" : "WRITE",
136 buflen);
137 spin_lock_irqsave(ap->lock, flags);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500138
139 /* set the expansion bus in 16bit mode and restore
140 * 8 bit mode after the transaction.
141 */
Linus Walleij47adef22021-07-26 10:44:45 +0200142 ixp4xx_set_16bit_timing(ixpp, adev->pio_mode);
143 udelay(5);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500144
145 /* Transfer multiple of 2 bytes */
Tejun Heo55dba312007-12-05 16:43:07 +0900146 if (rw == READ)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500147 for (i = 0; i < words; i++)
148 buf16[i] = readw(mmio);
Tejun Heo55dba312007-12-05 16:43:07 +0900149 else
150 for (i = 0; i < words; i++)
151 writew(buf16[i], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500152
153 /* Transfer trailing 1 byte, if any. */
154 if (unlikely(buflen & 0x01)) {
155 u16 align_buf[1] = { 0 };
156 unsigned char *trailing_buf = buf + buflen - 1;
157
Tejun Heo55dba312007-12-05 16:43:07 +0900158 if (rw == READ) {
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500159 align_buf[0] = readw(mmio);
160 memcpy(trailing_buf, align_buf, 1);
Tejun Heo55dba312007-12-05 16:43:07 +0900161 } else {
162 memcpy(align_buf, trailing_buf, 1);
163 writew(align_buf[0], mmio);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500164 }
Tejun Heo55dba312007-12-05 16:43:07 +0900165 words++;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500166 }
167
Linus Walleij47adef22021-07-26 10:44:45 +0200168 ixp4xx_set_8bit_timing(ixpp, adev->pio_mode);
169 udelay(5);
170
171 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo55dba312007-12-05 16:43:07 +0900172
173 return words << 1;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500174}
175
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500176static struct scsi_host_template ixp4xx_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900177 ATA_PIO_SHT(DRV_NAME),
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500178};
179
180static struct ata_port_operations ixp4xx_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900181 .inherits = &ata_sff_port_ops,
Tejun Heo5682ed32008-04-07 22:47:16 +0900182 .sff_data_xfer = ixp4xx_mmio_data_xfer,
Alessandro Zummo5d4c51f2007-05-26 19:26:55 -0400183 .cable_detect = ata_cable_40wire,
Linus Walleij47adef22021-07-26 10:44:45 +0200184 .set_piomode = ixp4xx_set_piomode,
185};
186
187static struct ata_port_info ixp4xx_port_info = {
188 .flags = ATA_FLAG_NO_ATAPI,
189 .pio_mask = ATA_PIO4,
190 .port_ops = &ixp4xx_port_ops,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500191};
192
Rod Whitbyaf183742008-01-06 10:05:28 +0900193static void ixp4xx_setup_port(struct ata_port *ap,
Linus Walleij47adef22021-07-26 10:44:45 +0200194 struct ixp4xx_pata *ixpp,
Linus Walleij8e3d25a2021-07-26 10:37:55 +0200195 unsigned long raw_cmd, unsigned long raw_ctl)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500196{
Rod Whitbyaf183742008-01-06 10:05:28 +0900197 struct ata_ioports *ioaddr = &ap->ioaddr;
Tejun Heocbcdd872007-08-18 13:14:55 +0900198
Linus Walleij8e3d25a2021-07-26 10:37:55 +0200199 raw_ctl += 0x06;
Linus Walleij47adef22021-07-26 10:44:45 +0200200 ioaddr->cmd_addr = ixpp->cmd;
201 ioaddr->altstatus_addr = ixpp->ctl + 0x06;
202 ioaddr->ctl_addr = ixpp->ctl + 0x06;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500203
Tejun Heo9363c382008-04-07 22:47:16 +0900204 ata_sff_std_ports(ioaddr);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500205
Linus Walleijd2b507a2021-07-26 01:28:05 +0200206 if (!IS_ENABLED(CONFIG_CPU_BIG_ENDIAN)) {
207 /* adjust the addresses to handle the address swizzling of the
208 * ixp4xx in little endian mode.
209 */
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500210
Linus Walleijd2b507a2021-07-26 01:28:05 +0200211 *(unsigned long *)&ioaddr->data_addr ^= 0x02;
212 *(unsigned long *)&ioaddr->cmd_addr ^= 0x03;
213 *(unsigned long *)&ioaddr->altstatus_addr ^= 0x03;
214 *(unsigned long *)&ioaddr->ctl_addr ^= 0x03;
215 *(unsigned long *)&ioaddr->error_addr ^= 0x03;
216 *(unsigned long *)&ioaddr->feature_addr ^= 0x03;
217 *(unsigned long *)&ioaddr->nsect_addr ^= 0x03;
218 *(unsigned long *)&ioaddr->lbal_addr ^= 0x03;
219 *(unsigned long *)&ioaddr->lbam_addr ^= 0x03;
220 *(unsigned long *)&ioaddr->lbah_addr ^= 0x03;
221 *(unsigned long *)&ioaddr->device_addr ^= 0x03;
222 *(unsigned long *)&ioaddr->status_addr ^= 0x03;
223 *(unsigned long *)&ioaddr->command_addr ^= 0x03;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500224
Linus Walleijd2b507a2021-07-26 01:28:05 +0200225 raw_cmd ^= 0x03;
226 raw_ctl ^= 0x03;
227 }
Tejun Heocbcdd872007-08-18 13:14:55 +0900228
229 ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", raw_cmd, raw_ctl);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500230}
231
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800232static int ixp4xx_pata_probe(struct platform_device *pdev)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500233{
Linus Walleij8e3d25a2021-07-26 10:37:55 +0200234 struct resource *cmd, *ctl;
Linus Walleij47adef22021-07-26 10:44:45 +0200235 struct ata_port_info pi = ixp4xx_port_info;
236 const struct ata_port_info *ppi[] = { &pi, NULL };
Linus Walleijf62b3892021-05-11 00:54:41 +0200237 struct device *dev = &pdev->dev;
Linus Walleij47adef22021-07-26 10:44:45 +0200238 struct device_node *np = dev->of_node;
239 struct ixp4xx_pata *ixpp;
240 u32 csindex;
Russell Kingd6cfaab2013-06-10 18:41:59 +0100241 int ret;
Junlin Yangc38ae562021-04-09 21:54:26 +0800242 int irq;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500243
Linus Walleij8e3d25a2021-07-26 10:37:55 +0200244 cmd = platform_get_resource(pdev, IORESOURCE_MEM, 0);
245 ctl = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500246
Linus Walleij8e3d25a2021-07-26 10:37:55 +0200247 if (!cmd || !ctl)
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500248 return -EINVAL;
249
Linus Walleij47adef22021-07-26 10:44:45 +0200250 ixpp = devm_kzalloc(dev, sizeof(*ixpp), GFP_KERNEL);
251 if (!ixpp)
Tejun Heo5d728822007-04-17 23:44:08 +0900252 return -ENOMEM;
253
Linus Walleij47adef22021-07-26 10:44:45 +0200254 ixpp->rmap = syscon_node_to_regmap(np->parent);
255 if (IS_ERR(ixpp->rmap))
256 return dev_err_probe(dev, PTR_ERR(ixpp->rmap), "no regmap\n");
257 /* Inspect our address to figure out what chipselect the CMD is on */
258 ret = of_property_read_u32_index(np, "reg", 0, &csindex);
259 if (ret)
260 return dev_err_probe(dev, ret, "can't inspect CMD address\n");
261 dev_info(dev, "using CS%d for PIO timing configuration\n", csindex);
262 ixpp->cmd_csreg = csindex * IXP4XX_EXP_TIMING_STRIDE;
263
264 ixpp->host = ata_host_alloc_pinfo(dev, ppi, 1);
265 if (!ixpp->host)
266 return -ENOMEM;
267 ixpp->host->private_data = ixpp;
268
Linus Walleijf62b3892021-05-11 00:54:41 +0200269 ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
Russell Kingd6cfaab2013-06-10 18:41:59 +0100270 if (ret)
271 return ret;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500272
Linus Walleij47adef22021-07-26 10:44:45 +0200273 ixpp->cmd = devm_ioremap_resource(dev, cmd);
274 ixpp->ctl = devm_ioremap_resource(dev, ctl);
275 if (IS_ERR(ixpp->cmd) || IS_ERR(ixpp->ctl))
Scott Thompson991bf522007-10-02 13:53:01 -0700276 return -ENOMEM;
277
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500278 irq = platform_get_irq(pdev, 0);
Sergey Shtylyove379b402021-03-25 23:51:10 +0300279 if (irq > 0)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200280 irq_set_irq_type(irq, IRQ_TYPE_EDGE_RISING);
Sergey Shtylyove379b402021-03-25 23:51:10 +0300281 else if (irq < 0)
282 return irq;
283 else
284 return -EINVAL;
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500285
Linus Walleij47adef22021-07-26 10:44:45 +0200286 /* Just one port to set up */
287 ixp4xx_setup_port(ixpp->host->ports[0], ixpp, cmd->start, ctl->start);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500288
Linus Walleijf62b3892021-05-11 00:54:41 +0200289 ata_print_version_once(dev, DRV_VERSION);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500290
Linus Walleij47adef22021-07-26 10:44:45 +0200291 return ata_host_activate(ixpp->host, irq, ata_sff_interrupt, 0, &ixp4xx_sht);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500292}
293
Linus Walleij47adef22021-07-26 10:44:45 +0200294static const struct of_device_id ixp4xx_pata_of_match[] = {
295 { .compatible = "intel,ixp4xx-compact-flash", },
296 { },
297};
298
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500299static struct platform_driver ixp4xx_pata_platform_driver = {
300 .driver = {
301 .name = DRV_NAME,
Linus Walleij47adef22021-07-26 10:44:45 +0200302 .of_match_table = ixp4xx_pata_of_match,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500303 },
304 .probe = ixp4xx_pata_probe,
Brian Norris58d0ff22012-11-02 00:46:20 -0700305 .remove = ata_platform_remove_one,
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500306};
307
Axel Lin99c8ea32011-11-27 14:44:26 +0800308module_platform_driver(ixp4xx_pata_platform_driver);
Alessandro Zummo0df0d0a2006-11-14 13:43:21 -0500309
310MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
311MODULE_DESCRIPTION("low-level driver for ixp4xx Compact Flash PATA");
312MODULE_LICENSE("GPL");
313MODULE_VERSION(DRV_VERSION);
Kay Sievers458622f2008-04-18 13:41:57 -0700314MODULE_ALIAS("platform:" DRV_NAME);