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