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