cardbusvar.h revision 1.24 1 1.24 augustss /* $NetBSD: cardbusvar.h,v 1.24 2001/11/06 03:18:18 augustss Exp $ */
2 1.1 haya
3 1.1 haya /*
4 1.14 haya * Copyright (c) 1998, 1999 and 2000
5 1.1 haya * HAYAKAWA Koichi. All rights reserved.
6 1.1 haya *
7 1.1 haya * Redistribution and use in source and binary forms, with or without
8 1.1 haya * modification, are permitted provided that the following conditions
9 1.1 haya * are met:
10 1.1 haya * 1. Redistributions of source code must retain the above copyright
11 1.1 haya * notice, this list of conditions and the following disclaimer.
12 1.1 haya * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 haya * notice, this list of conditions and the following disclaimer in the
14 1.1 haya * documentation and/or other materials provided with the distribution.
15 1.1 haya * 3. All advertising materials mentioning features or use of this software
16 1.1 haya * must display the following acknowledgement:
17 1.1 haya * This product includes software developed by the author.
18 1.1 haya * 4. The name of the author may not be used to endorse or promote products
19 1.1 haya * derived from this software without specific prior written permission.
20 1.1 haya *
21 1.1 haya *
22 1.1 haya * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 haya * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 1.1 haya * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 1.1 haya * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
26 1.1 haya * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 1.1 haya * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 1.1 haya * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 haya * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30 1.1 haya * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 1.1 haya * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 1.1 haya * POSSIBILITY OF SUCH DAMAGE.
33 1.1 haya */
34 1.1 haya
35 1.11 kleink #ifndef _DEV_CARDBUS_CARDBUSVAR_H_
36 1.11 kleink #define _DEV_CARDBUS_CARDBUSVAR_H_
37 1.1 haya
38 1.22 haya #include <dev/cardbus/cardbusreg.h>
39 1.1 haya #if 1
40 1.1 haya #include <dev/cardbus/rbus.h>
41 1.1 haya #endif
42 1.1 haya
43 1.1 haya
44 1.1 haya
45 1.1 haya typedef void *cardbus_chipset_tag_t;
46 1.1 haya typedef int cardbus_intr_handle_t;
47 1.1 haya
48 1.1 haya
49 1.1 haya #if rbus
50 1.21 haya /*
51 1.21 haya * struct cardbus_functions contains the pointers for basic cardbus
52 1.21 haya * functions. Those functions must be provided by cardbus bridge.
53 1.21 haya * The child devices can use those functions. The contained functions
54 1.21 haya * are: cardbus_space_alloc, cardbus_space_free,
55 1.21 haya * cardbus_intr_establish, cardbus_intr_disestablish, cardbus_ctrl,
56 1.21 haya * cardbus_power, cardbus_make_tag, cardbus_free_tag and
57 1.21 haya * cardbus_conf_write.
58 1.21 haya *
59 1.21 haya * int (*cardbus_space_alloc)(cardbus_chipset_tag_t ct, rbus_tag_t rb,
60 1.21 haya * bus_addr_t addr, bus_size_t size,
61 1.21 haya * bus_addr_t mask, bus_size_t align,
62 1.21 haya * int flags, bus_addr_t *addrp,
63 1.21 haya * bus_space_handle_t *bshp);
64 1.21 haya *
65 1.21 haya * int (*cardbus_space_free)(cardbus_chipset_tag_t ct, rbus_tag_t rb,
66 1.21 haya * bus_space_handle_t, bus_size_t);
67 1.21 haya *
68 1.21 haya * cardbus_space_alloc and cardbus_space_free allocates and
69 1.21 haya * disallocate bus space for the requesters.
70 1.21 haya *
71 1.21 haya * void *(*cardbus_intr_establish)(cardbus_chipset_tag_t ct, int irq,
72 1.21 haya * int level, int (*ih)(void *), void *sc);
73 1.21 haya *
74 1.21 haya * void (*cardbus_intr_disestablish)(cardbus_chipset_tag_t ct, void *ih);
75 1.21 haya * int (*cardbus_ctrl)(cardbus_chipset_tag_t ct, int command);
76 1.21 haya * int (*cardbus_power)(cardbus_chipset_tag_t ct, int voltage);
77 1.21 haya *
78 1.21 haya * cardbustag_t (*cardbus_make_tag)(cardbus_chipset_tag_t ct,
79 1.21 haya * int busno, int devno, int functionno);
80 1.21 haya * void (*cardbus_free_tag)(cardbus_chipset_tag_t ct, cardbustag_t tag);
81 1.21 haya * cardbusreg_t (*cardbus_conf_read)(cardbus_chipset_tag_t ct,
82 1.21 haya * cardbustag_t tag, int offs);
83 1.21 haya * void (*cardbus_conf_write)(cardbus_chipset_tag_t ct,
84 1.21 haya * cardbustag_t tag, int offs, cardbusreg_t val);
85 1.21 haya */
86 1.1 haya typedef struct cardbus_functions {
87 1.21 haya int (*cardbus_space_alloc) __P((cardbus_chipset_tag_t, rbus_tag_t,
88 1.21 haya bus_addr_t, bus_size_t, bus_addr_t, bus_size_t,
89 1.21 haya int, bus_addr_t *, bus_space_handle_t *));
90 1.21 haya int (*cardbus_space_free) __P((cardbus_chipset_tag_t, rbus_tag_t,
91 1.21 haya bus_space_handle_t, bus_size_t));
92 1.21 haya void *(*cardbus_intr_establish) __P((cardbus_chipset_tag_t, int, int,
93 1.21 haya int (*)(void *), void *));
94 1.21 haya void (*cardbus_intr_disestablish) __P((cardbus_chipset_tag_t ct, void *));
95 1.21 haya int (*cardbus_ctrl) __P((cardbus_chipset_tag_t, int));
96 1.21 haya int (*cardbus_power) __P((cardbus_chipset_tag_t, int));
97 1.21 haya
98 1.21 haya cardbustag_t (*cardbus_make_tag) __P((cardbus_chipset_tag_t, int, int, int));
99 1.21 haya void (*cardbus_free_tag) __P((cardbus_chipset_tag_t, cardbustag_t));
100 1.21 haya cardbusreg_t (*cardbus_conf_read) __P((cardbus_chipset_tag_t, cardbustag_t, int));
101 1.21 haya void (*cardbus_conf_write) __P((cardbus_chipset_tag_t, cardbustag_t, int, cardbusreg_t));
102 1.1 haya } cardbus_function_t, *cardbus_function_tag_t;
103 1.1 haya
104 1.1 haya #else
105 1.1 haya
106 1.1 haya typedef struct cardbus_functions {
107 1.1 haya int (*cardbus_ctrl) __P((cardbus_chipset_tag_t, int));
108 1.1 haya int (*cardbus_power) __P((cardbus_chipset_tag_t, int));
109 1.1 haya int (*cardbus_mem_open) __P((cardbus_chipset_tag_t, int, u_int32_t, u_int32_t));
110 1.1 haya int (*cardbus_mem_close) __P((cardbus_chipset_tag_t, int));
111 1.1 haya int (*cardbus_io_open) __P((cardbus_chipset_tag_t, int, u_int32_t, u_int32_t));
112 1.1 haya int (*cardbus_io_close) __P((cardbus_chipset_tag_t, int));
113 1.1 haya void *(*cardbus_intr_establish) __P((cardbus_chipset_tag_t, int irq, int level, int (*ih)(void *), void *sc));
114 1.1 haya void (*cardbus_intr_disestablish) __P((cardbus_chipset_tag_t ct, void *ih));
115 1.1 haya
116 1.1 haya cardbustag_t (*cardbus_make_tag) __P((cardbus_chipset_tag_t, int, int, int)); cardbusreg_t (*cardbus_conf_read) __P((cardbus_chipset_tag_t, cardbustag_t, int));
117 1.1 haya void (*cardbus_conf_write) __P((cardbus_chipset_tag_t, cardbustag_t, int, cardbusreg_t));
118 1.1 haya } cardbus_function_t, *cardbus_function_tag_t;
119 1.1 haya #endif /* rbus */
120 1.1 haya
121 1.7 haya /*
122 1.7 haya * struct cbslot_attach_args is the attach argument for cardbus card.
123 1.7 haya */
124 1.1 haya struct cbslot_attach_args {
125 1.21 haya char *cba_busname;
126 1.21 haya bus_space_tag_t cba_iot; /* cardbus i/o space tag */
127 1.21 haya bus_space_tag_t cba_memt; /* cardbus mem space tag */
128 1.21 haya bus_dma_tag_t cba_dmat; /* DMA tag */
129 1.21 haya
130 1.21 haya int cba_bus; /* cardbus bus number */
131 1.21 haya
132 1.21 haya cardbus_chipset_tag_t cba_cc; /* cardbus chipset */
133 1.21 haya cardbus_function_tag_t cba_cf; /* cardbus functions */
134 1.21 haya int cba_intrline; /* interrupt line */
135 1.1 haya
136 1.1 haya #if rbus
137 1.21 haya rbus_tag_t cba_rbus_iot; /* CardBus i/o rbus tag */
138 1.21 haya rbus_tag_t cba_rbus_memt; /* CardBus mem rbus tag */
139 1.1 haya #endif
140 1.1 haya
141 1.21 haya int cba_cacheline; /* cache line size */
142 1.21 haya int cba_lattimer; /* latency timer */
143 1.1 haya };
144 1.1 haya
145 1.1 haya
146 1.1 haya #define cbslotcf_dev cf_loc[0]
147 1.1 haya #define cbslotcf_func cf_loc[1]
148 1.1 haya #define CBSLOT_UNK_DEV -1
149 1.1 haya #define CBSLOT_UNK_FUNC -1
150 1.1 haya
151 1.1 haya
152 1.1 haya struct cardbus_devfunc;
153 1.1 haya
154 1.7 haya /*
155 1.7 haya * struct cardbus_softc is the softc for cardbus card.
156 1.7 haya */
157 1.1 haya struct cardbus_softc {
158 1.21 haya struct device sc_dev; /* fundamental device structure */
159 1.1 haya
160 1.21 haya int sc_bus; /* cardbus bus number */
161 1.21 haya int sc_device; /* cardbus device number */
162 1.21 haya int sc_intrline; /* CardBus intrline */
163 1.1 haya
164 1.21 haya bus_space_tag_t sc_iot; /* CardBus I/O space tag */
165 1.21 haya bus_space_tag_t sc_memt; /* CardBus MEM space tag */
166 1.21 haya bus_dma_tag_t sc_dmat; /* DMA tag */
167 1.1 haya
168 1.21 haya cardbus_chipset_tag_t sc_cc; /* CardBus chipset */
169 1.21 haya cardbus_function_tag_t sc_cf; /* CardBus function */
170 1.1 haya
171 1.1 haya #if rbus
172 1.21 haya rbus_tag_t sc_rbus_iot; /* CardBus i/o rbus tag */
173 1.21 haya rbus_tag_t sc_rbus_memt; /* CardBus mem rbus tag */
174 1.1 haya #endif
175 1.1 haya
176 1.21 haya int sc_cacheline; /* cache line size */
177 1.21 haya int sc_lattimer; /* latency timer */
178 1.21 haya int sc_volt; /* applied Vcc voltage */
179 1.1 haya #define PCCARD_33V 0x02
180 1.1 haya #define PCCARD_XXV 0x04
181 1.1 haya #define PCCARD_YYV 0x08
182 1.21 haya int sc_poweron_func;
183 1.1 haya struct cardbus_devfunc *sc_funcs; /* list of cardbus device functions */
184 1.1 haya };
185 1.1 haya
186 1.1 haya
187 1.7 haya /*
188 1.1 haya * struct cardbus_devfunc:
189 1.1 haya *
190 1.1 haya * This is the data deposit for each function of a CardBus device.
191 1.1 haya * This structure is used for memory or i/o space allocation and
192 1.1 haya * disallocation.
193 1.7 haya */
194 1.1 haya typedef struct cardbus_devfunc {
195 1.21 haya cardbus_chipset_tag_t ct_cc;
196 1.21 haya cardbus_function_tag_t ct_cf;
197 1.21 haya struct cardbus_softc *ct_sc; /* pointer to the parent */
198 1.21 haya int ct_bus; /* bus number */
199 1.21 haya int ct_dev; /* device number */
200 1.21 haya int ct_func; /* function number */
201 1.1 haya
202 1.1 haya #if rbus
203 1.21 haya rbus_tag_t ct_rbus_iot; /* CardBus i/o rbus tag */
204 1.21 haya rbus_tag_t ct_rbus_memt; /* CardBus mem rbus tag */
205 1.1 haya #endif
206 1.1 haya
207 1.21 haya u_int32_t ct_bar[6]; /* Base Address Regs 0 to 6 */
208 1.21 haya u_int32_t ct_lc; /* Latency timer and cache line size */
209 1.21 haya /* u_int32_t ct_cisreg; */ /* CIS reg: is it needed??? */
210 1.1 haya
211 1.21 haya struct device *ct_device; /* pointer to the device */
212 1.1 haya
213 1.21 haya struct cardbus_devfunc *ct_next;
214 1.1 haya
215 1.21 haya /* some data structure needed for tuple??? */
216 1.1 haya } *cardbus_devfunc_t;
217 1.1 haya
218 1.1 haya
219 1.8 joda /* XXX various things extracted from CIS */
220 1.8 joda struct cardbus_cis_info {
221 1.21 haya int32_t manufacturer;
222 1.21 haya int32_t product;
223 1.21 haya char cis1_info_buf[256];
224 1.21 haya char* cis1_info[4];
225 1.21 haya struct cb_bar_info {
226 1.21 haya unsigned int flags;
227 1.21 haya unsigned int size;
228 1.21 haya } bar[7];
229 1.21 haya unsigned int funcid;
230 1.21 haya union {
231 1.21 haya struct {
232 1.21 haya int uart_type;
233 1.21 haya int uart_present;
234 1.21 haya } serial;
235 1.21 haya struct {
236 1.21 haya char netid[6];
237 1.21 haya char netid_present;
238 1.21 haya char __filler;
239 1.21 haya } network;
240 1.21 haya } funce;
241 1.8 joda };
242 1.8 joda
243 1.1 haya struct cardbus_attach_args {
244 1.21 haya int ca_unit;
245 1.21 haya cardbus_devfunc_t ca_ct;
246 1.1 haya
247 1.21 haya bus_space_tag_t ca_iot; /* CardBus I/O space tag */
248 1.21 haya bus_space_tag_t ca_memt; /* CardBus MEM space tag */
249 1.21 haya bus_dma_tag_t ca_dmat; /* DMA tag */
250 1.21 haya
251 1.24 augustss u_int ca_bus;
252 1.21 haya u_int ca_device;
253 1.21 haya u_int ca_function;
254 1.21 haya cardbustag_t ca_tag;
255 1.21 haya cardbusreg_t ca_id;
256 1.21 haya cardbusreg_t ca_class;
257 1.1 haya
258 1.21 haya /* interrupt information */
259 1.21 haya cardbus_intr_line_t ca_intrline;
260 1.1 haya
261 1.1 haya #if rbus
262 1.21 haya rbus_tag_t ca_rbus_iot; /* CardBus i/o rbus tag */
263 1.21 haya rbus_tag_t ca_rbus_memt; /* CardBus mem rbus tag */
264 1.1 haya #endif
265 1.8 joda
266 1.21 haya struct cardbus_cis_info ca_cis;
267 1.1 haya };
268 1.1 haya
269 1.1 haya
270 1.1 haya #define CARDBUS_ENABLE 1 /* enable the channel */
271 1.1 haya #define CARDBUS_DISABLE 2 /* disable the channel */
272 1.1 haya #define CARDBUS_RESET 4
273 1.1 haya #define CARDBUS_CD 7
274 1.1 haya # define CARDBUS_NOCARD 0
275 1.1 haya # define CARDBUS_5V_CARD 0x01 /* XXX: It must not exist */
276 1.1 haya # define CARDBUS_3V_CARD 0x02
277 1.1 haya # define CARDBUS_XV_CARD 0x04
278 1.1 haya # define CARDBUS_YV_CARD 0x08
279 1.1 haya #define CARDBUS_IO_ENABLE 100
280 1.1 haya #define CARDBUS_IO_DISABLE 101
281 1.1 haya #define CARDBUS_MEM_ENABLE 102
282 1.1 haya #define CARDBUS_MEM_DISABLE 103
283 1.1 haya #define CARDBUS_BM_ENABLE 104 /* bus master */
284 1.1 haya #define CARDBUS_BM_DISABLE 105
285 1.1 haya
286 1.1 haya #define CARDBUS_VCC_UC 0x0000
287 1.1 haya #define CARDBUS_VCC_3V 0x0001
288 1.1 haya #define CARDBUS_VCC_XV 0x0002
289 1.1 haya #define CARDBUS_VCC_YV 0x0003
290 1.1 haya #define CARDBUS_VCC_0V 0x0004
291 1.1 haya #define CARDBUS_VCC_5V 0x0005 /* ??? */
292 1.1 haya #define CARDBUS_VCCMASK 0x000f
293 1.1 haya #define CARDBUS_VPP_UC 0x0000
294 1.1 haya #define CARDBUS_VPP_VCC 0x0010
295 1.1 haya #define CARDBUS_VPP_12V 0x0030
296 1.1 haya #define CARDBUS_VPP_0V 0x0040
297 1.1 haya #define CARDBUS_VPPMASK 0x00f0
298 1.1 haya
299 1.1 haya
300 1.1 haya #include "locators.h"
301 1.1 haya
302 1.1 haya /*
303 1.23 wiz * Locators devices that attach to 'cardbus', as specified to config.
304 1.1 haya */
305 1.1 haya #define cardbuscf_dev cf_loc[CARDBUSCF_DEV]
306 1.1 haya #define CARDBUS_UNK_DEV CARDBUSCF_DEV_DEFAULT
307 1.1 haya
308 1.1 haya #define cardbuscf_function cf_loc[CARDBUSCF_FUNCTION]
309 1.1 haya #define CARDBUS_UNK_FUNCTION CARDBUSCF_FUNCTION_DEFAULT
310 1.1 haya
311 1.1 haya int cardbus_attach_card __P((struct cardbus_softc *));
312 1.14 haya void cardbus_detach_card __P((struct cardbus_softc *));
313 1.21 haya void *cardbus_intr_establish __P((cardbus_chipset_tag_t, cardbus_function_tag_t,
314 1.21 haya cardbus_intr_handle_t irq, int level, int (*func) (void *), void *arg));
315 1.21 haya void cardbus_intr_disestablish __P((cardbus_chipset_tag_t,
316 1.21 haya cardbus_function_tag_t, void *handler));
317 1.1 haya
318 1.4 haya int cardbus_mapreg_map __P((struct cardbus_softc *, int, int, cardbusreg_t,
319 1.15 haya int, bus_space_tag_t *, bus_space_handle_t *, bus_addr_t *, bus_size_t *));
320 1.15 haya int cardbus_mapreg_unmap __P((struct cardbus_softc *, int, int,
321 1.15 haya bus_space_tag_t, bus_space_handle_t, bus_size_t));
322 1.1 haya
323 1.1 haya int cardbus_save_bar __P((cardbus_devfunc_t));
324 1.1 haya int cardbus_restore_bar __P((cardbus_devfunc_t));
325 1.1 haya
326 1.7 haya int cardbus_function_enable __P((struct cardbus_softc *, int function));
327 1.7 haya int cardbus_function_disable __P((struct cardbus_softc *, int function));
328 1.10 thorpej
329 1.10 thorpej int cardbus_get_capability __P((cardbus_chipset_tag_t, cardbus_function_tag_t,
330 1.15 haya cardbustag_t, int, int *, cardbusreg_t *));
331 1.7 haya
332 1.7 haya #define Cardbus_function_enable(ct) cardbus_function_enable((ct)->ct_sc, (ct)->ct_func)
333 1.7 haya #define Cardbus_function_disable(ct) cardbus_function_disable((ct)->ct_sc, (ct)->ct_func)
334 1.7 haya
335 1.7 haya
336 1.1 haya
337 1.4 haya #define Cardbus_mapreg_map(ct, reg, type, busflags, tagp, handlep, basep, sizep) \
338 1.4 haya cardbus_mapreg_map((ct)->ct_sc, (ct->ct_func), (reg), (type),\
339 1.4 haya (busflags), (tagp), (handlep), (basep), (sizep))
340 1.15 haya #define Cardbus_mapreg_unmap(ct, reg, tag, handle, size) \
341 1.15 haya cardbus_mapreg_unmap((ct)->ct_sc, (ct->ct_func), (reg), (tag), (handle), (size))
342 1.4 haya
343 1.1 haya #define Cardbus_make_tag(ct) (*(ct)->ct_cf->cardbus_make_tag)((ct)->ct_cc, (ct)->ct_bus, (ct)->ct_dev, (ct)->ct_func)
344 1.1 haya #define cardbus_make_tag(cc, cf, bus, device, function) ((cf)->cardbus_make_tag)((cc), (bus), (device), (function))
345 1.1 haya
346 1.1 haya #define Cardbus_free_tag(ct, tag) (*(ct)->ct_cf->cardbus_free_tag)((ct)->ct_cc, (tag))
347 1.4 haya #define cardbus_free_tag(cc, cf, tag) (*(cf)->cardbus_free_tag)(cc, (tag))
348 1.1 haya
349 1.1 haya #define Cardbus_conf_read(ct, tag, offs) (*(ct)->ct_cf->cardbus_conf_read)((ct)->ct_cf, (tag), (offs))
350 1.1 haya #define cardbus_conf_read(cc, cf, tag, offs) ((cf)->cardbus_conf_read)((cc), (tag), (offs))
351 1.12 abs #define Cardbus_conf_write(ct, tag, offs, val) (*(ct)->ct_cf->cardbus_conf_write)((ct)->ct_cf, (tag), (offs), (val))
352 1.12 abs #define cardbus_conf_write(cc, cf, tag, offs, val) ((cf)->cardbus_conf_write)((cc), (tag), (offs), (val))
353 1.12 abs
354 1.11 kleink #endif /* !_DEV_CARDBUS_CARDBUSVAR_H_ */
355