2 * Created 20 Oct 2004 by Mark Lord
4 * Basic support for Delkin/ASKA/Workbit Cardbus CompactFlash adapter
6 * Modeled after the 16-bit PCMCIA driver: ide-cs.c
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.
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
20 #include <linux/types.h>
21 #include <linux/module.h>
22 #include <linux/ide.h>
23 #include <linux/init.h>
24 #include <linux/pci.h>
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.
35 * There is also a 4KByte mmio region on the card,
36 * but its purpose has yet to be reverse-engineered.
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,
45 static const struct ide_port_ops delkin_cb_port_ops
= {
46 .quirkproc
= ide_undecoded_slave
,
49 static int delkin_cb_init_chipset(struct pci_dev
*dev
)
51 unsigned long base
= pci_resource_start(dev
, 0);
54 outb(0x02, base
+ 0x1e); /* set nIEN to block interrupts */
55 inb(base
+ 0x17); /* read status to clear interrupts */
57 for (i
= 0; i
< sizeof(setup
); ++i
) {
59 outb(setup
[i
], base
+ i
);
65 static const struct ide_port_info delkin_cb_port_info
= {
66 .port_ops
= &delkin_cb_port_ops
,
67 .host_flags
= IDE_HFLAG_IO_32BIT
| IDE_HFLAG_UNMASK_IRQS
|
69 .irq_flags
= IRQF_SHARED
,
70 .init_chipset
= delkin_cb_init_chipset
,
74 delkin_cb_probe (struct pci_dev
*dev
, const struct pci_device_id
*id
)
76 struct ide_host
*host
;
79 hw_regs_t hw
, *hws
[] = { &hw
, NULL
, NULL
, NULL
};
81 rc
= pci_enable_device(dev
);
83 printk(KERN_ERR
"delkin_cb: pci_enable_device failed (%d)\n", rc
);
86 rc
= pci_request_regions(dev
, "delkin_cb");
88 printk(KERN_ERR
"delkin_cb: pci_request_regions failed (%d)\n", rc
);
89 pci_disable_device(dev
);
92 base
= pci_resource_start(dev
, 0);
94 delkin_cb_init_chipset(dev
);
96 memset(&hw
, 0, sizeof(hw
));
97 ide_std_init_ports(&hw
, base
+ 0x10, base
+ 0x1e);
100 hw
.chipset
= ide_pci
; /* this enables IRQ sharing */
102 rc
= ide_host_add(&delkin_cb_port_info
, hws
, &host
);
106 pci_set_drvdata(dev
, host
);
111 pci_release_regions(dev
);
112 pci_disable_device(dev
);
117 delkin_cb_remove (struct pci_dev
*dev
)
119 struct ide_host
*host
= pci_get_drvdata(dev
);
121 ide_host_remove(host
);
123 pci_release_regions(dev
);
124 pci_disable_device(dev
);
128 static int delkin_cb_suspend(struct pci_dev
*dev
, pm_message_t state
)
131 pci_disable_device(dev
);
132 pci_set_power_state(dev
, pci_choose_state(dev
, state
));
137 static int delkin_cb_resume(struct pci_dev
*dev
)
139 struct ide_host
*host
= pci_get_drvdata(dev
);
142 pci_set_power_state(dev
, PCI_D0
);
144 rc
= pci_enable_device(dev
);
148 pci_restore_state(dev
);
151 if (host
->init_chipset
)
152 host
->init_chipset(dev
);
157 #define delkin_cb_suspend NULL
158 #define delkin_cb_resume NULL
161 static struct pci_device_id delkin_cb_pci_tbl
[] __devinitdata
= {
162 { 0x1145, 0xf021, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0},
163 { 0x1145, 0xf024, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0},
166 MODULE_DEVICE_TABLE(pci
, delkin_cb_pci_tbl
);
168 static struct pci_driver delkin_cb_pci_driver
= {
169 .name
= "Delkin-ASKA-Workbit Cardbus IDE",
170 .id_table
= delkin_cb_pci_tbl
,
171 .probe
= delkin_cb_probe
,
172 .remove
= delkin_cb_remove
,
173 .suspend
= delkin_cb_suspend
,
174 .resume
= delkin_cb_resume
,
177 static int __init
delkin_cb_init(void)
179 return pci_register_driver(&delkin_cb_pci_driver
);
182 static void __exit
delkin_cb_exit(void)
184 pci_unregister_driver(&delkin_cb_pci_driver
);
187 module_init(delkin_cb_init
);
188 module_exit(delkin_cb_exit
);
190 MODULE_AUTHOR("Mark Lord");
191 MODULE_DESCRIPTION("Basic support for Delkin/ASKA/Workbit Cardbus IDE");
192 MODULE_LICENSE("GPL");