2 * PCMCIA 16-bit resource management functions
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.
8 * Copyright (C) 1999 David A. Hinds
9 * Copyright (C) 2004-2005 Dominik Brodowski
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.
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>
24 #include <pcmcia/cs_types.h>
25 #include <pcmcia/ss.h>
26 #include <pcmcia/cs.h>
27 #include <pcmcia/cistpl.h>
28 #include <pcmcia/cisreg.h>
29 #include <pcmcia/ds.h>
31 #include "cs_internal.h"
34 /* Access speed for IO windows */
35 static int io_speed
= 0;
36 module_param(io_speed
, int, 0444);
39 #ifdef CONFIG_PCMCIA_PROBE
41 /* mask of IRQs already reserved by other cards, we should avoid using them */
42 static u8 pcmcia_used_irq
[NR_IRQS
];
46 #ifdef CONFIG_PCMCIA_DEBUG
47 extern int ds_pc_debug
;
49 #define ds_dbg(skt, lvl, fmt, arg...) do { \
50 if (ds_pc_debug >= lvl) \
51 dev_printk(KERN_DEBUG, &skt->dev, \
52 "pcmcia_resource: " fmt, \
56 #define ds_dbg(skt, lvl, fmt, arg...) do { } while (0)
63 * Special stuff for managing IO windows, because they are scarce
66 static int alloc_io_space(struct pcmcia_socket
*s
, u_int attr
,
67 unsigned int *base
, unsigned int num
, u_int lines
)
70 unsigned int try, align
;
72 align
= (*base
) ? (lines
? 1<<lines
: 0) : 1;
73 if (align
&& (align
< num
)) {
75 ds_dbg(s
, 0, "odd IO request: num %#x align %#x\n",
79 while (align
&& (align
< num
)) align
<<= 1;
81 if (*base
& ~(align
-1)) {
82 ds_dbg(s
, 0, "odd IO request: base %#x align %#x\n",
86 if ((s
->features
& SS_CAP_STATIC_MAP
) && s
->io_offset
) {
87 *base
= s
->io_offset
| (*base
& 0x0fff);
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.
94 for (i
= 0; i
< MAX_IO_WIN
; i
++)
95 if ((s
->io
[i
].res
) && *base
&&
96 ((s
->io
[i
].res
->start
& (align
-1)) == *base
))
98 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
100 s
->io
[i
].res
= pcmcia_find_io_region(*base
, num
, align
, s
);
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
;
108 } else if ((s
->io
[i
].res
->flags
& IORESOURCE_BITS
) != (attr
& IORESOURCE_BITS
))
110 /* Try to extend top of window */
111 try = s
->io
[i
].res
->end
+ 1;
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) {
116 s
->io
[i
].InUse
+= num
;
119 /* Try to extend bottom of window */
120 try = s
->io
[i
].res
->start
- num
;
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) {
125 s
->io
[i
].InUse
+= num
;
129 return (i
== MAX_IO_WIN
);
130 } /* alloc_io_space */
133 static void release_io_space(struct pcmcia_socket
*s
, unsigned int base
,
138 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
141 if ((s
->io
[i
].res
->start
<= base
) &&
142 (s
->io
[i
].res
->end
>= base
+num
-1)) {
143 s
->io
[i
].InUse
-= num
;
144 /* Free the window if no one else is using it */
145 if (s
->io
[i
].InUse
== 0) {
146 release_resource(s
->io
[i
].res
);
152 } /* release_io_space */
155 /** pccard_access_configuration_register
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.
162 int pcmcia_access_configuration_register(struct pcmcia_device
*p_dev
,
165 struct pcmcia_socket
*s
;
170 if (!p_dev
|| !p_dev
->function_config
)
174 c
= p_dev
->function_config
;
176 if (!(c
->state
& CONFIG_LOCKED
))
179 addr
= (c
->ConfigBase
+ reg
->Offset
) >> 1;
181 switch (reg
->Action
) {
183 pcmcia_read_cis_mem(s
, 1, addr
, 1, &val
);
188 pcmcia_write_cis_mem(s
, 1, addr
, 1, &val
);
195 } /* pcmcia_access_configuration_register */
196 EXPORT_SYMBOL(pcmcia_access_configuration_register
);
199 /** pcmcia_get_window
201 int pcmcia_get_window(struct pcmcia_socket
*s
, window_handle_t
*handle
,
202 int idx
, win_req_t
*req
)
207 if (!s
|| !(s
->state
& SOCKET_PRESENT
))
209 for (w
= idx
; w
< MAX_WIN
; w
++)
210 if (s
->state
& SOCKET_WIN_REQ(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
;
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
;
229 } /* pcmcia_get_window */
230 EXPORT_SYMBOL(pcmcia_get_window
);
233 /** pcmcia_get_mem_page
235 * Change the card address of an already open memory window.
237 int pcmcia_get_mem_page(window_handle_t win
, memreq_t
*req
)
239 if ((win
== NULL
) || (win
->magic
!= WINDOW_MAGIC
))
242 req
->CardOffset
= win
->ctl
.card_start
;
244 } /* pcmcia_get_mem_page */
245 EXPORT_SYMBOL(pcmcia_get_mem_page
);
248 int pcmcia_map_mem_page(window_handle_t win
, memreq_t
*req
)
250 struct pcmcia_socket
*s
;
251 if ((win
== NULL
) || (win
->magic
!= WINDOW_MAGIC
))
254 if (req
->Page
!= 0) {
255 ds_dbg(s
, 0, "failure: requested page is zero\n");
258 win
->ctl
.card_start
= req
->CardOffset
;
259 if (s
->ops
->set_mem_map(s
, &win
->ctl
) != 0) {
260 ds_dbg(s
, 0, "failed to set_mem_map\n");
264 } /* pcmcia_map_mem_page */
265 EXPORT_SYMBOL(pcmcia_map_mem_page
);
268 /** pcmcia_modify_configuration
270 * Modify a locked socket configuration
272 int pcmcia_modify_configuration(struct pcmcia_device
*p_dev
,
275 struct pcmcia_socket
*s
;
279 c
= p_dev
->function_config
;
281 if (!(s
->state
& SOCKET_PRESENT
))
283 if (!(c
->state
& CONFIG_LOCKED
))
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
;
291 c
->Attributes
&= ~CONF_ENABLE_IRQ
;
292 s
->socket
.io_irq
= 0;
294 s
->ops
->set_socket(s
, &s
->socket
);
297 if (mod
->Attributes
& CONF_VCC_CHANGE_VALID
) {
298 ds_dbg(s
, 0, "changing Vcc is not allowed at this time\n");
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
) {
306 ds_dbg(s
, 0, "Vpp1 and Vpp2 must be the same\n");
309 s
->socket
.Vpp
= mod
->Vpp1
;
310 if (s
->ops
->set_socket(s
, &s
->socket
)) {
311 dev_printk(KERN_WARNING
, &s
->dev
,
312 "Unable to set VPP\n");
315 } else if ((mod
->Attributes
& CONF_VPP1_CHANGE_VALID
) ||
316 (mod
->Attributes
& CONF_VPP2_CHANGE_VALID
)) {
317 ds_dbg(s
, 0, "changing Vcc is not allowed at this time\n");
321 if (mod
->Attributes
& CONF_IO_CHANGE_WIDTH
) {
322 pccard_io_map io_off
= { 0, 0, 0, 0, 1 };
326 io_on
.speed
= io_speed
;
327 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
333 io_on
.flags
= MAP_ACTIVE
| IO_DATA_PATH_WIDTH_8
;
334 io_on
.start
= s
->io
[i
].res
->start
;
335 io_on
.stop
= s
->io
[i
].res
->end
;
337 s
->ops
->set_io_map(s
, &io_off
);
339 s
->ops
->set_io_map(s
, &io_on
);
344 } /* modify_configuration */
345 EXPORT_SYMBOL(pcmcia_modify_configuration
);
348 int pcmcia_release_configuration(struct pcmcia_device
*p_dev
)
350 pccard_io_map io
= { 0, 0, 0, 0, 1 };
351 struct pcmcia_socket
*s
= p_dev
->socket
;
352 config_t
*c
= p_dev
->function_config
;
355 if (p_dev
->_locked
) {
357 if (--(s
->lock_count
) == 0) {
358 s
->socket
.flags
= SS_OUTPUT_ENA
; /* Is this correct? */
360 s
->socket
.io_irq
= 0;
361 s
->ops
->set_socket(s
, &s
->socket
);
364 if (c
->state
& CONFIG_LOCKED
) {
365 c
->state
&= ~CONFIG_LOCKED
;
366 if (c
->state
& CONFIG_IO_REQ
)
367 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
371 if (s
->io
[i
].Config
!= 0)
374 s
->ops
->set_io_map(s
, &io
);
379 } /* pcmcia_release_configuration */
382 /** pcmcia_release_io
384 * Release_io() releases the I/O ranges allocated by a client. This
385 * may be invoked some time after a card ejection has already dumped
386 * the actual socket configuration, so if the client is "stale", we
387 * don't bother checking the port ranges against the current socket
390 static int pcmcia_release_io(struct pcmcia_device
*p_dev
, io_req_t
*req
)
392 struct pcmcia_socket
*s
= p_dev
->socket
;
393 config_t
*c
= p_dev
->function_config
;
400 if ((c
->io
.BasePort1
!= req
->BasePort1
) ||
401 (c
->io
.NumPorts1
!= req
->NumPorts1
) ||
402 (c
->io
.BasePort2
!= req
->BasePort2
) ||
403 (c
->io
.NumPorts2
!= req
->NumPorts2
))
406 c
->state
&= ~CONFIG_IO_REQ
;
408 release_io_space(s
, req
->BasePort1
, req
->NumPorts1
);
410 release_io_space(s
, req
->BasePort2
, req
->NumPorts2
);
413 } /* pcmcia_release_io */
416 static int pcmcia_release_irq(struct pcmcia_device
*p_dev
, irq_req_t
*req
)
418 struct pcmcia_socket
*s
= p_dev
->socket
;
419 config_t
*c
= p_dev
->function_config
;
425 if (c
->state
& CONFIG_LOCKED
)
427 if (c
->irq
.Attributes
!= req
->Attributes
) {
428 ds_dbg(s
, 0, "IRQ attributes must match assigned ones\n");
431 if (s
->irq
.AssignedIRQ
!= req
->AssignedIRQ
) {
432 ds_dbg(s
, 0, "IRQ must match assigned one\n");
435 if (--s
->irq
.Config
== 0) {
436 c
->state
&= ~CONFIG_IRQ_REQ
;
437 s
->irq
.AssignedIRQ
= 0;
440 if (req
->Attributes
& IRQ_HANDLE_PRESENT
) {
441 free_irq(req
->AssignedIRQ
, req
->Instance
);
444 #ifdef CONFIG_PCMCIA_PROBE
445 pcmcia_used_irq
[req
->AssignedIRQ
]--;
449 } /* pcmcia_release_irq */
452 int pcmcia_release_window(window_handle_t win
)
454 struct pcmcia_socket
*s
;
456 if ((win
== NULL
) || (win
->magic
!= WINDOW_MAGIC
))
459 if (!(win
->handle
->_win
& CLIENT_WIN_REQ(win
->index
)))
462 /* Shut down memory window */
463 win
->ctl
.flags
&= ~MAP_ACTIVE
;
464 s
->ops
->set_mem_map(s
, &win
->ctl
);
465 s
->state
&= ~SOCKET_WIN_REQ(win
->index
);
467 /* Release system memory */
469 release_resource(win
->ctl
.res
);
473 win
->handle
->_win
&= ~CLIENT_WIN_REQ(win
->index
);
478 } /* pcmcia_release_window */
479 EXPORT_SYMBOL(pcmcia_release_window
);
482 int pcmcia_request_configuration(struct pcmcia_device
*p_dev
,
487 struct pcmcia_socket
*s
= p_dev
->socket
;
491 if (!(s
->state
& SOCKET_PRESENT
))
494 if (req
->IntType
& INT_CARDBUS
) {
495 ds_dbg(p_dev
->socket
, 0, "IntType may not be INT_CARDBUS\n");
498 c
= p_dev
->function_config
;
499 if (c
->state
& CONFIG_LOCKED
)
502 /* Do power control. We don't allow changes in Vcc. */
503 s
->socket
.Vpp
= req
->Vpp
;
504 if (s
->ops
->set_socket(s
, &s
->socket
)) {
505 dev_printk(KERN_WARNING
, &s
->dev
,
506 "Unable to set socket state\n");
510 /* Pick memory or I/O card, DMA mode, interrupt */
511 c
->IntType
= req
->IntType
;
512 c
->Attributes
= req
->Attributes
;
513 if (req
->IntType
& INT_MEMORY_AND_IO
)
514 s
->socket
.flags
|= SS_IOCARD
;
515 if (req
->IntType
& INT_ZOOMED_VIDEO
)
516 s
->socket
.flags
|= SS_ZVCARD
| SS_IOCARD
;
517 if (req
->Attributes
& CONF_ENABLE_DMA
)
518 s
->socket
.flags
|= SS_DMA_MODE
;
519 if (req
->Attributes
& CONF_ENABLE_SPKR
)
520 s
->socket
.flags
|= SS_SPKR_ENA
;
521 if (req
->Attributes
& CONF_ENABLE_IRQ
)
522 s
->socket
.io_irq
= s
->irq
.AssignedIRQ
;
524 s
->socket
.io_irq
= 0;
525 s
->ops
->set_socket(s
, &s
->socket
);
528 /* Set up CIS configuration registers */
529 base
= c
->ConfigBase
= req
->ConfigBase
;
530 c
->CardValues
= req
->Present
;
531 if (req
->Present
& PRESENT_COPY
) {
533 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_SCR
)>>1, 1, &c
->Copy
);
535 if (req
->Present
& PRESENT_OPTION
) {
536 if (s
->functions
== 1) {
537 c
->Option
= req
->ConfigIndex
& COR_CONFIG_MASK
;
539 c
->Option
= req
->ConfigIndex
& COR_MFC_CONFIG_MASK
;
540 c
->Option
|= COR_FUNC_ENA
|COR_IREQ_ENA
;
541 if (req
->Present
& PRESENT_IOBASE_0
)
542 c
->Option
|= COR_ADDR_DECODE
;
544 if (c
->state
& CONFIG_IRQ_REQ
)
545 if (!(c
->irq
.Attributes
& IRQ_FORCED_PULSE
))
546 c
->Option
|= COR_LEVEL_REQ
;
547 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_COR
)>>1, 1, &c
->Option
);
550 if (req
->Present
& PRESENT_STATUS
) {
551 c
->Status
= req
->Status
;
552 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_CCSR
)>>1, 1, &c
->Status
);
554 if (req
->Present
& PRESENT_PIN_REPLACE
) {
556 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_PRR
)>>1, 1, &c
->Pin
);
558 if (req
->Present
& PRESENT_EXT_STATUS
) {
559 c
->ExtStatus
= req
->ExtStatus
;
560 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_ESR
)>>1, 1, &c
->ExtStatus
);
562 if (req
->Present
& PRESENT_IOBASE_0
) {
563 u_char b
= c
->io
.BasePort1
& 0xff;
564 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_IOBASE_0
)>>1, 1, &b
);
565 b
= (c
->io
.BasePort1
>> 8) & 0xff;
566 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_IOBASE_1
)>>1, 1, &b
);
568 if (req
->Present
& PRESENT_IOSIZE
) {
569 u_char b
= c
->io
.NumPorts1
+ c
->io
.NumPorts2
- 1;
570 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_IOSIZE
)>>1, 1, &b
);
573 /* Configure I/O windows */
574 if (c
->state
& CONFIG_IO_REQ
) {
575 iomap
.speed
= io_speed
;
576 for (i
= 0; i
< MAX_IO_WIN
; i
++)
579 iomap
.flags
= MAP_ACTIVE
;
580 switch (s
->io
[i
].res
->flags
& IO_DATA_PATH_WIDTH
) {
581 case IO_DATA_PATH_WIDTH_16
:
582 iomap
.flags
|= MAP_16BIT
; break;
583 case IO_DATA_PATH_WIDTH_AUTO
:
584 iomap
.flags
|= MAP_AUTOSZ
; break;
588 iomap
.start
= s
->io
[i
].res
->start
;
589 iomap
.stop
= s
->io
[i
].res
->end
;
590 s
->ops
->set_io_map(s
, &iomap
);
595 c
->state
|= CONFIG_LOCKED
;
598 } /* pcmcia_request_configuration */
599 EXPORT_SYMBOL(pcmcia_request_configuration
);
602 /** pcmcia_request_io
604 * Request_io() reserves ranges of port addresses for a socket.
605 * I have not implemented range sharing or alias addressing.
607 int pcmcia_request_io(struct pcmcia_device
*p_dev
, io_req_t
*req
)
609 struct pcmcia_socket
*s
= p_dev
->socket
;
612 if (!(s
->state
& SOCKET_PRESENT
))
617 c
= p_dev
->function_config
;
618 if (c
->state
& CONFIG_LOCKED
)
620 if (c
->state
& CONFIG_IO_REQ
) {
621 ds_dbg(s
, 0, "IO already configured\n");
624 if (req
->Attributes1
& (IO_SHARED
| IO_FORCE_ALIAS_ACCESS
)) {
625 ds_dbg(s
, 0, "bad attribute setting for IO region 1\n");
628 if ((req
->NumPorts2
> 0) &&
629 (req
->Attributes2
& (IO_SHARED
| IO_FORCE_ALIAS_ACCESS
))) {
630 ds_dbg(s
, 0, "bad attribute setting for IO region 2\n");
634 ds_dbg(s
, 1, "trying to allocate resource 1\n");
635 if (alloc_io_space(s
, req
->Attributes1
, &req
->BasePort1
,
636 req
->NumPorts1
, req
->IOAddrLines
)) {
637 ds_dbg(s
, 0, "allocation of resource 1 failed\n");
641 if (req
->NumPorts2
) {
642 ds_dbg(s
, 1, "trying to allocate resource 2\n");
643 if (alloc_io_space(s
, req
->Attributes2
, &req
->BasePort2
,
644 req
->NumPorts2
, req
->IOAddrLines
)) {
645 ds_dbg(s
, 0, "allocation of resource 2 failed\n");
646 release_io_space(s
, req
->BasePort1
, req
->NumPorts1
);
652 c
->state
|= CONFIG_IO_REQ
;
655 } /* pcmcia_request_io */
656 EXPORT_SYMBOL(pcmcia_request_io
);
659 /** pcmcia_request_irq
661 * Request_irq() reserves an irq for this client.
663 * Also, since Linux only reserves irq's when they are actually
664 * hooked, we don't guarantee that an irq will still be available
665 * when the configuration is locked. Now that I think about it,
666 * there might be a way to fix this using a dummy handler.
669 #ifdef CONFIG_PCMCIA_PROBE
670 static irqreturn_t
test_action(int cpl
, void *dev_id
)
676 int pcmcia_request_irq(struct pcmcia_device
*p_dev
, irq_req_t
*req
)
678 struct pcmcia_socket
*s
= p_dev
->socket
;
680 int ret
= -EINVAL
, irq
= 0;
683 if (!(s
->state
& SOCKET_PRESENT
))
685 c
= p_dev
->function_config
;
686 if (c
->state
& CONFIG_LOCKED
)
688 if (c
->state
& CONFIG_IRQ_REQ
) {
689 ds_dbg(s
, 0, "IRQ already configured\n");
693 /* Decide what type of interrupt we are registering */
695 if (s
->functions
> 1) /* All of this ought to be handled higher up */
697 else if (req
->Attributes
& IRQ_TYPE_DYNAMIC_SHARING
)
699 else printk(KERN_WARNING
"pcmcia: Driver needs updating to support IRQ sharing.\n");
701 #ifdef CONFIG_PCMCIA_PROBE
704 /* if the underlying IRQ infrastructure allows for it, only allocate
705 * the IRQ, but do not enable it
707 if (!(req
->Attributes
& IRQ_HANDLE_PRESENT
))
708 type
|= IRQ_NOAUTOEN
;
709 #endif /* IRQ_NOAUTOEN */
711 if (s
->irq
.AssignedIRQ
!= 0) {
712 /* If the interrupt is already assigned, it must be the same */
713 irq
= s
->irq
.AssignedIRQ
;
716 u32 mask
= s
->irq_mask
;
717 void *data
= &p_dev
->dev
.driver
; /* something unique to this device */
719 for (try = 0; try < 64; try++) {
722 /* marked as available by driver, and not blocked by userspace? */
723 if (!((mask
>> irq
) & 1))
726 /* avoid an IRQ which is already used by a PCMCIA card */
727 if ((try < 32) && pcmcia_used_irq
[irq
])
730 /* register the correct driver, if possible, of check whether
731 * registering a dummy handle works, i.e. if the IRQ isn't
732 * marked as used by the kernel resource management core */
733 ret
= request_irq(irq
,
734 (req
->Attributes
& IRQ_HANDLE_PRESENT
) ? req
->Handler
: test_action
,
737 (req
->Attributes
& IRQ_HANDLE_PRESENT
) ? req
->Instance
: data
);
739 if (!(req
->Attributes
& IRQ_HANDLE_PRESENT
))
746 /* only assign PCI irq if no IRQ already assigned */
747 if (ret
&& !s
->irq
.AssignedIRQ
) {
754 if (ret
&& (req
->Attributes
& IRQ_HANDLE_PRESENT
)) {
755 ret
= request_irq(irq
, req
->Handler
, type
,
756 p_dev
->devname
, req
->Instance
);
761 /* Make sure the fact the request type was overridden is passed back */
762 if (type
== IRQF_SHARED
&& !(req
->Attributes
& IRQ_TYPE_DYNAMIC_SHARING
)) {
763 req
->Attributes
|= IRQ_TYPE_DYNAMIC_SHARING
;
764 dev_printk(KERN_WARNING
, &p_dev
->dev
, "pcmcia: "
765 "request for exclusive IRQ could not be fulfilled.\n");
766 dev_printk(KERN_WARNING
, &p_dev
->dev
, "pcmcia: the driver "
767 "needs updating to supported shared IRQ lines.\n");
769 c
->irq
.Attributes
= req
->Attributes
;
770 s
->irq
.AssignedIRQ
= req
->AssignedIRQ
= irq
;
773 c
->state
|= CONFIG_IRQ_REQ
;
776 #ifdef CONFIG_PCMCIA_PROBE
777 pcmcia_used_irq
[irq
]++;
781 } /* pcmcia_request_irq */
782 EXPORT_SYMBOL(pcmcia_request_irq
);
785 /** pcmcia_request_window
787 * Request_window() establishes a mapping between card memory space
788 * and system memory space.
790 int pcmcia_request_window(struct pcmcia_device
**p_dev
, win_req_t
*req
, window_handle_t
*wh
)
792 struct pcmcia_socket
*s
= (*p_dev
)->socket
;
797 if (!(s
->state
& SOCKET_PRESENT
))
799 if (req
->Attributes
& (WIN_PAGED
| WIN_SHARED
)) {
800 ds_dbg(s
, 0, "bad attribute setting for iomem region\n");
804 /* Window size defaults to smallest available */
806 req
->Size
= s
->map_size
;
807 align
= (((s
->features
& SS_CAP_MEM_ALIGN
) ||
808 (req
->Attributes
& WIN_STRICT_ALIGN
)) ?
809 req
->Size
: s
->map_size
);
810 if (req
->Size
& (s
->map_size
-1)) {
811 ds_dbg(s
, 0, "invalid map size\n");
814 if ((req
->Base
&& (s
->features
& SS_CAP_STATIC_MAP
)) ||
815 (req
->Base
& (align
-1))) {
816 ds_dbg(s
, 0, "invalid base address\n");
822 /* Allocate system memory window */
823 for (w
= 0; w
< MAX_WIN
; w
++)
824 if (!(s
->state
& SOCKET_WIN_REQ(w
))) break;
826 ds_dbg(s
, 0, "all windows are used already\n");
831 win
->magic
= WINDOW_MAGIC
;
833 win
->handle
= *p_dev
;
836 if (!(s
->features
& SS_CAP_STATIC_MAP
)) {
837 win
->ctl
.res
= pcmcia_find_mem_region(req
->Base
, req
->Size
, align
,
838 (req
->Attributes
& WIN_MAP_BELOW_1MB
), s
);
840 ds_dbg(s
, 0, "allocating mem region failed\n");
844 (*p_dev
)->_win
|= CLIENT_WIN_REQ(w
);
846 /* Configure the socket controller */
849 win
->ctl
.speed
= req
->AccessSpeed
;
850 if (req
->Attributes
& WIN_MEMORY_TYPE
)
851 win
->ctl
.flags
|= MAP_ATTRIB
;
852 if (req
->Attributes
& WIN_ENABLE
)
853 win
->ctl
.flags
|= MAP_ACTIVE
;
854 if (req
->Attributes
& WIN_DATA_WIDTH_16
)
855 win
->ctl
.flags
|= MAP_16BIT
;
856 if (req
->Attributes
& WIN_USE_WAIT
)
857 win
->ctl
.flags
|= MAP_USE_WAIT
;
858 win
->ctl
.card_start
= 0;
859 if (s
->ops
->set_mem_map(s
, &win
->ctl
) != 0) {
860 ds_dbg(s
, 0, "failed to set memory mapping\n");
863 s
->state
|= SOCKET_WIN_REQ(w
);
865 /* Return window handle */
866 if (s
->features
& SS_CAP_STATIC_MAP
) {
867 req
->Base
= win
->ctl
.static_start
;
869 req
->Base
= win
->ctl
.res
->start
;
874 } /* pcmcia_request_window */
875 EXPORT_SYMBOL(pcmcia_request_window
);
877 void pcmcia_disable_device(struct pcmcia_device
*p_dev
) {
878 pcmcia_release_configuration(p_dev
);
879 pcmcia_release_io(p_dev
, &p_dev
->io
);
880 pcmcia_release_irq(p_dev
, &p_dev
->irq
);
882 pcmcia_release_window(p_dev
->win
);
884 EXPORT_SYMBOL(pcmcia_disable_device
);
887 struct pcmcia_cfg_mem
{
891 cistpl_cftable_entry_t dflt
;
895 * pcmcia_loop_config() - loop over configuration options
896 * @p_dev: the struct pcmcia_device which we need to loop for.
897 * @conf_check: function to call for each configuration option.
898 * It gets passed the struct pcmcia_device, the CIS data
899 * describing the configuration option, and private data
900 * being passed to pcmcia_loop_config()
901 * @priv_data: private data to be passed to the conf_check function.
903 * pcmcia_loop_config() loops over all configuration options, and calls
904 * the driver-specific conf_check() for each one, checking whether
907 int pcmcia_loop_config(struct pcmcia_device
*p_dev
,
908 int (*conf_check
) (struct pcmcia_device
*p_dev
,
909 cistpl_cftable_entry_t
*cfg
,
910 cistpl_cftable_entry_t
*dflt
,
915 struct pcmcia_cfg_mem
*cfg_mem
;
921 cfg_mem
= kzalloc(sizeof(struct pcmcia_cfg_mem
), GFP_KERNEL
);
925 /* get the current Vcc setting */
926 vcc
= p_dev
->socket
->socket
.Vcc
;
928 tuple
= &cfg_mem
->tuple
;
929 tuple
->TupleData
= cfg_mem
->buf
;
930 tuple
->TupleDataMax
= 255;
931 tuple
->TupleOffset
= 0;
932 tuple
->DesiredTuple
= CISTPL_CFTABLE_ENTRY
;
933 tuple
->Attributes
= 0;
935 ret
= pcmcia_get_first_tuple(p_dev
, tuple
);
937 cistpl_cftable_entry_t
*cfg
= &cfg_mem
->parse
.cftable_entry
;
939 if (pcmcia_get_tuple_data(p_dev
, tuple
))
942 if (pcmcia_parse_tuple(tuple
, &cfg_mem
->parse
))
946 p_dev
->conf
.ConfigIndex
= cfg
->index
;
947 if (cfg
->flags
& CISTPL_CFTABLE_DEFAULT
)
948 cfg_mem
->dflt
= *cfg
;
950 ret
= conf_check(p_dev
, cfg
, &cfg_mem
->dflt
, vcc
, priv_data
);
955 ret
= pcmcia_get_next_tuple(p_dev
, tuple
);
960 EXPORT_SYMBOL(pcmcia_loop_config
);