diff options
Diffstat (limited to 'include/pcmcia/ds.h')
-rw-r--r-- | include/pcmcia/ds.h | 251 |
1 files changed, 36 insertions, 215 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index c180165fbd3e..70c58ed2278c 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/mod_devicetable.h> | 20 | #include <linux/mod_devicetable.h> |
21 | #endif | 21 | #endif |
22 | 22 | ||
23 | #include <pcmcia/cs_types.h> | ||
24 | #include <pcmcia/device_id.h> | 23 | #include <pcmcia/device_id.h> |
25 | 24 | ||
26 | #ifdef __KERNEL__ | 25 | #ifdef __KERNEL__ |
@@ -37,6 +36,8 @@ struct pcmcia_device; | |||
37 | struct config_t; | 36 | struct config_t; |
38 | struct net_device; | 37 | struct net_device; |
39 | 38 | ||
39 | typedef struct resource *window_handle_t; | ||
40 | |||
40 | /* dynamic device IDs for PCMCIA device drivers. See | 41 | /* dynamic device IDs for PCMCIA device drivers. See |
41 | * Documentation/pcmcia/driver.txt for details. | 42 | * Documentation/pcmcia/driver.txt for details. |
42 | */ | 43 | */ |
@@ -62,6 +63,17 @@ struct pcmcia_driver { | |||
62 | int pcmcia_register_driver(struct pcmcia_driver *driver); | 63 | int pcmcia_register_driver(struct pcmcia_driver *driver); |
63 | void pcmcia_unregister_driver(struct pcmcia_driver *driver); | 64 | void pcmcia_unregister_driver(struct pcmcia_driver *driver); |
64 | 65 | ||
66 | /* for struct resource * array embedded in struct pcmcia_device */ | ||
67 | enum { | ||
68 | PCMCIA_IOPORT_0, | ||
69 | PCMCIA_IOPORT_1, | ||
70 | PCMCIA_IOMEM_0, | ||
71 | PCMCIA_IOMEM_1, | ||
72 | PCMCIA_IOMEM_2, | ||
73 | PCMCIA_IOMEM_3, | ||
74 | PCMCIA_NUM_RESOURCES, | ||
75 | }; | ||
76 | |||
65 | struct pcmcia_device { | 77 | struct pcmcia_device { |
66 | /* the socket and the device_no [for multifunction devices] | 78 | /* the socket and the device_no [for multifunction devices] |
67 | uniquely define a pcmcia_device */ | 79 | uniquely define a pcmcia_device */ |
@@ -79,13 +91,14 @@ struct pcmcia_device { | |||
79 | struct list_head socket_device_list; | 91 | struct list_head socket_device_list; |
80 | 92 | ||
81 | /* deprecated, will be cleaned up soon */ | 93 | /* deprecated, will be cleaned up soon */ |
82 | u_int open; | ||
83 | io_req_t io; | ||
84 | config_req_t conf; | 94 | config_req_t conf; |
85 | window_handle_t win; | 95 | window_handle_t win; |
86 | 96 | ||
87 | /* device setup */ | 97 | /* device setup */ |
88 | unsigned int irq; | 98 | unsigned int irq; |
99 | struct resource *resource[PCMCIA_NUM_RESOURCES]; | ||
100 | |||
101 | unsigned int io_lines; /* number of I/O lines */ | ||
89 | 102 | ||
90 | /* Is the device suspended? */ | 103 | /* Is the device suspended? */ |
91 | u16 suspended:1; | 104 | u16 suspended:1; |
@@ -117,13 +130,9 @@ struct pcmcia_device { | |||
117 | u64 dma_mask; | 130 | u64 dma_mask; |
118 | struct device dev; | 131 | struct device dev; |
119 | 132 | ||
120 | #ifdef CONFIG_PCMCIA_IOCTL | ||
121 | /* device driver wanted by cardmgr */ | ||
122 | struct pcmcia_driver *cardmgr; | ||
123 | #endif | ||
124 | |||
125 | /* data private to drivers */ | 133 | /* data private to drivers */ |
126 | void *priv; | 134 | void *priv; |
135 | unsigned int open; | ||
127 | }; | 136 | }; |
128 | 137 | ||
129 | #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev) | 138 | #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev) |
@@ -178,11 +187,11 @@ struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev); | |||
178 | int pcmcia_reset_card(struct pcmcia_socket *skt); | 187 | int pcmcia_reset_card(struct pcmcia_socket *skt); |
179 | 188 | ||
180 | /* CIS config */ | 189 | /* CIS config */ |
181 | int pcmcia_access_configuration_register(struct pcmcia_device *p_dev, | 190 | int pcmcia_read_config_byte(struct pcmcia_device *p_dev, off_t where, u8 *val); |
182 | conf_reg_t *reg); | 191 | int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val); |
183 | 192 | ||
184 | /* device configuration */ | 193 | /* device configuration */ |
185 | int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req); | 194 | int pcmcia_request_io(struct pcmcia_device *p_dev); |
186 | 195 | ||
187 | int __must_check | 196 | int __must_check |
188 | __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, | 197 | __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, |
@@ -204,215 +213,27 @@ int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req, | |||
204 | window_handle_t *wh); | 213 | window_handle_t *wh); |
205 | int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t win); | 214 | 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, | 215 | int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t win, |
207 | memreq_t *req); | 216 | unsigned int offset); |
208 | 217 | ||
209 | int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod); | 218 | int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod); |
210 | void pcmcia_disable_device(struct pcmcia_device *p_dev); | 219 | void pcmcia_disable_device(struct pcmcia_device *p_dev); |
211 | 220 | ||
212 | #endif /* __KERNEL__ */ | 221 | /* IO ports */ |
213 | 222 | #define IO_DATA_PATH_WIDTH 0x18 | |
214 | 223 | #define IO_DATA_PATH_WIDTH_8 0x00 | |
224 | #define IO_DATA_PATH_WIDTH_16 0x08 | ||
225 | #define IO_DATA_PATH_WIDTH_AUTO 0x10 | ||
215 | 226 | ||
216 | /* Below, there are only definitions which are used by | 227 | /* convert flag found in cfgtable to data path width parameter */ |
217 | * - the PCMCIA ioctl | 228 | static inline int pcmcia_io_cfg_data_width(unsigned int flags) |
218 | * - deprecated PCMCIA userspace tools only | 229 | { |
219 | * | 230 | if (!(flags & CISTPL_IO_8BIT)) |
220 | * here be dragons ... here be dragons ... here be dragons ... here be drag | 231 | return IO_DATA_PATH_WIDTH_16; |
221 | */ | 232 | if (!(flags & CISTPL_IO_16BIT)) |
222 | 233 | return IO_DATA_PATH_WIDTH_8; | |
223 | #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__) | 234 | return IO_DATA_PATH_WIDTH_AUTO; |
224 | 235 | } | |
225 | #if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \ | ||
226 | defined(__bfin__) | ||
227 | /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */ | ||
228 | typedef u_int ioaddr_t; | ||
229 | #else | ||
230 | typedef u_short ioaddr_t; | ||
231 | #endif | ||
232 | 236 | ||
233 | /* for AdjustResourceInfo */ | 237 | #endif /* __KERNEL__ */ |
234 | typedef struct adjust_t { | ||
235 | u_int Action; | ||
236 | u_int Resource; | ||
237 | u_int Attributes; | ||
238 | union { | ||
239 | struct memory { | ||
240 | u_long Base; | ||
241 | u_long Size; | ||
242 | } memory; | ||
243 | struct io { | ||
244 | ioaddr_t BasePort; | ||
245 | ioaddr_t NumPorts; | ||
246 | u_int IOAddrLines; | ||
247 | } io; | ||
248 | struct irq { | ||
249 | u_int IRQ; | ||
250 | } irq; | ||
251 | } resource; | ||
252 | } adjust_t; | ||
253 | |||
254 | /* Action field */ | ||
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 | ||
259 | /* Resource field */ | ||
260 | #define RES_MEMORY_RANGE 1 | ||
261 | #define RES_IO_RANGE 2 | ||
262 | #define RES_IRQ 3 | ||
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 | ||
273 | |||
274 | |||
275 | typedef struct tuple_parse_t { | ||
276 | tuple_t tuple; | ||
277 | cisdata_t data[255]; | ||
278 | cisparse_t parse; | ||
279 | } tuple_parse_t; | ||
280 | |||
281 | typedef struct win_info_t { | ||
282 | window_handle_t handle; | ||
283 | win_req_t window; | ||
284 | memreq_t map; | ||
285 | } win_info_t; | ||
286 | |||
287 | typedef struct bind_info_t { | ||
288 | dev_info_t dev_info; | ||
289 | u_char function; | ||
290 | struct pcmcia_device *instance; | ||
291 | char name[DEV_NAME_LEN]; | ||
292 | u_short major, minor; | ||
293 | void *next; | ||
294 | } bind_info_t; | ||
295 | |||
296 | typedef struct mtd_info_t { | ||
297 | dev_info_t dev_info; | ||
298 | u_int Attributes; | ||
299 | u_int CardOffset; | ||
300 | } mtd_info_t; | ||
301 | |||
302 | typedef struct region_info_t { | ||
303 | u_int Attributes; | ||
304 | u_int CardOffset; | ||
305 | u_int RegionSize; | ||
306 | u_int AccessSpeed; | ||
307 | u_int BlockSize; | ||
308 | u_int PartMultiple; | ||
309 | u_char JedecMfr, JedecInfo; | ||
310 | memory_handle_t next; | ||
311 | } region_info_t; | ||
312 | |||
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 | ||
320 | |||
321 | /* For ReplaceCIS */ | ||
322 | typedef struct cisdump_t { | ||
323 | u_int Length; | ||
324 | cisdata_t Data[CISTPL_MAX_CIS_SIZE]; | ||
325 | } cisdump_t; | ||
326 | |||
327 | /* for GetConfigurationInfo */ | ||
328 | typedef struct config_info_t { | ||
329 | u_char Function; | ||
330 | u_int Attributes; | ||
331 | u_int Vcc, Vpp1, Vpp2; | ||
332 | u_int IntType; | ||
333 | u_int ConfigBase; | ||
334 | u_char Status, Pin, Copy, Option, ExtStatus; | ||
335 | u_int Present; | ||
336 | u_int CardValues; | ||
337 | u_int AssignedIRQ; | ||
338 | u_int IRQAttributes; | ||
339 | ioaddr_t BasePort1; | ||
340 | ioaddr_t NumPorts1; | ||
341 | u_int Attributes1; | ||
342 | ioaddr_t BasePort2; | ||
343 | ioaddr_t NumPorts2; | ||
344 | u_int Attributes2; | ||
345 | u_int IOAddrLines; | ||
346 | } config_info_t; | ||
347 | |||
348 | /* For ValidateCIS */ | ||
349 | typedef struct cisinfo_t { | ||
350 | u_int Chains; | ||
351 | } cisinfo_t; | ||
352 | |||
353 | typedef struct cs_status_t { | ||
354 | u_char Function; | ||
355 | event_t CardState; | ||
356 | event_t SocketState; | ||
357 | } cs_status_t; | ||
358 | |||
359 | typedef union ds_ioctl_arg_t { | ||
360 | adjust_t adjust; | ||
361 | config_info_t config; | ||
362 | tuple_t tuple; | ||
363 | tuple_parse_t tuple_parse; | ||
364 | client_req_t client_req; | ||
365 | cs_status_t status; | ||
366 | conf_reg_t conf_reg; | ||
367 | cisinfo_t cisinfo; | ||
368 | region_info_t region; | ||
369 | bind_info_t bind_info; | ||
370 | mtd_info_t mtd_info; | ||
371 | win_info_t win_info; | ||
372 | cisdump_t cisdump; | ||
373 | } ds_ioctl_arg_t; | ||
374 | |||
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) | ||
395 | |||
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) | ||
401 | |||
402 | |||
403 | /* used in userspace only */ | ||
404 | #define CS_IN_USE 0x1e | ||
405 | |||
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 | ||
411 | |||
412 | #define INFO_CARD_SHARE 0x10 | ||
413 | #define INFO_CARD_EXCL 0x20 | ||
414 | |||
415 | |||
416 | #endif /* !defined(__KERNEL__) || defined(CONFIG_PCMCIA_IOCTL) */ | ||
417 | 238 | ||
418 | #endif /* _LINUX_DS_H */ | 239 | #endif /* _LINUX_DS_H */ |