ide: add struct ide_host (take 3)
[deliverable/linux.git] / drivers / ide / pci / delkin_cb.c
CommitLineData
78281c53 1/*
78281c53
ML
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 */
78829dd9 19
78281c53
ML
20#include <linux/types.h>
21#include <linux/module.h>
78281c53
ML
22#include <linux/hdreg.h>
23#include <linux/ide.h>
24#include <linux/init.h>
25#include <linux/pci.h>
78829dd9 26
78281c53
ML
27#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
ac95beed
BZ
46static const struct ide_port_ops delkin_cb_port_ops = {
47 .quirkproc = ide_undecoded_slave,
48};
49
1c4d4ad5
BZ
50static 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
78281c53
ML
56static int __devinit
57delkin_cb_probe (struct pci_dev *dev, const struct pci_device_id *id)
58{
48c3c107 59 struct ide_host *host;
78281c53 60 unsigned long base;
78281c53 61 int i, rc;
c97c6aca 62 hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
78281c53
ML
63
64 rc = pci_enable_device(dev);
65 if (rc) {
66 printk(KERN_ERR "delkin_cb: pci_enable_device failed (%d)\n", rc);
67 return rc;
68 }
69 rc = pci_request_regions(dev, "delkin_cb");
70 if (rc) {
71 printk(KERN_ERR "delkin_cb: pci_request_regions failed (%d)\n", rc);
72 pci_disable_device(dev);
73 return rc;
74 }
75 base = pci_resource_start(dev, 0);
76 outb(0x02, base + 0x1e); /* set nIEN to block interrupts */
77 inb(base + 0x17); /* read status to clear interrupts */
78 for (i = 0; i < sizeof(setup); ++i) {
79 if (setup[i])
80 outb(setup[i], base + i);
81 }
78281c53
ML
82
83 memset(&hw, 0, sizeof(hw));
84 ide_std_init_ports(&hw, base + 0x10, base + 0x1e);
85 hw.irq = dev->irq;
8a7dbb97 86 hw.dev = &dev->dev;
78281c53
ML
87 hw.chipset = ide_pci; /* this enables IRQ sharing */
88
48c3c107
BZ
89 host = ide_host_alloc(&delkin_cb_port_info, hws);
90 if (host == NULL)
9e016a71
BZ
91 goto out_disable;
92
48c3c107 93 ide_host_register(host, &delkin_cb_port_info, hws);
9e016a71 94
48c3c107 95 pci_set_drvdata(dev, host);
8a7dbb97 96
78281c53 97 return 0;
9e016a71
BZ
98
99out_disable:
7f6f33c1 100 pci_release_regions(dev);
9e016a71
BZ
101 pci_disable_device(dev);
102 return -ENODEV;
78281c53
ML
103}
104
105static void
106delkin_cb_remove (struct pci_dev *dev)
107{
48c3c107 108 struct ide_host *host = pci_get_drvdata(dev);
78281c53 109
48c3c107 110 ide_host_remove(host);
f82c2b17 111
7f6f33c1 112 pci_release_regions(dev);
78281c53
ML
113 pci_disable_device(dev);
114}
115
116static struct pci_device_id delkin_cb_pci_tbl[] __devinitdata = {
117 { 0x1145, 0xf021, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2571b16d 118 { 0x1145, 0xf024, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
78281c53
ML
119 { 0, },
120};
121MODULE_DEVICE_TABLE(pci, delkin_cb_pci_tbl);
122
123static struct pci_driver driver = {
124 .name = "Delkin-ASKA-Workbit Cardbus IDE",
125 .id_table = delkin_cb_pci_tbl,
126 .probe = delkin_cb_probe,
127 .remove = delkin_cb_remove,
128};
129
f4084a1d 130static int __init delkin_cb_init(void)
78281c53 131{
e76ecf86 132 return pci_register_driver(&driver);
78281c53
ML
133}
134
f4084a1d 135static void __exit delkin_cb_exit(void)
78281c53
ML
136{
137 pci_unregister_driver(&driver);
138}
139
140module_init(delkin_cb_init);
141module_exit(delkin_cb_exit);
142
143MODULE_AUTHOR("Mark Lord");
144MODULE_DESCRIPTION("Basic support for Delkin/ASKA/Workbit Cardbus IDE");
145MODULE_LICENSE("GPL");
146
This page took 0.208113 seconds and 5 git commands to generate.