]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/pcmcia/pcmcia_resource.c
Merge branch 'fix/asoc' into for-linus
[net-next-2.6.git] / 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 #include <linux/slab.h>
25
26 #include <asm/irq.h>
27
28 #include <pcmcia/ss.h>
29 #include <pcmcia/cs.h>
30 #include <pcmcia/cistpl.h>
31 #include <pcmcia/cisreg.h>
32 #include <pcmcia/ds.h>
33
34 #include "cs_internal.h"
35
36
37 /* Access speed for IO windows */
38 static int io_speed;
39 module_param(io_speed, int, 0444);
40
41
42 int pcmcia_validate_mem(struct pcmcia_socket *s)
43 {
44         if (s->resource_ops->validate_mem)
45                 return s->resource_ops->validate_mem(s);
46         /* if there is no callback, we can assume that everything is OK */
47         return 0;
48 }
49
50 struct resource *pcmcia_find_mem_region(u_long base, u_long num, u_long align,
51                                  int low, struct pcmcia_socket *s)
52 {
53         if (s->resource_ops->find_mem)
54                 return s->resource_ops->find_mem(base, num, align, low, s);
55         return NULL;
56 }
57
58
59 static void release_io_space(struct pcmcia_socket *s, struct resource *res)
60 {
61         resource_size_t num = resource_size(res);
62         int i;
63
64         dev_dbg(&s->dev, "release_io_space for %pR\n", res);
65
66         for (i = 0; i < MAX_IO_WIN; i++) {
67                 if (!s->io[i].res)
68                         continue;
69                 if ((s->io[i].res->start <= res->start) &&
70                     (s->io[i].res->end >= res->end)) {
71                         s->io[i].InUse -= num;
72                         if (res->parent)
73                                 release_resource(res);
74                         res->start = res->end = 0;
75                         res->flags = IORESOURCE_IO;
76                         /* Free the window if no one else is using it */
77                         if (s->io[i].InUse == 0) {
78                                 release_resource(s->io[i].res);
79                                 kfree(s->io[i].res);
80                                 s->io[i].res = NULL;
81                         }
82                 }
83         }
84 } /* release_io_space */
85
86 /** alloc_io_space
87  *
88  * Special stuff for managing IO windows, because they are scarce
89  */
90 static int alloc_io_space(struct pcmcia_socket *s, struct resource *res,
91                         unsigned int lines)
92 {
93         unsigned int align;
94         unsigned int base = res->start;
95         unsigned int num = res->end;
96         int ret;
97
98         res->flags |= IORESOURCE_IO;
99
100         dev_dbg(&s->dev, "alloc_io_space request for %pR, %d lines\n",
101                 res, lines);
102
103         align = base ? (lines ? 1<<lines : 0) : 1;
104         if (align && (align < num)) {
105                 if (base) {
106                         dev_dbg(&s->dev, "odd IO request\n");
107                         align = 0;
108                 } else
109                         while (align && (align < num))
110                                 align <<= 1;
111         }
112         if (base & ~(align-1)) {
113                 dev_dbg(&s->dev, "odd IO request\n");
114                 align = 0;
115         }
116
117         ret = s->resource_ops->find_io(s, res->flags, &base, num, align,
118                                 &res->parent);
119         if (ret) {
120                 dev_dbg(&s->dev, "alloc_io_space request failed (%d)\n", ret);
121                 return -EINVAL;
122         }
123
124         res->start = base;
125         res->end = res->start + num - 1;
126
127         if (res->parent) {
128                 ret = request_resource(res->parent, res);
129                 if (ret) {
130                         dev_warn(&s->dev,
131                                 "request_resource %pR failed: %d\n", res, ret);
132                         res->parent = NULL;
133                         release_io_space(s, res);
134                 }
135         }
136         dev_dbg(&s->dev, "alloc_io_space request result %d: %pR\n", ret, res);
137         return ret;
138 } /* alloc_io_space */
139
140
141 /**
142  * pcmcia_access_config() - read or write card configuration registers
143  *
144  * pcmcia_access_config() reads and writes configuration registers in
145  * attribute memory.  Memory window 0 is reserved for this and the tuple
146  * reading services. Drivers must use pcmcia_read_config_byte() or
147  * pcmcia_write_config_byte().
148  */
149 static int pcmcia_access_config(struct pcmcia_device *p_dev,
150                                 off_t where, u8 *val,
151                                 int (*accessf) (struct pcmcia_socket *s,
152                                                 int attr, unsigned int addr,
153                                                 unsigned int len, void *ptr))
154 {
155         struct pcmcia_socket *s;
156         config_t *c;
157         int addr;
158         int ret = 0;
159
160         s = p_dev->socket;
161
162         mutex_lock(&s->ops_mutex);
163         c = p_dev->function_config;
164
165         if (!(c->state & CONFIG_LOCKED)) {
166                 dev_dbg(&p_dev->dev, "Configuration isnt't locked\n");
167                 mutex_unlock(&s->ops_mutex);
168                 return -EACCES;
169         }
170
171         addr = (c->ConfigBase + where) >> 1;
172
173         ret = accessf(s, 1, addr, 1, val);
174
175         mutex_unlock(&s->ops_mutex);
176
177         return ret;
178 } /* pcmcia_access_config */
179
180
181 /**
182  * pcmcia_read_config_byte() - read a byte from a card configuration register
183  *
184  * pcmcia_read_config_byte() reads a byte from a configuration register in
185  * attribute memory.
186  */
187 int pcmcia_read_config_byte(struct pcmcia_device *p_dev, off_t where, u8 *val)
188 {
189         return pcmcia_access_config(p_dev, where, val, pcmcia_read_cis_mem);
190 }
191 EXPORT_SYMBOL(pcmcia_read_config_byte);
192
193
194 /**
195  * pcmcia_write_config_byte() - write a byte to a card configuration register
196  *
197  * pcmcia_write_config_byte() writes a byte to a configuration register in
198  * attribute memory.
199  */
200 int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val)
201 {
202         return pcmcia_access_config(p_dev, where, &val, pcmcia_write_cis_mem);
203 }
204 EXPORT_SYMBOL(pcmcia_write_config_byte);
205
206
207 int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t wh,
208                         unsigned int offset)
209 {
210         struct pcmcia_socket *s = p_dev->socket;
211         struct resource *res = wh;
212         unsigned int w;
213         int ret;
214
215         w = ((res->flags & IORESOURCE_BITS & WIN_FLAGS_REQ) >> 2) - 1;
216         if (w >= MAX_WIN)
217                 return -EINVAL;
218
219         mutex_lock(&s->ops_mutex);
220         s->win[w].card_start = offset;
221         ret = s->ops->set_mem_map(s, &s->win[w]);
222         if (ret)
223                 dev_warn(&p_dev->dev, "failed to set_mem_map\n");
224         mutex_unlock(&s->ops_mutex);
225         return ret;
226 } /* pcmcia_map_mem_page */
227 EXPORT_SYMBOL(pcmcia_map_mem_page);
228
229
230 /** pcmcia_modify_configuration
231  *
232  * Modify a locked socket configuration
233  */
234 int pcmcia_modify_configuration(struct pcmcia_device *p_dev,
235                                 modconf_t *mod)
236 {
237         struct pcmcia_socket *s;
238         config_t *c;
239         int ret;
240
241         s = p_dev->socket;
242
243         mutex_lock(&s->ops_mutex);
244         c = p_dev->function_config;
245
246         if (!(s->state & SOCKET_PRESENT)) {
247                 dev_dbg(&p_dev->dev, "No card present\n");
248                 ret = -ENODEV;
249                 goto unlock;
250         }
251         if (!(c->state & CONFIG_LOCKED)) {
252                 dev_dbg(&p_dev->dev, "Configuration isnt't locked\n");
253                 ret = -EACCES;
254                 goto unlock;
255         }
256
257         if (mod->Attributes & (CONF_IRQ_CHANGE_VALID | CONF_VCC_CHANGE_VALID)) {
258                 dev_dbg(&p_dev->dev,
259                         "changing Vcc or IRQ is not allowed at this time\n");
260                 ret = -EINVAL;
261                 goto unlock;
262         }
263
264         /* We only allow changing Vpp1 and Vpp2 to the same value */
265         if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) &&
266             (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
267                 if (mod->Vpp1 != mod->Vpp2) {
268                         dev_dbg(&p_dev->dev,
269                                 "Vpp1 and Vpp2 must be the same\n");
270                         ret = -EINVAL;
271                         goto unlock;
272                 }
273                 s->socket.Vpp = mod->Vpp1;
274                 if (s->ops->set_socket(s, &s->socket)) {
275                         dev_printk(KERN_WARNING, &p_dev->dev,
276                                    "Unable to set VPP\n");
277                         ret = -EIO;
278                         goto unlock;
279                 }
280         } else if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) ||
281                    (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
282                 dev_dbg(&p_dev->dev,
283                         "changing Vcc is not allowed at this time\n");
284                 ret = -EINVAL;
285                 goto unlock;
286         }
287
288         if (mod->Attributes & CONF_IO_CHANGE_WIDTH) {
289                 pccard_io_map io_off = { 0, 0, 0, 0, 1 };
290                 pccard_io_map io_on;
291                 int i;
292
293                 io_on.speed = io_speed;
294                 for (i = 0; i < MAX_IO_WIN; i++) {
295                         if (!s->io[i].res)
296                                 continue;
297                         io_off.map = i;
298                         io_on.map = i;
299
300                         io_on.flags = MAP_ACTIVE | IO_DATA_PATH_WIDTH_8;
301                         io_on.start = s->io[i].res->start;
302                         io_on.stop = s->io[i].res->end;
303
304                         s->ops->set_io_map(s, &io_off);
305                         mdelay(40);
306                         s->ops->set_io_map(s, &io_on);
307                 }
308         }
309         ret = 0;
310 unlock:
311         mutex_unlock(&s->ops_mutex);
312
313         return ret;
314 } /* modify_configuration */
315 EXPORT_SYMBOL(pcmcia_modify_configuration);
316
317
318 int pcmcia_release_configuration(struct pcmcia_device *p_dev)
319 {
320         pccard_io_map io = { 0, 0, 0, 0, 1 };
321         struct pcmcia_socket *s = p_dev->socket;
322         config_t *c;
323         int i;
324
325         mutex_lock(&s->ops_mutex);
326         c = p_dev->function_config;
327         if (p_dev->_locked) {
328                 p_dev->_locked = 0;
329                 if (--(s->lock_count) == 0) {
330                         s->socket.flags = SS_OUTPUT_ENA;   /* Is this correct? */
331                         s->socket.Vpp = 0;
332                         s->socket.io_irq = 0;
333                         s->ops->set_socket(s, &s->socket);
334                 }
335         }
336         if (c->state & CONFIG_LOCKED) {
337                 c->state &= ~CONFIG_LOCKED;
338                 if (c->state & CONFIG_IO_REQ)
339                         for (i = 0; i < MAX_IO_WIN; i++) {
340                                 if (!s->io[i].res)
341                                         continue;
342                                 s->io[i].Config--;
343                                 if (s->io[i].Config != 0)
344                                         continue;
345                                 io.map = i;
346                                 s->ops->set_io_map(s, &io);
347                         }
348         }
349         mutex_unlock(&s->ops_mutex);
350
351         return 0;
352 } /* pcmcia_release_configuration */
353
354
355 /** pcmcia_release_io
356  *
357  * Release_io() releases the I/O ranges allocated by a client.  This
358  * may be invoked some time after a card ejection has already dumped
359  * the actual socket configuration, so if the client is "stale", we
360  * don't bother checking the port ranges against the current socket
361  * values.
362  */
363 static int pcmcia_release_io(struct pcmcia_device *p_dev)
364 {
365         struct pcmcia_socket *s = p_dev->socket;
366         int ret = -EINVAL;
367         config_t *c;
368
369         mutex_lock(&s->ops_mutex);
370         if (!p_dev->_io)
371                 goto out;
372
373         c = p_dev->function_config;
374
375         release_io_space(s, &c->io[0]);
376
377         if (c->io[1].end)
378                 release_io_space(s, &c->io[1]);
379
380         p_dev->_io = 0;
381         c->state &= ~CONFIG_IO_REQ;
382
383 out:
384         mutex_unlock(&s->ops_mutex);
385
386         return ret;
387 } /* pcmcia_release_io */
388
389
390 int pcmcia_release_window(struct pcmcia_device *p_dev, struct resource *res)
391 {
392         struct pcmcia_socket *s = p_dev->socket;
393         pccard_mem_map *win;
394         unsigned int w;
395
396         dev_dbg(&p_dev->dev, "releasing window %pR\n", res);
397
398         w = ((res->flags & IORESOURCE_BITS & WIN_FLAGS_REQ) >> 2) - 1;
399         if (w >= MAX_WIN)
400                 return -EINVAL;
401
402         mutex_lock(&s->ops_mutex);
403         win = &s->win[w];
404
405         if (!(p_dev->_win & CLIENT_WIN_REQ(w))) {
406                 dev_dbg(&p_dev->dev, "not releasing unknown window\n");
407                 mutex_unlock(&s->ops_mutex);
408                 return -EINVAL;
409         }
410
411         /* Shut down memory window */
412         win->flags &= ~MAP_ACTIVE;
413         s->ops->set_mem_map(s, win);
414         s->state &= ~SOCKET_WIN_REQ(w);
415
416         /* Release system memory */
417         if (win->res) {
418                 release_resource(res);
419                 release_resource(win->res);
420                 kfree(win->res);
421                 win->res = NULL;
422         }
423         p_dev->_win &= ~CLIENT_WIN_REQ(w);
424         mutex_unlock(&s->ops_mutex);
425
426         return 0;
427 } /* pcmcia_release_window */
428 EXPORT_SYMBOL(pcmcia_release_window);
429
430
431 int pcmcia_request_configuration(struct pcmcia_device *p_dev,
432                                  config_req_t *req)
433 {
434         int i;
435         u_int base;
436         struct pcmcia_socket *s = p_dev->socket;
437         config_t *c;
438         pccard_io_map iomap;
439
440         if (!(s->state & SOCKET_PRESENT))
441                 return -ENODEV;
442
443         if (req->IntType & INT_CARDBUS) {
444                 dev_dbg(&p_dev->dev, "IntType may not be INT_CARDBUS\n");
445                 return -EINVAL;
446         }
447
448         mutex_lock(&s->ops_mutex);
449         c = p_dev->function_config;
450         if (c->state & CONFIG_LOCKED) {
451                 mutex_unlock(&s->ops_mutex);
452                 dev_dbg(&p_dev->dev, "Configuration is locked\n");
453                 return -EACCES;
454         }
455
456         /* Do power control.  We don't allow changes in Vcc. */
457         s->socket.Vpp = req->Vpp;
458         if (s->ops->set_socket(s, &s->socket)) {
459                 mutex_unlock(&s->ops_mutex);
460                 dev_printk(KERN_WARNING, &p_dev->dev,
461                            "Unable to set socket state\n");
462                 return -EINVAL;
463         }
464
465         /* Pick memory or I/O card, DMA mode, interrupt */
466         c->IntType = req->IntType;
467         c->Attributes = req->Attributes;
468         if (req->IntType & INT_MEMORY_AND_IO)
469                 s->socket.flags |= SS_IOCARD;
470         if (req->IntType & INT_ZOOMED_VIDEO)
471                 s->socket.flags |= SS_ZVCARD | SS_IOCARD;
472         if (req->Attributes & CONF_ENABLE_DMA)
473                 s->socket.flags |= SS_DMA_MODE;
474         if (req->Attributes & CONF_ENABLE_SPKR)
475                 s->socket.flags |= SS_SPKR_ENA;
476         if (req->Attributes & CONF_ENABLE_IRQ)
477                 s->socket.io_irq = s->pcmcia_irq;
478         else
479                 s->socket.io_irq = 0;
480         s->ops->set_socket(s, &s->socket);
481         s->lock_count++;
482
483         /* Set up CIS configuration registers */
484         base = c->ConfigBase = req->ConfigBase;
485         c->CardValues = req->Present;
486         if (req->Present & PRESENT_COPY) {
487                 c->Copy = req->Copy;
488                 pcmcia_write_cis_mem(s, 1, (base + CISREG_SCR)>>1, 1, &c->Copy);
489         }
490         if (req->Present & PRESENT_OPTION) {
491                 if (s->functions == 1) {
492                         c->Option = req->ConfigIndex & COR_CONFIG_MASK;
493                 } else {
494                         c->Option = req->ConfigIndex & COR_MFC_CONFIG_MASK;
495                         c->Option |= COR_FUNC_ENA|COR_IREQ_ENA;
496                         if (req->Present & PRESENT_IOBASE_0)
497                                 c->Option |= COR_ADDR_DECODE;
498                 }
499                 if ((req->Attributes & CONF_ENABLE_IRQ) &&
500                         !(req->Attributes & CONF_ENABLE_PULSE_IRQ))
501                         c->Option |= COR_LEVEL_REQ;
502                 pcmcia_write_cis_mem(s, 1, (base + CISREG_COR)>>1, 1, &c->Option);
503                 mdelay(40);
504         }
505         if (req->Present & PRESENT_STATUS) {
506                 c->Status = req->Status;
507                 pcmcia_write_cis_mem(s, 1, (base + CISREG_CCSR)>>1, 1, &c->Status);
508         }
509         if (req->Present & PRESENT_PIN_REPLACE) {
510                 c->Pin = req->Pin;
511                 pcmcia_write_cis_mem(s, 1, (base + CISREG_PRR)>>1, 1, &c->Pin);
512         }
513         if (req->Present & PRESENT_EXT_STATUS) {
514                 c->ExtStatus = req->ExtStatus;
515                 pcmcia_write_cis_mem(s, 1, (base + CISREG_ESR)>>1, 1, &c->ExtStatus);
516         }
517         if (req->Present & PRESENT_IOBASE_0) {
518                 u8 b = c->io[0].start & 0xff;
519                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_0)>>1, 1, &b);
520                 b = (c->io[0].start >> 8) & 0xff;
521                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_1)>>1, 1, &b);
522         }
523         if (req->Present & PRESENT_IOSIZE) {
524                 u8 b = resource_size(&c->io[0]) + resource_size(&c->io[1]) - 1;
525                 pcmcia_write_cis_mem(s, 1, (base + CISREG_IOSIZE)>>1, 1, &b);
526         }
527
528         /* Configure I/O windows */
529         if (c->state & CONFIG_IO_REQ) {
530                 iomap.speed = io_speed;
531                 for (i = 0; i < MAX_IO_WIN; i++)
532                         if (s->io[i].res) {
533                                 iomap.map = i;
534                                 iomap.flags = MAP_ACTIVE;
535                                 switch (s->io[i].res->flags & IO_DATA_PATH_WIDTH) {
536                                 case IO_DATA_PATH_WIDTH_16:
537                                         iomap.flags |= MAP_16BIT; break;
538                                 case IO_DATA_PATH_WIDTH_AUTO:
539                                         iomap.flags |= MAP_AUTOSZ; break;
540                                 default:
541                                         break;
542                                 }
543                                 iomap.start = s->io[i].res->start;
544                                 iomap.stop = s->io[i].res->end;
545                                 s->ops->set_io_map(s, &iomap);
546                                 s->io[i].Config++;
547                         }
548         }
549
550         c->state |= CONFIG_LOCKED;
551         p_dev->_locked = 1;
552         mutex_unlock(&s->ops_mutex);
553         return 0;
554 } /* pcmcia_request_configuration */
555 EXPORT_SYMBOL(pcmcia_request_configuration);
556
557
558 /**
559  * pcmcia_request_io() - attempt to reserve port ranges for PCMCIA devices
560  *
561  * pcmcia_request_io() attepts to reserve the IO port ranges specified in
562  * &struct pcmcia_device @p_dev->resource[0] and @p_dev->resource[1]. The
563  * "start" value is the requested start of the IO port resource; "end"
564  * reflects the number of ports requested. The number of IO lines requested
565  * is specified in &struct pcmcia_device @p_dev->io_lines.
566  */
567 int pcmcia_request_io(struct pcmcia_device *p_dev)
568 {
569         struct pcmcia_socket *s = p_dev->socket;
570         config_t *c = p_dev->function_config;
571         int ret = -EINVAL;
572
573         mutex_lock(&s->ops_mutex);
574         dev_dbg(&p_dev->dev, "pcmcia_request_io: %pR , %pR",
575                 &c->io[0], &c->io[1]);
576
577         if (!(s->state & SOCKET_PRESENT)) {
578                 dev_dbg(&p_dev->dev, "pcmcia_request_io: No card present\n");
579                 goto out;
580         }
581
582         if (c->state & CONFIG_LOCKED) {
583                 dev_dbg(&p_dev->dev, "Configuration is locked\n");
584                 goto out;
585         }
586         if (c->state & CONFIG_IO_REQ) {
587                 dev_dbg(&p_dev->dev, "IO already configured\n");
588                 goto out;
589         }
590
591         ret = alloc_io_space(s, &c->io[0], p_dev->io_lines);
592         if (ret)
593                 goto out;
594
595         if (c->io[1].end) {
596                 ret = alloc_io_space(s, &c->io[1], p_dev->io_lines);
597                 if (ret) {
598                         release_io_space(s, &c->io[0]);
599                         goto out;
600                 }
601         } else
602                 c->io[1].start = 0;
603
604         c->state |= CONFIG_IO_REQ;
605         p_dev->_io = 1;
606
607         dev_dbg(&p_dev->dev, "pcmcia_request_io succeeded: %pR , %pR",
608                 &c->io[0], &c->io[1]);
609 out:
610         mutex_unlock(&s->ops_mutex);
611
612         return ret;
613 } /* pcmcia_request_io */
614 EXPORT_SYMBOL(pcmcia_request_io);
615
616
617 /**
618  * pcmcia_request_irq() - attempt to request a IRQ for a PCMCIA device
619  *
620  * pcmcia_request_irq() is a wrapper around request_irq which will allow
621  * the PCMCIA core to clean up the registration in pcmcia_disable_device().
622  * Drivers are free to use request_irq() directly, but then they need to
623  * call free_irq themselfves, too. Also, only IRQF_SHARED capable IRQ
624  * handlers are allowed.
625  */
626 int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev,
627                                     irq_handler_t handler)
628 {
629         int ret;
630
631         if (!p_dev->irq)
632                 return -EINVAL;
633
634         ret = request_irq(p_dev->irq, handler, IRQF_SHARED,
635                         p_dev->devname, p_dev->priv);
636         if (!ret)
637                 p_dev->_irq = 1;
638
639         return ret;
640 }
641 EXPORT_SYMBOL(pcmcia_request_irq);
642
643
644 /**
645  * pcmcia_request_exclusive_irq() - attempt to request an exclusive IRQ first
646  *
647  * pcmcia_request_exclusive_irq() is a wrapper around request_irq which
648  * attempts first to request an exclusive IRQ. If it fails, it also accepts
649  * a shared IRQ, but prints out a warning. PCMCIA drivers should allow for
650  * IRQ sharing and either use request_irq directly (then they need to call
651  * free_irq themselves, too), or the pcmcia_request_irq() function.
652  */
653 int __must_check
654 __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
655                         irq_handler_t handler)
656 {
657         int ret;
658
659         if (!p_dev->irq)
660                 return -EINVAL;
661
662         ret = request_irq(p_dev->irq, handler, 0, p_dev->devname, p_dev->priv);
663         if (ret) {
664                 ret = pcmcia_request_irq(p_dev, handler);
665                 dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: "
666                         "request for exclusive IRQ could not be fulfilled.\n");
667                 dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: the driver "
668                         "needs updating to supported shared IRQ lines.\n");
669         }
670         if (ret)
671                 dev_printk(KERN_INFO, &p_dev->dev, "request_irq() failed\n");
672         else
673                 p_dev->_irq = 1;
674
675         return ret;
676 } /* pcmcia_request_exclusive_irq */
677 EXPORT_SYMBOL(__pcmcia_request_exclusive_irq);
678
679
680 #ifdef CONFIG_PCMCIA_PROBE
681
682 /* mask of IRQs already reserved by other cards, we should avoid using them */
683 static u8 pcmcia_used_irq[32];
684
685 static irqreturn_t test_action(int cpl, void *dev_id)
686 {
687         return IRQ_NONE;
688 }
689
690 /**
691  * pcmcia_setup_isa_irq() - determine whether an ISA IRQ can be used
692  * @p_dev - the associated PCMCIA device
693  *
694  * locking note: must be called with ops_mutex locked.
695  */
696 static int pcmcia_setup_isa_irq(struct pcmcia_device *p_dev, int type)
697 {
698         struct pcmcia_socket *s = p_dev->socket;
699         unsigned int try, irq;
700         u32 mask = s->irq_mask;
701         int ret = -ENODEV;
702
703         for (try = 0; try < 64; try++) {
704                 irq = try % 32;
705
706                 if (irq > NR_IRQS)
707                         continue;
708
709                 /* marked as available by driver, not blocked by userspace? */
710                 if (!((mask >> irq) & 1))
711                         continue;
712
713                 /* avoid an IRQ which is already used by another PCMCIA card */
714                 if ((try < 32) && pcmcia_used_irq[irq])
715                         continue;
716
717                 /* register the correct driver, if possible, to check whether
718                  * registering a dummy handle works, i.e. if the IRQ isn't
719                  * marked as used by the kernel resource management core */
720                 ret = request_irq(irq, test_action, type, p_dev->devname,
721                                   p_dev);
722                 if (!ret) {
723                         free_irq(irq, p_dev);
724                         p_dev->irq = s->pcmcia_irq = irq;
725                         pcmcia_used_irq[irq]++;
726                         break;
727                 }
728         }
729
730         return ret;
731 }
732
733 void pcmcia_cleanup_irq(struct pcmcia_socket *s)
734 {
735         pcmcia_used_irq[s->pcmcia_irq]--;
736         s->pcmcia_irq = 0;
737 }
738
739 #else /* CONFIG_PCMCIA_PROBE */
740
741 static int pcmcia_setup_isa_irq(struct pcmcia_device *p_dev, int type)
742 {
743         return -EINVAL;
744 }
745
746 void pcmcia_cleanup_irq(struct pcmcia_socket *s)
747 {
748         s->pcmcia_irq = 0;
749         return;
750 }
751
752 #endif  /* CONFIG_PCMCIA_PROBE */
753
754
755 /**
756  * pcmcia_setup_irq() - determine IRQ to be used for device
757  * @p_dev - the associated PCMCIA device
758  *
759  * locking note: must be called with ops_mutex locked.
760  */
761 int pcmcia_setup_irq(struct pcmcia_device *p_dev)
762 {
763         struct pcmcia_socket *s = p_dev->socket;
764
765         if (p_dev->irq)
766                 return 0;
767
768         /* already assigned? */
769         if (s->pcmcia_irq) {
770                 p_dev->irq = s->pcmcia_irq;
771                 return 0;
772         }
773
774         /* prefer an exclusive ISA irq */
775         if (!pcmcia_setup_isa_irq(p_dev, 0))
776                 return 0;
777
778         /* but accept a shared ISA irq */
779         if (!pcmcia_setup_isa_irq(p_dev, IRQF_SHARED))
780                 return 0;
781
782         /* but use the PCI irq otherwise */
783         if (s->pci_irq) {
784                 p_dev->irq = s->pcmcia_irq = s->pci_irq;
785                 return 0;
786         }
787
788         return -EINVAL;
789 }
790
791
792 /** pcmcia_request_window
793  *
794  * Request_window() establishes a mapping between card memory space
795  * and system memory space.
796  */
797 int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req, window_handle_t *wh)
798 {
799         struct pcmcia_socket *s = p_dev->socket;
800         pccard_mem_map *win;
801         u_long align;
802         struct resource *res;
803         int w;
804
805         if (!(s->state & SOCKET_PRESENT)) {
806                 dev_dbg(&p_dev->dev, "No card present\n");
807                 return -ENODEV;
808         }
809
810         /* Window size defaults to smallest available */
811         if (req->Size == 0)
812                 req->Size = s->map_size;
813         align = (s->features & SS_CAP_MEM_ALIGN) ? req->Size : s->map_size;
814         if (req->Size & (s->map_size-1)) {
815                 dev_dbg(&p_dev->dev, "invalid map size\n");
816                 return -EINVAL;
817         }
818         if ((req->Base && (s->features & SS_CAP_STATIC_MAP)) ||
819             (req->Base & (align-1))) {
820                 dev_dbg(&p_dev->dev, "invalid base address\n");
821                 return -EINVAL;
822         }
823         if (req->Base)
824                 align = 0;
825
826         /* Allocate system memory window */
827         mutex_lock(&s->ops_mutex);
828         for (w = 0; w < MAX_WIN; w++)
829                 if (!(s->state & SOCKET_WIN_REQ(w)))
830                         break;
831         if (w == MAX_WIN) {
832                 dev_dbg(&p_dev->dev, "all windows are used already\n");
833                 mutex_unlock(&s->ops_mutex);
834                 return -EINVAL;
835         }
836
837         win = &s->win[w];
838
839         if (!(s->features & SS_CAP_STATIC_MAP)) {
840                 win->res = pcmcia_find_mem_region(req->Base, req->Size, align,
841                                                 0, s);
842                 if (!win->res) {
843                         dev_dbg(&p_dev->dev, "allocating mem region failed\n");
844                         mutex_unlock(&s->ops_mutex);
845                         return -EINVAL;
846                 }
847         }
848         p_dev->_win |= CLIENT_WIN_REQ(w);
849
850         /* Configure the socket controller */
851         win->map = w+1;
852         win->flags = req->Attributes;
853         win->speed = req->AccessSpeed;
854         win->card_start = 0;
855
856         if (s->ops->set_mem_map(s, win) != 0) {
857                 dev_dbg(&p_dev->dev, "failed to set memory mapping\n");
858                 mutex_unlock(&s->ops_mutex);
859                 return -EIO;
860         }
861         s->state |= SOCKET_WIN_REQ(w);
862
863         /* Return window handle */
864         if (s->features & SS_CAP_STATIC_MAP)
865                 req->Base = win->static_start;
866         else
867                 req->Base = win->res->start;
868
869         /* convert to new-style resources */
870         res = p_dev->resource[w + MAX_IO_WIN];
871         res->start = req->Base;
872         res->end = req->Base + req->Size - 1;
873         res->flags &= ~IORESOURCE_BITS;
874         res->flags |= (req->Attributes & WIN_FLAGS_MAP) | (win->map << 2);
875         res->flags |= IORESOURCE_MEM;
876         res->parent = win->res;
877         if (win->res)
878                 request_resource(&iomem_resource, res);
879
880         dev_dbg(&p_dev->dev, "request_window results in %pR\n", res);
881
882         mutex_unlock(&s->ops_mutex);
883         *wh = res;
884
885         return 0;
886 } /* pcmcia_request_window */
887 EXPORT_SYMBOL(pcmcia_request_window);
888
889 void pcmcia_disable_device(struct pcmcia_device *p_dev)
890 {
891         int i;
892         for (i = 0; i < MAX_WIN; i++) {
893                 struct resource *res = p_dev->resource[MAX_IO_WIN + i];
894                 if (res->flags & WIN_FLAGS_REQ)
895                         pcmcia_release_window(p_dev, res);
896         }
897
898         pcmcia_release_configuration(p_dev);
899         pcmcia_release_io(p_dev);
900         if (p_dev->_irq) {
901                 free_irq(p_dev->irq, p_dev->priv);
902                 p_dev->_irq = 0;
903         }
904 }
905 EXPORT_SYMBOL(pcmcia_disable_device);