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 #define IN_CARD_SERVICES
25 #include <pcmcia/cs_types.h>
26 #include <pcmcia/ss.h>
27 #include <pcmcia/cs.h>
28 #include <pcmcia/bulkmem.h>
29 #include <pcmcia/cistpl.h>
30 #include <pcmcia/cisreg.h>
31 #include <pcmcia/ds.h>
33 #include "cs_internal.h"
34 #include "ds_internal.h"
37 /* Access speed for IO windows */
38 static int io_speed
= 0;
39 module_param(io_speed
, int, 0444);
42 #ifdef CONFIG_PCMCIA_PROBE
44 /* mask of IRQs already reserved by other cards, we should avoid using them */
45 static u8 pcmcia_used_irq
[NR_IRQS
];
50 extern int ds_pc_debug
;
51 #define cs_socket_name(skt) ((skt)->dev.class_id)
53 #define ds_dbg(skt, lvl, fmt, arg...) do { \
54 if (ds_pc_debug >= lvl) \
55 printk(KERN_DEBUG "pcmcia_resource: %s: " fmt, \
56 cs_socket_name(skt) , ## arg); \
59 #define ds_dbg(lvl, fmt, arg...) do { } while (0)
66 * Special stuff for managing IO windows, because they are scarce
69 static int alloc_io_space(struct pcmcia_socket
*s
, u_int attr
, ioaddr_t
*base
,
70 ioaddr_t num
, u_int lines
)
73 kio_addr_t
try, align
;
75 align
= (*base
) ? (lines
? 1<<lines
: 0) : 1;
76 if (align
&& (align
< num
)) {
78 ds_dbg(s
, 0, "odd IO request: num %#x align %#lx\n",
82 while (align
&& (align
< num
)) align
<<= 1;
84 if (*base
& ~(align
-1)) {
85 ds_dbg(s
, 0, "odd IO request: base %#x align %#lx\n",
89 if ((s
->features
& SS_CAP_STATIC_MAP
) && s
->io_offset
) {
90 *base
= s
->io_offset
| (*base
& 0x0fff);
93 /* Check for an already-allocated window that must conflict with
94 * what was asked for. It is a hack because it does not catch all
95 * potential conflicts, just the most obvious ones.
97 for (i
= 0; i
< MAX_IO_WIN
; i
++)
99 ((s
->io
[i
].res
->start
& (align
-1)) == *base
))
101 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
103 s
->io
[i
].res
= pcmcia_find_io_region(*base
, num
, align
, s
);
105 *base
= s
->io
[i
].res
->start
;
106 s
->io
[i
].res
->flags
= (s
->io
[i
].res
->flags
& ~IORESOURCE_BITS
) | (attr
& IORESOURCE_BITS
);
107 s
->io
[i
].InUse
= num
;
111 } else if ((s
->io
[i
].res
->flags
& IORESOURCE_BITS
) != (attr
& IORESOURCE_BITS
))
113 /* Try to extend top of window */
114 try = s
->io
[i
].res
->end
+ 1;
115 if ((*base
== 0) || (*base
== try))
116 if (pcmcia_adjust_io_region(s
->io
[i
].res
, s
->io
[i
].res
->start
,
117 s
->io
[i
].res
->end
+ num
, s
) == 0) {
119 s
->io
[i
].InUse
+= num
;
122 /* Try to extend bottom of window */
123 try = s
->io
[i
].res
->start
- num
;
124 if ((*base
== 0) || (*base
== try))
125 if (pcmcia_adjust_io_region(s
->io
[i
].res
, s
->io
[i
].res
->start
- num
,
126 s
->io
[i
].res
->end
, s
) == 0) {
128 s
->io
[i
].InUse
+= num
;
132 return (i
== MAX_IO_WIN
);
133 } /* alloc_io_space */
136 static void release_io_space(struct pcmcia_socket
*s
, ioaddr_t base
,
141 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
144 if ((s
->io
[i
].res
->start
<= base
) &&
145 (s
->io
[i
].res
->end
>= base
+num
-1)) {
146 s
->io
[i
].InUse
-= num
;
147 /* Free the window if no one else is using it */
148 if (s
->io
[i
].InUse
== 0) {
149 release_resource(s
->io
[i
].res
);
155 } /* release_io_space */
158 /** pccard_access_configuration_register
160 * Access_configuration_register() reads and writes configuration
161 * registers in attribute memory. Memory window 0 is reserved for
162 * this and the tuple reading services.
165 int pcmcia_access_configuration_register(struct pcmcia_device
*p_dev
,
168 struct pcmcia_socket
*s
;
173 if (!p_dev
|| !p_dev
->function_config
)
177 c
= p_dev
->function_config
;
179 if (!(c
->state
& CONFIG_LOCKED
))
180 return CS_CONFIGURATION_LOCKED
;
182 addr
= (c
->ConfigBase
+ reg
->Offset
) >> 1;
184 switch (reg
->Action
) {
186 pcmcia_read_cis_mem(s
, 1, addr
, 1, &val
);
191 pcmcia_write_cis_mem(s
, 1, addr
, 1, &val
);
198 } /* pcmcia_access_configuration_register */
199 EXPORT_SYMBOL(pcmcia_access_configuration_register
);
202 int pccard_get_configuration_info(struct pcmcia_socket
*s
,
203 struct pcmcia_device
*p_dev
,
204 config_info_t
*config
)
208 if (!(s
->state
& SOCKET_PRESENT
))
212 #ifdef CONFIG_CARDBUS
213 if (s
->state
& SOCKET_CARDBUS
) {
214 memset(config
, 0, sizeof(config_info_t
));
215 config
->Vcc
= s
->socket
.Vcc
;
216 config
->Vpp1
= config
->Vpp2
= s
->socket
.Vpp
;
217 config
->Option
= s
->cb_dev
->subordinate
->number
;
218 if (s
->state
& SOCKET_CARDBUS_CONFIG
) {
219 config
->Attributes
= CONF_VALID_CLIENT
;
220 config
->IntType
= INT_CARDBUS
;
221 config
->AssignedIRQ
= s
->irq
.AssignedIRQ
;
222 if (config
->AssignedIRQ
)
223 config
->Attributes
|= CONF_ENABLE_IRQ
;
225 config
->BasePort1
= s
->io
[0].res
->start
;
226 config
->NumPorts1
= s
->io
[0].res
->end
- config
->BasePort1
+ 1;
234 c
= p_dev
->function_config
;
235 config
->Function
= p_dev
->func
;
238 config
->Function
= 0;
241 if ((c
== NULL
) || !(c
->state
& CONFIG_LOCKED
)) {
242 config
->Attributes
= 0;
243 config
->Vcc
= s
->socket
.Vcc
;
244 config
->Vpp1
= config
->Vpp2
= s
->socket
.Vpp
;
248 config
->Attributes
= c
->Attributes
| CONF_VALID_CLIENT
;
249 config
->Vcc
= s
->socket
.Vcc
;
250 config
->Vpp1
= config
->Vpp2
= s
->socket
.Vpp
;
251 config
->IntType
= c
->IntType
;
252 config
->ConfigBase
= c
->ConfigBase
;
253 config
->Status
= c
->Status
;
254 config
->Pin
= c
->Pin
;
255 config
->Copy
= c
->Copy
;
256 config
->Option
= c
->Option
;
257 config
->ExtStatus
= c
->ExtStatus
;
258 config
->Present
= config
->CardValues
= c
->CardValues
;
259 config
->IRQAttributes
= c
->irq
.Attributes
;
260 config
->AssignedIRQ
= s
->irq
.AssignedIRQ
;
261 config
->BasePort1
= c
->io
.BasePort1
;
262 config
->NumPorts1
= c
->io
.NumPorts1
;
263 config
->Attributes1
= c
->io
.Attributes1
;
264 config
->BasePort2
= c
->io
.BasePort2
;
265 config
->NumPorts2
= c
->io
.NumPorts2
;
266 config
->Attributes2
= c
->io
.Attributes2
;
267 config
->IOAddrLines
= c
->io
.IOAddrLines
;
270 } /* pccard_get_configuration_info */
272 int pcmcia_get_configuration_info(struct pcmcia_device
*p_dev
,
273 config_info_t
*config
)
275 return pccard_get_configuration_info(p_dev
->socket
, p_dev
,
278 EXPORT_SYMBOL(pcmcia_get_configuration_info
);
281 /** pcmcia_get_window
283 int pcmcia_get_window(struct pcmcia_socket
*s
, window_handle_t
*handle
,
284 int idx
, win_req_t
*req
)
289 if (!s
|| !(s
->state
& SOCKET_PRESENT
))
291 for (w
= idx
; w
< MAX_WIN
; w
++)
292 if (s
->state
& SOCKET_WIN_REQ(w
))
295 return CS_NO_MORE_ITEMS
;
297 req
->Base
= win
->ctl
.res
->start
;
298 req
->Size
= win
->ctl
.res
->end
- win
->ctl
.res
->start
+ 1;
299 req
->AccessSpeed
= win
->ctl
.speed
;
301 if (win
->ctl
.flags
& MAP_ATTRIB
)
302 req
->Attributes
|= WIN_MEMORY_TYPE_AM
;
303 if (win
->ctl
.flags
& MAP_ACTIVE
)
304 req
->Attributes
|= WIN_ENABLE
;
305 if (win
->ctl
.flags
& MAP_16BIT
)
306 req
->Attributes
|= WIN_DATA_WIDTH_16
;
307 if (win
->ctl
.flags
& MAP_USE_WAIT
)
308 req
->Attributes
|= WIN_USE_WAIT
;
311 } /* pcmcia_get_window */
312 EXPORT_SYMBOL(pcmcia_get_window
);
315 /** pccard_get_status
317 * Get the current socket state bits. We don't support the latched
318 * SocketState yet: I haven't seen any point for it.
321 int pccard_get_status(struct pcmcia_socket
*s
, struct pcmcia_device
*p_dev
,
327 s
->ops
->get_status(s
, &val
);
328 status
->CardState
= status
->SocketState
= 0;
329 status
->CardState
|= (val
& SS_DETECT
) ? CS_EVENT_CARD_DETECT
: 0;
330 status
->CardState
|= (val
& SS_CARDBUS
) ? CS_EVENT_CB_DETECT
: 0;
331 status
->CardState
|= (val
& SS_3VCARD
) ? CS_EVENT_3VCARD
: 0;
332 status
->CardState
|= (val
& SS_XVCARD
) ? CS_EVENT_XVCARD
: 0;
333 if (s
->state
& SOCKET_SUSPEND
)
334 status
->CardState
|= CS_EVENT_PM_SUSPEND
;
335 if (!(s
->state
& SOCKET_PRESENT
))
338 c
= (p_dev
) ? p_dev
->function_config
: NULL
;
340 if ((c
!= NULL
) && (c
->state
& CONFIG_LOCKED
) &&
341 (c
->IntType
& (INT_MEMORY_AND_IO
| INT_ZOOMED_VIDEO
))) {
343 if (c
->CardValues
& PRESENT_PIN_REPLACE
) {
344 pcmcia_read_cis_mem(s
, 1, (c
->ConfigBase
+CISREG_PRR
)>>1, 1, ®
);
346 (reg
& PRR_WP_STATUS
) ? CS_EVENT_WRITE_PROTECT
: 0;
348 (reg
& PRR_READY_STATUS
) ? CS_EVENT_READY_CHANGE
: 0;
350 (reg
& PRR_BVD2_STATUS
) ? CS_EVENT_BATTERY_LOW
: 0;
352 (reg
& PRR_BVD1_STATUS
) ? CS_EVENT_BATTERY_DEAD
: 0;
354 /* No PRR? Then assume we're always ready */
355 status
->CardState
|= CS_EVENT_READY_CHANGE
;
357 if (c
->CardValues
& PRESENT_EXT_STATUS
) {
358 pcmcia_read_cis_mem(s
, 1, (c
->ConfigBase
+CISREG_ESR
)>>1, 1, ®
);
360 (reg
& ESR_REQ_ATTN
) ? CS_EVENT_REQUEST_ATTENTION
: 0;
365 (val
& SS_WRPROT
) ? CS_EVENT_WRITE_PROTECT
: 0;
367 (val
& SS_BATDEAD
) ? CS_EVENT_BATTERY_DEAD
: 0;
369 (val
& SS_BATWARN
) ? CS_EVENT_BATTERY_LOW
: 0;
371 (val
& SS_READY
) ? CS_EVENT_READY_CHANGE
: 0;
373 } /* pccard_get_status */
375 int pcmcia_get_status(struct pcmcia_device
*p_dev
, cs_status_t
*status
)
377 return pccard_get_status(p_dev
->socket
, p_dev
, status
);
379 EXPORT_SYMBOL(pcmcia_get_status
);
383 /** pcmcia_get_mem_page
385 * Change the card address of an already open memory window.
387 int pcmcia_get_mem_page(window_handle_t win
, memreq_t
*req
)
389 if ((win
== NULL
) || (win
->magic
!= WINDOW_MAGIC
))
390 return CS_BAD_HANDLE
;
392 req
->CardOffset
= win
->ctl
.card_start
;
394 } /* pcmcia_get_mem_page */
395 EXPORT_SYMBOL(pcmcia_get_mem_page
);
398 int pcmcia_map_mem_page(window_handle_t win
, memreq_t
*req
)
400 struct pcmcia_socket
*s
;
401 if ((win
== NULL
) || (win
->magic
!= WINDOW_MAGIC
))
402 return CS_BAD_HANDLE
;
406 win
->ctl
.card_start
= req
->CardOffset
;
407 if (s
->ops
->set_mem_map(s
, &win
->ctl
) != 0)
408 return CS_BAD_OFFSET
;
410 } /* pcmcia_map_mem_page */
411 EXPORT_SYMBOL(pcmcia_map_mem_page
);
414 /** pcmcia_modify_configuration
416 * Modify a locked socket configuration
418 int pcmcia_modify_configuration(struct pcmcia_device
*p_dev
,
421 struct pcmcia_socket
*s
;
425 c
= p_dev
->function_config
;
427 if (!(s
->state
& SOCKET_PRESENT
))
429 if (!(c
->state
& CONFIG_LOCKED
))
430 return CS_CONFIGURATION_LOCKED
;
432 if (mod
->Attributes
& CONF_IRQ_CHANGE_VALID
) {
433 if (mod
->Attributes
& CONF_ENABLE_IRQ
) {
434 c
->Attributes
|= CONF_ENABLE_IRQ
;
435 s
->socket
.io_irq
= s
->irq
.AssignedIRQ
;
437 c
->Attributes
&= ~CONF_ENABLE_IRQ
;
438 s
->socket
.io_irq
= 0;
440 s
->ops
->set_socket(s
, &s
->socket
);
443 if (mod
->Attributes
& CONF_VCC_CHANGE_VALID
)
446 /* We only allow changing Vpp1 and Vpp2 to the same value */
447 if ((mod
->Attributes
& CONF_VPP1_CHANGE_VALID
) &&
448 (mod
->Attributes
& CONF_VPP2_CHANGE_VALID
)) {
449 if (mod
->Vpp1
!= mod
->Vpp2
)
451 s
->socket
.Vpp
= mod
->Vpp1
;
452 if (s
->ops
->set_socket(s
, &s
->socket
))
454 } else if ((mod
->Attributes
& CONF_VPP1_CHANGE_VALID
) ||
455 (mod
->Attributes
& CONF_VPP2_CHANGE_VALID
))
458 if (mod
->Attributes
& CONF_IO_CHANGE_WIDTH
) {
459 pccard_io_map io_off
= { 0, 0, 0, 0, 1 };
463 io_on
.speed
= io_speed
;
464 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
470 io_on
.flags
= MAP_ACTIVE
| IO_DATA_PATH_WIDTH_8
;
471 io_on
.start
= s
->io
[i
].res
->start
;
472 io_on
.stop
= s
->io
[i
].res
->end
;
474 s
->ops
->set_io_map(s
, &io_off
);
476 s
->ops
->set_io_map(s
, &io_on
);
481 } /* modify_configuration */
482 EXPORT_SYMBOL(pcmcia_modify_configuration
);
485 int pcmcia_release_configuration(struct pcmcia_device
*p_dev
)
487 pccard_io_map io
= { 0, 0, 0, 0, 1 };
488 struct pcmcia_socket
*s
= p_dev
->socket
;
489 config_t
*c
= p_dev
->function_config
;
492 if (p_dev
->_locked
) {
494 if (--(s
->lock_count
) == 0) {
495 s
->socket
.flags
= SS_OUTPUT_ENA
; /* Is this correct? */
497 s
->socket
.io_irq
= 0;
498 s
->ops
->set_socket(s
, &s
->socket
);
501 if (c
->state
& CONFIG_LOCKED
) {
502 c
->state
&= ~CONFIG_LOCKED
;
503 if (c
->state
& CONFIG_IO_REQ
)
504 for (i
= 0; i
< MAX_IO_WIN
; i
++) {
508 if (s
->io
[i
].Config
!= 0)
511 s
->ops
->set_io_map(s
, &io
);
516 } /* pcmcia_release_configuration */
519 /** pcmcia_release_io
521 * Release_io() releases the I/O ranges allocated by a client. This
522 * may be invoked some time after a card ejection has already dumped
523 * the actual socket configuration, so if the client is "stale", we
524 * don't bother checking the port ranges against the current socket
527 static int pcmcia_release_io(struct pcmcia_device
*p_dev
, io_req_t
*req
)
529 struct pcmcia_socket
*s
= p_dev
->socket
;
530 config_t
*c
= p_dev
->function_config
;
533 return CS_BAD_HANDLE
;
537 if ((c
->io
.BasePort1
!= req
->BasePort1
) ||
538 (c
->io
.NumPorts1
!= req
->NumPorts1
) ||
539 (c
->io
.BasePort2
!= req
->BasePort2
) ||
540 (c
->io
.NumPorts2
!= req
->NumPorts2
))
543 c
->state
&= ~CONFIG_IO_REQ
;
545 release_io_space(s
, req
->BasePort1
, req
->NumPorts1
);
547 release_io_space(s
, req
->BasePort2
, req
->NumPorts2
);
550 } /* pcmcia_release_io */
553 static int pcmcia_release_irq(struct pcmcia_device
*p_dev
, irq_req_t
*req
)
555 struct pcmcia_socket
*s
= p_dev
->socket
;
556 config_t
*c
= p_dev
->function_config
;
559 return CS_BAD_HANDLE
;
562 if (c
->state
& CONFIG_LOCKED
)
563 return CS_CONFIGURATION_LOCKED
;
564 if (c
->irq
.Attributes
!= req
->Attributes
)
565 return CS_BAD_ATTRIBUTE
;
566 if (s
->irq
.AssignedIRQ
!= req
->AssignedIRQ
)
568 if (--s
->irq
.Config
== 0) {
569 c
->state
&= ~CONFIG_IRQ_REQ
;
570 s
->irq
.AssignedIRQ
= 0;
573 if (req
->Attributes
& IRQ_HANDLE_PRESENT
) {
574 free_irq(req
->AssignedIRQ
, req
->Instance
);
577 #ifdef CONFIG_PCMCIA_PROBE
578 pcmcia_used_irq
[req
->AssignedIRQ
]--;
582 } /* pcmcia_release_irq */
585 int pcmcia_release_window(window_handle_t win
)
587 struct pcmcia_socket
*s
;
589 if ((win
== NULL
) || (win
->magic
!= WINDOW_MAGIC
))
590 return CS_BAD_HANDLE
;
592 if (!(win
->handle
->_win
& CLIENT_WIN_REQ(win
->index
)))
593 return CS_BAD_HANDLE
;
595 /* Shut down memory window */
596 win
->ctl
.flags
&= ~MAP_ACTIVE
;
597 s
->ops
->set_mem_map(s
, &win
->ctl
);
598 s
->state
&= ~SOCKET_WIN_REQ(win
->index
);
600 /* Release system memory */
602 release_resource(win
->ctl
.res
);
606 win
->handle
->_win
&= ~CLIENT_WIN_REQ(win
->index
);
611 } /* pcmcia_release_window */
612 EXPORT_SYMBOL(pcmcia_release_window
);
615 int pcmcia_request_configuration(struct pcmcia_device
*p_dev
,
620 struct pcmcia_socket
*s
= p_dev
->socket
;
624 if (!(s
->state
& SOCKET_PRESENT
))
627 if (req
->IntType
& INT_CARDBUS
)
628 return CS_UNSUPPORTED_MODE
;
629 c
= p_dev
->function_config
;
630 if (c
->state
& CONFIG_LOCKED
)
631 return CS_CONFIGURATION_LOCKED
;
633 /* Do power control. We don't allow changes in Vcc. */
634 s
->socket
.Vpp
= req
->Vpp
;
635 if (s
->ops
->set_socket(s
, &s
->socket
))
638 /* Pick memory or I/O card, DMA mode, interrupt */
639 c
->IntType
= req
->IntType
;
640 c
->Attributes
= req
->Attributes
;
641 if (req
->IntType
& INT_MEMORY_AND_IO
)
642 s
->socket
.flags
|= SS_IOCARD
;
643 if (req
->IntType
& INT_ZOOMED_VIDEO
)
644 s
->socket
.flags
|= SS_ZVCARD
| SS_IOCARD
;
645 if (req
->Attributes
& CONF_ENABLE_DMA
)
646 s
->socket
.flags
|= SS_DMA_MODE
;
647 if (req
->Attributes
& CONF_ENABLE_SPKR
)
648 s
->socket
.flags
|= SS_SPKR_ENA
;
649 if (req
->Attributes
& CONF_ENABLE_IRQ
)
650 s
->socket
.io_irq
= s
->irq
.AssignedIRQ
;
652 s
->socket
.io_irq
= 0;
653 s
->ops
->set_socket(s
, &s
->socket
);
656 /* Set up CIS configuration registers */
657 base
= c
->ConfigBase
= req
->ConfigBase
;
658 c
->CardValues
= req
->Present
;
659 if (req
->Present
& PRESENT_COPY
) {
661 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_SCR
)>>1, 1, &c
->Copy
);
663 if (req
->Present
& PRESENT_OPTION
) {
664 if (s
->functions
== 1) {
665 c
->Option
= req
->ConfigIndex
& COR_CONFIG_MASK
;
667 c
->Option
= req
->ConfigIndex
& COR_MFC_CONFIG_MASK
;
668 c
->Option
|= COR_FUNC_ENA
|COR_IREQ_ENA
;
669 if (req
->Present
& PRESENT_IOBASE_0
)
670 c
->Option
|= COR_ADDR_DECODE
;
672 if (c
->state
& CONFIG_IRQ_REQ
)
673 if (!(c
->irq
.Attributes
& IRQ_FORCED_PULSE
))
674 c
->Option
|= COR_LEVEL_REQ
;
675 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_COR
)>>1, 1, &c
->Option
);
678 if (req
->Present
& PRESENT_STATUS
) {
679 c
->Status
= req
->Status
;
680 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_CCSR
)>>1, 1, &c
->Status
);
682 if (req
->Present
& PRESENT_PIN_REPLACE
) {
684 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_PRR
)>>1, 1, &c
->Pin
);
686 if (req
->Present
& PRESENT_EXT_STATUS
) {
687 c
->ExtStatus
= req
->ExtStatus
;
688 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_ESR
)>>1, 1, &c
->ExtStatus
);
690 if (req
->Present
& PRESENT_IOBASE_0
) {
691 u_char b
= c
->io
.BasePort1
& 0xff;
692 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_IOBASE_0
)>>1, 1, &b
);
693 b
= (c
->io
.BasePort1
>> 8) & 0xff;
694 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_IOBASE_1
)>>1, 1, &b
);
696 if (req
->Present
& PRESENT_IOSIZE
) {
697 u_char b
= c
->io
.NumPorts1
+ c
->io
.NumPorts2
- 1;
698 pcmcia_write_cis_mem(s
, 1, (base
+ CISREG_IOSIZE
)>>1, 1, &b
);
701 /* Configure I/O windows */
702 if (c
->state
& CONFIG_IO_REQ
) {
703 iomap
.speed
= io_speed
;
704 for (i
= 0; i
< MAX_IO_WIN
; i
++)
707 iomap
.flags
= MAP_ACTIVE
;
708 switch (s
->io
[i
].res
->flags
& IO_DATA_PATH_WIDTH
) {
709 case IO_DATA_PATH_WIDTH_16
:
710 iomap
.flags
|= MAP_16BIT
; break;
711 case IO_DATA_PATH_WIDTH_AUTO
:
712 iomap
.flags
|= MAP_AUTOSZ
; break;
716 iomap
.start
= s
->io
[i
].res
->start
;
717 iomap
.stop
= s
->io
[i
].res
->end
;
718 s
->ops
->set_io_map(s
, &iomap
);
723 c
->state
|= CONFIG_LOCKED
;
726 } /* pcmcia_request_configuration */
727 EXPORT_SYMBOL(pcmcia_request_configuration
);
730 /** pcmcia_request_io
732 * Request_io() reserves ranges of port addresses for a socket.
733 * I have not implemented range sharing or alias addressing.
735 int pcmcia_request_io(struct pcmcia_device
*p_dev
, io_req_t
*req
)
737 struct pcmcia_socket
*s
= p_dev
->socket
;
740 if (!(s
->state
& SOCKET_PRESENT
))
744 return CS_UNSUPPORTED_MODE
;
745 c
= p_dev
->function_config
;
746 if (c
->state
& CONFIG_LOCKED
)
747 return CS_CONFIGURATION_LOCKED
;
748 if (c
->state
& CONFIG_IO_REQ
)
750 if (req
->Attributes1
& (IO_SHARED
| IO_FORCE_ALIAS_ACCESS
))
751 return CS_BAD_ATTRIBUTE
;
752 if ((req
->NumPorts2
> 0) &&
753 (req
->Attributes2
& (IO_SHARED
| IO_FORCE_ALIAS_ACCESS
)))
754 return CS_BAD_ATTRIBUTE
;
756 if (alloc_io_space(s
, req
->Attributes1
, &req
->BasePort1
,
757 req
->NumPorts1
, req
->IOAddrLines
))
760 if (req
->NumPorts2
) {
761 if (alloc_io_space(s
, req
->Attributes2
, &req
->BasePort2
,
762 req
->NumPorts2
, req
->IOAddrLines
)) {
763 release_io_space(s
, req
->BasePort1
, req
->NumPorts1
);
769 c
->state
|= CONFIG_IO_REQ
;
772 } /* pcmcia_request_io */
773 EXPORT_SYMBOL(pcmcia_request_io
);
776 /** pcmcia_request_irq
778 * Request_irq() reserves an irq for this client.
780 * Also, since Linux only reserves irq's when they are actually
781 * hooked, we don't guarantee that an irq will still be available
782 * when the configuration is locked. Now that I think about it,
783 * there might be a way to fix this using a dummy handler.
786 #ifdef CONFIG_PCMCIA_PROBE
787 static irqreturn_t
test_action(int cpl
, void *dev_id
)
793 int pcmcia_request_irq(struct pcmcia_device
*p_dev
, irq_req_t
*req
)
795 struct pcmcia_socket
*s
= p_dev
->socket
;
797 int ret
= CS_IN_USE
, irq
= 0;
800 if (!(s
->state
& SOCKET_PRESENT
))
802 c
= p_dev
->function_config
;
803 if (c
->state
& CONFIG_LOCKED
)
804 return CS_CONFIGURATION_LOCKED
;
805 if (c
->state
& CONFIG_IRQ_REQ
)
808 /* Decide what type of interrupt we are registering */
810 if (s
->functions
> 1) /* All of this ought to be handled higher up */
812 if (req
->Attributes
& IRQ_TYPE_DYNAMIC_SHARING
)
815 #ifdef CONFIG_PCMCIA_PROBE
816 if (s
->irq
.AssignedIRQ
!= 0) {
817 /* If the interrupt is already assigned, it must be the same */
818 irq
= s
->irq
.AssignedIRQ
;
821 u32 mask
= s
->irq_mask
;
822 void *data
= &p_dev
->dev
.driver
; /* something unique to this device */
824 for (try = 0; try < 64; try++) {
827 /* marked as available by driver, and not blocked by userspace? */
828 if (!((mask
>> irq
) & 1))
831 /* avoid an IRQ which is already used by a PCMCIA card */
832 if ((try < 32) && pcmcia_used_irq
[irq
])
835 /* register the correct driver, if possible, of check whether
836 * registering a dummy handle works, i.e. if the IRQ isn't
837 * marked as used by the kernel resource management core */
838 ret
= request_irq(irq
,
839 (req
->Attributes
& IRQ_HANDLE_PRESENT
) ? req
->Handler
: test_action
,
842 (req
->Attributes
& IRQ_HANDLE_PRESENT
) ? req
->Instance
: data
);
844 if (!(req
->Attributes
& IRQ_HANDLE_PRESENT
))
851 /* only assign PCI irq if no IRQ already assigned */
852 if (ret
&& !s
->irq
.AssignedIRQ
) {
859 if (ret
&& (req
->Attributes
& IRQ_HANDLE_PRESENT
)) {
860 if (request_irq(irq
, req
->Handler
, type
, p_dev
->devname
, req
->Instance
))
864 /* Make sure the fact the request type was overridden is passed back */
865 if (type
== IRQF_SHARED
&& !(req
->Attributes
& IRQ_TYPE_DYNAMIC_SHARING
)) {
866 req
->Attributes
|= IRQ_TYPE_DYNAMIC_SHARING
;
867 printk(KERN_WARNING
"pcmcia: request for exclusive IRQ could not be fulfilled.\n");
868 printk(KERN_WARNING
"pcmcia: the driver needs updating to supported shared IRQ lines.\n");
870 c
->irq
.Attributes
= req
->Attributes
;
871 s
->irq
.AssignedIRQ
= req
->AssignedIRQ
= irq
;
874 c
->state
|= CONFIG_IRQ_REQ
;
877 #ifdef CONFIG_PCMCIA_PROBE
878 pcmcia_used_irq
[irq
]++;
882 } /* pcmcia_request_irq */
883 EXPORT_SYMBOL(pcmcia_request_irq
);
886 /** pcmcia_request_window
888 * Request_window() establishes a mapping between card memory space
889 * and system memory space.
891 int pcmcia_request_window(struct pcmcia_device
**p_dev
, win_req_t
*req
, window_handle_t
*wh
)
893 struct pcmcia_socket
*s
= (*p_dev
)->socket
;
898 if (!(s
->state
& SOCKET_PRESENT
))
900 if (req
->Attributes
& (WIN_PAGED
| WIN_SHARED
))
901 return CS_BAD_ATTRIBUTE
;
903 /* Window size defaults to smallest available */
905 req
->Size
= s
->map_size
;
906 align
= (((s
->features
& SS_CAP_MEM_ALIGN
) ||
907 (req
->Attributes
& WIN_STRICT_ALIGN
)) ?
908 req
->Size
: s
->map_size
);
909 if (req
->Size
& (s
->map_size
-1))
911 if ((req
->Base
&& (s
->features
& SS_CAP_STATIC_MAP
)) ||
912 (req
->Base
& (align
-1)))
917 /* Allocate system memory window */
918 for (w
= 0; w
< MAX_WIN
; w
++)
919 if (!(s
->state
& SOCKET_WIN_REQ(w
))) break;
921 return CS_OUT_OF_RESOURCE
;
924 win
->magic
= WINDOW_MAGIC
;
926 win
->handle
= *p_dev
;
929 if (!(s
->features
& SS_CAP_STATIC_MAP
)) {
930 win
->ctl
.res
= pcmcia_find_mem_region(req
->Base
, req
->Size
, align
,
931 (req
->Attributes
& WIN_MAP_BELOW_1MB
), s
);
935 (*p_dev
)->_win
|= CLIENT_WIN_REQ(w
);
937 /* Configure the socket controller */
940 win
->ctl
.speed
= req
->AccessSpeed
;
941 if (req
->Attributes
& WIN_MEMORY_TYPE
)
942 win
->ctl
.flags
|= MAP_ATTRIB
;
943 if (req
->Attributes
& WIN_ENABLE
)
944 win
->ctl
.flags
|= MAP_ACTIVE
;
945 if (req
->Attributes
& WIN_DATA_WIDTH_16
)
946 win
->ctl
.flags
|= MAP_16BIT
;
947 if (req
->Attributes
& WIN_USE_WAIT
)
948 win
->ctl
.flags
|= MAP_USE_WAIT
;
949 win
->ctl
.card_start
= 0;
950 if (s
->ops
->set_mem_map(s
, &win
->ctl
) != 0)
952 s
->state
|= SOCKET_WIN_REQ(w
);
954 /* Return window handle */
955 if (s
->features
& SS_CAP_STATIC_MAP
) {
956 req
->Base
= win
->ctl
.static_start
;
958 req
->Base
= win
->ctl
.res
->start
;
963 } /* pcmcia_request_window */
964 EXPORT_SYMBOL(pcmcia_request_window
);
966 void pcmcia_disable_device(struct pcmcia_device
*p_dev
) {
967 pcmcia_release_configuration(p_dev
);
968 pcmcia_release_io(p_dev
, &p_dev
->io
);
969 pcmcia_release_irq(p_dev
, &p_dev
->irq
);
971 pcmcia_release_window(p_dev
->win
);
973 EXPORT_SYMBOL(pcmcia_disable_device
);