blob: a06bbec386bdcb1d0c88e616a4b49df0b7143e09 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ds.h -- 16-bit PCMCIA core support
3 *
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.
7 *
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.
11 *
12 * (C) 1999 David A. Hinds
13 * (C) 2003 - 2004 Dominik Brodowski
14 */
15
16#ifndef _LINUX_DS_H
17#define _LINUX_DS_H
18
Dominik Brodowski8e2f3b72005-07-12 13:58:14 -070019#ifdef __KERNEL__
20#include <linux/mod_devicetable.h>
21#endif
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <pcmcia/cs_types.h>
Dominik Brodowski1ad275e2005-06-27 16:28:06 -070024#include <pcmcia/device_id.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26typedef struct tuple_parse_t {
27 tuple_t tuple;
28 cisdata_t data[255];
29 cisparse_t parse;
30} tuple_parse_t;
31
32typedef struct win_info_t {
33 window_handle_t handle;
34 win_req_t window;
35 memreq_t map;
36} win_info_t;
37
38typedef struct bind_info_t {
39 dev_info_t dev_info;
40 u_char function;
Dominik Brodowskifd238232006-03-05 10:45:09 +010041 struct pcmcia_device *instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 char name[DEV_NAME_LEN];
43 u_short major, minor;
44 void *next;
45} bind_info_t;
46
47typedef struct mtd_info_t {
48 dev_info_t dev_info;
49 u_int Attributes;
50 u_int CardOffset;
51} mtd_info_t;
52
Magnus Dammae49ec92008-06-19 20:49:41 +020053typedef struct region_info_t {
54 u_int Attributes;
55 u_int CardOffset;
56 u_int RegionSize;
57 u_int AccessSpeed;
58 u_int BlockSize;
59 u_int PartMultiple;
60 u_char JedecMfr, JedecInfo;
61 memory_handle_t next;
62} region_info_t;
63#define REGION_TYPE 0x0001
64#define REGION_TYPE_CM 0x0000
65#define REGION_TYPE_AM 0x0001
66#define REGION_PREFETCH 0x0008
67#define REGION_CACHEABLE 0x0010
68#define REGION_BAR_MASK 0xe000
69#define REGION_BAR_SHIFT 13
70
Dominik Brodowski53efec92008-07-28 19:44:05 +020071/* For ReplaceCIS */
72typedef struct cisdump_t {
73 u_int Length;
74 cisdata_t Data[CISTPL_MAX_CIS_SIZE];
75} cisdump_t;
76
Dominik Brodowski1a530882008-08-03 08:57:51 +020077/* for GetConfigurationInfo */
78typedef struct config_info_t {
79 u_char Function;
80 u_int Attributes;
81 u_int Vcc, Vpp1, Vpp2;
82 u_int IntType;
83 u_int ConfigBase;
84 u_char Status, Pin, Copy, Option, ExtStatus;
85 u_int Present;
86 u_int CardValues;
87 u_int AssignedIRQ;
88 u_int IRQAttributes;
89 ioaddr_t BasePort1;
90 ioaddr_t NumPorts1;
91 u_int Attributes1;
92 ioaddr_t BasePort2;
93 ioaddr_t NumPorts2;
94 u_int Attributes2;
95 u_int IOAddrLines;
96} config_info_t;
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098typedef union ds_ioctl_arg_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 adjust_t adjust;
100 config_info_t config;
101 tuple_t tuple;
102 tuple_parse_t tuple_parse;
103 client_req_t client_req;
104 cs_status_t status;
105 conf_reg_t conf_reg;
106 cisinfo_t cisinfo;
107 region_info_t region;
108 bind_info_t bind_info;
109 mtd_info_t mtd_info;
110 win_info_t win_info;
111 cisdump_t cisdump;
112} ds_ioctl_arg_t;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define DS_ADJUST_RESOURCE_INFO _IOWR('d', 2, adjust_t)
115#define DS_GET_CONFIGURATION_INFO _IOWR('d', 3, config_info_t)
116#define DS_GET_FIRST_TUPLE _IOWR('d', 4, tuple_t)
117#define DS_GET_NEXT_TUPLE _IOWR('d', 5, tuple_t)
118#define DS_GET_TUPLE_DATA _IOWR('d', 6, tuple_parse_t)
119#define DS_PARSE_TUPLE _IOWR('d', 7, tuple_parse_t)
120#define DS_RESET_CARD _IO ('d', 8)
121#define DS_GET_STATUS _IOWR('d', 9, cs_status_t)
122#define DS_ACCESS_CONFIGURATION_REGISTER _IOWR('d', 10, conf_reg_t)
123#define DS_VALIDATE_CIS _IOR ('d', 11, cisinfo_t)
124#define DS_SUSPEND_CARD _IO ('d', 12)
125#define DS_RESUME_CARD _IO ('d', 13)
126#define DS_EJECT_CARD _IO ('d', 14)
127#define DS_INSERT_CARD _IO ('d', 15)
128#define DS_GET_FIRST_REGION _IOWR('d', 16, region_info_t)
129#define DS_GET_NEXT_REGION _IOWR('d', 17, region_info_t)
130#define DS_REPLACE_CIS _IOWR('d', 18, cisdump_t)
131#define DS_GET_FIRST_WINDOW _IOR ('d', 19, win_info_t)
132#define DS_GET_NEXT_WINDOW _IOWR('d', 20, win_info_t)
133#define DS_GET_MEM_PAGE _IOWR('d', 21, win_info_t)
134
135#define DS_BIND_REQUEST _IOWR('d', 60, bind_info_t)
136#define DS_GET_DEVICE_INFO _IOWR('d', 61, bind_info_t)
137#define DS_GET_NEXT_DEVICE _IOWR('d', 62, bind_info_t)
138#define DS_UNBIND_REQUEST _IOW ('d', 63, bind_info_t)
139#define DS_BIND_MTD _IOWR('d', 64, mtd_info_t)
140
141#ifdef __KERNEL__
142#include <linux/device.h>
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100143#include <pcmcia/ss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145typedef struct dev_node_t {
146 char dev_name[DEV_NAME_LEN];
147 u_short major, minor;
148 struct dev_node_t *next;
149} dev_node_t;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152struct pcmcia_socket;
Dominik Brodowskidbb22f02006-01-10 20:41:27 +0100153struct config_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Bernhard Walle6179b552007-05-06 14:48:44 -0700155struct pcmcia_dynids {
156 spinlock_t lock;
157 struct list_head list;
158};
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160struct pcmcia_driver {
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100161 int (*probe) (struct pcmcia_device *dev);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100162 void (*remove) (struct pcmcia_device *dev);
163
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100164 int (*suspend) (struct pcmcia_device *dev);
165 int (*resume) (struct pcmcia_device *dev);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct module *owner;
Dominik Brodowski1ad275e2005-06-27 16:28:06 -0700168 struct pcmcia_device_id *id_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 struct device_driver drv;
Bernhard Walle6179b552007-05-06 14:48:44 -0700170 struct pcmcia_dynids dynids;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
173/* driver registration */
174int pcmcia_register_driver(struct pcmcia_driver *driver);
175void pcmcia_unregister_driver(struct pcmcia_driver *driver);
176
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178struct pcmcia_device {
179 /* the socket and the device_no [for multifunction devices]
180 uniquely define a pcmcia_device */
181 struct pcmcia_socket *socket;
182
Brice Goglinbd65a682005-09-09 13:03:29 -0700183 char *devname;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 u8 device_no;
186
187 /* the hardware "function" device; certain subdevices can
188 * share one hardware "function" device. */
189 u8 func;
Dominik Brodowskidbb22f02006-01-10 20:41:27 +0100190 struct config_t* function_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 struct list_head socket_device_list;
193
Dominik Brodowskifd238232006-03-05 10:45:09 +0100194 /* deprecated, will be cleaned up soon */
195 dev_node_t *dev_node;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100196 u_int open;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100197 io_req_t io;
198 irq_req_t irq;
199 config_req_t conf;
200 window_handle_t win;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100201
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100202 /* Is the device suspended, or in the process of
203 * being removed? */
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100204 u16 suspended:1;
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100205 u16 _removed:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100207 /* Flags whether io, irq, win configurations were
208 * requested, and whether the configuration is "locked" */
209 u16 _irq:1;
210 u16 _io:1;
211 u16 _win:4;
212 u16 _locked:1;
213
214 /* Flag whether a "fuzzy" func_id based match is
215 * allowed. */
216 u16 allow_func_id_match:1;
Dominik Brodowskif6fbe012006-01-20 15:10:23 +0100217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* information about this device */
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100219 u16 has_manf_id:1;
220 u16 has_card_id:1;
221 u16 has_func_id:1;
Dominik Brodowski1ad275e2005-06-27 16:28:06 -0700222
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100223 u16 reserved:3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 u8 func_id;
226 u16 manf_id;
227 u16 card_id;
228
229 char * prod_id[4];
230
James Bottomley43d9f7f2007-10-16 01:23:58 -0700231 u64 dma_mask;
Dominik Brodowski0e0fad82006-01-15 01:14:31 +0100232 struct device dev;
233
234#ifdef CONFIG_PCMCIA_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* device driver wanted by cardmgr */
236 struct pcmcia_driver * cardmgr;
Dominik Brodowski0e0fad82006-01-15 01:14:31 +0100237#endif
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100238
239 /* data private to drivers */
240 void *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241};
242
243#define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
244#define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
245
Dominik Brodowskie12a9a92005-07-07 17:59:01 -0700246#define handle_to_dev(handle) (handle->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/* error reporting */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200249void cs_error(struct pcmcia_device *handle, int func, int ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251#endif /* __KERNEL__ */
252#endif /* _LINUX_DS_H */