2 * pcmcia_ioctl.c -- ioctl interface for cardmgr and cardctl
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * The initial developer of the original code is David A. Hinds
9 * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
10 * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
12 * (C) 1999 David A. Hinds
13 * (C) 2003 - 2004 Dominik Brodowski
17 * This file will go away soon.
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/major.h>
25 #include <linux/errno.h>
26 #include <linux/ioctl.h>
27 #include <linux/proc_fs.h>
28 #include <linux/poll.h>
29 #include <linux/pci.h>
30 #include <linux/seq_file.h>
31 #include <linux/smp_lock.h>
32 #include <linux/workqueue.h>
34 #include <pcmcia/cs_types.h>
35 #include <pcmcia/cs.h>
36 #include <pcmcia/cistpl.h>
37 #include <pcmcia/cisreg.h>
38 #include <pcmcia/ds.h>
39 #include <pcmcia/ss.h>
41 #include "cs_internal.h"
43 static int major_dev
= -1;
46 /* Device user information */
48 #define USER_MAGIC 0x7ea4
49 #define CHECK_USER(u) \
50 (((u) == NULL) || ((u)->user_magic != USER_MAGIC))
52 typedef struct user_info_t
{
54 int event_head
, event_tail
;
55 event_t event
[MAX_EVENTS
];
56 struct user_info_t
*next
;
57 struct pcmcia_socket
*socket
;
61 static struct pcmcia_device
*get_pcmcia_device(struct pcmcia_socket
*s
,
62 unsigned int function
)
64 struct pcmcia_device
*p_dev
= NULL
;
66 mutex_lock(&s
->ops_mutex
);
67 list_for_each_entry(p_dev
, &s
->devices_list
, socket_device_list
) {
68 if (p_dev
->func
== function
) {
69 mutex_unlock(&s
->ops_mutex
);
70 return pcmcia_get_dev(p_dev
);
73 mutex_unlock(&s
->ops_mutex
);
77 /* backwards-compatible accessing of driver --- by name! */
79 static struct pcmcia_driver
*get_pcmcia_driver(dev_info_t
*dev_info
)
81 struct device_driver
*drv
;
82 struct pcmcia_driver
*p_drv
;
84 drv
= driver_find((char *) dev_info
, &pcmcia_bus_type
);
88 p_drv
= container_of(drv
, struct pcmcia_driver
, drv
);
95 static struct proc_dir_entry
*proc_pccard
;
97 static int proc_read_drivers_callback(struct device_driver
*driver
, void *_m
)
99 struct seq_file
*m
= _m
;
100 struct pcmcia_driver
*p_drv
= container_of(driver
,
101 struct pcmcia_driver
, drv
);
103 seq_printf(m
, "%-24.24s 1 %d\n", p_drv
->drv
.name
,
104 #ifdef CONFIG_MODULE_UNLOAD
105 (p_drv
->owner
) ? module_refcount(p_drv
->owner
) : 1
113 static int pccard_drivers_proc_show(struct seq_file
*m
, void *v
)
115 return bus_for_each_drv(&pcmcia_bus_type
, NULL
,
116 m
, proc_read_drivers_callback
);
119 static int pccard_drivers_proc_open(struct inode
*inode
, struct file
*file
)
121 return single_open(file
, pccard_drivers_proc_show
, NULL
);
124 static const struct file_operations pccard_drivers_proc_fops
= {
125 .owner
= THIS_MODULE
,
126 .open
= pccard_drivers_proc_open
,
129 .release
= single_release
,
134 #ifdef CONFIG_PCMCIA_PROBE
136 static int adjust_irq(struct pcmcia_socket
*s
, adjust_t
*adj
)
141 irq
= adj
->resource
.irq
.IRQ
;
142 if ((irq
< 0) || (irq
> 15))
145 if (adj
->Action
!= REMOVE_MANAGED_RESOURCE
)
150 if (!(s
->irq_mask
& mask
))
153 s
->irq_mask
&= ~mask
;
160 static inline int adjust_irq(struct pcmcia_socket
*s
, adjust_t
*adj
)
167 static int pcmcia_adjust_resource_info(adjust_t
*adj
)
169 struct pcmcia_socket
*s
;
172 down_read(&pcmcia_socket_list_rwsem
);
173 list_for_each_entry(s
, &pcmcia_socket_list
, socket_list
) {
175 if (adj
->Resource
== RES_IRQ
)
176 ret
= adjust_irq(s
, adj
);
178 else if (s
->resource_ops
->add_io
) {
179 unsigned long begin
, end
;
181 /* you can't use the old interface if the new
182 * one was used before */
183 mutex_lock(&s
->ops_mutex
);
184 if ((s
->resource_setup_new
) &&
185 !(s
->resource_setup_old
)) {
186 mutex_unlock(&s
->ops_mutex
);
188 } else if (!(s
->resource_setup_old
))
189 s
->resource_setup_old
= 1;
191 switch (adj
->Resource
) {
192 case RES_MEMORY_RANGE
:
193 begin
= adj
->resource
.memory
.Base
;
194 end
= adj
->resource
.memory
.Base
+ adj
->resource
.memory
.Size
- 1;
195 if (s
->resource_ops
->add_mem
)
196 ret
= s
->resource_ops
->add_mem(s
, adj
->Action
, begin
, end
);
198 begin
= adj
->resource
.io
.BasePort
;
199 end
= adj
->resource
.io
.BasePort
+ adj
->resource
.io
.NumPorts
- 1;
200 if (s
->resource_ops
->add_io
)
201 ret
= s
->resource_ops
->add_io(s
, adj
->Action
, begin
, end
);
204 /* as there's no way we know this is the
205 * last call to adjust_resource_info, we
206 * always need to assume this is the latest
208 s
->resource_setup_done
= 1;
210 mutex_unlock(&s
->ops_mutex
);
213 up_read(&pcmcia_socket_list_rwsem
);
219 /** pcmcia_get_window
221 static int pcmcia_get_window(struct pcmcia_socket
*s
, window_handle_t
*wh_out
,
222 window_handle_t wh
, win_req_t
*req
)
228 if (!s
|| !(s
->state
& SOCKET_PRESENT
))
232 for (w
= wh
; w
< MAX_WIN
; w
++)
233 if (s
->state
& SOCKET_WIN_REQ(w
))
238 req
->Base
= win
->res
->start
;
239 req
->Size
= win
->res
->end
- win
->res
->start
+ 1;
240 req
->AccessSpeed
= win
->speed
;
242 if (win
->flags
& MAP_ATTRIB
)
243 req
->Attributes
|= WIN_MEMORY_TYPE_AM
;
244 if (win
->flags
& MAP_ACTIVE
)
245 req
->Attributes
|= WIN_ENABLE
;
246 if (win
->flags
& MAP_16BIT
)
247 req
->Attributes
|= WIN_DATA_WIDTH_16
;
248 if (win
->flags
& MAP_USE_WAIT
)
249 req
->Attributes
|= WIN_USE_WAIT
;
253 } /* pcmcia_get_window */
256 /** pcmcia_get_mem_page
258 * Change the card address of an already open memory window.
260 static int pcmcia_get_mem_page(struct pcmcia_socket
*skt
, window_handle_t wh
,
268 req
->CardOffset
= skt
->win
[wh
].card_start
;
270 } /* pcmcia_get_mem_page */
273 /** pccard_get_status
275 * Get the current socket state bits. We don't support the latched
276 * SocketState yet: I haven't seen any point for it.
279 static int pccard_get_status(struct pcmcia_socket
*s
,
280 struct pcmcia_device
*p_dev
,
286 s
->ops
->get_status(s
, &val
);
287 status
->CardState
= status
->SocketState
= 0;
288 status
->CardState
|= (val
& SS_DETECT
) ? CS_EVENT_CARD_DETECT
: 0;
289 status
->CardState
|= (val
& SS_CARDBUS
) ? CS_EVENT_CB_DETECT
: 0;
290 status
->CardState
|= (val
& SS_3VCARD
) ? CS_EVENT_3VCARD
: 0;
291 status
->CardState
|= (val
& SS_XVCARD
) ? CS_EVENT_XVCARD
: 0;
292 if (s
->state
& SOCKET_SUSPEND
)
293 status
->CardState
|= CS_EVENT_PM_SUSPEND
;
294 if (!(s
->state
& SOCKET_PRESENT
))
297 c
= (p_dev
) ? p_dev
->function_config
: NULL
;
299 if ((c
!= NULL
) && (c
->state
& CONFIG_LOCKED
) &&
300 (c
->IntType
& (INT_MEMORY_AND_IO
| INT_ZOOMED_VIDEO
))) {
302 if (c
->CardValues
& PRESENT_PIN_REPLACE
) {
303 pcmcia_read_cis_mem(s
, 1, (c
->ConfigBase
+CISREG_PRR
)>>1, 1, ®
);
305 (reg
& PRR_WP_STATUS
) ? CS_EVENT_WRITE_PROTECT
: 0;
307 (reg
& PRR_READY_STATUS
) ? CS_EVENT_READY_CHANGE
: 0;
309 (reg
& PRR_BVD2_STATUS
) ? CS_EVENT_BATTERY_LOW
: 0;
311 (reg
& PRR_BVD1_STATUS
) ? CS_EVENT_BATTERY_DEAD
: 0;
313 /* No PRR? Then assume we're always ready */
314 status
->CardState
|= CS_EVENT_READY_CHANGE
;
316 if (c
->CardValues
& PRESENT_EXT_STATUS
) {
317 pcmcia_read_cis_mem(s
, 1, (c
->ConfigBase
+CISREG_ESR
)>>1, 1, ®
);
319 (reg
& ESR_REQ_ATTN
) ? CS_EVENT_REQUEST_ATTENTION
: 0;
324 (val
& SS_WRPROT
) ? CS_EVENT_WRITE_PROTECT
: 0;
326 (val
& SS_BATDEAD
) ? CS_EVENT_BATTERY_DEAD
: 0;
328 (val
& SS_BATWARN
) ? CS_EVENT_BATTERY_LOW
: 0;
330 (val
& SS_READY
) ? CS_EVENT_READY_CHANGE
: 0;
332 } /* pccard_get_status */
334 static int pccard_get_configuration_info(struct pcmcia_socket
*s
,
335 struct pcmcia_device
*p_dev
,
336 config_info_t
*config
)
340 if (!(s
->state
& SOCKET_PRESENT
))
344 #ifdef CONFIG_CARDBUS
345 if (s
->state
& SOCKET_CARDBUS
) {
346 memset(config
, 0, sizeof(config_info_t
));
347 config
->Vcc
= s
->socket
.Vcc
;
348 config
->Vpp1
= config
->Vpp2
= s
->socket
.Vpp
;
349 config
->Option
= s
->cb_dev
->subordinate
->number
;
350 if (s
->state
& SOCKET_CARDBUS_CONFIG
) {
351 config
->Attributes
= CONF_VALID_CLIENT
;
352 config
->IntType
= INT_CARDBUS
;
353 config
->AssignedIRQ
= s
->irq
.AssignedIRQ
;
354 if (config
->AssignedIRQ
)
355 config
->Attributes
|= CONF_ENABLE_IRQ
;
357 config
->BasePort1
= s
->io
[0].res
->start
;
358 config
->NumPorts1
= s
->io
[0].res
->end
-
359 config
->BasePort1
+ 1;
367 c
= p_dev
->function_config
;
368 config
->Function
= p_dev
->func
;
371 config
->Function
= 0;
374 if ((c
== NULL
) || !(c
->state
& CONFIG_LOCKED
)) {
375 config
->Attributes
= 0;
376 config
->Vcc
= s
->socket
.Vcc
;
377 config
->Vpp1
= config
->Vpp2
= s
->socket
.Vpp
;
381 config
->Attributes
= c
->Attributes
| CONF_VALID_CLIENT
;
382 config
->Vcc
= s
->socket
.Vcc
;
383 config
->Vpp1
= config
->Vpp2
= s
->socket
.Vpp
;
384 config
->IntType
= c
->IntType
;
385 config
->ConfigBase
= c
->ConfigBase
;
386 config
->Status
= c
->Status
;
387 config
->Pin
= c
->Pin
;
388 config
->Copy
= c
->Copy
;
389 config
->Option
= c
->Option
;
390 config
->ExtStatus
= c
->ExtStatus
;
391 config
->Present
= config
->CardValues
= c
->CardValues
;
392 config
->IRQAttributes
= c
->irq
.Attributes
;
393 config
->AssignedIRQ
= s
->irq
.AssignedIRQ
;
394 config
->BasePort1
= c
->io
.BasePort1
;
395 config
->NumPorts1
= c
->io
.NumPorts1
;
396 config
->Attributes1
= c
->io
.Attributes1
;
397 config
->BasePort2
= c
->io
.BasePort2
;
398 config
->NumPorts2
= c
->io
.NumPorts2
;
399 config
->Attributes2
= c
->io
.Attributes2
;
400 config
->IOAddrLines
= c
->io
.IOAddrLines
;
403 } /* pccard_get_configuration_info */
406 /*======================================================================
408 These manage a ring buffer of events pending for one user process
410 ======================================================================*/
413 static int queue_empty(user_info_t
*user
)
415 return (user
->event_head
== user
->event_tail
);
418 static event_t
get_queued_event(user_info_t
*user
)
420 user
->event_tail
= (user
->event_tail
+1) % MAX_EVENTS
;
421 return user
->event
[user
->event_tail
];
424 static void queue_event(user_info_t
*user
, event_t event
)
426 user
->event_head
= (user
->event_head
+1) % MAX_EVENTS
;
427 if (user
->event_head
== user
->event_tail
)
428 user
->event_tail
= (user
->event_tail
+1) % MAX_EVENTS
;
429 user
->event
[user
->event_head
] = event
;
432 void handle_event(struct pcmcia_socket
*s
, event_t event
)
435 for (user
= s
->user
; user
; user
= user
->next
)
436 queue_event(user
, event
);
437 wake_up_interruptible(&s
->queue
);
441 /*======================================================================
443 bind_request() and bind_device() are merged by now. Register_client()
444 is called right at the end of bind_request(), during the driver's
445 ->attach() call. Individual descriptions:
447 bind_request() connects a socket to a particular client driver.
448 It looks up the specified device ID in the list of registered
449 drivers, binds it to the socket, and tries to create an instance
450 of the device. unbind_request() deletes a driver instance.
452 Bind_device() associates a device driver with a particular socket.
453 It is normally called by Driver Services after it has identified
454 a newly inserted card. An instance of that driver will then be
455 eligible to register as a client of this socket.
457 Register_client() uses the dev_info_t handle to match the
458 caller with a socket. The driver must have already been bound
459 to a socket with bind_device() -- in fact, bind_device()
460 allocates the client structure that will be used.
462 ======================================================================*/
464 static int bind_request(struct pcmcia_socket
*s
, bind_info_t
*bind_info
)
466 struct pcmcia_driver
*p_drv
;
467 struct pcmcia_device
*p_dev
;
470 s
= pcmcia_get_socket(s
);
474 pr_debug("bind_request(%d, '%s')\n", s
->sock
,
475 (char *)bind_info
->dev_info
);
477 p_drv
= get_pcmcia_driver(&bind_info
->dev_info
);
483 if (!try_module_get(p_drv
->owner
)) {
488 mutex_lock(&s
->ops_mutex
);
489 list_for_each_entry(p_dev
, &s
->devices_list
, socket_device_list
) {
490 if (p_dev
->func
== bind_info
->function
) {
491 if ((p_dev
->dev
.driver
== &p_drv
->drv
)) {
492 if (p_dev
->cardmgr
) {
493 /* if there's already a device
494 * registered, and it was registered
495 * by userspace before, we need to
496 * return the "instance". */
497 mutex_unlock(&s
->ops_mutex
);
498 bind_info
->instance
= p_dev
;
502 /* the correct driver managed to bind
503 * itself magically to the correct
505 mutex_unlock(&s
->ops_mutex
);
506 p_dev
->cardmgr
= p_drv
;
510 } else if (!p_dev
->dev
.driver
) {
511 /* there's already a device available where
512 * no device has been bound to yet. So we don't
513 * need to register a device! */
514 mutex_unlock(&s
->ops_mutex
);
519 mutex_unlock(&s
->ops_mutex
);
521 p_dev
= pcmcia_device_add(s
, bind_info
->function
);
528 p_dev
->cardmgr
= p_drv
;
530 /* if a driver is already running, we can abort */
531 if (p_dev
->dev
.driver
)
535 * Prevent this racing with a card insertion.
537 mutex_lock(&s
->skt_mutex
);
538 ret
= bus_rescan_devices(&pcmcia_bus_type
);
539 mutex_unlock(&s
->skt_mutex
);
543 /* check whether the driver indeed matched. I don't care if this
544 * is racy or not, because it can only happen on cardmgr access
547 if (!(p_dev
->dev
.driver
== &p_drv
->drv
))
548 p_dev
->cardmgr
= NULL
;
551 module_put(p_drv
->owner
);
553 put_driver(&p_drv
->drv
);
555 pcmcia_put_socket(s
);
560 #ifdef CONFIG_CARDBUS
562 static struct pci_bus
*pcmcia_lookup_bus(struct pcmcia_socket
*s
)
564 if (!s
|| !(s
->state
& SOCKET_CARDBUS
))
567 return s
->cb_dev
->subordinate
;
571 static int get_device_info(struct pcmcia_socket
*s
, bind_info_t
*bind_info
, int first
)
574 struct pcmcia_device
*p_dev
;
575 struct pcmcia_driver
*p_drv
;
578 #ifdef CONFIG_CARDBUS
580 * Some unbelievably ugly code to associate the PCI cardbus
581 * device and its driver with the PCMCIA "bind" information.
586 bus
= pcmcia_lookup_bus(s
);
588 struct list_head
*list
;
589 struct pci_dev
*dev
= NULL
;
591 list
= bus
->devices
.next
;
592 while (list
!= &bus
->devices
) {
593 struct pci_dev
*pdev
= pci_dev_b(list
);
601 /* Try to handle "next" here some way? */
603 if (dev
&& dev
->driver
) {
604 strlcpy(bind_info
->name
, dev
->driver
->name
, DEV_NAME_LEN
);
605 bind_info
->major
= 0;
606 bind_info
->minor
= 0;
607 bind_info
->next
= NULL
;
614 mutex_lock(&s
->ops_mutex
);
615 list_for_each_entry(p_dev
, &s
->devices_list
, socket_device_list
) {
616 if (p_dev
->func
== bind_info
->function
) {
617 p_dev
= pcmcia_get_dev(p_dev
);
623 mutex_unlock(&s
->ops_mutex
);
627 mutex_unlock(&s
->ops_mutex
);
629 p_drv
= to_pcmcia_drv(p_dev
->dev
.driver
);
630 if (p_drv
&& !p_dev
->_locked
) {
636 node
= p_dev
->dev_node
;
638 for (node
= p_dev
->dev_node
; node
; node
= node
->next
)
639 if (node
== bind_info
->next
)
646 strlcpy(bind_info
->name
, node
->dev_name
, DEV_NAME_LEN
);
647 bind_info
->major
= node
->major
;
648 bind_info
->minor
= node
->minor
;
649 bind_info
->next
= node
->next
;
652 pcmcia_put_dev(p_dev
);
654 } /* get_device_info */
657 static int ds_open(struct inode
*inode
, struct file
*file
)
659 socket_t i
= iminor(inode
);
660 struct pcmcia_socket
*s
;
662 static int warning_printed
;
665 pr_debug("ds_open(socket %d)\n", i
);
668 s
= pcmcia_get_socket_by_nr(i
);
673 s
= pcmcia_get_socket(s
);
679 if ((file
->f_flags
& O_ACCMODE
) != O_RDONLY
) {
680 if (s
->pcmcia_state
.busy
) {
681 pcmcia_put_socket(s
);
686 s
->pcmcia_state
.busy
= 1;
689 user
= kmalloc(sizeof(user_info_t
), GFP_KERNEL
);
691 pcmcia_put_socket(s
);
695 user
->event_tail
= user
->event_head
= 0;
696 user
->next
= s
->user
;
697 user
->user_magic
= USER_MAGIC
;
700 file
->private_data
= user
;
702 if (!warning_printed
) {
703 printk(KERN_INFO
"pcmcia: Detected deprecated PCMCIA ioctl "
704 "usage from process: %s.\n", current
->comm
);
705 printk(KERN_INFO
"pcmcia: This interface will soon be removed from "
706 "the kernel; please expect breakage unless you upgrade "
708 printk(KERN_INFO
"pcmcia: see http://www.kernel.org/pub/linux/"
709 "utils/kernel/pcmcia/pcmcia.html for details.\n");
713 if (s
->pcmcia_state
.present
)
714 queue_event(user
, CS_EVENT_CARD_INSERTION
);
720 /*====================================================================*/
722 static int ds_release(struct inode
*inode
, struct file
*file
)
724 struct pcmcia_socket
*s
;
725 user_info_t
*user
, **link
;
727 pr_debug("ds_release(socket %d)\n", iminor(inode
));
729 user
= file
->private_data
;
730 if (CHECK_USER(user
))
735 /* Unlink user data structure */
736 if ((file
->f_flags
& O_ACCMODE
) != O_RDONLY
)
737 s
->pcmcia_state
.busy
= 0;
739 file
->private_data
= NULL
;
740 for (link
= &s
->user
; *link
; link
= &(*link
)->next
)
746 user
->user_magic
= 0;
748 pcmcia_put_socket(s
);
753 /*====================================================================*/
755 static ssize_t
ds_read(struct file
*file
, char __user
*buf
,
756 size_t count
, loff_t
*ppos
)
758 struct pcmcia_socket
*s
;
762 pr_debug("ds_read(socket %d)\n", iminor(file
->f_path
.dentry
->d_inode
));
767 user
= file
->private_data
;
768 if (CHECK_USER(user
))
772 if (s
->pcmcia_state
.dead
)
775 ret
= wait_event_interruptible(s
->queue
, !queue_empty(user
));
777 ret
= put_user(get_queued_event(user
), (int __user
*)buf
) ? -EFAULT
: 4;
782 /*====================================================================*/
784 static ssize_t
ds_write(struct file
*file
, const char __user
*buf
,
785 size_t count
, loff_t
*ppos
)
787 pr_debug("ds_write(socket %d)\n", iminor(file
->f_path
.dentry
->d_inode
));
791 if ((file
->f_flags
& O_ACCMODE
) == O_RDONLY
)
797 /*====================================================================*/
799 /* No kernel lock - fine */
800 static u_int
ds_poll(struct file
*file
, poll_table
*wait
)
802 struct pcmcia_socket
*s
;
805 pr_debug("ds_poll(socket %d)\n", iminor(file
->f_path
.dentry
->d_inode
));
807 user
= file
->private_data
;
808 if (CHECK_USER(user
))
812 * We don't check for a dead socket here since that
813 * will send cardmgr into an endless spin.
815 poll_wait(file
, &s
->queue
, wait
);
816 if (!queue_empty(user
))
817 return POLLIN
| POLLRDNORM
;
821 /*====================================================================*/
823 static int ds_ioctl(struct inode
*inode
, struct file
*file
,
824 u_int cmd
, u_long arg
)
826 struct pcmcia_socket
*s
;
827 void __user
*uarg
= (char __user
*)arg
;
833 pr_debug("ds_ioctl(socket %d, %#x, %#lx)\n", iminor(inode
), cmd
, arg
);
835 user
= file
->private_data
;
836 if (CHECK_USER(user
))
840 if (s
->pcmcia_state
.dead
)
843 size
= (cmd
& IOCSIZE_MASK
) >> IOCSIZE_SHIFT
;
844 if (size
> sizeof(ds_ioctl_arg_t
))
847 /* Permission check */
848 if (!(cmd
& IOC_OUT
) && !capable(CAP_SYS_ADMIN
))
852 if (!access_ok(VERIFY_READ
, uarg
, size
)) {
853 pr_debug("ds_ioctl(): verify_read = %d\n", -EFAULT
);
858 if (!access_ok(VERIFY_WRITE
, uarg
, size
)) {
859 pr_debug("ds_ioctl(): verify_write = %d\n", -EFAULT
);
863 buf
= kmalloc(sizeof(ds_ioctl_arg_t
), GFP_KERNEL
);
870 if (__copy_from_user((char *)buf
, uarg
, size
)) {
877 case DS_ADJUST_RESOURCE_INFO
:
878 ret
= pcmcia_adjust_resource_info(&buf
->adjust
);
880 case DS_GET_CONFIGURATION_INFO
:
881 if (buf
->config
.Function
&&
882 (buf
->config
.Function
>= s
->functions
))
885 struct pcmcia_device
*p_dev
= get_pcmcia_device(s
, buf
->config
.Function
);
886 ret
= pccard_get_configuration_info(s
, p_dev
, &buf
->config
);
887 pcmcia_put_dev(p_dev
);
890 case DS_GET_FIRST_TUPLE
:
891 mutex_lock(&s
->skt_mutex
);
892 pcmcia_validate_mem(s
);
893 mutex_unlock(&s
->skt_mutex
);
894 ret
= pccard_get_first_tuple(s
, BIND_FN_ALL
, &buf
->tuple
);
896 case DS_GET_NEXT_TUPLE
:
897 ret
= pccard_get_next_tuple(s
, BIND_FN_ALL
, &buf
->tuple
);
899 case DS_GET_TUPLE_DATA
:
900 buf
->tuple
.TupleData
= buf
->tuple_parse
.data
;
901 buf
->tuple
.TupleDataMax
= sizeof(buf
->tuple_parse
.data
);
902 ret
= pccard_get_tuple_data(s
, &buf
->tuple
);
905 buf
->tuple
.TupleData
= buf
->tuple_parse
.data
;
906 ret
= pcmcia_parse_tuple(&buf
->tuple
, &buf
->tuple_parse
.parse
);
909 ret
= pcmcia_reset_card(s
);
912 if (buf
->status
.Function
&&
913 (buf
->status
.Function
>= s
->functions
))
916 struct pcmcia_device
*p_dev
= get_pcmcia_device(s
, buf
->status
.Function
);
917 ret
= pccard_get_status(s
, p_dev
, &buf
->status
);
918 pcmcia_put_dev(p_dev
);
921 case DS_VALIDATE_CIS
:
922 mutex_lock(&s
->skt_mutex
);
923 pcmcia_validate_mem(s
);
924 mutex_unlock(&s
->skt_mutex
);
925 ret
= pccard_validate_cis(s
, &buf
->cisinfo
.Chains
);
927 case DS_SUSPEND_CARD
:
928 pcmcia_parse_uevents(s
, PCMCIA_UEVENT_SUSPEND
);
931 pcmcia_parse_uevents(s
, PCMCIA_UEVENT_RESUME
);
934 pcmcia_parse_uevents(s
, PCMCIA_UEVENT_EJECT
);
937 pcmcia_parse_uevents(s
, PCMCIA_UEVENT_INSERT
);
939 case DS_ACCESS_CONFIGURATION_REGISTER
:
940 if ((buf
->conf_reg
.Action
== CS_WRITE
) && !capable(CAP_SYS_ADMIN
)) {
947 if (!(buf
->conf_reg
.Function
&&
948 (buf
->conf_reg
.Function
>= s
->functions
))) {
949 struct pcmcia_device
*p_dev
= get_pcmcia_device(s
, buf
->conf_reg
.Function
);
951 ret
= pcmcia_access_configuration_register(p_dev
, &buf
->conf_reg
);
952 pcmcia_put_dev(p_dev
);
956 case DS_GET_FIRST_REGION
:
957 case DS_GET_NEXT_REGION
:
959 if (!capable(CAP_SYS_ADMIN
)) {
963 printk_once(KERN_WARNING
964 "2.6. kernels use pcmciamtd instead of memory_cs.c and do not require special\n");
965 printk_once(KERN_WARNING
"MTD handling any more.\n");
970 case DS_GET_FIRST_WINDOW
:
971 ret
= pcmcia_get_window(s
, &buf
->win_info
.handle
, 1,
972 &buf
->win_info
.window
);
974 case DS_GET_NEXT_WINDOW
:
975 ret
= pcmcia_get_window(s
, &buf
->win_info
.handle
,
976 buf
->win_info
.handle
+ 1, &buf
->win_info
.window
);
978 case DS_GET_MEM_PAGE
:
979 ret
= pcmcia_get_mem_page(s
, buf
->win_info
.handle
,
983 ret
= pcmcia_replace_cis(s
, buf
->cisdump
.Data
, buf
->cisdump
.Length
);
985 case DS_BIND_REQUEST
:
986 if (!capable(CAP_SYS_ADMIN
)) {
990 err
= bind_request(s
, &buf
->bind_info
);
992 case DS_GET_DEVICE_INFO
:
993 err
= get_device_info(s
, &buf
->bind_info
, 1);
995 case DS_GET_NEXT_DEVICE
:
996 err
= get_device_info(s
, &buf
->bind_info
, 0);
998 case DS_UNBIND_REQUEST
:
1005 if ((err
== 0) && (ret
!= 0)) {
1006 pr_debug("ds_ioctl: ret = %d\n", ret
);
1015 err
= -ENOSPC
; break;
1017 err
= -ENODATA
; break;
1023 if (cmd
& IOC_OUT
) {
1024 if (__copy_to_user(uarg
, (char *)buf
, size
))
1033 /*====================================================================*/
1035 static const struct file_operations ds_fops
= {
1036 .owner
= THIS_MODULE
,
1038 .release
= ds_release
,
1045 void __init
pcmcia_setup_ioctl(void)
1049 /* Set up character device for user mode clients */
1050 i
= register_chrdev(0, "pcmcia", &ds_fops
);
1052 printk(KERN_NOTICE
"unable to find a free device # for "
1053 "Driver Services (error=%d)\n", i
);
1057 #ifdef CONFIG_PROC_FS
1058 proc_pccard
= proc_mkdir("bus/pccard", NULL
);
1060 proc_create("drivers", 0, proc_pccard
, &pccard_drivers_proc_fops
);
1065 void __exit
pcmcia_cleanup_ioctl(void)
1067 #ifdef CONFIG_PROC_FS
1069 remove_proc_entry("drivers", proc_pccard
);
1070 remove_proc_entry("bus/pccard", NULL
);
1073 if (major_dev
!= -1)
1074 unregister_chrdev(major_dev
, "pcmcia");