2 * ds.h -- 16-bit PCMCIA core support
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 - 2008 Dominik Brodowski
20 #include <linux/mod_devicetable.h>
23 #include <pcmcia/cs_types.h>
24 #include <pcmcia/device_id.h>
27 #include <linux/device.h>
28 #include <pcmcia/ss.h>
31 * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus
39 /* dynamic device IDs for PCMCIA device drivers. See
40 * Documentation/pcmcia/driver.txt for details.
42 struct pcmcia_dynids
{
44 struct list_head list
;
47 struct pcmcia_driver
{
48 int (*probe
) (struct pcmcia_device
*dev
);
49 void (*remove
) (struct pcmcia_device
*dev
);
51 int (*suspend
) (struct pcmcia_device
*dev
);
52 int (*resume
) (struct pcmcia_device
*dev
);
55 struct pcmcia_device_id
*id_table
;
56 struct device_driver drv
;
57 struct pcmcia_dynids dynids
;
60 /* driver registration */
61 int pcmcia_register_driver(struct pcmcia_driver
*driver
);
62 void pcmcia_unregister_driver(struct pcmcia_driver
*driver
);
64 /* Some drivers use dev_node_t to store char or block device information.
65 * Don't use this in new drivers, though.
67 typedef struct dev_node_t
{
68 char dev_name
[DEV_NAME_LEN
];
70 struct dev_node_t
*next
;
73 struct pcmcia_device
{
74 /* the socket and the device_no [for multifunction devices]
75 uniquely define a pcmcia_device */
76 struct pcmcia_socket
*socket
;
82 /* the hardware "function" device; certain subdevices can
83 * share one hardware "function" device. */
85 struct config_t
*function_config
;
87 struct list_head socket_device_list
;
89 /* deprecated, will be cleaned up soon */
97 /* Is the device suspended, or in the process of
102 /* Flags whether io, irq, win configurations were
103 * requested, and whether the configuration is "locked" */
109 /* Flag whether a "fuzzy" func_id based match is
111 u16 allow_func_id_match
:1;
113 /* information about this device */
129 #ifdef CONFIG_PCMCIA_IOCTL
130 /* device driver wanted by cardmgr */
131 struct pcmcia_driver
*cardmgr
;
134 /* data private to drivers */
138 #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
139 #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
145 * Please use the following functions to access CIS tuples:
146 * - pcmcia_get_tuple()
147 * - pcmcia_loop_tuple()
148 * - pcmcia_get_mac_from_cis()
150 * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface
151 * might change in future.
154 /* get the very first CIS entry of type @code. Note that buf is pointer
155 * to u8 *buf; and that you need to kfree(buf) afterwards. */
156 size_t pcmcia_get_tuple(struct pcmcia_device
*p_dev
, cisdata_t code
,
159 /* loop over CIS entries */
160 int pcmcia_loop_tuple(struct pcmcia_device
*p_dev
, cisdata_t code
,
161 int (*loop_tuple
) (struct pcmcia_device
*p_dev
,
166 /* get the MAC address from CISTPL_FUNCE */
167 int pcmcia_get_mac_from_cis(struct pcmcia_device
*p_dev
,
168 struct net_device
*dev
);
171 /* parse a tuple_t */
172 int pcmcia_parse_tuple(tuple_t
*tuple
, cisparse_t
*parse
);
174 /* loop CIS entries for valid configuration */
175 int pcmcia_loop_config(struct pcmcia_device
*p_dev
,
176 int (*conf_check
) (struct pcmcia_device
*p_dev
,
177 cistpl_cftable_entry_t
*cf
,
178 cistpl_cftable_entry_t
*dflt
,
183 /* is the device still there? */
184 struct pcmcia_device
*pcmcia_dev_present(struct pcmcia_device
*p_dev
);
186 /* low-level interface reset */
187 int pcmcia_reset_card(struct pcmcia_socket
*skt
);
190 int pcmcia_access_configuration_register(struct pcmcia_device
*p_dev
,
193 /* device configuration */
194 int pcmcia_request_io(struct pcmcia_device
*p_dev
, io_req_t
*req
);
195 int pcmcia_request_irq(struct pcmcia_device
*p_dev
, irq_req_t
*req
);
196 int pcmcia_request_configuration(struct pcmcia_device
*p_dev
,
199 int pcmcia_request_window(struct pcmcia_device
*p_dev
, win_req_t
*req
,
200 window_handle_t
*wh
);
201 int pcmcia_release_window(struct pcmcia_device
*p_dev
, window_handle_t win
);
202 int pcmcia_map_mem_page(struct pcmcia_device
*p_dev
, window_handle_t win
,
205 int pcmcia_modify_configuration(struct pcmcia_device
*p_dev
, modconf_t
*mod
);
206 void pcmcia_disable_device(struct pcmcia_device
*p_dev
);
208 #endif /* __KERNEL__ */
212 /* Below, there are only definitions which are used by
214 * - deprecated PCMCIA userspace tools only
216 * here be dragons ... here be dragons ... here be dragons ... here be drag
219 #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__)
221 #if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \
223 /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */
224 typedef u_int ioaddr_t
;
226 typedef u_short ioaddr_t
;
229 /* for AdjustResourceInfo */
230 typedef struct adjust_t
{
251 #define REMOVE_MANAGED_RESOURCE 1
252 #define ADD_MANAGED_RESOURCE 2
253 #define GET_FIRST_MANAGED_RESOURCE 3
254 #define GET_NEXT_MANAGED_RESOURCE 4
256 #define RES_MEMORY_RANGE 1
257 #define RES_IO_RANGE 2
259 /* Attribute field */
260 #define RES_IRQ_TYPE 0x03
261 #define RES_IRQ_TYPE_EXCLUSIVE 0
262 #define RES_IRQ_TYPE_TIME 1
263 #define RES_IRQ_TYPE_DYNAMIC 2
264 #define RES_IRQ_CSC 0x04
265 #define RES_SHARED 0x08
266 #define RES_RESERVED 0x10
267 #define RES_ALLOCATED 0x20
268 #define RES_REMOVED 0x40
271 typedef struct tuple_parse_t
{
277 typedef struct win_info_t
{
278 window_handle_t handle
;
283 typedef struct bind_info_t
{
286 struct pcmcia_device
*instance
;
287 char name
[DEV_NAME_LEN
];
288 u_short major
, minor
;
292 typedef struct mtd_info_t
{
298 typedef struct region_info_t
{
305 u_char JedecMfr
, JedecInfo
;
306 memory_handle_t next
;
309 #define REGION_TYPE 0x0001
310 #define REGION_TYPE_CM 0x0000
311 #define REGION_TYPE_AM 0x0001
312 #define REGION_PREFETCH 0x0008
313 #define REGION_CACHEABLE 0x0010
314 #define REGION_BAR_MASK 0xe000
315 #define REGION_BAR_SHIFT 13
318 typedef struct cisdump_t
{
320 cisdata_t Data
[CISTPL_MAX_CIS_SIZE
];
323 /* for GetConfigurationInfo */
324 typedef struct config_info_t
{
327 u_int Vcc
, Vpp1
, Vpp2
;
330 u_char Status
, Pin
, Copy
, Option
, ExtStatus
;
344 /* For ValidateCIS */
345 typedef struct cisinfo_t
{
349 typedef struct cs_status_t
{
355 typedef union ds_ioctl_arg_t
{
357 config_info_t config
;
359 tuple_parse_t tuple_parse
;
360 client_req_t client_req
;
364 region_info_t region
;
365 bind_info_t bind_info
;
371 #define DS_ADJUST_RESOURCE_INFO _IOWR('d', 2, adjust_t)
372 #define DS_GET_CONFIGURATION_INFO _IOWR('d', 3, config_info_t)
373 #define DS_GET_FIRST_TUPLE _IOWR('d', 4, tuple_t)
374 #define DS_GET_NEXT_TUPLE _IOWR('d', 5, tuple_t)
375 #define DS_GET_TUPLE_DATA _IOWR('d', 6, tuple_parse_t)
376 #define DS_PARSE_TUPLE _IOWR('d', 7, tuple_parse_t)
377 #define DS_RESET_CARD _IO ('d', 8)
378 #define DS_GET_STATUS _IOWR('d', 9, cs_status_t)
379 #define DS_ACCESS_CONFIGURATION_REGISTER _IOWR('d', 10, conf_reg_t)
380 #define DS_VALIDATE_CIS _IOR ('d', 11, cisinfo_t)
381 #define DS_SUSPEND_CARD _IO ('d', 12)
382 #define DS_RESUME_CARD _IO ('d', 13)
383 #define DS_EJECT_CARD _IO ('d', 14)
384 #define DS_INSERT_CARD _IO ('d', 15)
385 #define DS_GET_FIRST_REGION _IOWR('d', 16, region_info_t)
386 #define DS_GET_NEXT_REGION _IOWR('d', 17, region_info_t)
387 #define DS_REPLACE_CIS _IOWR('d', 18, cisdump_t)
388 #define DS_GET_FIRST_WINDOW _IOR ('d', 19, win_info_t)
389 #define DS_GET_NEXT_WINDOW _IOWR('d', 20, win_info_t)
390 #define DS_GET_MEM_PAGE _IOWR('d', 21, win_info_t)
392 #define DS_BIND_REQUEST _IOWR('d', 60, bind_info_t)
393 #define DS_GET_DEVICE_INFO _IOWR('d', 61, bind_info_t)
394 #define DS_GET_NEXT_DEVICE _IOWR('d', 62, bind_info_t)
395 #define DS_UNBIND_REQUEST _IOW ('d', 63, bind_info_t)
396 #define DS_BIND_MTD _IOWR('d', 64, mtd_info_t)
399 /* used in userspace only */
400 #define CS_IN_USE 0x1e
402 #define INFO_MASTER_CLIENT 0x01
403 #define INFO_IO_CLIENT 0x02
404 #define INFO_MTD_CLIENT 0x04
405 #define INFO_MEM_CLIENT 0x08
406 #define MAX_NUM_CLIENTS 3
408 #define INFO_CARD_SHARE 0x10
409 #define INFO_CARD_EXCL 0x20
412 #endif /* !defined(__KERNEL__) || defined(CONFIG_PCMCIA_IOCTL) */
414 #endif /* _LINUX_DS_H */