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