blob: 3fdf5e5a6fbef6cfdeed8c9c15cb9239c731879d [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
46static int __devinit
47delkin_cb_probe (struct pci_dev *dev, const struct pci_device_id *id)
48{
49 unsigned long base;
50 hw_regs_t hw;
51 ide_hwif_t *hwif = NULL;
52 ide_drive_t *drive;
53 int i, rc;
54
55 rc = pci_enable_device(dev);
56 if (rc) {
57 printk(KERN_ERR "delkin_cb: pci_enable_device failed (%d)\n", rc);
58 return rc;
59 }
60 rc = pci_request_regions(dev, "delkin_cb");
61 if (rc) {
62 printk(KERN_ERR "delkin_cb: pci_request_regions failed (%d)\n", rc);
63 pci_disable_device(dev);
64 return rc;
65 }
66 base = pci_resource_start(dev, 0);
67 outb(0x02, base + 0x1e); /* set nIEN to block interrupts */
68 inb(base + 0x17); /* read status to clear interrupts */
69 for (i = 0; i < sizeof(setup); ++i) {
70 if (setup[i])
71 outb(setup[i], base + i);
72 }
73 pci_release_regions(dev); /* IDE layer handles regions itself */
74
75 memset(&hw, 0, sizeof(hw));
76 ide_std_init_ports(&hw, base + 0x10, base + 0x1e);
77 hw.irq = dev->irq;
78 hw.chipset = ide_pci; /* this enables IRQ sharing */
79
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010080 rc = ide_register_hw(&hw, &ide_undecoded_slave, &hwif);
Mark Lord78281c52007-02-07 18:19:32 +010081 if (rc < 0) {
82 printk(KERN_ERR "delkin_cb: ide_register_hw failed (%d)\n", rc);
83 pci_disable_device(dev);
84 return -ENODEV;
85 }
86 pci_set_drvdata(dev, hwif);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010087 hwif->dev = &dev->dev;
Mark Lord78281c52007-02-07 18:19:32 +010088 drive = &hwif->drives[0];
89 if (drive->present) {
90 drive->io_32bit = 1;
91 drive->unmask = 1;
92 }
93 return 0;
94}
95
96static void
97delkin_cb_remove (struct pci_dev *dev)
98{
99 ide_hwif_t *hwif = pci_get_drvdata(dev);
100
101 if (hwif)
102 ide_unregister(hwif->index);
103 pci_disable_device(dev);
104}
105
106static struct pci_device_id delkin_cb_pci_tbl[] __devinitdata = {
107 { 0x1145, 0xf021, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Mark Lord2571b162007-04-20 22:16:58 +0200108 { 0x1145, 0xf024, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Mark Lord78281c52007-02-07 18:19:32 +0100109 { 0, },
110};
111MODULE_DEVICE_TABLE(pci, delkin_cb_pci_tbl);
112
113static struct pci_driver driver = {
114 .name = "Delkin-ASKA-Workbit Cardbus IDE",
115 .id_table = delkin_cb_pci_tbl,
116 .probe = delkin_cb_probe,
117 .remove = delkin_cb_remove,
118};
119
120static int
121delkin_cb_init (void)
122{
Richard Knutssone76ecf82007-03-03 17:48:55 +0100123 return pci_register_driver(&driver);
Mark Lord78281c52007-02-07 18:19:32 +0100124}
125
126static void
127delkin_cb_exit (void)
128{
129 pci_unregister_driver(&driver);
130}
131
132module_init(delkin_cb_init);
133module_exit(delkin_cb_exit);
134
135MODULE_AUTHOR("Mark Lord");
136MODULE_DESCRIPTION("Basic support for Delkin/ASKA/Workbit Cardbus IDE");
137MODULE_LICENSE("GPL");
138