Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 1 | /* |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 2 | * Created 20 Oct 2004 by Mark Lord |
| 3 | * |
| 4 | * Basic support for Delkin/ASKA/Workbit Cardbus CompactFlash adapter |
| 5 | * |
| 6 | * Modeled after the 16-bit PCMCIA driver: ide-cs.c |
| 7 | * |
| 8 | * This is slightly peculiar, in that it is a PCI driver, |
| 9 | * but is NOT an IDE PCI driver -- the IDE layer does not directly |
| 10 | * support hot insertion/removal of PCI interfaces, so this driver |
| 11 | * is unable to use the IDE PCI interfaces. Instead, it uses the |
| 12 | * same interfaces as the ide-cs (PCMCIA) driver uses. |
| 13 | * On the plus side, the driver is also smaller/simpler this way. |
| 14 | * |
| 15 | * This file is subject to the terms and conditions of the GNU General Public |
| 16 | * License. See the file COPYING in the main directory of this archive for |
| 17 | * more details. |
| 18 | */ |
Bartlomiej Zolnierkiewicz | 78829dd | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 19 | |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 20 | #include <linux/types.h> |
| 21 | #include <linux/module.h> |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 22 | #include <linux/ide.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/pci.h> |
Bartlomiej Zolnierkiewicz | 78829dd | 2008-02-02 19:56:33 +0100 | [diff] [blame] | 25 | |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 26 | #include <asm/io.h> |
| 27 | |
| 28 | /* |
| 29 | * No chip documentation has yet been found, |
| 30 | * so these configuration values were pulled from |
| 31 | * a running Win98 system using "debug". |
| 32 | * This gives around 3MByte/second read performance, |
| 33 | * which is about 2/3 of what the chip is capable of. |
| 34 | * |
| 35 | * There is also a 4KByte mmio region on the card, |
| 36 | * but its purpose has yet to be reverse-engineered. |
| 37 | */ |
| 38 | static const u8 setup[] = { |
| 39 | 0x00, 0x05, 0xbe, 0x01, 0x20, 0x8f, 0x00, 0x00, |
| 40 | 0xa4, 0x1f, 0xb3, 0x1b, 0x00, 0x00, 0x00, 0x80, |
| 41 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 42 | 0x00, 0x00, 0x00, 0x00, 0xa4, 0x83, 0x02, 0x13, |
| 43 | }; |
| 44 | |
Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 45 | static const struct ide_port_ops delkin_cb_port_ops = { |
| 46 | .quirkproc = ide_undecoded_slave, |
| 47 | }; |
| 48 | |
Bartlomiej Zolnierkiewicz | 1c4d4ad | 2008-06-10 20:56:37 +0200 | [diff] [blame] | 49 | static const struct ide_port_info delkin_cb_port_info = { |
| 50 | .port_ops = &delkin_cb_port_ops, |
| 51 | .host_flags = IDE_HFLAG_IO_32BIT | IDE_HFLAG_UNMASK_IRQS | |
| 52 | IDE_HFLAG_NO_DMA, |
| 53 | }; |
| 54 | |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 55 | static int __devinit |
| 56 | delkin_cb_probe (struct pci_dev *dev, const struct pci_device_id *id) |
| 57 | { |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 58 | struct ide_host *host; |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 59 | unsigned long base; |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 60 | int i, rc; |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 61 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 62 | |
| 63 | rc = pci_enable_device(dev); |
| 64 | if (rc) { |
| 65 | printk(KERN_ERR "delkin_cb: pci_enable_device failed (%d)\n", rc); |
| 66 | return rc; |
| 67 | } |
| 68 | rc = pci_request_regions(dev, "delkin_cb"); |
| 69 | if (rc) { |
| 70 | printk(KERN_ERR "delkin_cb: pci_request_regions failed (%d)\n", rc); |
| 71 | pci_disable_device(dev); |
| 72 | return rc; |
| 73 | } |
| 74 | base = pci_resource_start(dev, 0); |
| 75 | outb(0x02, base + 0x1e); /* set nIEN to block interrupts */ |
| 76 | inb(base + 0x17); /* read status to clear interrupts */ |
| 77 | for (i = 0; i < sizeof(setup); ++i) { |
| 78 | if (setup[i]) |
| 79 | outb(setup[i], base + i); |
| 80 | } |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 81 | |
| 82 | memset(&hw, 0, sizeof(hw)); |
| 83 | ide_std_init_ports(&hw, base + 0x10, base + 0x1e); |
| 84 | hw.irq = dev->irq; |
Bartlomiej Zolnierkiewicz | 8a7dbb9 | 2008-06-10 20:56:37 +0200 | [diff] [blame] | 85 | hw.dev = &dev->dev; |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 86 | hw.chipset = ide_pci; /* this enables IRQ sharing */ |
| 87 | |
Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 88 | rc = ide_host_add(&delkin_cb_port_info, hws, &host); |
| 89 | if (rc) |
Bartlomiej Zolnierkiewicz | 9e016a7 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 90 | goto out_disable; |
| 91 | |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 92 | pci_set_drvdata(dev, host); |
Bartlomiej Zolnierkiewicz | 8a7dbb9 | 2008-06-10 20:56:37 +0200 | [diff] [blame] | 93 | |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 94 | return 0; |
Bartlomiej Zolnierkiewicz | 9e016a7 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 95 | |
| 96 | out_disable: |
Bartlomiej Zolnierkiewicz | 7f6f33c | 2008-04-26 17:36:38 +0200 | [diff] [blame] | 97 | pci_release_regions(dev); |
Bartlomiej Zolnierkiewicz | 9e016a7 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 98 | pci_disable_device(dev); |
Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 99 | return rc; |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static void |
| 103 | delkin_cb_remove (struct pci_dev *dev) |
| 104 | { |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 105 | struct ide_host *host = pci_get_drvdata(dev); |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 106 | |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 107 | ide_host_remove(host); |
Bartlomiej Zolnierkiewicz | f82c2b1 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 108 | |
Bartlomiej Zolnierkiewicz | 7f6f33c | 2008-04-26 17:36:38 +0200 | [diff] [blame] | 109 | pci_release_regions(dev); |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 110 | pci_disable_device(dev); |
| 111 | } |
| 112 | |
| 113 | static struct pci_device_id delkin_cb_pci_tbl[] __devinitdata = { |
| 114 | { 0x1145, 0xf021, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
Mark Lord | 2571b16 | 2007-04-20 22:16:58 +0200 | [diff] [blame] | 115 | { 0x1145, 0xf024, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 116 | { 0, }, |
| 117 | }; |
| 118 | MODULE_DEVICE_TABLE(pci, delkin_cb_pci_tbl); |
| 119 | |
Bartlomiej Zolnierkiewicz | a9ab09e2 | 2008-10-13 21:39:41 +0200 | [diff] [blame^] | 120 | static struct pci_driver delkin_cb_pci_driver = { |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 121 | .name = "Delkin-ASKA-Workbit Cardbus IDE", |
| 122 | .id_table = delkin_cb_pci_tbl, |
| 123 | .probe = delkin_cb_probe, |
| 124 | .remove = delkin_cb_remove, |
| 125 | }; |
| 126 | |
Bartlomiej Zolnierkiewicz | f4084a1 | 2008-06-10 20:56:38 +0200 | [diff] [blame] | 127 | static int __init delkin_cb_init(void) |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 128 | { |
Bartlomiej Zolnierkiewicz | a9ab09e2 | 2008-10-13 21:39:41 +0200 | [diff] [blame^] | 129 | return pci_register_driver(&delkin_cb_pci_driver); |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 130 | } |
| 131 | |
Bartlomiej Zolnierkiewicz | f4084a1 | 2008-06-10 20:56:38 +0200 | [diff] [blame] | 132 | static void __exit delkin_cb_exit(void) |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 133 | { |
Bartlomiej Zolnierkiewicz | a9ab09e2 | 2008-10-13 21:39:41 +0200 | [diff] [blame^] | 134 | pci_unregister_driver(&delkin_cb_pci_driver); |
Mark Lord | 78281c5 | 2007-02-07 18:19:32 +0100 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | module_init(delkin_cb_init); |
| 138 | module_exit(delkin_cb_exit); |
| 139 | |
| 140 | MODULE_AUTHOR("Mark Lord"); |
| 141 | MODULE_DESCRIPTION("Basic support for Delkin/ASKA/Workbit Cardbus IDE"); |
| 142 | MODULE_LICENSE("GPL"); |
| 143 | |