Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 |
Dominik Brodowski | a583578 | 2008-08-28 00:41:16 +0200 | [diff] [blame] | 13 | * (C) 2003 - 2008 Dominik Brodowski |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef _LINUX_DS_H |
| 17 | #define _LINUX_DS_H |
| 18 | |
Dominik Brodowski | 8e2f3b7 | 2005-07-12 13:58:14 -0700 | [diff] [blame] | 19 | #ifdef __KERNEL__ |
| 20 | #include <linux/mod_devicetable.h> |
| 21 | #endif |
| 22 | |
Dominik Brodowski | 1ad275e | 2005-06-27 16:28:06 -0700 | [diff] [blame] | 23 | #include <pcmcia/device_id.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #ifdef __KERNEL__ |
| 26 | #include <linux/device.h> |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 27 | #include <pcmcia/ss.h> |
Dominik Brodowski | 04de081 | 2010-04-20 14:49:01 +0200 | [diff] [blame] | 28 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Dominik Brodowski | a583578 | 2008-08-28 00:41:16 +0200 | [diff] [blame] | 30 | /* |
| 31 | * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus |
| 32 | * a.k.a. PCI drivers |
| 33 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct pcmcia_socket; |
Dominik Brodowski | a583578 | 2008-08-28 00:41:16 +0200 | [diff] [blame] | 35 | struct pcmcia_device; |
Dominik Brodowski | dbb22f0 | 2006-01-10 20:41:27 +0100 | [diff] [blame] | 36 | struct config_t; |
Dominik Brodowski | 9128422 | 2009-10-18 23:32:33 +0200 | [diff] [blame] | 37 | struct net_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Dominik Brodowski | ac8b422 | 2010-07-21 22:38:13 +0200 | [diff] [blame] | 39 | typedef unsigned long window_handle_t; |
| 40 | |
Dominik Brodowski | a583578 | 2008-08-28 00:41:16 +0200 | [diff] [blame] | 41 | /* dynamic device IDs for PCMCIA device drivers. See |
| 42 | * Documentation/pcmcia/driver.txt for details. |
| 43 | */ |
Bernhard Walle | 6179b55 | 2007-05-06 14:48:44 -0700 | [diff] [blame] | 44 | struct pcmcia_dynids { |
Dominik Brodowski | 3f56523 | 2010-01-16 13:06:40 +0100 | [diff] [blame] | 45 | struct mutex lock; |
Bernhard Walle | 6179b55 | 2007-05-06 14:48:44 -0700 | [diff] [blame] | 46 | struct list_head list; |
| 47 | }; |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | struct pcmcia_driver { |
Dominik Brodowski | f8cfa61 | 2005-11-14 21:25:51 +0100 | [diff] [blame] | 50 | int (*probe) (struct pcmcia_device *dev); |
Dominik Brodowski | cc3b486 | 2005-11-14 21:23:14 +0100 | [diff] [blame] | 51 | void (*remove) (struct pcmcia_device *dev); |
| 52 | |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 53 | int (*suspend) (struct pcmcia_device *dev); |
| 54 | int (*resume) (struct pcmcia_device *dev); |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | struct module *owner; |
Dominik Brodowski | 1ad275e | 2005-06-27 16:28:06 -0700 | [diff] [blame] | 57 | struct pcmcia_device_id *id_table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct device_driver drv; |
Bernhard Walle | 6179b55 | 2007-05-06 14:48:44 -0700 | [diff] [blame] | 59 | struct pcmcia_dynids dynids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | /* driver registration */ |
| 63 | int pcmcia_register_driver(struct pcmcia_driver *driver); |
| 64 | void pcmcia_unregister_driver(struct pcmcia_driver *driver); |
| 65 | |
| 66 | struct pcmcia_device { |
| 67 | /* the socket and the device_no [for multifunction devices] |
| 68 | uniquely define a pcmcia_device */ |
| 69 | struct pcmcia_socket *socket; |
| 70 | |
Brice Goglin | bd65a68 | 2005-09-09 13:03:29 -0700 | [diff] [blame] | 71 | char *devname; |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | u8 device_no; |
| 74 | |
| 75 | /* the hardware "function" device; certain subdevices can |
| 76 | * share one hardware "function" device. */ |
| 77 | u8 func; |
Dominik Brodowski | 9fea84f | 2009-12-07 22:11:45 +0100 | [diff] [blame] | 78 | struct config_t *function_config; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | struct list_head socket_device_list; |
| 81 | |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 82 | /* deprecated, will be cleaned up soon */ |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 83 | u_int open; |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 84 | io_req_t io; |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 85 | config_req_t conf; |
| 86 | window_handle_t win; |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 87 | |
Dominik Brodowski | 6f0f38c | 2010-04-08 20:33:16 +0200 | [diff] [blame] | 88 | /* device setup */ |
Dominik Brodowski | eb14120 | 2010-03-07 12:21:16 +0100 | [diff] [blame] | 89 | unsigned int irq; |
Dominik Brodowski | 6f0f38c | 2010-04-08 20:33:16 +0200 | [diff] [blame] | 90 | |
Dominik Brodowski | 04de081 | 2010-04-20 14:49:01 +0200 | [diff] [blame] | 91 | /* Is the device suspended? */ |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 92 | u16 suspended:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 94 | /* Flags whether io, irq, win configurations were |
| 95 | * requested, and whether the configuration is "locked" */ |
| 96 | u16 _irq:1; |
| 97 | u16 _io:1; |
| 98 | u16 _win:4; |
| 99 | u16 _locked:1; |
| 100 | |
| 101 | /* Flag whether a "fuzzy" func_id based match is |
| 102 | * allowed. */ |
| 103 | u16 allow_func_id_match:1; |
Dominik Brodowski | f6fbe01 | 2006-01-20 15:10:23 +0100 | [diff] [blame] | 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | /* information about this device */ |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 106 | u16 has_manf_id:1; |
| 107 | u16 has_card_id:1; |
| 108 | u16 has_func_id:1; |
Dominik Brodowski | 1ad275e | 2005-06-27 16:28:06 -0700 | [diff] [blame] | 109 | |
Dominik Brodowski | 04de081 | 2010-04-20 14:49:01 +0200 | [diff] [blame] | 110 | u16 reserved:4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | u8 func_id; |
| 113 | u16 manf_id; |
| 114 | u16 card_id; |
| 115 | |
Dominik Brodowski | 9fea84f | 2009-12-07 22:11:45 +0100 | [diff] [blame] | 116 | char *prod_id[4]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
James Bottomley | 43d9f7f | 2007-10-16 01:23:58 -0700 | [diff] [blame] | 118 | u64 dma_mask; |
Dominik Brodowski | 0e0fad8 | 2006-01-15 01:14:31 +0100 | [diff] [blame] | 119 | struct device dev; |
| 120 | |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 121 | /* data private to drivers */ |
| 122 | void *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev) |
| 126 | #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv) |
| 127 | |
Dominik Brodowski | a583578 | 2008-08-28 00:41:16 +0200 | [diff] [blame] | 128 | |
Dominik Brodowski | 9128422 | 2009-10-18 23:32:33 +0200 | [diff] [blame] | 129 | /* |
| 130 | * CIS access. |
| 131 | * |
| 132 | * Please use the following functions to access CIS tuples: |
| 133 | * - pcmcia_get_tuple() |
| 134 | * - pcmcia_loop_tuple() |
| 135 | * - pcmcia_get_mac_from_cis() |
| 136 | * |
| 137 | * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface |
| 138 | * might change in future. |
Dominik Brodowski | 272433e | 2008-08-31 15:55:58 +0200 | [diff] [blame] | 139 | */ |
Dominik Brodowski | 9128422 | 2009-10-18 23:32:33 +0200 | [diff] [blame] | 140 | |
| 141 | /* get the very first CIS entry of type @code. Note that buf is pointer |
| 142 | * to u8 *buf; and that you need to kfree(buf) afterwards. */ |
| 143 | size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code, |
| 144 | u8 **buf); |
| 145 | |
| 146 | /* loop over CIS entries */ |
| 147 | int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code, |
| 148 | int (*loop_tuple) (struct pcmcia_device *p_dev, |
| 149 | tuple_t *tuple, |
| 150 | void *priv_data), |
| 151 | void *priv_data); |
| 152 | |
| 153 | /* get the MAC address from CISTPL_FUNCE */ |
| 154 | int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev, |
| 155 | struct net_device *dev); |
| 156 | |
| 157 | |
| 158 | /* parse a tuple_t */ |
Dominik Brodowski | 272433e | 2008-08-31 15:55:58 +0200 | [diff] [blame] | 159 | int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse); |
| 160 | |
Dominik Brodowski | 272433e | 2008-08-31 15:55:58 +0200 | [diff] [blame] | 161 | /* loop CIS entries for valid configuration */ |
| 162 | int pcmcia_loop_config(struct pcmcia_device *p_dev, |
| 163 | int (*conf_check) (struct pcmcia_device *p_dev, |
| 164 | cistpl_cftable_entry_t *cf, |
| 165 | cistpl_cftable_entry_t *dflt, |
| 166 | unsigned int vcc, |
| 167 | void *priv_data), |
| 168 | void *priv_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Dominik Brodowski | 994917f | 2008-08-31 15:20:26 +0200 | [diff] [blame] | 170 | /* is the device still there? */ |
| 171 | struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev); |
| 172 | |
| 173 | /* low-level interface reset */ |
| 174 | int pcmcia_reset_card(struct pcmcia_socket *skt); |
| 175 | |
| 176 | /* CIS config */ |
Dominik Brodowski | 1d5cc19 | 2010-07-24 12:23:21 +0200 | [diff] [blame^] | 177 | int pcmcia_read_config_byte(struct pcmcia_device *p_dev, off_t where, u8 *val); |
| 178 | int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val); |
Dominik Brodowski | 994917f | 2008-08-31 15:20:26 +0200 | [diff] [blame] | 179 | |
| 180 | /* device configuration */ |
| 181 | int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req); |
Dominik Brodowski | eb14120 | 2010-03-07 12:21:16 +0100 | [diff] [blame] | 182 | |
Dominik Brodowski | b19a727 | 2010-03-20 13:10:47 +0100 | [diff] [blame] | 183 | int __must_check |
| 184 | __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, |
Dominik Brodowski | eb14120 | 2010-03-07 12:21:16 +0100 | [diff] [blame] | 185 | irq_handler_t handler); |
Dominik Brodowski | b19a727 | 2010-03-20 13:10:47 +0100 | [diff] [blame] | 186 | static inline __must_check __deprecated int |
| 187 | pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, |
| 188 | irq_handler_t handler) |
| 189 | { |
| 190 | return __pcmcia_request_exclusive_irq(p_dev, handler); |
| 191 | } |
| 192 | |
Dominik Brodowski | eb14120 | 2010-03-07 12:21:16 +0100 | [diff] [blame] | 193 | int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev, |
| 194 | irq_handler_t handler); |
| 195 | |
Dominik Brodowski | 994917f | 2008-08-31 15:20:26 +0200 | [diff] [blame] | 196 | int pcmcia_request_configuration(struct pcmcia_device *p_dev, |
| 197 | config_req_t *req); |
| 198 | |
Dominik Brodowski | 6838b03 | 2009-11-03 01:31:52 +0100 | [diff] [blame] | 199 | int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req, |
Dominik Brodowski | 994917f | 2008-08-31 15:20:26 +0200 | [diff] [blame] | 200 | window_handle_t *wh); |
Magnus Damm | f5560da | 2006-12-13 19:46:38 +0900 | [diff] [blame] | 201 | int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t win); |
Magnus Damm | 868575d | 2006-12-13 19:46:43 +0900 | [diff] [blame] | 202 | int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t win, |
| 203 | memreq_t *req); |
Dominik Brodowski | 994917f | 2008-08-31 15:20:26 +0200 | [diff] [blame] | 204 | |
| 205 | int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod); |
| 206 | void pcmcia_disable_device(struct pcmcia_device *p_dev); |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | #endif /* __KERNEL__ */ |
Dominik Brodowski | a583578 | 2008-08-28 00:41:16 +0200 | [diff] [blame] | 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | #endif /* _LINUX_DS_H */ |