Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 1 | /* |
| 2 | * ixp4xx PATA/Compact Flash driver |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 3 | * Copyright (C) 2006-07 Tower Technologies |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 4 | * 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 Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 9 | * 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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 12 | * |
| 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 Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 27 | #define DRV_VERSION "0.2" |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 28 | |
Alan | 3ddcc59 | 2007-02-20 17:45:55 +0000 | [diff] [blame] | 29 | static int ixp4xx_set_mode(struct ata_port *ap, struct ata_device **error) |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 30 | { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame^] | 31 | struct ata_device *dev; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 32 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame^] | 33 | ata_link_for_each_dev(dev, &ap->link) { |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 34 | if (ata_dev_enabled(dev)) { |
Alan | 3ddcc59 | 2007-02-20 17:45:55 +0000 | [diff] [blame] | 35 | ata_dev_printk(dev, KERN_INFO, "configured for PIO0\n"); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 36 | 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 | } |
Alan | b229a7b | 2007-01-24 11:47:07 +0000 | [diff] [blame] | 42 | return 0; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 43 | } |
| 44 | |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 45 | static void ixp4xx_mmio_data_xfer(struct ata_device *adev, unsigned char *buf, |
| 46 | unsigned int buflen, int write_data) |
| 47 | { |
| 48 | unsigned int i; |
| 49 | unsigned int words = buflen >> 1; |
| 50 | u16 *buf16 = (u16 *) buf; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 51 | struct ata_port *ap = adev->link->ap; |
Jeff Garzik | 59f9988 | 2007-05-28 07:07:20 -0400 | [diff] [blame] | 52 | void __iomem *mmio = ap->ioaddr.data_addr; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 53 | 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 */ |
| 62 | if (write_data) { |
| 63 | for (i = 0; i < words; i++) |
| 64 | writew(buf16[i], mmio); |
| 65 | } else { |
| 66 | for (i = 0; i < words; i++) |
| 67 | buf16[i] = readw(mmio); |
| 68 | } |
| 69 | |
| 70 | /* Transfer trailing 1 byte, if any. */ |
| 71 | if (unlikely(buflen & 0x01)) { |
| 72 | u16 align_buf[1] = { 0 }; |
| 73 | unsigned char *trailing_buf = buf + buflen - 1; |
| 74 | |
| 75 | if (write_data) { |
| 76 | memcpy(align_buf, trailing_buf, 1); |
| 77 | writew(align_buf[0], mmio); |
| 78 | } else { |
| 79 | align_buf[0] = readw(mmio); |
| 80 | memcpy(trailing_buf, align_buf, 1); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | udelay(100); |
| 85 | *data->cs0_cfg |= 0x01; |
| 86 | } |
| 87 | |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 88 | static struct scsi_host_template ixp4xx_sht = { |
| 89 | .module = THIS_MODULE, |
| 90 | .name = DRV_NAME, |
| 91 | .ioctl = ata_scsi_ioctl, |
| 92 | .queuecommand = ata_scsi_queuecmd, |
| 93 | .can_queue = ATA_DEF_QUEUE, |
| 94 | .this_id = ATA_SHT_THIS_ID, |
| 95 | .sg_tablesize = LIBATA_MAX_PRD, |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 96 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, |
| 97 | .emulated = ATA_SHT_EMULATED, |
| 98 | .use_clustering = ATA_SHT_USE_CLUSTERING, |
| 99 | .proc_name = DRV_NAME, |
| 100 | .dma_boundary = ATA_DMA_BOUNDARY, |
| 101 | .slave_configure = ata_scsi_slave_config, |
Tejun Heo | c972b60 | 2006-11-29 12:10:46 +0900 | [diff] [blame] | 102 | .slave_destroy = ata_scsi_slave_destroy, |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 103 | .bios_param = ata_std_bios_param, |
| 104 | }; |
| 105 | |
| 106 | static struct ata_port_operations ixp4xx_port_ops = { |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 107 | .set_mode = ixp4xx_set_mode, |
| 108 | .mode_filter = ata_pci_default_filter, |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 109 | |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 110 | .port_disable = ata_port_disable, |
| 111 | .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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 116 | |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 117 | .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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 121 | |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 122 | .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 Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 126 | |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 127 | .irq_handler = ata_interrupt, |
| 128 | .irq_clear = ata_bmdma_irq_clear, |
| 129 | .irq_on = ata_irq_on, |
| 130 | .irq_ack = ata_dummy_irq_ack, |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 131 | |
Alessandro Zummo | 5d4c51f | 2007-05-26 19:26:55 -0400 | [diff] [blame] | 132 | .port_start = ata_port_start, |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | static void ixp4xx_setup_port(struct ata_ioports *ioaddr, |
| 136 | struct ixp4xx_pata_data *data) |
| 137 | { |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 138 | ioaddr->cmd_addr = data->cs0; |
| 139 | ioaddr->altstatus_addr = data->cs1 + 0x06; |
| 140 | ioaddr->ctl_addr = data->cs1 + 0x06; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 141 | |
| 142 | ata_std_ports(ioaddr); |
| 143 | |
| 144 | #ifndef __ARMEB__ |
| 145 | |
| 146 | /* adjust the addresses to handle the address swizzling of the |
| 147 | * ixp4xx in little endian mode. |
| 148 | */ |
| 149 | |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 150 | *(unsigned long *)&ioaddr->data_addr ^= 0x02; |
| 151 | *(unsigned long *)&ioaddr->cmd_addr ^= 0x03; |
| 152 | *(unsigned long *)&ioaddr->altstatus_addr ^= 0x03; |
| 153 | *(unsigned long *)&ioaddr->ctl_addr ^= 0x03; |
| 154 | *(unsigned long *)&ioaddr->error_addr ^= 0x03; |
| 155 | *(unsigned long *)&ioaddr->feature_addr ^= 0x03; |
| 156 | *(unsigned long *)&ioaddr->nsect_addr ^= 0x03; |
| 157 | *(unsigned long *)&ioaddr->lbal_addr ^= 0x03; |
| 158 | *(unsigned long *)&ioaddr->lbam_addr ^= 0x03; |
| 159 | *(unsigned long *)&ioaddr->lbah_addr ^= 0x03; |
| 160 | *(unsigned long *)&ioaddr->device_addr ^= 0x03; |
| 161 | *(unsigned long *)&ioaddr->status_addr ^= 0x03; |
| 162 | *(unsigned long *)&ioaddr->command_addr ^= 0x03; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 163 | #endif |
| 164 | } |
| 165 | |
| 166 | static __devinit int ixp4xx_pata_probe(struct platform_device *pdev) |
| 167 | { |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 168 | unsigned int irq; |
| 169 | struct resource *cs0, *cs1; |
Tejun Heo | 5d72882 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 170 | struct ata_host *host; |
| 171 | struct ata_port *ap; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 172 | struct ixp4xx_pata_data *data = pdev->dev.platform_data; |
| 173 | |
| 174 | cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 175 | cs1 = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 176 | |
| 177 | if (!cs0 || !cs1) |
| 178 | return -EINVAL; |
| 179 | |
Tejun Heo | 5d72882 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 180 | /* allocate host */ |
| 181 | host = ata_host_alloc(&pdev->dev, 1); |
| 182 | if (!host) |
| 183 | return -ENOMEM; |
| 184 | |
| 185 | /* acquire resources and fill host */ |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 186 | pdev->dev.coherent_dma_mask = DMA_32BIT_MASK; |
| 187 | |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 188 | data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000); |
| 189 | data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 190 | |
Scott Thompson | 991bf52 | 2007-10-02 13:53:01 -0700 | [diff] [blame] | 191 | if (!data->cs0 || !data->cs1) |
| 192 | return -ENOMEM; |
| 193 | |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 194 | irq = platform_get_irq(pdev, 0); |
| 195 | if (irq) |
Alessandro Zummo | 282c6b9 | 2007-03-18 15:23:33 +0100 | [diff] [blame] | 196 | set_irq_type(irq, IRQT_RISING); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 197 | |
| 198 | /* Setup expansion bus chip selects */ |
| 199 | *data->cs0_cfg = data->cs0_bits; |
| 200 | *data->cs1_cfg = data->cs1_bits; |
| 201 | |
Tejun Heo | 5d72882 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 202 | ap = host->ports[0]; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 203 | |
Tejun Heo | 5d72882 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 204 | ap->ops = &ixp4xx_port_ops; |
| 205 | ap->pio_mask = 0x1f; /* PIO4 */ |
| 206 | ap->flags |= ATA_FLAG_MMIO | ATA_FLAG_NO_LEGACY | ATA_FLAG_NO_ATAPI; |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 207 | |
Tejun Heo | 5d72882 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 208 | ixp4xx_setup_port(&ap->ioaddr, data); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 209 | |
| 210 | dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n"); |
| 211 | |
Tejun Heo | 5d72882 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 212 | /* activate host */ |
| 213 | return ata_host_activate(host, irq, ata_interrupt, 0, &ixp4xx_sht); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | static __devexit int ixp4xx_pata_remove(struct platform_device *dev) |
| 217 | { |
| 218 | struct ata_host *host = platform_get_drvdata(dev); |
| 219 | |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 220 | ata_host_detach(host); |
Alessandro Zummo | 0df0d0a | 2006-11-14 13:43:21 -0500 | [diff] [blame] | 221 | |
| 222 | return 0; |
| 223 | } |
| 224 | |
| 225 | static struct platform_driver ixp4xx_pata_platform_driver = { |
| 226 | .driver = { |
| 227 | .name = DRV_NAME, |
| 228 | .owner = THIS_MODULE, |
| 229 | }, |
| 230 | .probe = ixp4xx_pata_probe, |
| 231 | .remove = __devexit_p(ixp4xx_pata_remove), |
| 232 | }; |
| 233 | |
| 234 | static int __init ixp4xx_pata_init(void) |
| 235 | { |
| 236 | return platform_driver_register(&ixp4xx_pata_platform_driver); |
| 237 | } |
| 238 | |
| 239 | static void __exit ixp4xx_pata_exit(void) |
| 240 | { |
| 241 | platform_driver_unregister(&ixp4xx_pata_platform_driver); |
| 242 | } |
| 243 | |
| 244 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); |
| 245 | MODULE_DESCRIPTION("low-level driver for ixp4xx Compact Flash PATA"); |
| 246 | MODULE_LICENSE("GPL"); |
| 247 | MODULE_VERSION(DRV_VERSION); |
| 248 | |
| 249 | module_init(ixp4xx_pata_init); |
| 250 | module_exit(ixp4xx_pata_exit); |