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>
29 #include <asm/atomic.h>
32 * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus
40 /* dynamic device IDs for PCMCIA device drivers. See
41 * Documentation/pcmcia/driver.txt for details.
43 struct pcmcia_dynids {
45 struct list_head list;
48 struct pcmcia_driver {
49 int (*probe) (struct pcmcia_device *dev);
50 void (*remove) (struct pcmcia_device *dev);
52 int (*suspend) (struct pcmcia_device *dev);
53 int (*resume) (struct pcmcia_device *dev);
56 struct pcmcia_device_id *id_table;
57 struct device_driver drv;
58 struct pcmcia_dynids dynids;
61 /* driver registration */
62 int pcmcia_register_driver(struct pcmcia_driver *driver);
63 void pcmcia_unregister_driver(struct pcmcia_driver *driver);
65 struct pcmcia_device {
66 /* the socket and the device_no [for multifunction devices]
67 uniquely define a pcmcia_device */
68 struct pcmcia_socket *socket;
74 /* the hardware "function" device; certain subdevices can
75 * share one hardware "function" device. */
77 struct config_t *function_config;
79 struct list_head socket_device_list;
81 /* deprecated, will be cleaned up soon */
90 /* Is the device suspended? */
93 /* Flags whether io, irq, win configurations were
94 * requested, and whether the configuration is "locked" */
100 /* Flag whether a "fuzzy" func_id based match is
102 u16 allow_func_id_match:1;
104 /* information about this device */
120 #ifdef CONFIG_PCMCIA_IOCTL
121 /* device driver wanted by cardmgr */
122 struct pcmcia_driver *cardmgr;
125 /* data private to drivers */
129 #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
130 #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
136 * Please use the following functions to access CIS tuples:
137 * - pcmcia_get_tuple()
138 * - pcmcia_loop_tuple()
139 * - pcmcia_get_mac_from_cis()
141 * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface
142 * might change in future.
145 /* get the very first CIS entry of type @code. Note that buf is pointer
146 * to u8 *buf; and that you need to kfree(buf) afterwards. */
147 size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
150 /* loop over CIS entries */
151 int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code,
152 int (*loop_tuple) (struct pcmcia_device *p_dev,
157 /* get the MAC address from CISTPL_FUNCE */
158 int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev,
159 struct net_device *dev);
162 /* parse a tuple_t */
163 int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse);
165 /* loop CIS entries for valid configuration */
166 int pcmcia_loop_config(struct pcmcia_device *p_dev,
167 int (*conf_check) (struct pcmcia_device *p_dev,
168 cistpl_cftable_entry_t *cf,
169 cistpl_cftable_entry_t *dflt,
174 /* is the device still there? */
175 struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev);
177 /* low-level interface reset */
178 int pcmcia_reset_card(struct pcmcia_socket *skt);
181 int pcmcia_access_configuration_register(struct pcmcia_device *p_dev,
184 /* device configuration */
185 int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req);
188 __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
189 irq_handler_t handler);
190 static inline __must_check __deprecated int
191 pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
192 irq_handler_t handler)
194 return __pcmcia_request_exclusive_irq(p_dev, handler);
197 int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev,
198 irq_handler_t handler);
200 int pcmcia_request_configuration(struct pcmcia_device *p_dev,
203 int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req,
204 window_handle_t *wh);
205 int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t win);
206 int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t win,
209 int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod);
210 void pcmcia_disable_device(struct pcmcia_device *p_dev);
212 #endif /* __KERNEL__ */
216 /* Below, there are only definitions which are used by
218 * - deprecated PCMCIA userspace tools only
220 * here be dragons ... here be dragons ... here be dragons ... here be drag
223 #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__)
225 #if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \
227 /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */
228 typedef u_int ioaddr_t;
230 typedef u_short ioaddr_t;
233 /* for AdjustResourceInfo */
234 typedef struct adjust_t {
255 #define REMOVE_MANAGED_RESOURCE 1
256 #define ADD_MANAGED_RESOURCE 2
257 #define GET_FIRST_MANAGED_RESOURCE 3
258 #define GET_NEXT_MANAGED_RESOURCE 4
260 #define RES_MEMORY_RANGE 1
261 #define RES_IO_RANGE 2
263 /* Attribute field */
264 #define RES_IRQ_TYPE 0x03
265 #define RES_IRQ_TYPE_EXCLUSIVE 0
266 #define RES_IRQ_TYPE_TIME 1
267 #define RES_IRQ_TYPE_DYNAMIC 2
268 #define RES_IRQ_CSC 0x04
269 #define RES_SHARED 0x08
270 #define RES_RESERVED 0x10
271 #define RES_ALLOCATED 0x20
272 #define RES_REMOVED 0x40
275 typedef struct tuple_parse_t {
281 typedef struct win_info_t {
282 window_handle_t handle;
287 typedef struct bind_info_t {
290 struct pcmcia_device *instance;
291 char name[DEV_NAME_LEN];
292 u_short major, minor;
296 typedef struct mtd_info_t {
302 typedef struct region_info_t {
309 u_char JedecMfr, JedecInfo;
310 memory_handle_t next;
313 #define REGION_TYPE 0x0001
314 #define REGION_TYPE_CM 0x0000
315 #define REGION_TYPE_AM 0x0001
316 #define REGION_PREFETCH 0x0008
317 #define REGION_CACHEABLE 0x0010
318 #define REGION_BAR_MASK 0xe000
319 #define REGION_BAR_SHIFT 13
322 typedef struct cisdump_t {
324 cisdata_t Data[CISTPL_MAX_CIS_SIZE];
327 /* for GetConfigurationInfo */
328 typedef struct config_info_t {
331 u_int Vcc, Vpp1, Vpp2;
334 u_char Status, Pin, Copy, Option, ExtStatus;
348 /* For ValidateCIS */
349 typedef struct cisinfo_t {
353 typedef struct cs_status_t {
359 typedef union ds_ioctl_arg_t {
361 config_info_t config;
363 tuple_parse_t tuple_parse;
364 client_req_t client_req;
368 region_info_t region;
369 bind_info_t bind_info;
375 #define DS_ADJUST_RESOURCE_INFO _IOWR('d', 2, adjust_t)
376 #define DS_GET_CONFIGURATION_INFO _IOWR('d', 3, config_info_t)
377 #define DS_GET_FIRST_TUPLE _IOWR('d', 4, tuple_t)
378 #define DS_GET_NEXT_TUPLE _IOWR('d', 5, tuple_t)
379 #define DS_GET_TUPLE_DATA _IOWR('d', 6, tuple_parse_t)
380 #define DS_PARSE_TUPLE _IOWR('d', 7, tuple_parse_t)
381 #define DS_RESET_CARD _IO ('d', 8)
382 #define DS_GET_STATUS _IOWR('d', 9, cs_status_t)
383 #define DS_ACCESS_CONFIGURATION_REGISTER _IOWR('d', 10, conf_reg_t)
384 #define DS_VALIDATE_CIS _IOR ('d', 11, cisinfo_t)
385 #define DS_SUSPEND_CARD _IO ('d', 12)
386 #define DS_RESUME_CARD _IO ('d', 13)
387 #define DS_EJECT_CARD _IO ('d', 14)
388 #define DS_INSERT_CARD _IO ('d', 15)
389 #define DS_GET_FIRST_REGION _IOWR('d', 16, region_info_t)
390 #define DS_GET_NEXT_REGION _IOWR('d', 17, region_info_t)
391 #define DS_REPLACE_CIS _IOWR('d', 18, cisdump_t)
392 #define DS_GET_FIRST_WINDOW _IOR ('d', 19, win_info_t)
393 #define DS_GET_NEXT_WINDOW _IOWR('d', 20, win_info_t)
394 #define DS_GET_MEM_PAGE _IOWR('d', 21, win_info_t)
396 #define DS_BIND_REQUEST _IOWR('d', 60, bind_info_t)
397 #define DS_GET_DEVICE_INFO _IOWR('d', 61, bind_info_t)
398 #define DS_GET_NEXT_DEVICE _IOWR('d', 62, bind_info_t)
399 #define DS_UNBIND_REQUEST _IOW ('d', 63, bind_info_t)
400 #define DS_BIND_MTD _IOWR('d', 64, mtd_info_t)
403 /* used in userspace only */
404 #define CS_IN_USE 0x1e
406 #define INFO_MASTER_CLIENT 0x01
407 #define INFO_IO_CLIENT 0x02
408 #define INFO_MTD_CLIENT 0x04
409 #define INFO_MEM_CLIENT 0x08
410 #define MAX_NUM_CLIENTS 3
412 #define INFO_CARD_SHARE 0x10
413 #define INFO_CARD_EXCL 0x20
416 #endif /* !defined(__KERNEL__) || defined(CONFIG_PCMCIA_IOCTL) */
418 #endif /* _LINUX_DS_H */