blob: 1b69e4dd5522cc51bfbb76c42fb0d5f6daca4281 [file] [log] [blame]
Mark Lord78281c52007-02-07 18:19:32 +01001/*
Mark Lord78281c52007-02-07 18:19:32 +01002 * 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 Zolnierkiewicz78829dd2008-02-02 19:56:33 +010019
Mark Lord78281c52007-02-07 18:19:32 +010020#include <linux/types.h>
21#include <linux/module.h>
Mark Lord78281c52007-02-07 18:19:32 +010022#include <linux/hdreg.h>
23#include <linux/ide.h>
24#include <linux/init.h>
25#include <linux/pci.h>
Bartlomiej Zolnierkiewicz78829dd2008-02-02 19:56:33 +010026
Mark Lord78281c52007-02-07 18:19:32 +010027#include <asm/io.h>
28
29/*
30 * No chip documentation has yet been found,
31 * so these configuration values were pulled from
32 * a running Win98 system using "debug".
33 * This gives around 3MByte/second read performance,
34 * which is about 2/3 of what the chip is capable of.
35 *
36 * There is also a 4KByte mmio region on the card,
37 * but its purpose has yet to be reverse-engineered.
38 */
39static const u8 setup[] = {
40 0x00, 0x05, 0xbe, 0x01, 0x20, 0x8f, 0x00, 0x00,
41 0xa4, 0x1f, 0xb3, 0x1b, 0x00, 0x00, 0x00, 0x80,
42 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
43 0x00, 0x00, 0x00, 0x00, 0xa4, 0x83, 0x02, 0x13,
44};
45
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020046static const struct ide_port_ops delkin_cb_port_ops = {
47 .quirkproc = ide_undecoded_slave,
48};
49
Bartlomiej Zolnierkiewicz1c4d4ad2008-06-10 20:56:37 +020050static const struct ide_port_info delkin_cb_port_info = {
51 .port_ops = &delkin_cb_port_ops,
52 .host_flags = IDE_HFLAG_IO_32BIT | IDE_HFLAG_UNMASK_IRQS |
53 IDE_HFLAG_NO_DMA,
54};
55
Mark Lord78281c52007-02-07 18:19:32 +010056static int __devinit
57delkin_cb_probe (struct pci_dev *dev, const struct pci_device_id *id)
58{
59 unsigned long base;
60 hw_regs_t hw;
61 ide_hwif_t *hwif = NULL;
Mark Lord78281c52007-02-07 18:19:32 +010062 int i, rc;
Bartlomiej Zolnierkiewicz9e016a72008-02-02 19:56:39 +010063 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Mark Lord78281c52007-02-07 18:19:32 +010064
65 rc = pci_enable_device(dev);
66 if (rc) {
67 printk(KERN_ERR "delkin_cb: pci_enable_device failed (%d)\n", rc);
68 return rc;
69 }
70 rc = pci_request_regions(dev, "delkin_cb");
71 if (rc) {
72 printk(KERN_ERR "delkin_cb: pci_request_regions failed (%d)\n", rc);
73 pci_disable_device(dev);
74 return rc;
75 }
76 base = pci_resource_start(dev, 0);
77 outb(0x02, base + 0x1e); /* set nIEN to block interrupts */
78 inb(base + 0x17); /* read status to clear interrupts */
79 for (i = 0; i < sizeof(setup); ++i) {
80 if (setup[i])
81 outb(setup[i], base + i);
82 }
Mark Lord78281c52007-02-07 18:19:32 +010083
84 memset(&hw, 0, sizeof(hw));
85 ide_std_init_ports(&hw, base + 0x10, base + 0x1e);
86 hw.irq = dev->irq;
Bartlomiej Zolnierkiewicz8a7dbb92008-06-10 20:56:37 +020087 hw.dev = &dev->dev;
Mark Lord78281c52007-02-07 18:19:32 +010088 hw.chipset = ide_pci; /* this enables IRQ sharing */
89
Bartlomiej Zolnierkiewicz59bff5b2008-04-26 17:36:32 +020090 hwif = ide_find_port();
Bartlomiej Zolnierkiewicz9e016a72008-02-02 19:56:39 +010091 if (hwif == NULL)
92 goto out_disable;
93
94 i = hwif->index;
95
Bartlomiej Zolnierkiewiczbf64b7a2008-04-27 15:38:31 +020096 ide_init_port_data(hwif, i);
Bartlomiej Zolnierkiewicz9e016a72008-02-02 19:56:39 +010097 ide_init_port_hw(hwif, &hw);
Bartlomiej Zolnierkiewicz9e016a72008-02-02 19:56:39 +010098
99 idx[0] = i;
100
Bartlomiej Zolnierkiewicz1c4d4ad2008-06-10 20:56:37 +0200101 ide_device_add(idx, &delkin_cb_port_info);
Bartlomiej Zolnierkiewicz9e016a72008-02-02 19:56:39 +0100102
103 if (!hwif->present)
104 goto out_disable;
105
Mark Lord78281c52007-02-07 18:19:32 +0100106 pci_set_drvdata(dev, hwif);
Bartlomiej Zolnierkiewicz8a7dbb92008-06-10 20:56:37 +0200107
Mark Lord78281c52007-02-07 18:19:32 +0100108 return 0;
Bartlomiej Zolnierkiewicz9e016a72008-02-02 19:56:39 +0100109
110out_disable:
111 printk(KERN_ERR "delkin_cb: no IDE devices found\n");
Bartlomiej Zolnierkiewicz7f6f33c2008-04-26 17:36:38 +0200112 pci_release_regions(dev);
Bartlomiej Zolnierkiewicz9e016a72008-02-02 19:56:39 +0100113 pci_disable_device(dev);
114 return -ENODEV;
Mark Lord78281c52007-02-07 18:19:32 +0100115}
116
117static void
118delkin_cb_remove (struct pci_dev *dev)
119{
120 ide_hwif_t *hwif = pci_get_drvdata(dev);
121
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200122 ide_unregister(hwif);
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +0100123
Bartlomiej Zolnierkiewicz7f6f33c2008-04-26 17:36:38 +0200124 pci_release_regions(dev);
Mark Lord78281c52007-02-07 18:19:32 +0100125 pci_disable_device(dev);
126}
127
128static struct pci_device_id delkin_cb_pci_tbl[] __devinitdata = {
129 { 0x1145, 0xf021, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Mark Lord2571b162007-04-20 22:16:58 +0200130 { 0x1145, 0xf024, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Mark Lord78281c52007-02-07 18:19:32 +0100131 { 0, },
132};
133MODULE_DEVICE_TABLE(pci, delkin_cb_pci_tbl);
134
135static struct pci_driver driver = {
136 .name = "Delkin-ASKA-Workbit Cardbus IDE",
137 .id_table = delkin_cb_pci_tbl,
138 .probe = delkin_cb_probe,
139 .remove = delkin_cb_remove,
140};
141
142static int
143delkin_cb_init (void)
144{
Richard Knutssone76ecf82007-03-03 17:48:55 +0100145 return pci_register_driver(&driver);
Mark Lord78281c52007-02-07 18:19:32 +0100146}
147
148static void
149delkin_cb_exit (void)
150{
151 pci_unregister_driver(&driver);
152}
153
154module_init(delkin_cb_init);
155module_exit(delkin_cb_exit);
156
157MODULE_AUTHOR("Mark Lord");
158MODULE_DESCRIPTION("Basic support for Delkin/ASKA/Workbit Cardbus IDE");
159MODULE_LICENSE("GPL");
160