Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 2 | /* |
| 3 | * ixp4xx PATA/Compact Flash driver |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 4 | * Copyright (C) 2006-07 Tower Technologies |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 5 | * 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 Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 10 | * 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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 16 | #include <linux/mfd/syscon.h> |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/libata.h> |
| 19 | #include <linux/irq.h> |
| 20 | #include <linux/platform_device.h> |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 21 | #include <linux/regmap.h> |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 22 | #include <scsi/scsi_host.h> |
| 23 | |
| 24 | #define DRV_NAME "pata_ixp4xx_cf" |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 25 | #define DRV_VERSION "1.0" |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 26 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 27 | struct 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 | |
| 52 | static void ixp4xx_set_8bit_timing(struct ixp4xx_pata *ixpp, u8 pio_mode) |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 53 | { |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 54 | 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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 77 | } |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 78 | regmap_update_bits(ixpp->rmap, ixpp->cmd_csreg, |
| 79 | IXP4XX_EXP_BW_MASK, IXP4XX_EXP_BYTE_RD16|IXP4XX_EXP_BYTE_EN); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 80 | } |
| 81 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 82 | static 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 */ |
| 113 | static 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 Zolnierkiewicz | 989e0aa | 2016-12-30 15:01:17 +0100 | [diff] [blame] | 123 | static unsigned int ixp4xx_mmio_data_xfer(struct ata_queued_cmd *qc, |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 124 | unsigned char *buf, unsigned int buflen, int rw) |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 125 | { |
| 126 | unsigned int i; |
| 127 | unsigned int words = buflen >> 1; |
| 128 | u16 *buf16 = (u16 *) buf; |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 129 | struct ata_device *adev = qc->dev; |
Bartlomiej Zolnierkiewicz | 989e0aa | 2016-12-30 15:01:17 +0100 | [diff] [blame] | 130 | struct ata_port *ap = qc->dev->link->ap; |
Jeff Garzik | 59f9988 | 2007-05-28 07:07:20 -0400 | [diff] [blame] | 131 | void __iomem *mmio = ap->ioaddr.data_addr; |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 132 | 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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 138 | |
| 139 | /* set the expansion bus in 16bit mode and restore |
| 140 | * 8 bit mode after the transaction. |
| 141 | */ |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 142 | ixp4xx_set_16bit_timing(ixpp, adev->pio_mode); |
| 143 | udelay(5); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 144 | |
| 145 | /* Transfer multiple of 2 bytes */ |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 146 | if (rw == READ) |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 147 | for (i = 0; i < words; i++) |
| 148 | buf16[i] = readw(mmio); |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 149 | else |
| 150 | for (i = 0; i < words; i++) |
| 151 | writew(buf16[i], mmio); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 152 | |
| 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 Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 158 | if (rw == READ) { |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 159 | align_buf[0] = readw(mmio); |
| 160 | memcpy(trailing_buf, align_buf, 1); |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 161 | } else { |
| 162 | memcpy(align_buf, trailing_buf, 1); |
| 163 | writew(align_buf[0], mmio); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 164 | } |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 165 | words++; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 166 | } |
| 167 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 168 | ixp4xx_set_8bit_timing(ixpp, adev->pio_mode); |
| 169 | udelay(5); |
| 170 | |
| 171 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 172 | |
| 173 | return words << 1; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 174 | } |
| 175 | |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 176 | static struct scsi_host_template ixp4xx_sht = { |
Tejun Heo | 68d1d07 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 177 | ATA_PIO_SHT(DRV_NAME), |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 178 | }; |
| 179 | |
| 180 | static struct ata_port_operations ixp4xx_port_ops = { |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 181 | .inherits = &ata_sff_port_ops, |
Tejun Heo | 5682ed3 | 2008-04-07 22:47:16 +0900 | [diff] [blame] | 182 | .sff_data_xfer = ixp4xx_mmio_data_xfer, |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 183 | .cable_detect = ata_cable_40wire, |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 184 | .set_piomode = ixp4xx_set_piomode, |
| 185 | }; |
| 186 | |
| 187 | static 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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 191 | }; |
| 192 | |
Rod Whitby | af18374 | 2008-01-06 10:05:28 +0900 | [diff] [blame] | 193 | static void ixp4xx_setup_port(struct ata_port *ap, |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 194 | struct ixp4xx_pata *ixpp, |
Linus Walleij | 8e3d25a | 2021-07-26 10:37:55 +0200 | [diff] [blame] | 195 | unsigned long raw_cmd, unsigned long raw_ctl) |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 196 | { |
Rod Whitby | af18374 | 2008-01-06 10:05:28 +0900 | [diff] [blame] | 197 | struct ata_ioports *ioaddr = &ap->ioaddr; |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 198 | |
Linus Walleij | 8e3d25a | 2021-07-26 10:37:55 +0200 | [diff] [blame] | 199 | raw_ctl += 0x06; |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 200 | ioaddr->cmd_addr = ixpp->cmd; |
| 201 | ioaddr->altstatus_addr = ixpp->ctl + 0x06; |
| 202 | ioaddr->ctl_addr = ixpp->ctl + 0x06; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 203 | |
Tejun Heo | 9363c38 | 2008-04-07 22:47:16 +0900 | [diff] [blame] | 204 | ata_sff_std_ports(ioaddr); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 205 | |
Linus Walleij | d2b507a | 2021-07-26 01:28:05 +0200 | [diff] [blame] | 206 | 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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 210 | |
Linus Walleij | d2b507a | 2021-07-26 01:28:05 +0200 | [diff] [blame] | 211 | *(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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 224 | |
Linus Walleij | d2b507a | 2021-07-26 01:28:05 +0200 | [diff] [blame] | 225 | raw_cmd ^= 0x03; |
| 226 | raw_ctl ^= 0x03; |
| 227 | } |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 228 | |
| 229 | ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", raw_cmd, raw_ctl); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 230 | } |
| 231 | |
Greg Kroah-Hartman | 0ec2491 | 2012-12-21 13:19:58 -0800 | [diff] [blame] | 232 | static int ixp4xx_pata_probe(struct platform_device *pdev) |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 233 | { |
Linus Walleij | 8e3d25a | 2021-07-26 10:37:55 +0200 | [diff] [blame] | 234 | struct resource *cmd, *ctl; |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 235 | struct ata_port_info pi = ixp4xx_port_info; |
| 236 | const struct ata_port_info *ppi[] = { &pi, NULL }; |
Linus Walleij | f62b389 | 2021-05-11 00:54:41 +0200 | [diff] [blame] | 237 | struct device *dev = &pdev->dev; |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 238 | struct device_node *np = dev->of_node; |
| 239 | struct ixp4xx_pata *ixpp; |
| 240 | u32 csindex; |
Russell King | d6cfaab | 2013-06-10 18:41:59 +0100 | [diff] [blame] | 241 | int ret; |
Junlin Yang | c38ae56 | 2021-04-09 21:54:26 +0800 | [diff] [blame] | 242 | int irq; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 243 | |
Linus Walleij | 8e3d25a | 2021-07-26 10:37:55 +0200 | [diff] [blame] | 244 | cmd = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 245 | ctl = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 246 | |
Linus Walleij | 8e3d25a | 2021-07-26 10:37:55 +0200 | [diff] [blame] | 247 | if (!cmd || !ctl) |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 248 | return -EINVAL; |
| 249 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 250 | ixpp = devm_kzalloc(dev, sizeof(*ixpp), GFP_KERNEL); |
| 251 | if (!ixpp) |
Tejun Heo | 5d72882 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 252 | return -ENOMEM; |
| 253 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 254 | 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 Walleij | f62b389 | 2021-05-11 00:54:41 +0200 | [diff] [blame] | 269 | ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32)); |
Russell King | d6cfaab | 2013-06-10 18:41:59 +0100 | [diff] [blame] | 270 | if (ret) |
| 271 | return ret; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 272 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 273 | 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 Thompson | 991bf52 | 2007-10-02 13:53:01 -0700 | [diff] [blame] | 276 | return -ENOMEM; |
| 277 | |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 278 | irq = platform_get_irq(pdev, 0); |
Sergey Shtylyov | e379b40 | 2021-03-25 23:51:10 +0300 | [diff] [blame] | 279 | if (irq > 0) |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 280 | irq_set_irq_type(irq, IRQ_TYPE_EDGE_RISING); |
Sergey Shtylyov | e379b40 | 2021-03-25 23:51:10 +0300 | [diff] [blame] | 281 | else if (irq < 0) |
| 282 | return irq; |
| 283 | else |
| 284 | return -EINVAL; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 285 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 286 | /* Just one port to set up */ |
| 287 | ixp4xx_setup_port(ixpp->host->ports[0], ixpp, cmd->start, ctl->start); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 288 | |
Linus Walleij | f62b389 | 2021-05-11 00:54:41 +0200 | [diff] [blame] | 289 | ata_print_version_once(dev, DRV_VERSION); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 290 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 291 | return ata_host_activate(ixpp->host, irq, ata_sff_interrupt, 0, &ixp4xx_sht); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 292 | } |
| 293 | |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 294 | static const struct of_device_id ixp4xx_pata_of_match[] = { |
| 295 | { .compatible = "intel,ixp4xx-compact-flash", }, |
| 296 | { }, |
| 297 | }; |
| 298 | |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 299 | static struct platform_driver ixp4xx_pata_platform_driver = { |
| 300 | .driver = { |
| 301 | .name = DRV_NAME, |
Linus Walleij | 47adef2 | 2021-07-26 10:44:45 +0200 | [diff] [blame] | 302 | .of_match_table = ixp4xx_pata_of_match, |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 303 | }, |
| 304 | .probe = ixp4xx_pata_probe, |
Brian Norris | 58d0ff2 | 2012-11-02 00:46:20 -0700 | [diff] [blame] | 305 | .remove = ata_platform_remove_one, |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 306 | }; |
| 307 | |
Axel Lin | 99c8ea3 | 2011-11-27 14:44:26 +0800 | [diff] [blame] | 308 | module_platform_driver(ixp4xx_pata_platform_driver); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 309 | |
| 310 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); |
| 311 | MODULE_DESCRIPTION("low-level driver for ixp4xx Compact Flash PATA"); |
| 312 | MODULE_LICENSE("GPL"); |
| 313 | MODULE_VERSION(DRV_VERSION); |
Kay Sievers | 458622f | 2008-04-18 13:41:57 -0700 | [diff] [blame] | 314 | MODULE_ALIAS("platform:" DRV_NAME); |