Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / drivers / usb / host / sl811_cs.c
blob469564e57a5262e58789af29b9ac790d8a24ff33
1 /*
2 * PCMCIA driver for SL811HS (as found in REX-CFU1U)
3 * Filename: sl811_cs.c
4 * Author: Yukio Yamamoto
6 * Port to sl811-hcd and 2.6.x by
7 * Botond Botyanszki <boti@rocketmail.com>
8 * Simon Pickering
10 * Last update: 2005-05-12
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/ptrace.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
19 #include <linux/timer.h>
20 #include <linux/ioport.h>
21 #include <linux/platform_device.h>
23 #include <pcmcia/cistpl.h>
24 #include <pcmcia/cisreg.h>
25 #include <pcmcia/ds.h>
27 #include <linux/usb/sl811.h>
29 MODULE_AUTHOR("Botond Botyanszki");
30 MODULE_DESCRIPTION("REX-CFU1U PCMCIA driver for 2.6");
31 MODULE_LICENSE("GPL");
34 /*====================================================================*/
35 /* MACROS */
36 /*====================================================================*/
38 #define INFO(args...) printk(KERN_INFO "sl811_cs: " args)
40 /*====================================================================*/
41 /* VARIABLES */
42 /*====================================================================*/
44 typedef struct local_info_t {
45 struct pcmcia_device *p_dev;
46 } local_info_t;
48 static void sl811_cs_release(struct pcmcia_device * link);
50 /*====================================================================*/
52 static void release_platform_dev(struct device * dev)
54 dev_dbg(dev, "sl811_cs platform_dev release\n");
55 dev->parent = NULL;
58 static struct sl811_platform_data platform_data = {
59 .potpg = 100,
60 .power = 50, /* == 100mA */
61 // .reset = ... FIXME: invoke CF reset on the card
64 static struct resource resources[] = {
65 [0] = {
66 .flags = IORESOURCE_IRQ,
68 [1] = {
69 // .name = "address",
70 .flags = IORESOURCE_IO,
72 [2] = {
73 // .name = "data",
74 .flags = IORESOURCE_IO,
78 extern struct platform_driver sl811h_driver;
80 static struct platform_device platform_dev = {
81 .id = -1,
82 .dev = {
83 .platform_data = &platform_data,
84 .release = release_platform_dev,
86 .resource = resources,
87 .num_resources = ARRAY_SIZE(resources),
90 static int sl811_hc_init(struct device *parent, resource_size_t base_addr,
91 int irq)
93 if (platform_dev.dev.parent)
94 return -EBUSY;
95 platform_dev.dev.parent = parent;
97 /* finish seting up the platform device */
98 resources[0].start = irq;
100 resources[1].start = base_addr;
101 resources[1].end = base_addr;
103 resources[2].start = base_addr + 1;
104 resources[2].end = base_addr + 1;
106 /* The driver core will probe for us. We know sl811-hcd has been
107 * initialized already because of the link order dependency created
108 * by referencing "sl811h_driver".
110 platform_dev.name = sl811h_driver.driver.name;
111 return platform_device_register(&platform_dev);
114 /*====================================================================*/
116 static void sl811_cs_detach(struct pcmcia_device *link)
118 dev_dbg(&link->dev, "sl811_cs_detach\n");
120 sl811_cs_release(link);
122 /* This points to the parent local_info_t struct */
123 kfree(link->priv);
126 static void sl811_cs_release(struct pcmcia_device * link)
128 dev_dbg(&link->dev, "sl811_cs_release\n");
130 pcmcia_disable_device(link);
131 platform_device_unregister(&platform_dev);
134 static int sl811_cs_config_check(struct pcmcia_device *p_dev, void *priv_data)
136 if (p_dev->config_index == 0)
137 return -EINVAL;
139 return pcmcia_request_io(p_dev);
143 static int sl811_cs_config(struct pcmcia_device *link)
145 struct device *parent = &link->dev;
146 int ret;
148 dev_dbg(&link->dev, "sl811_cs_config\n");
150 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP |
151 CONF_AUTO_CHECK_VCC | CONF_AUTO_SET_IO;
153 if (pcmcia_loop_config(link, sl811_cs_config_check, NULL))
154 goto failed;
156 /* require an IRQ and two registers */
157 if (resource_size(link->resource[0]) < 2)
158 goto failed;
160 if (!link->irq)
161 goto failed;
163 ret = pcmcia_enable_device(link);
164 if (ret)
165 goto failed;
167 if (sl811_hc_init(parent, link->resource[0]->start, link->irq)
168 < 0) {
169 failed:
170 printk(KERN_WARNING "sl811_cs_config failed\n");
171 sl811_cs_release(link);
172 return -ENODEV;
174 return 0;
177 static int sl811_cs_probe(struct pcmcia_device *link)
179 local_info_t *local;
181 local = kzalloc(sizeof(local_info_t), GFP_KERNEL);
182 if (!local)
183 return -ENOMEM;
184 local->p_dev = link;
185 link->priv = local;
187 return sl811_cs_config(link);
190 static const struct pcmcia_device_id sl811_ids[] = {
191 PCMCIA_DEVICE_MANF_CARD(0xc015, 0x0001), /* RATOC USB HOST CF+ Card */
192 PCMCIA_DEVICE_NULL,
194 MODULE_DEVICE_TABLE(pcmcia, sl811_ids);
196 static struct pcmcia_driver sl811_cs_driver = {
197 .owner = THIS_MODULE,
198 .name = "sl811_cs",
199 .probe = sl811_cs_probe,
200 .remove = sl811_cs_detach,
201 .id_table = sl811_ids,
203 module_pcmcia_driver(sl811_cs_driver);