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