Merge branches 'pcmcia-config-loop' and 'pcmcia-printk' into pcmcia
[firefly-linux-kernel-4.4.55.git] / drivers / usb / host / sl811_cs.c
1 /*
2  * PCMCIA driver for SL811HS (as found in REX-CFU1U)
3  * Filename: sl811_cs.c
4  * Author:   Yukio Yamamoto
5  *
6  *  Port to sl811-hcd and 2.6.x by
7  *    Botond Botyanszki <boti@rocketmail.com>
8  *    Simon Pickering
9  *
10  *  Last update: 2005-05-12
11  */
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>
22
23 #include <pcmcia/cs_types.h>
24 #include <pcmcia/cs.h>
25 #include <pcmcia/cistpl.h>
26 #include <pcmcia/cisreg.h>
27 #include <pcmcia/ds.h>
28
29 #include <linux/usb/sl811.h>
30
31 MODULE_AUTHOR("Botond Botyanszki");
32 MODULE_DESCRIPTION("REX-CFU1U PCMCIA driver for 2.6");
33 MODULE_LICENSE("GPL");
34
35
36 /*====================================================================*/
37 /* MACROS                                                             */
38 /*====================================================================*/
39
40 #if defined(DEBUG) || defined(PCMCIA_DEBUG)
41
42 static int pc_debug = 0;
43 module_param(pc_debug, int, 0644);
44
45 #define DBG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG "sl811_cs: " args)
46
47 #else
48 #define DBG(n, args...) do{}while(0)
49 #endif  /* no debugging */
50
51 #define INFO(args...) printk(KERN_INFO "sl811_cs: " args)
52
53 #define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0444)
54
55 #define CS_CHECK(fn, ret) \
56         do { \
57                 last_fn = (fn); \
58                 if ((last_ret = (ret)) != 0) \
59                         goto cs_failed; \
60         } while (0)
61
62 /*====================================================================*/
63 /* VARIABLES                                                          */
64 /*====================================================================*/
65
66 static const char driver_name[DEV_NAME_LEN]  = "sl811_cs";
67
68 typedef struct local_info_t {
69         struct pcmcia_device    *p_dev;
70         dev_node_t              node;
71 } local_info_t;
72
73 static void sl811_cs_release(struct pcmcia_device * link);
74
75 /*====================================================================*/
76
77 static void release_platform_dev(struct device * dev)
78 {
79         DBG(0, "sl811_cs platform_dev release\n");
80         dev->parent = NULL;
81 }
82
83 static struct sl811_platform_data platform_data = {
84         .potpg          = 100,
85         .power          = 50,           /* == 100mA */
86         // .reset       = ... FIXME:  invoke CF reset on the card
87 };
88
89 static struct resource resources[] = {
90         [0] = {
91                 .flags  = IORESOURCE_IRQ,
92         },
93         [1] = {
94                 // .name   = "address",
95                 .flags  = IORESOURCE_IO,
96         },
97         [2] = {
98                 // .name   = "data",
99                 .flags  = IORESOURCE_IO,
100         },
101 };
102
103 extern struct platform_driver sl811h_driver;
104
105 static struct platform_device platform_dev = {
106         .id                     = -1,
107         .dev = {
108                 .platform_data = &platform_data,
109                 .release       = release_platform_dev,
110         },
111         .resource               = resources,
112         .num_resources          = ARRAY_SIZE(resources),
113 };
114
115 static int sl811_hc_init(struct device *parent, ioaddr_t base_addr, int irq)
116 {
117         if (platform_dev.dev.parent)
118                 return -EBUSY;
119         platform_dev.dev.parent = parent;
120
121         /* finish seting up the platform device */
122         resources[0].start = irq;
123
124         resources[1].start = base_addr;
125         resources[1].end = base_addr;
126
127         resources[2].start = base_addr + 1;
128         resources[2].end   = base_addr + 1;
129
130         /* The driver core will probe for us.  We know sl811-hcd has been
131          * initialized already because of the link order dependency created
132          * by referencing "sl811h_driver".
133          */
134         platform_dev.name = sl811h_driver.driver.name;
135         return platform_device_register(&platform_dev);
136 }
137
138 /*====================================================================*/
139
140 static void sl811_cs_detach(struct pcmcia_device *link)
141 {
142         DBG(0, "sl811_cs_detach(0x%p)\n", link);
143
144         sl811_cs_release(link);
145
146         /* This points to the parent local_info_t struct */
147         kfree(link->priv);
148 }
149
150 static void sl811_cs_release(struct pcmcia_device * link)
151 {
152         DBG(0, "sl811_cs_release(0x%p)\n", link);
153
154         pcmcia_disable_device(link);
155         platform_device_unregister(&platform_dev);
156 }
157
158 static int sl811_cs_config_check(struct pcmcia_device *p_dev,
159                                  cistpl_cftable_entry_t *cfg,
160                                  cistpl_cftable_entry_t *dflt,
161                                  unsigned int vcc,
162                                  void *priv_data)
163 {
164         if (cfg->index == 0)
165                 return -ENODEV;
166
167         /* Use power settings for Vcc and Vpp if present */
168         /*  Note that the CIS values need to be rescaled */
169         if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM)) {
170                 if (cfg->vcc.param[CISTPL_POWER_VNOM]/10000 != vcc)
171                         return -ENODEV;
172         } else if (dflt->vcc.present & (1<<CISTPL_POWER_VNOM)) {
173                 if (dflt->vcc.param[CISTPL_POWER_VNOM]/10000 != vcc)
174                         return -ENODEV;
175                 }
176
177         if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM))
178                 p_dev->conf.Vpp =
179                         cfg->vpp1.param[CISTPL_POWER_VNOM]/10000;
180         else if (dflt->vpp1.present & (1<<CISTPL_POWER_VNOM))
181                 p_dev->conf.Vpp =
182                         dflt->vpp1.param[CISTPL_POWER_VNOM]/10000;
183
184         /* we need an interrupt */
185         if (cfg->irq.IRQInfo1 || dflt->irq.IRQInfo1)
186                 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
187
188         /* IO window settings */
189         p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
190         if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
191                 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
192
193                 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
194                 p_dev->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
195                 p_dev->io.BasePort1 = io->win[0].base;
196                 p_dev->io.NumPorts1 = io->win[0].len;
197
198                 return pcmcia_request_io(p_dev, &p_dev->io);
199         }
200         pcmcia_disable_device(p_dev);
201         return -ENODEV;
202 }
203
204
205 static int sl811_cs_config(struct pcmcia_device *link)
206 {
207         struct device           *parent = &handle_to_dev(link);
208         local_info_t            *dev = link->priv;
209         int                     last_fn, last_ret;
210
211         DBG(0, "sl811_cs_config(0x%p)\n", link);
212
213         if (pcmcia_loop_config(link, sl811_cs_config_check, NULL))
214                 goto failed;
215
216         /* require an IRQ and two registers */
217         if (!link->io.NumPorts1 || link->io.NumPorts1 < 2)
218                 goto failed;
219         if (link->conf.Attributes & CONF_ENABLE_IRQ)
220                 CS_CHECK(RequestIRQ,
221                         pcmcia_request_irq(link, &link->irq));
222         else
223                 goto failed;
224
225         CS_CHECK(RequestConfiguration,
226                 pcmcia_request_configuration(link, &link->conf));
227
228         sprintf(dev->node.dev_name, driver_name);
229         dev->node.major = dev->node.minor = 0;
230         link->dev_node = &dev->node;
231
232         printk(KERN_INFO "%s: index 0x%02x: ",
233                dev->node.dev_name, link->conf.ConfigIndex);
234         if (link->conf.Vpp)
235                 printk(", Vpp %d.%d", link->conf.Vpp/10, link->conf.Vpp%10);
236         printk(", irq %d", link->irq.AssignedIRQ);
237         printk(", io 0x%04x-0x%04x", link->io.BasePort1,
238                link->io.BasePort1+link->io.NumPorts1-1);
239         printk("\n");
240
241         if (sl811_hc_init(parent, link->io.BasePort1, link->irq.AssignedIRQ)
242                         < 0) {
243 cs_failed:
244                 cs_error(link, last_fn, last_ret);
245 failed:
246                 printk(KERN_WARNING "sl811_cs_config failed\n");
247                 sl811_cs_release(link);
248                 return  -ENODEV;
249         }
250         return 0;
251 }
252
253 static int sl811_cs_probe(struct pcmcia_device *link)
254 {
255         local_info_t *local;
256
257         local = kzalloc(sizeof(local_info_t), GFP_KERNEL);
258         if (!local)
259                 return -ENOMEM;
260         local->p_dev = link;
261         link->priv = local;
262
263         /* Initialize */
264         link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
265         link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
266         link->irq.Handler = NULL;
267
268         link->conf.Attributes = 0;
269         link->conf.IntType = INT_MEMORY_AND_IO;
270
271         return sl811_cs_config(link);
272 }
273
274 static struct pcmcia_device_id sl811_ids[] = {
275         PCMCIA_DEVICE_MANF_CARD(0xc015, 0x0001), /* RATOC USB HOST CF+ Card */
276         PCMCIA_DEVICE_NULL,
277 };
278 MODULE_DEVICE_TABLE(pcmcia, sl811_ids);
279
280 static struct pcmcia_driver sl811_cs_driver = {
281         .owner          = THIS_MODULE,
282         .drv            = {
283                 .name   = (char *)driver_name,
284         },
285         .probe          = sl811_cs_probe,
286         .remove         = sl811_cs_detach,
287         .id_table       = sl811_ids,
288 };
289
290 /*====================================================================*/
291
292 static int __init init_sl811_cs(void)
293 {
294         return pcmcia_register_driver(&sl811_cs_driver);
295 }
296 module_init(init_sl811_cs);
297
298 static void __exit exit_sl811_cs(void)
299 {
300         pcmcia_unregister_driver(&sl811_cs_driver);
301 }
302 module_exit(exit_sl811_cs);