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