pcmcia: lock ops->set_socket
[safe/jmp/linux-2.6] / drivers / pcmcia / pcmcia_resource.c
1 /*
2  * PCMCIA 16-bit resource management functions
3  *
4  * The initial developer of the original code is David A. Hinds
5  * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
6  * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
7  *
8  * Copyright (C) 1999        David A. Hinds
9  * Copyright (C) 2004-2005   Dominik Brodowski
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License version 2 as
13  * published by the Free Software Foundation.
14  *
15  */
16
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/interrupt.h>
20 #include <linux/delay.h>
21 #include <linux/pci.h>
22 #include <linux/device.h>
23 #include <linux/netdevice.h>
24
25 #include <pcmcia/cs_types.h>
26 #include <pcmcia/ss.h>
27 #include <pcmcia/cs.h>
28 #include <pcmcia/cistpl.h>
29 #include <pcmcia/cisreg.h>
30 #include <pcmcia/ds.h>
31
32 #include "cs_internal.h"
33
34
35 /* Access speed for IO windows */
36 static int io_speed;
37 module_param(io_speed, int, 0444);
38
39
40 #ifdef CONFIG_PCMCIA_PROBE
41 #include <asm/irq.h>
42 /* mask of IRQs already reserved by other cards, we should avoid using them */
43 static u8 pcmcia_used_irq[NR_IRQS];
44 #endif
45
46 static int pcmcia_adjust_io_region(struct resource *res, unsigned long start,
47                                    unsigned long end, struct pcmcia_socket *s)
48 {
49         if (s->resource_ops->adjust_io_region)
50                 return s->resource_ops->adjust_io_region(res, start, end, s);
51         return -ENOMEM;
52 }
53
54 static struct resource *pcmcia_find_io_region(unsigned long base, int num,
55                                               unsigned long align,
56                                               struct pcmcia_socket *s)
57 {
58         if (s->resource_ops->find_io)
59                 return s->resource_ops->find_io(base, num, align, s);
60         return NULL;
61 }
62
63 int pcmcia_validate_mem(struct pcmcia_socket *s)
64 {
65         if (s->resource_ops->validate_mem)
66                 return s->resource_ops->validate_mem(s);
67         /* if there is no callback, we can assume that everything is OK */
68         return 0;
69 }
70
71 struct resource *pcmcia_find_mem_region(u_long base, u_long num, u_long align,
72                                  int low, struct pcmcia_socket *s)
73 {
74         if (s->resource_ops->find_mem)
75                 return s->resource_ops->find_mem(base, num, align, low, s);
76         return NULL;
77 }
78
79
80 /** alloc_io_space
81  *
82  * Special stuff for managing IO windows, because they are scarce
83  */
84
85 static int alloc_io_space(struct pcmcia_socket *s, u_int attr,
86                           unsigned int *base, unsigned int num, u_int lines)
87 {
88         int i;
89         unsigned int try, align;
90
91         align = (*base) ? (lines ? 1<<lines : 0) : 1;
92         if (align && (align < num)) {
93                 if (*base) {
94                         dev_dbg(&s->dev, "odd IO request: num %#x align %#x\n",
95                                num, align);
96                         align = 0;
97                 } else
98                         while (align && (align < num))
99                                 align <<= 1;
100         }
101         if (*base & ~(align-1)) {
102                 dev_dbg(&s->dev, "odd IO request: base %#x align %#x\n",
103                        *base, align);
104                 align = 0;
105         }
106         if ((s->features & SS_CAP_STATIC_MAP) && s->io_offset) {
107                 *base = s->io_offset | (*base & 0x0fff);
108                 return 0;
109         }
110         /* Check for an already-allocated window that must conflict with
111          * what was asked for.  It is a hack because it does not catch all
112          * potential conflicts, just the most obvious ones.
113          */
114         for (i = 0; i < MAX_IO_WIN; i++)
115                 if ((s->io[i].res) && *base &&
116                     ((s->io[i].res->start & (align-1)) == *base))
117                         return 1;
118         for (i = 0; i < MAX_IO_WIN; i++) {
119                 if (!s->io[i].res) {
120                         s->io[i].res = pcmcia_find_io_region(*base, num, align, s);
121                         if (s->io[i].res) {
122                                 *base = s->io[i].res->start;
123                                 s->io[i].res->flags = (s->io[i].res->flags & ~IORESOURCE_BITS) | (attr & IORESOURCE_BITS);
124                                 s->io[i].InUse = num;
125                                 break;
126                         } else
127                                 return 1;
128                 } else if ((s->io[i].res->flags & IORESOURCE_BITS) != (attr & IORESOURCE_BITS))
129                         continue;
130                 /* Try to extend top of window */
131                 try = s->io[i].res->end + 1;
132                 if ((*base == 0) || (*base == try))
133                         if (pcmcia_adjust_io_region(s->io[i].res, s->io[i].res->start,
134                                                     s->io[i].res->end + num, s) == 0) {
135                                 *base = try;
136                                 s->io[i].InUse += num;
137                                 break;
138                         }
139                 /* Try to extend bottom of window */
140                 try = s->io[i].res->start - num;
141                 if ((*base == 0) || (*base == try))
142                         if (pcmcia_adjust_io_region(s->io[i].res, s->io[i].res->start - num,
143                                                     s->io[i].res->end, s) == 0) {
144                                 *base = try;
145                                 s->io[i].InUse += num;
146                                 break;
147                         }
148         }
149         return (i == MAX_IO_WIN);
150 } /* alloc_io_space */
151
152
153 static void release_io_space(struct pcmcia_socket *s, unsigned int base,
154                              unsigned int num)
155 {
156         int i;
157
158         for (i = 0; i < MAX_IO_WIN; i++) {
159                 if (!s->io[i].res)
160                         continue;
161                 if ((s->io[i].res->start <= base) &&
162                     (s->io[i].res->end >= base+num-1)) {
163                         s->io[i].InUse -= num;
164                         /* Free the window if no one else is using it */
165                         if (s->io[i].InUse == 0) {
166                                 release_resource(s->io[i].res);
167                                 kfree(s->io[i].res);
168                                 s->io[i].res = NULL;
169                         }
170                 }
171         }
172 } /* release_io_space */
173
174
175 /** pccard_access_configuration_register
176  *
177  * Access_configuration_register() reads and writes configuration
178  * registers in attribute memory.  Memory window 0 is reserved for
179  * this and the tuple reading services.
180  */
181
182 int pcmcia_access_configuration_register(struct pcmcia_device *p_dev,
183                                          conf_reg_t *reg)
184 {
185         struct pcmcia_socket *s;
186         config_t *c;
187         int addr;
188         u_char val;
189
190         if (!p_dev || !p_dev->function_config)
191                 return -EINVAL;
192
193         s = p_dev->socket;
194         c = p_dev->function_config;
195
196         if (!(c->state & CONFIG_LOCKED)) {
197                 dev_dbg(&s->dev, "Configuration isnt't locked\n");
198                 return -EACCES;
199         }
200
201         addr = (c->ConfigBase + reg->Offset) >> 1;
202
203         switch (reg->Action) {
204         case CS_READ:
205                 pcmcia_read_cis_mem(s, 1, addr, 1, &val);
206                 reg->Value = val;
207                 break;
208         case CS_WRITE:
209                 val = reg->Value;
210                 pcmcia_write_cis_mem(s, 1, addr, 1, &val);
211                 break;
212         default:
213                 dev_dbg(&s->dev, "Invalid conf register request\n");
214                 return -EINVAL;
215                 break;
216         }
217         return 0;
218 } /* pcmcia_access_configuration_register */
219 EXPORT_SYMBOL(pcmcia_access_configuration_register);
220
221
222 int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t wh,
223                         memreq_t *req)
224 {
225         struct pcmcia_socket *s = p_dev->socket;
226         int ret;
227
228         wh--;
229         if (wh >= MAX_WIN)
230                 return -EINVAL;
231         if (req->Page != 0) {
232                 dev_dbg(&s->dev, "failure: requested page is zero\n");
233                 return -EINVAL;
234         }
235         mutex_lock(&s->ops_mutex);
236         s->win[wh].card_start = req->CardOffset;
237         ret = s->ops->set_mem_map(s, &s->win[wh]);
238         if (ret)
239                 dev_warn(&s->dev, "failed to set_mem_map\n");
240         mutex_unlock(&s->ops_mutex);
241         return ret;
242 } /* pcmcia_map_mem_page */
243 EXPORT_SYMBOL(pcmcia_map_mem_page);
244
245
246 /** pcmcia_modify_configuration
247  *
248  * Modify a locked socket configuration
249  */
250 int pcmcia_modify_configuration(struct pcmcia_device *p_dev,
251                                 modconf_t *mod)
252 {
253         struct pcmcia_socket *s;
254         config_t *c;
255
256         s = p_dev->socket;
257         c = p_dev->function_config;
258
259         if (!(s->state & SOCKET_PRESENT)) {
260                 dev_dbg(&s->dev, "No card present\n");
261                 return -ENODEV;
262         }
263         if (!(c->state & CONFIG_LOCKED)) {
264                 dev_dbg(&s->dev, "Configuration isnt't locked\n");
265                 return -EACCES;
266         }
267
268         if (mod->Attributes & CONF_IRQ_CHANGE_VALID) {
269                 mutex_lock(&s->ops_mutex);
270                 if (mod->Attributes & CONF_ENABLE_IRQ) {
271                         c->Attributes |= CONF_ENABLE_IRQ;
272                         s->socket.io_irq = s->irq.AssignedIRQ;
273                 } else {
274                         c->Attributes &= ~CONF_ENABLE_IRQ;
275                         s->socket.io_irq = 0;
276                 }
277                 s->ops->set_socket(s, &s->socket);
278                 mutex_unlock(&s->ops_mutex);
279         }
280
281         if (mod->Attributes & CONF_VCC_CHANGE_VALID) {
282                 dev_dbg(&s->dev, "changing Vcc is not allowed at this time\n");
283                 return -EINVAL;
284         }
285
286         /* We only allow changing Vpp1 and Vpp2 to the same value */
287         if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) &&
288             (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
289                 if (mod->Vpp1 != mod->Vpp2) {
290                         dev_dbg(&s->dev, "Vpp1 and Vpp2 must be the same\n");
291                         return -EINVAL;
292                 }
293                 mutex_lock(&s->ops_mutex);
294                 s->socket.Vpp = mod->Vpp1;
295                 if (s->ops->set_socket(s, &s->socket)) {
296                         mutex_unlock(&s->ops_mutex);
297                         dev_printk(KERN_WARNING, &s->dev,
298                                    "Unable to set VPP\n");
299                         return -EIO;
300                 }
301                 mutex_unlock(&s->ops_mutex);
302         } else if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) ||
303                    (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
304                 dev_dbg(&s->dev, "changing Vcc is not allowed at this time\n");
305                 return -EINVAL;
306         }
307
308         if (mod->Attributes & CONF_IO_CHANGE_WIDTH) {
309                 pccard_io_map io_off = { 0, 0, 0, 0, 1 };
310                 pccard_io_map io_on;
311                 int i;
312
313                 io_on.speed = io_speed;
314                 mutex_lock(&s->ops_mutex);
315                 for (i = 0; i < MAX_IO_WIN; i++) {
316                         if (!s->io[i].res)
317                                 continue;
318                         io_off.map = i;
319                         io_on.map = i;
320
321                         io_on.flags = MAP_ACTIVE | IO_DATA_PATH_WIDTH_8;
322                         io_on.start = s->io[i].res->start;
323                         io_on.stop = s->io[i].res->end;
324
325                         s->ops->set_io_map(s, &io_off);
326                         mdelay(40);
327                         s->ops->set_io_map(s, &io_on);
328                 }
329                 mutex_unlock(&s->ops_mutex);
330         }
331
332         return 0;
333 } /* modify_configuration */
334 EXPORT_SYMBOL(pcmcia_modify_configuration);
335
336
337 int pcmcia_release_configuration(struct pcmcia_device *p_dev)
338 {
339         pccard_io_map io = { 0, 0, 0, 0, 1 };
340         struct pcmcia_socket *s = p_dev->socket;
341         config_t *c = p_dev->function_config;
342         int i;
343
344         mutex_lock(&s->ops_mutex);
345         if (p_dev->_locked) {
346                 p_dev->_locked = 0;
347                 if (--(s->lock_count) == 0) {
348                         s->socket.flags = SS_OUTPUT_ENA;   /* Is this correct? */
349                         s->socket.Vpp = 0;
350                         s->socket.io_irq = 0;
351                         s->ops->set_socket(s, &s->socket);
352                 }
353         }
354         if (c->state & CONFIG_LOCKED) {
355                 c->state &= ~CONFIG_LOCKED;
356                 if (c->state & CONFIG_IO_REQ)
357                         for (i = 0; i < MAX_IO_WIN; i++) {
358                                 if (!s->io[i].res)
359                                         continue;
360                                 s->io[i].Config--;
361                                 if (s->io[i].Config != 0)
362                                         continue;
363                                 io.map = i;
364                                 s->ops->set_io_map(s, &io);
365                         }
366         }
367         mutex_unlock(&s->ops_mutex);
368
369         return 0;
370 } /* pcmcia_release_configuration */
371
372
373 /** pcmcia_release_io
374  *
375  * Release_io() releases the I/O ranges allocated by a client.  This
376  * may be invoked some time after a card ejection has already dumped
377  * the actual socket configuration, so if the client is "stale", we
378  * don't bother checking the port ranges against the current socket
379  * values.
380  */
381 static int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req)
382 {
383         struct pcmcia_socket *s = p_dev->socket;
384         config_t *c = p_dev->function_config;
385
386         if (!p_dev->_io)
387                 return -EINVAL;
388
389         p_dev->_io = 0;
390
391         if ((c->io.BasePort1 != req->BasePort1) ||
392             (c->io.NumPorts1 != req->NumPorts1) ||
393             (c->io.BasePort2 != req->BasePort2) ||
394             (c->io.NumPorts2 != req->NumPorts2))
395                 return -EINVAL;
396
397         c->state &= ~CONFIG_IO_REQ;
398
399         release_io_space(s, req->BasePort1, req->NumPorts1);
400         if (req->NumPorts2)
401                 release_io_space(s, req->BasePort2, req->NumPorts2);
402
403         return 0;
404 } /* pcmcia_release_io */
405
406
407 static int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)
408 {
409         struct pcmcia_socket *s = p_dev->socket;
410         config_t *c = p_dev->function_config;
411
412         if (!p_dev->_irq)
413                 return -EINVAL;
414         p_dev->_irq = 0;
415
416         if (c->state & CONFIG_LOCKED)
417                 return -EACCES;
418         if (c->irq.Attributes != req->Attributes) {
419                 dev_dbg(&s->dev, "IRQ attributes must match assigned ones\n");
420                 return -EINVAL;
421         }
422         if (s->irq.AssignedIRQ != req->AssignedIRQ) {
423                 dev_dbg(&s->dev, "IRQ must match assigned one\n");
424                 return -EINVAL;
425         }
426         if (--s->irq.Config == 0) {
427                 c->state &= ~CONFIG_IRQ_REQ;
428                 s->irq.AssignedIRQ = 0;
429         }
430
431         if (req->Handler)
432                 free_irq(req->AssignedIRQ, p_dev->priv);
433
434 #ifdef CONFIG_PCMCIA_PROBE
435         pcmcia_used_irq[req->AssignedIRQ]--;
436 #endif
437
438         return 0;
439 } /* pcmcia_release_irq */
440
441
442 int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t wh)
443 {
444         struct pcmcia_socket *s = p_dev->socket;
445         pccard_mem_map *win;
446
447         wh--;
448         if (wh >= MAX_WIN)
449                 return -EINVAL;
450
451         mutex_lock(&s->ops_mutex);
452         win = &s->win[wh];
453
454         if (!(p_dev->_win & CLIENT_WIN_REQ(wh))) {
455                 dev_dbg(&s->dev, "not releasing unknown window\n");
456                 mutex_unlock(&s->ops_mutex);
457                 return -EINVAL;
458         }
459
460         /* Shut down memory window */
461         win->flags &= ~MAP_ACTIVE;
462         s->ops->set_mem_map(s, win);
463         s->state &= ~SOCKET_WIN_REQ(wh);
464
465         /* Release system memory */
466         if (win->res) {
467                 release_resource(win->res);
468                 kfree(win->res);
469                 win->res = NULL;
470         }
471         p_dev->_win &= ~CLIENT_WIN_REQ(wh);
472         mutex_unlock(&s->ops_mutex);
473
474         return 0;
475 } /* pcmcia_release_window */
476 EXPORT_SYMBOL(pcmcia_release_window);
477
478
479 int pcmcia_request_configuration(struct pcmcia_device *p_dev,
480                                  config_req_t *req)
481 {
482         int i;
483         u_int base;
484         struct pcmcia_socket *s = p_dev->socket;
485         config_t *c;
486         pccard_io_map iomap;
487
488         if (!(s->state & SOCKET_PRESENT))
489                 return -ENODEV;
490
491         if (req->IntType & INT_CARDBUS) {
492                 dev_dbg(&s->dev, "IntType may not be INT_CARDBUS\n");
493                 return -EINVAL;
494         }
495         c = p_dev->function_config;
496         if (c->state & CONFIG_LOCKED) {
497                 dev_dbg(&s->dev, "Configuration is locked\n");
498                 return -EACCES;
499         }
500
501         mutex_lock(&s->ops_mutex);
502         /* Do power control.  We don't allow changes in Vcc. */
503         s->socket.Vpp = req->Vpp;
504         if (s->ops->set_socket(s, &s->socket)) {
505                 mutex_unlock(&s->ops_mutex);
506                 dev_printk(KERN_WARNING, &s->dev,
507                            "Unable to set socket state\n");
508                 return -EINVAL;
509         }
510
511         /* Pick memory or I/O card, DMA mode, interrupt */
512         c->IntType = req->IntType;
513         c->Attributes = req->Attributes;
514         if (req->IntType & INT_MEMORY_AND_IO)
515                 s->socket.flags |= SS_IOCARD;
516         if (req->IntType & INT_ZOOMED_VIDEO)
517                 s->socket.flags |= SS_ZVCARD | SS_IOCARD;
518         if (req->Attributes & CONF_ENABLE_DMA)
519                 s->socket.flags |= SS_DMA_MODE;
520         if (req->Attributes & CONF_ENABLE_SPKR)
521                 s->socket.flags |= SS_SPKR_ENA;
522         if (req->Attributes & CONF_ENABLE_IRQ)
523                 s->socket.io_irq = s->irq.AssignedIRQ;
524         else
525                 s->socket.io_irq = 0;
526         s->ops->set_socket(s, &s->socket);
527         s->lock_count++;
528         mutex_unlock(&s->ops_mutex);
529
530         /* Set up CIS configuration registers */
531         base = c->ConfigBase = req->ConfigBase;
532         c->CardValues = req->Present;
533         if (req->Present & PRESENT_COPY) {
534                 c->Copy = req->Copy;
535                 pcmcia_write_cis_mem(s, 1, (base + CISREG_SCR)>>1, 1, &c->Copy);
536         }
537         if (req->Present & PRESENT_OPTION) {
538                 if (s->functions == 1) {
539                         c->Option = req->ConfigIndex & COR_CONFIG_MASK;
540                 } else {
541                         c->Option = req->ConfigIndex & COR_MFC_CONFIG_MASK;
542                         c->Option |= COR_FUNC_ENA|COR_IREQ_ENA;
543                         if (req->Present & PRESENT_IOBASE_0)
544                                 c->Option |= COR_ADDR_DECODE;
545                 }
546                 if (c->state & CONFIG_IRQ_REQ)
547                         if (!(c->irq.Attributes & IRQ_FORCED_PULSE))
548                                 c->Option |= COR_LEVEL_REQ;
549                 pcmcia_write_cis_mem(s, 1, (base + CISREG_COR)>>1, 1, &c->Option);
550                 mdelay(40);
551         }
552         if (req->Present & PRESENT_STATUS) {
553                 c->Status = req->Status;
554                 pcmcia_write_cis_mem(s, 1, (base + CISREG_CCSR)>>1, 1, &c->Status);
555         }
556         if (req->Present & PRESENT_PIN_REPLACE) {
557                 c->Pin = req->Pin;
558                 pcmcia_write_cis_mem(s, 1, (base + CISREG_PRR)>>1, 1, &c->Pin);
559         }
560         if (req->Present & PRESENT_EXT_STATUS) {
561                 c->ExtStatus = req->ExtStatus;
562                 pcmcia_write_cis_mem(s, 1, (base + CISREG_ESR)>>1, 1, &c->ExtStatus);
563         }
564         if (req->Present & PRESENT_IOBASE_0) {
565                 u_char b = c->io.BasePort1 & 0xff;
566                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_0)>>1, 1, &b);
567                 b = (c->io.BasePort1 >> 8) & 0xff;
568                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_1)>>1, 1, &b);
569         }
570         if (req->Present & PRESENT_IOSIZE) {
571                 u_char b = c->io.NumPorts1 + c->io.NumPorts2 - 1;
572                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOSIZE)>>1, 1, &b);
573         }
574
575         /* Configure I/O windows */
576         if (c->state & CONFIG_IO_REQ) {
577                 mutex_lock(&s->ops_mutex);
578                 iomap.speed = io_speed;
579                 for (i = 0; i < MAX_IO_WIN; i++)
580                         if (s->io[i].res) {
581                                 iomap.map = i;
582                                 iomap.flags = MAP_ACTIVE;
583                                 switch (s->io[i].res->flags & IO_DATA_PATH_WIDTH) {
584                                 case IO_DATA_PATH_WIDTH_16:
585                                         iomap.flags |= MAP_16BIT; break;
586                                 case IO_DATA_PATH_WIDTH_AUTO:
587                                         iomap.flags |= MAP_AUTOSZ; break;
588                                 default:
589                                         break;
590                                 }
591                                 iomap.start = s->io[i].res->start;
592                                 iomap.stop = s->io[i].res->end;
593                                 s->ops->set_io_map(s, &iomap);
594                                 s->io[i].Config++;
595                         }
596                 mutex_unlock(&s->ops_mutex);
597         }
598
599         c->state |= CONFIG_LOCKED;
600         p_dev->_locked = 1;
601         return 0;
602 } /* pcmcia_request_configuration */
603 EXPORT_SYMBOL(pcmcia_request_configuration);
604
605
606 /** pcmcia_request_io
607  *
608  * Request_io() reserves ranges of port addresses for a socket.
609  * I have not implemented range sharing or alias addressing.
610  */
611 int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req)
612 {
613         struct pcmcia_socket *s = p_dev->socket;
614         config_t *c;
615
616         if (!(s->state & SOCKET_PRESENT)) {
617                 dev_dbg(&s->dev, "No card present\n");
618                 return -ENODEV;
619         }
620
621         if (!req)
622                 return -EINVAL;
623         c = p_dev->function_config;
624         if (c->state & CONFIG_LOCKED) {
625                 dev_dbg(&s->dev, "Configuration is locked\n");
626                 return -EACCES;
627         }
628         if (c->state & CONFIG_IO_REQ) {
629                 dev_dbg(&s->dev, "IO already configured\n");
630                 return -EBUSY;
631         }
632         if (req->Attributes1 & (IO_SHARED | IO_FORCE_ALIAS_ACCESS)) {
633                 dev_dbg(&s->dev, "bad attribute setting for IO region 1\n");
634                 return -EINVAL;
635         }
636         if ((req->NumPorts2 > 0) &&
637             (req->Attributes2 & (IO_SHARED | IO_FORCE_ALIAS_ACCESS))) {
638                 dev_dbg(&s->dev, "bad attribute setting for IO region 2\n");
639                 return -EINVAL;
640         }
641
642         mutex_lock(&s->ops_mutex);
643         dev_dbg(&s->dev, "trying to allocate resource 1\n");
644         if (alloc_io_space(s, req->Attributes1, &req->BasePort1,
645                            req->NumPorts1, req->IOAddrLines)) {
646                 dev_dbg(&s->dev, "allocation of resource 1 failed\n");
647                 mutex_unlock(&s->ops_mutex);
648                 return -EBUSY;
649         }
650
651         if (req->NumPorts2) {
652                 dev_dbg(&s->dev, "trying to allocate resource 2\n");
653                 if (alloc_io_space(s, req->Attributes2, &req->BasePort2,
654                                    req->NumPorts2, req->IOAddrLines)) {
655                         dev_dbg(&s->dev, "allocation of resource 2 failed\n");
656                         release_io_space(s, req->BasePort1, req->NumPorts1);
657                         mutex_unlock(&s->ops_mutex);
658                         return -EBUSY;
659                 }
660         }
661         mutex_unlock(&s->ops_mutex);
662
663         c->io = *req;
664         c->state |= CONFIG_IO_REQ;
665         p_dev->_io = 1;
666         return 0;
667 } /* pcmcia_request_io */
668 EXPORT_SYMBOL(pcmcia_request_io);
669
670
671 /** pcmcia_request_irq
672  *
673  * Request_irq() reserves an irq for this client.
674  *
675  * Also, since Linux only reserves irq's when they are actually
676  * hooked, we don't guarantee that an irq will still be available
677  * when the configuration is locked.  Now that I think about it,
678  * there might be a way to fix this using a dummy handler.
679  */
680
681 #ifdef CONFIG_PCMCIA_PROBE
682 static irqreturn_t test_action(int cpl, void *dev_id)
683 {
684         return IRQ_NONE;
685 }
686 #endif
687
688 int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)
689 {
690         struct pcmcia_socket *s = p_dev->socket;
691         config_t *c;
692         int ret = -EINVAL, irq = 0;
693         int type;
694
695         if (!(s->state & SOCKET_PRESENT)) {
696                 dev_dbg(&s->dev, "No card present\n");
697                 return -ENODEV;
698         }
699         c = p_dev->function_config;
700         if (c->state & CONFIG_LOCKED) {
701                 dev_dbg(&s->dev, "Configuration is locked\n");
702                 return -EACCES;
703         }
704         if (c->state & CONFIG_IRQ_REQ) {
705                 dev_dbg(&s->dev, "IRQ already configured\n");
706                 return -EBUSY;
707         }
708
709         mutex_lock(&s->ops_mutex);
710         /* Decide what type of interrupt we are registering */
711         type = 0;
712         if (s->functions > 1)           /* All of this ought to be handled higher up */
713                 type = IRQF_SHARED;
714         else if (req->Attributes & IRQ_TYPE_DYNAMIC_SHARING)
715                 type = IRQF_SHARED;
716         else
717                 printk(KERN_WARNING "pcmcia: Driver needs updating to support IRQ sharing.\n");
718
719 #ifdef CONFIG_PCMCIA_PROBE
720
721 #ifdef IRQ_NOAUTOEN
722         /* if the underlying IRQ infrastructure allows for it, only allocate
723          * the IRQ, but do not enable it
724          */
725         if (!(req->Handler))
726                 type |= IRQ_NOAUTOEN;
727 #endif /* IRQ_NOAUTOEN */
728
729         if (s->irq.AssignedIRQ != 0) {
730                 /* If the interrupt is already assigned, it must be the same */
731                 irq = s->irq.AssignedIRQ;
732         } else {
733                 int try;
734                 u32 mask = s->irq_mask;
735                 void *data = p_dev; /* something unique to this device */
736
737                 for (try = 0; try < 64; try++) {
738                         irq = try % 32;
739
740                         /* marked as available by driver, and not blocked by userspace? */
741                         if (!((mask >> irq) & 1))
742                                 continue;
743
744                         /* avoid an IRQ which is already used by a PCMCIA card */
745                         if ((try < 32) && pcmcia_used_irq[irq])
746                                 continue;
747
748                         /* register the correct driver, if possible, of check whether
749                          * registering a dummy handle works, i.e. if the IRQ isn't
750                          * marked as used by the kernel resource management core */
751                         ret = request_irq(irq,
752                                           (req->Handler) ? req->Handler : test_action,
753                                           type,
754                                           p_dev->devname,
755                                           (req->Handler) ? p_dev->priv : data);
756                         if (!ret) {
757                                 if (!req->Handler)
758                                         free_irq(irq, data);
759                                 break;
760                         }
761                 }
762         }
763 #endif
764         /* only assign PCI irq if no IRQ already assigned */
765         if (ret && !s->irq.AssignedIRQ) {
766                 if (!s->pci_irq) {
767                         dev_printk(KERN_INFO, &s->dev, "no IRQ found\n");
768                         return ret;
769                 }
770                 type = IRQF_SHARED;
771                 irq = s->pci_irq;
772         }
773
774         if (ret && req->Handler) {
775                 ret = request_irq(irq, req->Handler, type,
776                                   p_dev->devname, p_dev->priv);
777                 if (ret) {
778                         dev_printk(KERN_INFO, &s->dev,
779                                 "request_irq() failed\n");
780                         return ret;
781                 }
782         }
783
784         /* Make sure the fact the request type was overridden is passed back */
785         if (type == IRQF_SHARED && !(req->Attributes & IRQ_TYPE_DYNAMIC_SHARING)) {
786                 req->Attributes |= IRQ_TYPE_DYNAMIC_SHARING;
787                 dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: "
788                         "request for exclusive IRQ could not be fulfilled.\n");
789                 dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: the driver "
790                         "needs updating to supported shared IRQ lines.\n");
791         }
792         c->irq.Attributes = req->Attributes;
793         s->irq.AssignedIRQ = req->AssignedIRQ = irq;
794         s->irq.Config++;
795
796         c->state |= CONFIG_IRQ_REQ;
797         p_dev->_irq = 1;
798
799 #ifdef CONFIG_PCMCIA_PROBE
800         pcmcia_used_irq[irq]++;
801 #endif
802
803         mutex_unlock(&s->ops_mutex);
804
805         return 0;
806 } /* pcmcia_request_irq */
807 EXPORT_SYMBOL(pcmcia_request_irq);
808
809
810 /** pcmcia_request_window
811  *
812  * Request_window() establishes a mapping between card memory space
813  * and system memory space.
814  */
815 int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req, window_handle_t *wh)
816 {
817         struct pcmcia_socket *s = p_dev->socket;
818         pccard_mem_map *win;
819         u_long align;
820         int w;
821
822         if (!(s->state & SOCKET_PRESENT)) {
823                 dev_dbg(&s->dev, "No card present\n");
824                 return -ENODEV;
825         }
826         if (req->Attributes & (WIN_PAGED | WIN_SHARED)) {
827                 dev_dbg(&s->dev, "bad attribute setting for iomem region\n");
828                 return -EINVAL;
829         }
830
831         /* Window size defaults to smallest available */
832         if (req->Size == 0)
833                 req->Size = s->map_size;
834         align = (((s->features & SS_CAP_MEM_ALIGN) ||
835                   (req->Attributes & WIN_STRICT_ALIGN)) ?
836                  req->Size : s->map_size);
837         if (req->Size & (s->map_size-1)) {
838                 dev_dbg(&s->dev, "invalid map size\n");
839                 return -EINVAL;
840         }
841         if ((req->Base && (s->features & SS_CAP_STATIC_MAP)) ||
842             (req->Base & (align-1))) {
843                 dev_dbg(&s->dev, "invalid base address\n");
844                 return -EINVAL;
845         }
846         if (req->Base)
847                 align = 0;
848
849         /* Allocate system memory window */
850         for (w = 0; w < MAX_WIN; w++)
851                 if (!(s->state & SOCKET_WIN_REQ(w)))
852                         break;
853         if (w == MAX_WIN) {
854                 dev_dbg(&s->dev, "all windows are used already\n");
855                 return -EINVAL;
856         }
857
858         mutex_lock(&s->ops_mutex);
859         win = &s->win[w];
860
861         if (!(s->features & SS_CAP_STATIC_MAP)) {
862                 win->res = pcmcia_find_mem_region(req->Base, req->Size, align,
863                                                       (req->Attributes & WIN_MAP_BELOW_1MB), s);
864                 if (!win->res) {
865                         dev_dbg(&s->dev, "allocating mem region failed\n");
866                         mutex_unlock(&s->ops_mutex);
867                         return -EINVAL;
868                 }
869         }
870         p_dev->_win |= CLIENT_WIN_REQ(w);
871
872         /* Configure the socket controller */
873         win->map = w+1;
874         win->flags = 0;
875         win->speed = req->AccessSpeed;
876         if (req->Attributes & WIN_MEMORY_TYPE)
877                 win->flags |= MAP_ATTRIB;
878         if (req->Attributes & WIN_ENABLE)
879                 win->flags |= MAP_ACTIVE;
880         if (req->Attributes & WIN_DATA_WIDTH_16)
881                 win->flags |= MAP_16BIT;
882         if (req->Attributes & WIN_USE_WAIT)
883                 win->flags |= MAP_USE_WAIT;
884         win->card_start = 0;
885
886         if (s->ops->set_mem_map(s, win) != 0) {
887                 dev_dbg(&s->dev, "failed to set memory mapping\n");
888                 mutex_unlock(&s->ops_mutex);
889                 return -EIO;
890         }
891         s->state |= SOCKET_WIN_REQ(w);
892
893         /* Return window handle */
894         if (s->features & SS_CAP_STATIC_MAP)
895                 req->Base = win->static_start;
896         else
897                 req->Base = win->res->start;
898
899         mutex_unlock(&s->ops_mutex);
900         *wh = w + 1;
901
902         return 0;
903 } /* pcmcia_request_window */
904 EXPORT_SYMBOL(pcmcia_request_window);
905
906 void pcmcia_disable_device(struct pcmcia_device *p_dev)
907 {
908         pcmcia_release_configuration(p_dev);
909         pcmcia_release_io(p_dev, &p_dev->io);
910         pcmcia_release_irq(p_dev, &p_dev->irq);
911         if (p_dev->win)
912                 pcmcia_release_window(p_dev, p_dev->win);
913 }
914 EXPORT_SYMBOL(pcmcia_disable_device);
915
916
917 struct pcmcia_cfg_mem {
918         struct pcmcia_device *p_dev;
919         void *priv_data;
920         int (*conf_check) (struct pcmcia_device *p_dev,
921                            cistpl_cftable_entry_t *cfg,
922                            cistpl_cftable_entry_t *dflt,
923                            unsigned int vcc,
924                            void *priv_data);
925         cisparse_t parse;
926         cistpl_cftable_entry_t dflt;
927 };
928
929 /**
930  * pcmcia_do_loop_config() - internal helper for pcmcia_loop_config()
931  *
932  * pcmcia_do_loop_config() is the internal callback for the call from
933  * pcmcia_loop_config() to pccard_loop_tuple(). Data is transferred
934  * by a struct pcmcia_cfg_mem.
935  */
936 static int pcmcia_do_loop_config(tuple_t *tuple, cisparse_t *parse, void *priv)
937 {
938         cistpl_cftable_entry_t *cfg = &parse->cftable_entry;
939         struct pcmcia_cfg_mem *cfg_mem = priv;
940
941         /* default values */
942         cfg_mem->p_dev->conf.ConfigIndex = cfg->index;
943         if (cfg->flags & CISTPL_CFTABLE_DEFAULT)
944                 cfg_mem->dflt = *cfg;
945
946         return cfg_mem->conf_check(cfg_mem->p_dev, cfg, &cfg_mem->dflt,
947                                    cfg_mem->p_dev->socket->socket.Vcc,
948                                    cfg_mem->priv_data);
949 }
950
951 /**
952  * pcmcia_loop_config() - loop over configuration options
953  * @p_dev:      the struct pcmcia_device which we need to loop for.
954  * @conf_check: function to call for each configuration option.
955  *              It gets passed the struct pcmcia_device, the CIS data
956  *              describing the configuration option, and private data
957  *              being passed to pcmcia_loop_config()
958  * @priv_data:  private data to be passed to the conf_check function.
959  *
960  * pcmcia_loop_config() loops over all configuration options, and calls
961  * the driver-specific conf_check() for each one, checking whether
962  * it is a valid one. Returns 0 on success or errorcode otherwise.
963  */
964 int pcmcia_loop_config(struct pcmcia_device *p_dev,
965                        int      (*conf_check)   (struct pcmcia_device *p_dev,
966                                                  cistpl_cftable_entry_t *cfg,
967                                                  cistpl_cftable_entry_t *dflt,
968                                                  unsigned int vcc,
969                                                  void *priv_data),
970                        void *priv_data)
971 {
972         struct pcmcia_cfg_mem *cfg_mem;
973         int ret;
974
975         cfg_mem = kzalloc(sizeof(struct pcmcia_cfg_mem), GFP_KERNEL);
976         if (cfg_mem == NULL)
977                 return -ENOMEM;
978
979         cfg_mem->p_dev = p_dev;
980         cfg_mem->conf_check = conf_check;
981         cfg_mem->priv_data = priv_data;
982
983         ret = pccard_loop_tuple(p_dev->socket, p_dev->func,
984                                 CISTPL_CFTABLE_ENTRY, &cfg_mem->parse,
985                                 cfg_mem, pcmcia_do_loop_config);
986
987         kfree(cfg_mem);
988         return ret;
989 }
990 EXPORT_SYMBOL(pcmcia_loop_config);
991
992
993 struct pcmcia_loop_mem {
994         struct pcmcia_device *p_dev;
995         void *priv_data;
996         int (*loop_tuple) (struct pcmcia_device *p_dev,
997                            tuple_t *tuple,
998                            void *priv_data);
999 };
1000
1001 /**
1002  * pcmcia_do_loop_tuple() - internal helper for pcmcia_loop_config()
1003  *
1004  * pcmcia_do_loop_tuple() is the internal callback for the call from
1005  * pcmcia_loop_tuple() to pccard_loop_tuple(). Data is transferred
1006  * by a struct pcmcia_cfg_mem.
1007  */
1008 static int pcmcia_do_loop_tuple(tuple_t *tuple, cisparse_t *parse, void *priv)
1009 {
1010         struct pcmcia_loop_mem *loop = priv;
1011
1012         return loop->loop_tuple(loop->p_dev, tuple, loop->priv_data);
1013 };
1014
1015 /**
1016  * pcmcia_loop_tuple() - loop over tuples in the CIS
1017  * @p_dev:      the struct pcmcia_device which we need to loop for.
1018  * @code:       which CIS code shall we look for?
1019  * @priv_data:  private data to be passed to the loop_tuple function.
1020  * @loop_tuple: function to call for each CIS entry of type @function. IT
1021  *              gets passed the raw tuple and @priv_data.
1022  *
1023  * pcmcia_loop_tuple() loops over all CIS entries of type @function, and
1024  * calls the @loop_tuple function for each entry. If the call to @loop_tuple
1025  * returns 0, the loop exits. Returns 0 on success or errorcode otherwise.
1026  */
1027 int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code,
1028                       int (*loop_tuple) (struct pcmcia_device *p_dev,
1029                                          tuple_t *tuple,
1030                                          void *priv_data),
1031                       void *priv_data)
1032 {
1033         struct pcmcia_loop_mem loop = {
1034                 .p_dev = p_dev,
1035                 .loop_tuple = loop_tuple,
1036                 .priv_data = priv_data};
1037
1038         return pccard_loop_tuple(p_dev->socket, p_dev->func, code, NULL,
1039                                  &loop, pcmcia_do_loop_tuple);
1040 }
1041 EXPORT_SYMBOL(pcmcia_loop_tuple);
1042
1043
1044 struct pcmcia_loop_get {
1045         size_t len;
1046         cisdata_t **buf;
1047 };
1048
1049 /**
1050  * pcmcia_do_get_tuple() - internal helper for pcmcia_get_tuple()
1051  *
1052  * pcmcia_do_get_tuple() is the internal callback for the call from
1053  * pcmcia_get_tuple() to pcmcia_loop_tuple(). As we're only interested in
1054  * the first tuple, return 0 unconditionally. Create a memory buffer large
1055  * enough to hold the content of the tuple, and fill it with the tuple data.
1056  * The caller is responsible to free the buffer.
1057  */
1058 static int pcmcia_do_get_tuple(struct pcmcia_device *p_dev, tuple_t *tuple,
1059                                void *priv)
1060 {
1061         struct pcmcia_loop_get *get = priv;
1062
1063         *get->buf = kzalloc(tuple->TupleDataLen, GFP_KERNEL);
1064         if (*get->buf) {
1065                 get->len = tuple->TupleDataLen;
1066                 memcpy(*get->buf, tuple->TupleData, tuple->TupleDataLen);
1067         } else
1068                 dev_dbg(&p_dev->dev, "do_get_tuple: out of memory\n");
1069         return 0;
1070 }
1071
1072 /**
1073  * pcmcia_get_tuple() - get first tuple from CIS
1074  * @p_dev:      the struct pcmcia_device which we need to loop for.
1075  * @code:       which CIS code shall we look for?
1076  * @buf:        pointer to store the buffer to.
1077  *
1078  * pcmcia_get_tuple() gets the content of the first CIS entry of type @code.
1079  * It returns the buffer length (or zero). The caller is responsible to free
1080  * the buffer passed in @buf.
1081  */
1082 size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
1083                         unsigned char **buf)
1084 {
1085         struct pcmcia_loop_get get = {
1086                 .len = 0,
1087                 .buf = buf,
1088         };
1089
1090         *get.buf = NULL;
1091         pcmcia_loop_tuple(p_dev, code, pcmcia_do_get_tuple, &get);
1092
1093         return get.len;
1094 }
1095 EXPORT_SYMBOL(pcmcia_get_tuple);
1096
1097
1098 /**
1099  * pcmcia_do_get_mac() - internal helper for pcmcia_get_mac_from_cis()
1100  *
1101  * pcmcia_do_get_mac() is the internal callback for the call from
1102  * pcmcia_get_mac_from_cis() to pcmcia_loop_tuple(). We check whether the
1103  * tuple contains a proper LAN_NODE_ID of length 6, and copy the data
1104  * to struct net_device->dev_addr[i].
1105  */
1106 static int pcmcia_do_get_mac(struct pcmcia_device *p_dev, tuple_t *tuple,
1107                              void *priv)
1108 {
1109         struct net_device *dev = priv;
1110         int i;
1111
1112         if (tuple->TupleData[0] != CISTPL_FUNCE_LAN_NODE_ID)
1113                 return -EINVAL;
1114         if (tuple->TupleDataLen < ETH_ALEN + 2) {
1115                 dev_warn(&p_dev->dev, "Invalid CIS tuple length for "
1116                         "LAN_NODE_ID\n");
1117                 return -EINVAL;
1118         }
1119
1120         if (tuple->TupleData[1] != ETH_ALEN) {
1121                 dev_warn(&p_dev->dev, "Invalid header for LAN_NODE_ID\n");
1122                 return -EINVAL;
1123         }
1124         for (i = 0; i < 6; i++)
1125                 dev->dev_addr[i] = tuple->TupleData[i+2];
1126         return 0;
1127 }
1128
1129 /**
1130  * pcmcia_get_mac_from_cis() - read out MAC address from CISTPL_FUNCE
1131  * @p_dev:      the struct pcmcia_device for which we want the address.
1132  * @dev:        a properly prepared struct net_device to store the info to.
1133  *
1134  * pcmcia_get_mac_from_cis() reads out the hardware MAC address from
1135  * CISTPL_FUNCE and stores it into struct net_device *dev->dev_addr which
1136  * must be set up properly by the driver (see examples!).
1137  */
1138 int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev, struct net_device *dev)
1139 {
1140         return pcmcia_loop_tuple(p_dev, CISTPL_FUNCE, pcmcia_do_get_mac, dev);
1141 }
1142 EXPORT_SYMBOL(pcmcia_get_mac_from_cis);
1143