pcmcia: deprecate CS_BAD_BASE, CS_BAD_IRQ, CS_BAD_OFFSET and CS_BAD_SIZE
[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
24 #include <pcmcia/cs_types.h>
25 #include <pcmcia/ss.h>
26 #include <pcmcia/cs.h>
27 #include <pcmcia/cistpl.h>
28 #include <pcmcia/cisreg.h>
29 #include <pcmcia/ds.h>
30
31 #include "cs_internal.h"
32 #include "ds_internal.h"
33
34
35 /* Access speed for IO windows */
36 static int io_speed = 0;
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
47 #ifdef CONFIG_PCMCIA_DEBUG
48 extern int ds_pc_debug;
49
50 #define ds_dbg(skt, lvl, fmt, arg...) do {                      \
51         if (ds_pc_debug >= lvl)                                 \
52                 dev_printk(KERN_DEBUG, &skt->dev,               \
53                            "pcmcia_resource: " fmt,             \
54                            ## arg);                             \
55 } while (0)
56 #else
57 #define ds_dbg(skt, lvl, fmt, arg...) do { } while (0)
58 #endif
59
60
61
62 /** alloc_io_space
63  *
64  * Special stuff for managing IO windows, because they are scarce
65  */
66
67 static int alloc_io_space(struct pcmcia_socket *s, u_int attr,
68                           unsigned int *base, unsigned int num, u_int lines)
69 {
70         int i;
71         unsigned int try, align;
72
73         align = (*base) ? (lines ? 1<<lines : 0) : 1;
74         if (align && (align < num)) {
75                 if (*base) {
76                         ds_dbg(s, 0, "odd IO request: num %#x align %#x\n",
77                                num, align);
78                         align = 0;
79                 } else
80                         while (align && (align < num)) align <<= 1;
81         }
82         if (*base & ~(align-1)) {
83                 ds_dbg(s, 0, "odd IO request: base %#x align %#x\n",
84                        *base, align);
85                 align = 0;
86         }
87         if ((s->features & SS_CAP_STATIC_MAP) && s->io_offset) {
88                 *base = s->io_offset | (*base & 0x0fff);
89                 return 0;
90         }
91         /* Check for an already-allocated window that must conflict with
92          * what was asked for.  It is a hack because it does not catch all
93          * potential conflicts, just the most obvious ones.
94          */
95         for (i = 0; i < MAX_IO_WIN; i++)
96                 if ((s->io[i].res) && *base &&
97                     ((s->io[i].res->start & (align-1)) == *base))
98                         return 1;
99         for (i = 0; i < MAX_IO_WIN; i++) {
100                 if (!s->io[i].res) {
101                         s->io[i].res = pcmcia_find_io_region(*base, num, align, s);
102                         if (s->io[i].res) {
103                                 *base = s->io[i].res->start;
104                                 s->io[i].res->flags = (s->io[i].res->flags & ~IORESOURCE_BITS) | (attr & IORESOURCE_BITS);
105                                 s->io[i].InUse = num;
106                                 break;
107                         } else
108                                 return 1;
109                 } else if ((s->io[i].res->flags & IORESOURCE_BITS) != (attr & IORESOURCE_BITS))
110                         continue;
111                 /* Try to extend top of window */
112                 try = s->io[i].res->end + 1;
113                 if ((*base == 0) || (*base == try))
114                         if (pcmcia_adjust_io_region(s->io[i].res, s->io[i].res->start,
115                                                     s->io[i].res->end + num, s) == 0) {
116                                 *base = try;
117                                 s->io[i].InUse += num;
118                                 break;
119                         }
120                 /* Try to extend bottom of window */
121                 try = s->io[i].res->start - num;
122                 if ((*base == 0) || (*base == try))
123                         if (pcmcia_adjust_io_region(s->io[i].res, s->io[i].res->start - num,
124                                                     s->io[i].res->end, s) == 0) {
125                                 *base = try;
126                                 s->io[i].InUse += num;
127                                 break;
128                         }
129         }
130         return (i == MAX_IO_WIN);
131 } /* alloc_io_space */
132
133
134 static void release_io_space(struct pcmcia_socket *s, unsigned int base,
135                              unsigned int num)
136 {
137         int i;
138
139         for (i = 0; i < MAX_IO_WIN; i++) {
140                 if (!s->io[i].res)
141                         continue;
142                 if ((s->io[i].res->start <= base) &&
143                     (s->io[i].res->end >= base+num-1)) {
144                         s->io[i].InUse -= num;
145                         /* Free the window if no one else is using it */
146                         if (s->io[i].InUse == 0) {
147                                 release_resource(s->io[i].res);
148                                 kfree(s->io[i].res);
149                                 s->io[i].res = NULL;
150                         }
151                 }
152         }
153 } /* release_io_space */
154
155
156 /** pccard_access_configuration_register
157  *
158  * Access_configuration_register() reads and writes configuration
159  * registers in attribute memory.  Memory window 0 is reserved for
160  * this and the tuple reading services.
161  */
162
163 int pcmcia_access_configuration_register(struct pcmcia_device *p_dev,
164                                          conf_reg_t *reg)
165 {
166         struct pcmcia_socket *s;
167         config_t *c;
168         int addr;
169         u_char val;
170
171         if (!p_dev || !p_dev->function_config)
172                 return -EINVAL;
173
174         s = p_dev->socket;
175         c = p_dev->function_config;
176
177         if (!(c->state & CONFIG_LOCKED))
178                 return -EACCES;
179
180         addr = (c->ConfigBase + reg->Offset) >> 1;
181
182         switch (reg->Action) {
183         case CS_READ:
184                 pcmcia_read_cis_mem(s, 1, addr, 1, &val);
185                 reg->Value = val;
186                 break;
187         case CS_WRITE:
188                 val = reg->Value;
189                 pcmcia_write_cis_mem(s, 1, addr, 1, &val);
190                 break;
191         default:
192                 return CS_BAD_ARGS;
193                 break;
194         }
195         return 0;
196 } /* pcmcia_access_configuration_register */
197 EXPORT_SYMBOL(pcmcia_access_configuration_register);
198
199
200 /** pcmcia_get_window
201  */
202 int pcmcia_get_window(struct pcmcia_socket *s, window_handle_t *handle,
203                       int idx, win_req_t *req)
204 {
205         window_t *win;
206         int w;
207
208         if (!s || !(s->state & SOCKET_PRESENT))
209                 return -ENODEV;
210         for (w = idx; w < MAX_WIN; w++)
211                 if (s->state & SOCKET_WIN_REQ(w))
212                         break;
213         if (w == MAX_WIN)
214                 return -EINVAL;
215         win = &s->win[w];
216         req->Base = win->ctl.res->start;
217         req->Size = win->ctl.res->end - win->ctl.res->start + 1;
218         req->AccessSpeed = win->ctl.speed;
219         req->Attributes = 0;
220         if (win->ctl.flags & MAP_ATTRIB)
221                 req->Attributes |= WIN_MEMORY_TYPE_AM;
222         if (win->ctl.flags & MAP_ACTIVE)
223                 req->Attributes |= WIN_ENABLE;
224         if (win->ctl.flags & MAP_16BIT)
225                 req->Attributes |= WIN_DATA_WIDTH_16;
226         if (win->ctl.flags & MAP_USE_WAIT)
227                 req->Attributes |= WIN_USE_WAIT;
228         *handle = win;
229         return 0;
230 } /* pcmcia_get_window */
231 EXPORT_SYMBOL(pcmcia_get_window);
232
233
234 /** pcmcia_get_mem_page
235  *
236  * Change the card address of an already open memory window.
237  */
238 int pcmcia_get_mem_page(window_handle_t win, memreq_t *req)
239 {
240         if ((win == NULL) || (win->magic != WINDOW_MAGIC))
241                 return -EINVAL;
242         req->Page = 0;
243         req->CardOffset = win->ctl.card_start;
244         return 0;
245 } /* pcmcia_get_mem_page */
246 EXPORT_SYMBOL(pcmcia_get_mem_page);
247
248
249 int pcmcia_map_mem_page(window_handle_t win, memreq_t *req)
250 {
251         struct pcmcia_socket *s;
252         if ((win == NULL) || (win->magic != WINDOW_MAGIC))
253                 return -EINVAL;
254         s = win->sock;
255         if (req->Page != 0) {
256                 ds_dbg(s, 0, "failure: requested page is zero\n");
257                 return -EINVAL;
258         }
259         win->ctl.card_start = req->CardOffset;
260         if (s->ops->set_mem_map(s, &win->ctl) != 0) {
261                 ds_dbg(s, 0, "failed to set_mem_map\n");
262                 return -EIO;
263         }
264         return 0;
265 } /* pcmcia_map_mem_page */
266 EXPORT_SYMBOL(pcmcia_map_mem_page);
267
268
269 /** pcmcia_modify_configuration
270  *
271  * Modify a locked socket configuration
272  */
273 int pcmcia_modify_configuration(struct pcmcia_device *p_dev,
274                                 modconf_t *mod)
275 {
276         struct pcmcia_socket *s;
277         config_t *c;
278
279         s = p_dev->socket;
280         c = p_dev->function_config;
281
282         if (!(s->state & SOCKET_PRESENT))
283                 return -ENODEV;
284         if (!(c->state & CONFIG_LOCKED))
285                 return -EACCES;
286
287         if (mod->Attributes & CONF_IRQ_CHANGE_VALID) {
288                 if (mod->Attributes & CONF_ENABLE_IRQ) {
289                         c->Attributes |= CONF_ENABLE_IRQ;
290                         s->socket.io_irq = s->irq.AssignedIRQ;
291                 } else {
292                         c->Attributes &= ~CONF_ENABLE_IRQ;
293                         s->socket.io_irq = 0;
294                 }
295                 s->ops->set_socket(s, &s->socket);
296         }
297
298         if (mod->Attributes & CONF_VCC_CHANGE_VALID) {
299                 ds_dbg(s, 0, "changing Vcc is not allowed at this time\n");
300                 return -EINVAL;
301         }
302
303         /* We only allow changing Vpp1 and Vpp2 to the same value */
304         if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) &&
305             (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
306                 if (mod->Vpp1 != mod->Vpp2)
307                         ds_dbg(s, 0, "Vpp1 and Vpp2 must be the same\n");
308                         return -EINVAL;
309                 s->socket.Vpp = mod->Vpp1;
310                 if (s->ops->set_socket(s, &s->socket)) {
311                         dev_printk(KERN_WARNING, &s->dev,
312                                    "Unable to set VPP\n");
313                         return -EIO;
314                 }
315         } else if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) ||
316                    (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
317                 ds_dbg(s, 0, "changing Vcc is not allowed at this time\n");
318                 return -EINVAL;
319         }
320
321         if (mod->Attributes & CONF_IO_CHANGE_WIDTH) {
322                 pccard_io_map io_off = { 0, 0, 0, 0, 1 };
323                 pccard_io_map io_on;
324                 int i;
325
326                 io_on.speed = io_speed;
327                 for (i = 0; i < MAX_IO_WIN; i++) {
328                         if (!s->io[i].res)
329                                 continue;
330                         io_off.map = i;
331                         io_on.map = i;
332
333                         io_on.flags = MAP_ACTIVE | IO_DATA_PATH_WIDTH_8;
334                         io_on.start = s->io[i].res->start;
335                         io_on.stop = s->io[i].res->end;
336
337                         s->ops->set_io_map(s, &io_off);
338                         mdelay(40);
339                         s->ops->set_io_map(s, &io_on);
340                 }
341         }
342
343         return 0;
344 } /* modify_configuration */
345 EXPORT_SYMBOL(pcmcia_modify_configuration);
346
347
348 int pcmcia_release_configuration(struct pcmcia_device *p_dev)
349 {
350         pccard_io_map io = { 0, 0, 0, 0, 1 };
351         struct pcmcia_socket *s = p_dev->socket;
352         config_t *c = p_dev->function_config;
353         int i;
354
355         if (p_dev->_locked) {
356                 p_dev->_locked = 0;
357                 if (--(s->lock_count) == 0) {
358                         s->socket.flags = SS_OUTPUT_ENA;   /* Is this correct? */
359                         s->socket.Vpp = 0;
360                         s->socket.io_irq = 0;
361                         s->ops->set_socket(s, &s->socket);
362                 }
363         }
364         if (c->state & CONFIG_LOCKED) {
365                 c->state &= ~CONFIG_LOCKED;
366                 if (c->state & CONFIG_IO_REQ)
367                         for (i = 0; i < MAX_IO_WIN; i++) {
368                                 if (!s->io[i].res)
369                                         continue;
370                                 s->io[i].Config--;
371                                 if (s->io[i].Config != 0)
372                                         continue;
373                                 io.map = i;
374                                 s->ops->set_io_map(s, &io);
375                         }
376         }
377
378         return 0;
379 } /* pcmcia_release_configuration */
380
381
382 /** pcmcia_release_io
383  *
384  * Release_io() releases the I/O ranges allocated by a client.  This
385  * may be invoked some time after a card ejection has already dumped
386  * the actual socket configuration, so if the client is "stale", we
387  * don't bother checking the port ranges against the current socket
388  * values.
389  */
390 static int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req)
391 {
392         struct pcmcia_socket *s = p_dev->socket;
393         config_t *c = p_dev->function_config;
394
395         if (!p_dev->_io )
396                 return -EINVAL;
397
398         p_dev->_io = 0;
399
400         if ((c->io.BasePort1 != req->BasePort1) ||
401             (c->io.NumPorts1 != req->NumPorts1) ||
402             (c->io.BasePort2 != req->BasePort2) ||
403             (c->io.NumPorts2 != req->NumPorts2))
404                 return CS_BAD_ARGS;
405
406         c->state &= ~CONFIG_IO_REQ;
407
408         release_io_space(s, req->BasePort1, req->NumPorts1);
409         if (req->NumPorts2)
410                 release_io_space(s, req->BasePort2, req->NumPorts2);
411
412         return 0;
413 } /* pcmcia_release_io */
414
415
416 static int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)
417 {
418         struct pcmcia_socket *s = p_dev->socket;
419         config_t *c= p_dev->function_config;
420
421         if (!p_dev->_irq)
422                 return -EINVAL;
423         p_dev->_irq = 0;
424
425         if (c->state & CONFIG_LOCKED)
426                 return -EACCES;
427         if (c->irq.Attributes != req->Attributes) {
428                 ds_dbg(s, 0, "IRQ attributes must match assigned ones\n");
429                 return -EINVAL;
430         }
431         if (s->irq.AssignedIRQ != req->AssignedIRQ) {
432                 ds_dbg(s, 0, "IRQ must match assigned one\n");
433                 return -EINVAL;
434         }
435         if (--s->irq.Config == 0) {
436                 c->state &= ~CONFIG_IRQ_REQ;
437                 s->irq.AssignedIRQ = 0;
438         }
439
440         if (req->Attributes & IRQ_HANDLE_PRESENT) {
441                 free_irq(req->AssignedIRQ, req->Instance);
442         }
443
444 #ifdef CONFIG_PCMCIA_PROBE
445         pcmcia_used_irq[req->AssignedIRQ]--;
446 #endif
447
448         return 0;
449 } /* pcmcia_release_irq */
450
451
452 int pcmcia_release_window(window_handle_t win)
453 {
454         struct pcmcia_socket *s;
455
456         if ((win == NULL) || (win->magic != WINDOW_MAGIC))
457                 return -EINVAL;
458         s = win->sock;
459         if (!(win->handle->_win & CLIENT_WIN_REQ(win->index)))
460                 return -EINVAL;
461
462         /* Shut down memory window */
463         win->ctl.flags &= ~MAP_ACTIVE;
464         s->ops->set_mem_map(s, &win->ctl);
465         s->state &= ~SOCKET_WIN_REQ(win->index);
466
467         /* Release system memory */
468         if (win->ctl.res) {
469                 release_resource(win->ctl.res);
470                 kfree(win->ctl.res);
471                 win->ctl.res = NULL;
472         }
473         win->handle->_win &= ~CLIENT_WIN_REQ(win->index);
474
475         win->magic = 0;
476
477         return 0;
478 } /* pcmcia_release_window */
479 EXPORT_SYMBOL(pcmcia_release_window);
480
481
482 int pcmcia_request_configuration(struct pcmcia_device *p_dev,
483                                  config_req_t *req)
484 {
485         int i;
486         u_int base;
487         struct pcmcia_socket *s = p_dev->socket;
488         config_t *c;
489         pccard_io_map iomap;
490
491         if (!(s->state & SOCKET_PRESENT))
492                 return -ENODEV;;
493
494         if (req->IntType & INT_CARDBUS) {
495                 ds_dbg(p_dev->socket, 0, "IntType may not be INT_CARDBUS\n");
496                 return -EINVAL;
497         }
498         c = p_dev->function_config;
499         if (c->state & CONFIG_LOCKED)
500                 return -EACCES;
501
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                 dev_printk(KERN_WARNING, &s->dev,
506                            "Unable to set socket state\n");
507                 return -EINVAL;
508         }
509
510         /* Pick memory or I/O card, DMA mode, interrupt */
511         c->IntType = req->IntType;
512         c->Attributes = req->Attributes;
513         if (req->IntType & INT_MEMORY_AND_IO)
514                 s->socket.flags |= SS_IOCARD;
515         if (req->IntType & INT_ZOOMED_VIDEO)
516                 s->socket.flags |= SS_ZVCARD | SS_IOCARD;
517         if (req->Attributes & CONF_ENABLE_DMA)
518                 s->socket.flags |= SS_DMA_MODE;
519         if (req->Attributes & CONF_ENABLE_SPKR)
520                 s->socket.flags |= SS_SPKR_ENA;
521         if (req->Attributes & CONF_ENABLE_IRQ)
522                 s->socket.io_irq = s->irq.AssignedIRQ;
523         else
524                 s->socket.io_irq = 0;
525         s->ops->set_socket(s, &s->socket);
526         s->lock_count++;
527
528         /* Set up CIS configuration registers */
529         base = c->ConfigBase = req->ConfigBase;
530         c->CardValues = req->Present;
531         if (req->Present & PRESENT_COPY) {
532                 c->Copy = req->Copy;
533                 pcmcia_write_cis_mem(s, 1, (base + CISREG_SCR)>>1, 1, &c->Copy);
534         }
535         if (req->Present & PRESENT_OPTION) {
536                 if (s->functions == 1) {
537                         c->Option = req->ConfigIndex & COR_CONFIG_MASK;
538                 } else {
539                         c->Option = req->ConfigIndex & COR_MFC_CONFIG_MASK;
540                         c->Option |= COR_FUNC_ENA|COR_IREQ_ENA;
541                         if (req->Present & PRESENT_IOBASE_0)
542                                 c->Option |= COR_ADDR_DECODE;
543                 }
544                 if (c->state & CONFIG_IRQ_REQ)
545                         if (!(c->irq.Attributes & IRQ_FORCED_PULSE))
546                                 c->Option |= COR_LEVEL_REQ;
547                 pcmcia_write_cis_mem(s, 1, (base + CISREG_COR)>>1, 1, &c->Option);
548                 mdelay(40);
549         }
550         if (req->Present & PRESENT_STATUS) {
551                 c->Status = req->Status;
552                 pcmcia_write_cis_mem(s, 1, (base + CISREG_CCSR)>>1, 1, &c->Status);
553         }
554         if (req->Present & PRESENT_PIN_REPLACE) {
555                 c->Pin = req->Pin;
556                 pcmcia_write_cis_mem(s, 1, (base + CISREG_PRR)>>1, 1, &c->Pin);
557         }
558         if (req->Present & PRESENT_EXT_STATUS) {
559                 c->ExtStatus = req->ExtStatus;
560                 pcmcia_write_cis_mem(s, 1, (base + CISREG_ESR)>>1, 1, &c->ExtStatus);
561         }
562         if (req->Present & PRESENT_IOBASE_0) {
563                 u_char b = c->io.BasePort1 & 0xff;
564                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_0)>>1, 1, &b);
565                 b = (c->io.BasePort1 >> 8) & 0xff;
566                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_1)>>1, 1, &b);
567         }
568         if (req->Present & PRESENT_IOSIZE) {
569                 u_char b = c->io.NumPorts1 + c->io.NumPorts2 - 1;
570                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOSIZE)>>1, 1, &b);
571         }
572
573         /* Configure I/O windows */
574         if (c->state & CONFIG_IO_REQ) {
575                 iomap.speed = io_speed;
576                 for (i = 0; i < MAX_IO_WIN; i++)
577                         if (s->io[i].res) {
578                                 iomap.map = i;
579                                 iomap.flags = MAP_ACTIVE;
580                                 switch (s->io[i].res->flags & IO_DATA_PATH_WIDTH) {
581                                 case IO_DATA_PATH_WIDTH_16:
582                                         iomap.flags |= MAP_16BIT; break;
583                                 case IO_DATA_PATH_WIDTH_AUTO:
584                                         iomap.flags |= MAP_AUTOSZ; break;
585                                 default:
586                                         break;
587                                 }
588                                 iomap.start = s->io[i].res->start;
589                                 iomap.stop = s->io[i].res->end;
590                                 s->ops->set_io_map(s, &iomap);
591                                 s->io[i].Config++;
592                         }
593         }
594
595         c->state |= CONFIG_LOCKED;
596         p_dev->_locked = 1;
597         return 0;
598 } /* pcmcia_request_configuration */
599 EXPORT_SYMBOL(pcmcia_request_configuration);
600
601
602 /** pcmcia_request_io
603  *
604  * Request_io() reserves ranges of port addresses for a socket.
605  * I have not implemented range sharing or alias addressing.
606  */
607 int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req)
608 {
609         struct pcmcia_socket *s = p_dev->socket;
610         config_t *c;
611
612         if (!(s->state & SOCKET_PRESENT))
613                 return -ENODEV;
614
615         if (!req)
616                 return -EINVAL;
617         c = p_dev->function_config;
618         if (c->state & CONFIG_LOCKED)
619                 return -EACCES;
620         if (c->state & CONFIG_IO_REQ) {
621                 ds_dbg(s, 0, "IO already configured\n");
622                 return -EBUSY;
623         }
624         if (req->Attributes1 & (IO_SHARED | IO_FORCE_ALIAS_ACCESS)) {
625                 ds_dbg(s, 0, "bad attribute setting for IO region 1\n");
626                 return -EINVAL;
627         }
628         if ((req->NumPorts2 > 0) &&
629             (req->Attributes2 & (IO_SHARED | IO_FORCE_ALIAS_ACCESS))) {
630                 ds_dbg(s, 0, "bad attribute setting for IO region 2\n");
631                 return -EINVAL;
632         }
633
634         ds_dbg(s, 1, "trying to allocate resource 1\n");
635         if (alloc_io_space(s, req->Attributes1, &req->BasePort1,
636                            req->NumPorts1, req->IOAddrLines)) {
637                 ds_dbg(s, 0, "allocation of resource 1 failed\n");
638                 return -EBUSY;
639         }
640
641         if (req->NumPorts2) {
642                 ds_dbg(s, 1, "trying to allocate resource 2\n");
643                 if (alloc_io_space(s, req->Attributes2, &req->BasePort2,
644                                    req->NumPorts2, req->IOAddrLines)) {
645                         ds_dbg(s, 0, "allocation of resource 2 failed\n");
646                         release_io_space(s, req->BasePort1, req->NumPorts1);
647                         return -EBUSY;
648                 }
649         }
650
651         c->io = *req;
652         c->state |= CONFIG_IO_REQ;
653         p_dev->_io = 1;
654         return 0;
655 } /* pcmcia_request_io */
656 EXPORT_SYMBOL(pcmcia_request_io);
657
658
659 /** pcmcia_request_irq
660  *
661  * Request_irq() reserves an irq for this client.
662  *
663  * Also, since Linux only reserves irq's when they are actually
664  * hooked, we don't guarantee that an irq will still be available
665  * when the configuration is locked.  Now that I think about it,
666  * there might be a way to fix this using a dummy handler.
667  */
668
669 #ifdef CONFIG_PCMCIA_PROBE
670 static irqreturn_t test_action(int cpl, void *dev_id)
671 {
672         return IRQ_NONE;
673 }
674 #endif
675
676 int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)
677 {
678         struct pcmcia_socket *s = p_dev->socket;
679         config_t *c;
680         int ret = -EINVAL, irq = 0;
681         int type;
682
683         if (!(s->state & SOCKET_PRESENT))
684                 return -ENODEV;
685         c = p_dev->function_config;
686         if (c->state & CONFIG_LOCKED)
687                 return -EACCES;
688         if (c->state & CONFIG_IRQ_REQ) {
689                 ds_dbg(s, 0, "IRQ already configured\n");
690                 return -EBUSY;
691         }
692
693         /* Decide what type of interrupt we are registering */
694         type = 0;
695         if (s->functions > 1)           /* All of this ought to be handled higher up */
696                 type = IRQF_SHARED;
697         if (req->Attributes & IRQ_TYPE_DYNAMIC_SHARING)
698                 type = IRQF_SHARED;
699
700 #ifdef CONFIG_PCMCIA_PROBE
701
702 #ifdef IRQ_NOAUTOEN
703         /* if the underlying IRQ infrastructure allows for it, only allocate
704          * the IRQ, but do not enable it
705          */
706         if (!(req->Attributes & IRQ_HANDLE_PRESENT))
707                 type |= IRQ_NOAUTOEN;
708 #endif /* IRQ_NOAUTOEN */
709
710         if (s->irq.AssignedIRQ != 0) {
711                 /* If the interrupt is already assigned, it must be the same */
712                 irq = s->irq.AssignedIRQ;
713         } else {
714                 int try;
715                 u32 mask = s->irq_mask;
716                 void *data = &p_dev->dev.driver; /* something unique to this device */
717
718                 for (try = 0; try < 64; try++) {
719                         irq = try % 32;
720
721                         /* marked as available by driver, and not blocked by userspace? */
722                         if (!((mask >> irq) & 1))
723                                 continue;
724
725                         /* avoid an IRQ which is already used by a PCMCIA card */
726                         if ((try < 32) && pcmcia_used_irq[irq])
727                                 continue;
728
729                         /* register the correct driver, if possible, of check whether
730                          * registering a dummy handle works, i.e. if the IRQ isn't
731                          * marked as used by the kernel resource management core */
732                         ret = request_irq(irq,
733                                           (req->Attributes & IRQ_HANDLE_PRESENT) ? req->Handler : test_action,
734                                           type,
735                                           p_dev->devname,
736                                           (req->Attributes & IRQ_HANDLE_PRESENT) ? req->Instance : data);
737                         if (!ret) {
738                                 if (!(req->Attributes & IRQ_HANDLE_PRESENT))
739                                         free_irq(irq, data);
740                                 break;
741                         }
742                 }
743         }
744 #endif
745         /* only assign PCI irq if no IRQ already assigned */
746         if (ret && !s->irq.AssignedIRQ) {
747                 if (!s->pci_irq)
748                         return ret;
749                 type = IRQF_SHARED;
750                 irq = s->pci_irq;
751         }
752
753         if (ret && (req->Attributes & IRQ_HANDLE_PRESENT)) {
754                 ret = request_irq(irq, req->Handler, type,
755                                   p_dev->devname, req->Instance);
756                 if (ret)
757                         return ret;
758         }
759
760         /* Make sure the fact the request type was overridden is passed back */
761         if (type == IRQF_SHARED && !(req->Attributes & IRQ_TYPE_DYNAMIC_SHARING)) {
762                 req->Attributes |= IRQ_TYPE_DYNAMIC_SHARING;
763                 dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: "
764                         "request for exclusive IRQ could not be fulfilled.\n");
765                 dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: the driver "
766                         "needs updating to supported shared IRQ lines.\n");
767         }
768         c->irq.Attributes = req->Attributes;
769         s->irq.AssignedIRQ = req->AssignedIRQ = irq;
770         s->irq.Config++;
771
772         c->state |= CONFIG_IRQ_REQ;
773         p_dev->_irq = 1;
774
775 #ifdef CONFIG_PCMCIA_PROBE
776         pcmcia_used_irq[irq]++;
777 #endif
778
779         return 0;
780 } /* pcmcia_request_irq */
781 EXPORT_SYMBOL(pcmcia_request_irq);
782
783
784 /** pcmcia_request_window
785  *
786  * Request_window() establishes a mapping between card memory space
787  * and system memory space.
788  */
789 int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req, window_handle_t *wh)
790 {
791         struct pcmcia_socket *s = (*p_dev)->socket;
792         window_t *win;
793         u_long align;
794         int w;
795
796         if (!(s->state & SOCKET_PRESENT))
797                 return -ENODEV;
798         if (req->Attributes & (WIN_PAGED | WIN_SHARED)) {
799                 ds_dbg(s, 0, "bad attribute setting for iomem region\n");
800                 return -EINVAL;
801         }
802
803         /* Window size defaults to smallest available */
804         if (req->Size == 0)
805                 req->Size = s->map_size;
806         align = (((s->features & SS_CAP_MEM_ALIGN) ||
807                   (req->Attributes & WIN_STRICT_ALIGN)) ?
808                  req->Size : s->map_size);
809         if (req->Size & (s->map_size-1)) {
810                 ds_dbg(s, 0, "invalid map size\n");
811                 return -EINVAL;
812         }
813         if ((req->Base && (s->features & SS_CAP_STATIC_MAP)) ||
814             (req->Base & (align-1))) {
815                 ds_dbg(s, 0, "invalid base address\n");
816                 return -EINVAL;
817         }
818         if (req->Base)
819                 align = 0;
820
821         /* Allocate system memory window */
822         for (w = 0; w < MAX_WIN; w++)
823                 if (!(s->state & SOCKET_WIN_REQ(w))) break;
824         if (w == MAX_WIN) {
825                 ds_dbg(s, 0, "all windows are used already\n");
826                 return -EINVAL;
827         }
828
829         win = &s->win[w];
830         win->magic = WINDOW_MAGIC;
831         win->index = w;
832         win->handle = *p_dev;
833         win->sock = s;
834
835         if (!(s->features & SS_CAP_STATIC_MAP)) {
836                 win->ctl.res = pcmcia_find_mem_region(req->Base, req->Size, align,
837                                                       (req->Attributes & WIN_MAP_BELOW_1MB), s);
838                 if (!win->ctl.res) {
839                         ds_dbg(s, 0, "allocating mem region failed\n");
840                         return -EINVAL;
841                 }
842         }
843         (*p_dev)->_win |= CLIENT_WIN_REQ(w);
844
845         /* Configure the socket controller */
846         win->ctl.map = w+1;
847         win->ctl.flags = 0;
848         win->ctl.speed = req->AccessSpeed;
849         if (req->Attributes & WIN_MEMORY_TYPE)
850                 win->ctl.flags |= MAP_ATTRIB;
851         if (req->Attributes & WIN_ENABLE)
852                 win->ctl.flags |= MAP_ACTIVE;
853         if (req->Attributes & WIN_DATA_WIDTH_16)
854                 win->ctl.flags |= MAP_16BIT;
855         if (req->Attributes & WIN_USE_WAIT)
856                 win->ctl.flags |= MAP_USE_WAIT;
857         win->ctl.card_start = 0;
858         if (s->ops->set_mem_map(s, &win->ctl) != 0)
859                 return CS_BAD_ARGS;
860         s->state |= SOCKET_WIN_REQ(w);
861
862         /* Return window handle */
863         if (s->features & SS_CAP_STATIC_MAP) {
864                 req->Base = win->ctl.static_start;
865         } else {
866                 req->Base = win->ctl.res->start;
867         }
868         *wh = win;
869
870         return 0;
871 } /* pcmcia_request_window */
872 EXPORT_SYMBOL(pcmcia_request_window);
873
874 void pcmcia_disable_device(struct pcmcia_device *p_dev) {
875         pcmcia_release_configuration(p_dev);
876         pcmcia_release_io(p_dev, &p_dev->io);
877         pcmcia_release_irq(p_dev, &p_dev->irq);
878         if (p_dev->win)
879                 pcmcia_release_window(p_dev->win);
880 }
881 EXPORT_SYMBOL(pcmcia_disable_device);
882
883
884 struct pcmcia_cfg_mem {
885         tuple_t tuple;
886         cisparse_t parse;
887         u8 buf[256];
888         cistpl_cftable_entry_t dflt;
889 };
890
891 /**
892  * pcmcia_loop_config() - loop over configuration options
893  * @p_dev:      the struct pcmcia_device which we need to loop for.
894  * @conf_check: function to call for each configuration option.
895  *              It gets passed the struct pcmcia_device, the CIS data
896  *              describing the configuration option, and private data
897  *              being passed to pcmcia_loop_config()
898  * @priv_data:  private data to be passed to the conf_check function.
899  *
900  * pcmcia_loop_config() loops over all configuration options, and calls
901  * the driver-specific conf_check() for each one, checking whether
902  * it is a valid one.
903  */
904 int pcmcia_loop_config(struct pcmcia_device *p_dev,
905                        int      (*conf_check)   (struct pcmcia_device *p_dev,
906                                                  cistpl_cftable_entry_t *cfg,
907                                                  cistpl_cftable_entry_t *dflt,
908                                                  unsigned int vcc,
909                                                  void *priv_data),
910                        void *priv_data)
911 {
912         struct pcmcia_cfg_mem *cfg_mem;
913
914         tuple_t *tuple;
915         int ret = -ENODEV;
916         unsigned int vcc;
917
918         cfg_mem = kzalloc(sizeof(struct pcmcia_cfg_mem), GFP_KERNEL);
919         if (cfg_mem == NULL)
920                 return -ENOMEM;
921
922         /* get the current Vcc setting */
923         vcc = p_dev->socket->socket.Vcc;
924
925         tuple = &cfg_mem->tuple;
926         tuple->TupleData = cfg_mem->buf;
927         tuple->TupleDataMax = 255;
928         tuple->TupleOffset = 0;
929         tuple->DesiredTuple = CISTPL_CFTABLE_ENTRY;
930         tuple->Attributes = 0;
931
932         ret = pcmcia_get_first_tuple(p_dev, tuple);
933         while (!ret) {
934                 cistpl_cftable_entry_t *cfg = &cfg_mem->parse.cftable_entry;
935
936                 if (pcmcia_get_tuple_data(p_dev, tuple))
937                         goto next_entry;
938
939                 if (pcmcia_parse_tuple(p_dev, tuple, &cfg_mem->parse))
940                         goto next_entry;
941
942                 /* default values */
943                 p_dev->conf.ConfigIndex = cfg->index;
944                 if (cfg->flags & CISTPL_CFTABLE_DEFAULT)
945                         cfg_mem->dflt = *cfg;
946
947                 ret = conf_check(p_dev, cfg, &cfg_mem->dflt, vcc, priv_data);
948                 if (!ret)
949                         break;
950
951 next_entry:
952                 ret = pcmcia_get_next_tuple(p_dev, tuple);
953         }
954
955         return ret;
956 }
957 EXPORT_SYMBOL(pcmcia_loop_config);