pccbb.c revision 1.164 1 1.164 dyoung /* $NetBSD: pccbb.c,v 1.164 2008/02/01 21:13:44 dyoung Exp $ */
2 1.2 haya
3 1.1 haya /*
4 1.21 haya * Copyright (c) 1998, 1999 and 2000
5 1.21 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 HAYAKAWA Koichi.
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 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 haya * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 haya * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 haya * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 haya * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 haya * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 haya * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 haya * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 haya * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 haya * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 haya */
32 1.71 lukem
33 1.71 lukem #include <sys/cdefs.h>
34 1.164 dyoung __KERNEL_RCSID(0, "$NetBSD: pccbb.c,v 1.164 2008/02/01 21:13:44 dyoung Exp $");
35 1.1 haya
36 1.1 haya /*
37 1.1 haya #define CBB_DEBUG
38 1.1 haya #define SHOW_REGS
39 1.1 haya */
40 1.1 haya
41 1.1 haya /*
42 1.132 christos * BROKEN!
43 1.132 christos #define PCCBB_PCMCIA_POLL
44 1.1 haya #define CB_PCMCIA_POLL
45 1.1 haya #define CB_PCMCIA_POLL_ONLY
46 1.1 haya #define LEVEL2
47 1.1 haya */
48 1.1 haya
49 1.1 haya #include <sys/param.h>
50 1.1 haya #include <sys/systm.h>
51 1.1 haya #include <sys/kernel.h>
52 1.1 haya #include <sys/errno.h>
53 1.1 haya #include <sys/ioctl.h>
54 1.54 augustss #include <sys/reboot.h> /* for bootverbose */
55 1.1 haya #include <sys/syslog.h>
56 1.1 haya #include <sys/device.h>
57 1.1 haya #include <sys/malloc.h>
58 1.55 haya #include <sys/proc.h>
59 1.1 haya
60 1.148 ad #include <sys/intr.h>
61 1.148 ad #include <sys/bus.h>
62 1.1 haya
63 1.1 haya #include <dev/pci/pcivar.h>
64 1.1 haya #include <dev/pci/pcireg.h>
65 1.1 haya #include <dev/pci/pcidevs.h>
66 1.1 haya
67 1.1 haya #include <dev/pci/pccbbreg.h>
68 1.1 haya
69 1.1 haya #include <dev/cardbus/cardslotvar.h>
70 1.1 haya
71 1.1 haya #include <dev/cardbus/cardbusvar.h>
72 1.1 haya
73 1.1 haya #include <dev/pcmcia/pcmciareg.h>
74 1.1 haya #include <dev/pcmcia/pcmciavar.h>
75 1.1 haya
76 1.1 haya #include <dev/ic/i82365reg.h>
77 1.1 haya #include <dev/ic/i82365var.h>
78 1.1 haya #include <dev/pci/pccbbvar.h>
79 1.1 haya
80 1.1 haya #include "locators.h"
81 1.1 haya
82 1.1 haya #ifndef __NetBSD_Version__
83 1.1 haya struct cfdriver cbb_cd = {
84 1.22 chopps NULL, "cbb", DV_DULL
85 1.1 haya };
86 1.1 haya #endif
87 1.1 haya
88 1.73 christos #ifdef CBB_DEBUG
89 1.1 haya #define DPRINTF(x) printf x
90 1.1 haya #define STATIC
91 1.1 haya #else
92 1.1 haya #define DPRINTF(x)
93 1.1 haya #define STATIC static
94 1.1 haya #endif
95 1.1 haya
96 1.151 dyoung int pccbb_burstup = 1;
97 1.151 dyoung
98 1.55 haya /*
99 1.142 dyoung * delay_ms() is wait in milliseconds. It should be used instead
100 1.140 dyoung * of delay() if you want to wait more than 1 ms.
101 1.55 haya */
102 1.142 dyoung static inline void
103 1.142 dyoung delay_ms(int millis, void *param)
104 1.142 dyoung {
105 1.142 dyoung if (cold)
106 1.142 dyoung delay(millis * 1000);
107 1.142 dyoung else
108 1.142 dyoung tsleep(param, PWAIT, "pccbb", MAX(2, hz * millis / 1000));
109 1.142 dyoung }
110 1.55 haya
111 1.162 dyoung int pcicbbmatch(device_t, struct cfdata *, void *);
112 1.162 dyoung void pccbbattach(device_t, device_t, void *);
113 1.158 dyoung int pccbbdetach(device_t, int);
114 1.116 perry int pccbbintr(void *);
115 1.116 perry static void pci113x_insert(void *);
116 1.116 perry static int pccbbintr_function(struct pccbb_softc *);
117 1.1 haya
118 1.116 perry static int pccbb_detect_card(struct pccbb_softc *);
119 1.1 haya
120 1.116 perry static void pccbb_pcmcia_write(struct pcic_handle *, int, u_int8_t);
121 1.116 perry static u_int8_t pccbb_pcmcia_read(struct pcic_handle *, int);
122 1.1 haya #define Pcic_read(ph, reg) ((ph)->ph_read((ph), (reg)))
123 1.1 haya #define Pcic_write(ph, reg, val) ((ph)->ph_write((ph), (reg), (val)))
124 1.1 haya
125 1.116 perry STATIC int cb_reset(struct pccbb_softc *);
126 1.116 perry STATIC int cb_detect_voltage(struct pccbb_softc *);
127 1.116 perry STATIC int cbbprint(void *, const char *);
128 1.116 perry
129 1.116 perry static int cb_chipset(u_int32_t, int *);
130 1.116 perry STATIC void pccbb_pcmcia_attach_setup(struct pccbb_softc *,
131 1.116 perry struct pcmciabus_attach_args *);
132 1.1 haya #if 0
133 1.116 perry STATIC void pccbb_pcmcia_attach_card(struct pcic_handle *);
134 1.116 perry STATIC void pccbb_pcmcia_detach_card(struct pcic_handle *, int);
135 1.116 perry STATIC void pccbb_pcmcia_deactivate_card(struct pcic_handle *);
136 1.1 haya #endif
137 1.1 haya
138 1.116 perry STATIC int pccbb_ctrl(cardbus_chipset_tag_t, int);
139 1.160 dyoung STATIC int pccbb_power(struct pccbb_softc *sc, int);
140 1.160 dyoung STATIC int pccbb_power_ct(cardbus_chipset_tag_t, int);
141 1.116 perry STATIC int pccbb_cardenable(struct pccbb_softc * sc, int function);
142 1.1 haya #if !rbus
143 1.116 perry static int pccbb_io_open(cardbus_chipset_tag_t, int, u_int32_t, u_int32_t);
144 1.116 perry static int pccbb_io_close(cardbus_chipset_tag_t, int);
145 1.116 perry static int pccbb_mem_open(cardbus_chipset_tag_t, int, u_int32_t, u_int32_t);
146 1.116 perry static int pccbb_mem_close(cardbus_chipset_tag_t, int);
147 1.1 haya #endif /* !rbus */
148 1.116 perry static void *pccbb_intr_establish(struct pccbb_softc *, int irq,
149 1.116 perry int level, int (*ih) (void *), void *sc);
150 1.116 perry static void pccbb_intr_disestablish(struct pccbb_softc *, void *ih);
151 1.116 perry
152 1.116 perry static void *pccbb_cb_intr_establish(cardbus_chipset_tag_t, int irq,
153 1.116 perry int level, int (*ih) (void *), void *sc);
154 1.116 perry static void pccbb_cb_intr_disestablish(cardbus_chipset_tag_t ct, void *ih);
155 1.116 perry
156 1.125 drochner static cardbustag_t pccbb_make_tag(cardbus_chipset_tag_t, int, int);
157 1.116 perry static void pccbb_free_tag(cardbus_chipset_tag_t, cardbustag_t);
158 1.116 perry static cardbusreg_t pccbb_conf_read(cardbus_chipset_tag_t, cardbustag_t, int);
159 1.116 perry static void pccbb_conf_write(cardbus_chipset_tag_t, cardbustag_t, int,
160 1.116 perry cardbusreg_t);
161 1.116 perry static void pccbb_chipinit(struct pccbb_softc *);
162 1.116 perry
163 1.116 perry STATIC int pccbb_pcmcia_mem_alloc(pcmcia_chipset_handle_t, bus_size_t,
164 1.116 perry struct pcmcia_mem_handle *);
165 1.116 perry STATIC void pccbb_pcmcia_mem_free(pcmcia_chipset_handle_t,
166 1.116 perry struct pcmcia_mem_handle *);
167 1.116 perry STATIC int pccbb_pcmcia_mem_map(pcmcia_chipset_handle_t, int, bus_addr_t,
168 1.116 perry bus_size_t, struct pcmcia_mem_handle *, bus_addr_t *, int *);
169 1.116 perry STATIC void pccbb_pcmcia_mem_unmap(pcmcia_chipset_handle_t, int);
170 1.116 perry STATIC int pccbb_pcmcia_io_alloc(pcmcia_chipset_handle_t, bus_addr_t,
171 1.116 perry bus_size_t, bus_size_t, struct pcmcia_io_handle *);
172 1.116 perry STATIC void pccbb_pcmcia_io_free(pcmcia_chipset_handle_t,
173 1.116 perry struct pcmcia_io_handle *);
174 1.116 perry STATIC int pccbb_pcmcia_io_map(pcmcia_chipset_handle_t, int, bus_addr_t,
175 1.116 perry bus_size_t, struct pcmcia_io_handle *, int *);
176 1.116 perry STATIC void pccbb_pcmcia_io_unmap(pcmcia_chipset_handle_t, int);
177 1.116 perry STATIC void *pccbb_pcmcia_intr_establish(pcmcia_chipset_handle_t,
178 1.116 perry struct pcmcia_function *, int, int (*)(void *), void *);
179 1.116 perry STATIC void pccbb_pcmcia_intr_disestablish(pcmcia_chipset_handle_t, void *);
180 1.116 perry STATIC void pccbb_pcmcia_socket_enable(pcmcia_chipset_handle_t);
181 1.116 perry STATIC void pccbb_pcmcia_socket_disable(pcmcia_chipset_handle_t);
182 1.116 perry STATIC void pccbb_pcmcia_socket_settype(pcmcia_chipset_handle_t, int);
183 1.116 perry STATIC int pccbb_pcmcia_card_detect(pcmcia_chipset_handle_t pch);
184 1.116 perry
185 1.116 perry static int pccbb_pcmcia_wait_ready(struct pcic_handle *);
186 1.116 perry static void pccbb_pcmcia_delay(struct pcic_handle *, int, const char *);
187 1.116 perry
188 1.116 perry static void pccbb_pcmcia_do_io_map(struct pcic_handle *, int);
189 1.116 perry static void pccbb_pcmcia_do_mem_map(struct pcic_handle *, int);
190 1.1 haya
191 1.32 enami /* bus-space allocation and deallocation functions */
192 1.1 haya #if rbus
193 1.1 haya
194 1.116 perry static int pccbb_rbus_cb_space_alloc(cardbus_chipset_tag_t, rbus_tag_t,
195 1.22 chopps bus_addr_t addr, bus_size_t size, bus_addr_t mask, bus_size_t align,
196 1.116 perry int flags, bus_addr_t * addrp, bus_space_handle_t * bshp);
197 1.116 perry static int pccbb_rbus_cb_space_free(cardbus_chipset_tag_t, rbus_tag_t,
198 1.116 perry bus_space_handle_t, bus_size_t);
199 1.1 haya
200 1.1 haya #endif /* rbus */
201 1.1 haya
202 1.1 haya #if rbus
203 1.1 haya
204 1.116 perry static int pccbb_open_win(struct pccbb_softc *, bus_space_tag_t,
205 1.116 perry bus_addr_t, bus_size_t, bus_space_handle_t, int flags);
206 1.116 perry static int pccbb_close_win(struct pccbb_softc *, bus_space_tag_t,
207 1.116 perry bus_space_handle_t, bus_size_t);
208 1.116 perry static int pccbb_winlist_insert(struct pccbb_win_chain_head *, bus_addr_t,
209 1.116 perry bus_size_t, bus_space_handle_t, int);
210 1.116 perry static int pccbb_winlist_delete(struct pccbb_win_chain_head *,
211 1.116 perry bus_space_handle_t, bus_size_t);
212 1.116 perry static void pccbb_winset(bus_addr_t align, struct pccbb_softc *,
213 1.116 perry bus_space_tag_t);
214 1.1 haya void pccbb_winlist_show(struct pccbb_win_chain *);
215 1.1 haya
216 1.1 haya #endif /* rbus */
217 1.1 haya
218 1.1 haya /* for config_defer */
219 1.162 dyoung static void pccbb_pci_callback(device_t);
220 1.1 haya
221 1.156 jmcneill static bool pccbb_suspend(device_t);
222 1.156 jmcneill static bool pccbb_resume(device_t);
223 1.156 jmcneill
224 1.1 haya #if defined SHOW_REGS
225 1.116 perry static void cb_show_regs(pci_chipset_tag_t pc, pcitag_t tag,
226 1.116 perry bus_space_tag_t memt, bus_space_handle_t memh);
227 1.1 haya #endif
228 1.1 haya
229 1.79 thorpej CFATTACH_DECL(cbb_pci, sizeof(struct pccbb_softc),
230 1.158 dyoung pcicbbmatch, pccbbattach, pccbbdetach, NULL);
231 1.1 haya
232 1.1 haya static struct pcmcia_chip_functions pccbb_pcmcia_funcs = {
233 1.22 chopps pccbb_pcmcia_mem_alloc,
234 1.22 chopps pccbb_pcmcia_mem_free,
235 1.22 chopps pccbb_pcmcia_mem_map,
236 1.22 chopps pccbb_pcmcia_mem_unmap,
237 1.22 chopps pccbb_pcmcia_io_alloc,
238 1.22 chopps pccbb_pcmcia_io_free,
239 1.22 chopps pccbb_pcmcia_io_map,
240 1.22 chopps pccbb_pcmcia_io_unmap,
241 1.22 chopps pccbb_pcmcia_intr_establish,
242 1.22 chopps pccbb_pcmcia_intr_disestablish,
243 1.22 chopps pccbb_pcmcia_socket_enable,
244 1.22 chopps pccbb_pcmcia_socket_disable,
245 1.101 mycroft pccbb_pcmcia_socket_settype,
246 1.22 chopps pccbb_pcmcia_card_detect
247 1.1 haya };
248 1.1 haya
249 1.1 haya #if rbus
250 1.1 haya static struct cardbus_functions pccbb_funcs = {
251 1.22 chopps pccbb_rbus_cb_space_alloc,
252 1.22 chopps pccbb_rbus_cb_space_free,
253 1.26 haya pccbb_cb_intr_establish,
254 1.26 haya pccbb_cb_intr_disestablish,
255 1.22 chopps pccbb_ctrl,
256 1.160 dyoung pccbb_power_ct,
257 1.22 chopps pccbb_make_tag,
258 1.22 chopps pccbb_free_tag,
259 1.22 chopps pccbb_conf_read,
260 1.22 chopps pccbb_conf_write,
261 1.1 haya };
262 1.1 haya #else
263 1.1 haya static struct cardbus_functions pccbb_funcs = {
264 1.22 chopps pccbb_ctrl,
265 1.160 dyoung pccbb_power_ct,
266 1.22 chopps pccbb_mem_open,
267 1.22 chopps pccbb_mem_close,
268 1.22 chopps pccbb_io_open,
269 1.22 chopps pccbb_io_close,
270 1.26 haya pccbb_cb_intr_establish,
271 1.26 haya pccbb_cb_intr_disestablish,
272 1.22 chopps pccbb_make_tag,
273 1.22 chopps pccbb_conf_read,
274 1.22 chopps pccbb_conf_write,
275 1.1 haya };
276 1.1 haya #endif
277 1.1 haya
278 1.1 haya int
279 1.162 dyoung pcicbbmatch(device_t parent, struct cfdata *match, void *aux)
280 1.1 haya {
281 1.22 chopps struct pci_attach_args *pa = (struct pci_attach_args *)aux;
282 1.1 haya
283 1.22 chopps if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
284 1.22 chopps PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_CARDBUS &&
285 1.22 chopps PCI_INTERFACE(pa->pa_class) == 0) {
286 1.22 chopps return 1;
287 1.22 chopps }
288 1.1 haya
289 1.22 chopps return 0;
290 1.1 haya }
291 1.1 haya
292 1.1 haya #define MAKEID(vendor, prod) (((vendor) << PCI_VENDOR_SHIFT) \
293 1.1 haya | ((prod) << PCI_PRODUCT_SHIFT))
294 1.1 haya
295 1.60 jdolecek const struct yenta_chipinfo {
296 1.22 chopps pcireg_t yc_id; /* vendor tag | product tag */
297 1.22 chopps int yc_chiptype;
298 1.22 chopps int yc_flags;
299 1.1 haya } yc_chipsets[] = {
300 1.22 chopps /* Texas Instruments chips */
301 1.22 chopps { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1130), CB_TI113X,
302 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
303 1.22 chopps { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1131), CB_TI113X,
304 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
305 1.96 nakayama { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1250), CB_TI125X,
306 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
307 1.22 chopps { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1220), CB_TI12XX,
308 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
309 1.22 chopps { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1221), CB_TI12XX,
310 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
311 1.22 chopps { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1225), CB_TI12XX,
312 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
313 1.96 nakayama { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1251), CB_TI125X,
314 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
315 1.96 nakayama { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1251B), CB_TI125X,
316 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
317 1.22 chopps { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1211), CB_TI12XX,
318 1.64 soren PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
319 1.64 soren { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1410), CB_TI12XX,
320 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
321 1.151 dyoung { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1420), CB_TI1420,
322 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
323 1.96 nakayama { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1450), CB_TI125X,
324 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
325 1.22 chopps { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1451), CB_TI12XX,
326 1.84 martin PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
327 1.99 he { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1520), CB_TI12XX,
328 1.99 he PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
329 1.84 martin { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4410YENTA), CB_TI12XX,
330 1.22 chopps PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
331 1.99 he { MAKEID(PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4520YENTA), CB_TI12XX,
332 1.99 he PCCBB_PCMCIA_IO_RELOC | PCCBB_PCMCIA_MEM_32},
333 1.22 chopps
334 1.22 chopps /* Ricoh chips */
335 1.22 chopps { MAKEID(PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C475), CB_RX5C47X,
336 1.22 chopps PCCBB_PCMCIA_MEM_32},
337 1.22 chopps { MAKEID(PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_RL5C476), CB_RX5C47X,
338 1.22 chopps PCCBB_PCMCIA_MEM_32},
339 1.22 chopps { MAKEID(PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C477), CB_RX5C47X,
340 1.22 chopps PCCBB_PCMCIA_MEM_32},
341 1.22 chopps { MAKEID(PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C478), CB_RX5C47X,
342 1.22 chopps PCCBB_PCMCIA_MEM_32},
343 1.22 chopps { MAKEID(PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C465), CB_RX5C46X,
344 1.22 chopps PCCBB_PCMCIA_MEM_32},
345 1.22 chopps { MAKEID(PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C466), CB_RX5C46X,
346 1.22 chopps PCCBB_PCMCIA_MEM_32},
347 1.22 chopps
348 1.22 chopps /* Toshiba products */
349 1.22 chopps { MAKEID(PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC95),
350 1.22 chopps CB_TOPIC95, PCCBB_PCMCIA_MEM_32},
351 1.22 chopps { MAKEID(PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC95B),
352 1.22 chopps CB_TOPIC95B, PCCBB_PCMCIA_MEM_32},
353 1.22 chopps { MAKEID(PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC97),
354 1.22 chopps CB_TOPIC97, PCCBB_PCMCIA_MEM_32},
355 1.22 chopps { MAKEID(PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC100),
356 1.22 chopps CB_TOPIC97, PCCBB_PCMCIA_MEM_32},
357 1.22 chopps
358 1.22 chopps /* Cirrus Logic products */
359 1.22 chopps { MAKEID(PCI_VENDOR_CIRRUS, PCI_PRODUCT_CIRRUS_CL_PD6832),
360 1.22 chopps CB_CIRRUS, PCCBB_PCMCIA_MEM_32},
361 1.22 chopps { MAKEID(PCI_VENDOR_CIRRUS, PCI_PRODUCT_CIRRUS_CL_PD6833),
362 1.22 chopps CB_CIRRUS, PCCBB_PCMCIA_MEM_32},
363 1.1 haya
364 1.22 chopps /* sentinel, or Generic chip */
365 1.22 chopps { 0 /* null id */ , CB_UNKNOWN, PCCBB_PCMCIA_MEM_32},
366 1.1 haya };
367 1.1 haya
368 1.1 haya static int
369 1.143 dyoung cb_chipset(u_int32_t pci_id, int *flagp)
370 1.1 haya {
371 1.60 jdolecek const struct yenta_chipinfo *yc;
372 1.1 haya
373 1.35 enami /* Loop over except the last default entry. */
374 1.35 enami for (yc = yc_chipsets; yc < yc_chipsets +
375 1.35 enami sizeof(yc_chipsets) / sizeof(yc_chipsets[0]) - 1; yc++)
376 1.39 kleink if (pci_id == yc->yc_id)
377 1.35 enami break;
378 1.1 haya
379 1.35 enami if (flagp != NULL)
380 1.35 enami *flagp = yc->yc_flags;
381 1.1 haya
382 1.35 enami return (yc->yc_chiptype);
383 1.1 haya }
384 1.1 haya
385 1.1 haya void
386 1.162 dyoung pccbbattach(device_t parent, device_t self, void *aux)
387 1.22 chopps {
388 1.162 dyoung struct pccbb_softc *sc = device_private(self);
389 1.22 chopps struct pci_attach_args *pa = aux;
390 1.22 chopps pci_chipset_tag_t pc = pa->pa_pc;
391 1.43 jhawk pcireg_t busreg, reg, sock_base;
392 1.22 chopps bus_addr_t sockbase;
393 1.22 chopps char devinfo[256];
394 1.22 chopps int flags;
395 1.22 chopps
396 1.88 nakayama #ifdef __HAVE_PCCBB_ATTACH_HOOK
397 1.88 nakayama pccbb_attach_hook(parent, self, pa);
398 1.88 nakayama #endif
399 1.88 nakayama
400 1.149 joerg callout_init(&sc->sc_insert_ch, 0);
401 1.149 joerg callout_setfunc(&sc->sc_insert_ch, pci113x_insert, sc);
402 1.149 joerg
403 1.22 chopps sc->sc_chipset = cb_chipset(pa->pa_id, &flags);
404 1.22 chopps
405 1.155 jmcneill aprint_naive("\n");
406 1.155 jmcneill
407 1.97 itojun pci_devinfo(pa->pa_id, 0, 0, devinfo, sizeof(devinfo));
408 1.155 jmcneill aprint_normal(": %s (rev. 0x%02x)", devinfo,
409 1.155 jmcneill PCI_REVISION(pa->pa_class));
410 1.133 christos DPRINTF((" (chipflags %x)", flags));
411 1.155 jmcneill aprint_normal("\n");
412 1.1 haya
413 1.27 thorpej TAILQ_INIT(&sc->sc_memwindow);
414 1.27 thorpej TAILQ_INIT(&sc->sc_iowindow);
415 1.27 thorpej
416 1.1 haya #if rbus
417 1.22 chopps sc->sc_rbus_iot = rbus_pccbb_parent_io(pa);
418 1.22 chopps sc->sc_rbus_memt = rbus_pccbb_parent_mem(pa);
419 1.65 mcr
420 1.65 mcr #if 0
421 1.65 mcr printf("pa->pa_memt: %08x vs rbus_mem->rb_bt: %08x\n",
422 1.65 mcr pa->pa_memt, sc->sc_rbus_memt->rb_bt);
423 1.65 mcr #endif
424 1.1 haya #endif /* rbus */
425 1.1 haya
426 1.88 nakayama sc->sc_flags &= ~CBB_MEMHMAPPED;
427 1.1 haya
428 1.117 perry /*
429 1.22 chopps * MAP socket registers and ExCA registers on memory-space
430 1.22 chopps * When no valid address is set on socket base registers (on pci
431 1.22 chopps * config space), get it not polite way.
432 1.22 chopps */
433 1.22 chopps sock_base = pci_conf_read(pc, pa->pa_tag, PCI_SOCKBASE);
434 1.22 chopps
435 1.22 chopps if (PCI_MAPREG_MEM_ADDR(sock_base) >= 0x100000 &&
436 1.22 chopps PCI_MAPREG_MEM_ADDR(sock_base) != 0xfffffff0) {
437 1.22 chopps /* The address must be valid. */
438 1.22 chopps if (pci_mapreg_map(pa, PCI_SOCKBASE, PCI_MAPREG_TYPE_MEM, 0,
439 1.158 dyoung &sc->sc_base_memt, &sc->sc_base_memh, &sockbase, &sc->sc_base_size)) {
440 1.164 dyoung aprint_error_dev(&sc->sc_dev,
441 1.164 dyoung "can't map socket base address 0x%lx\n",
442 1.164 dyoung (unsigned long)sock_base);
443 1.22 chopps /*
444 1.22 chopps * I think it's funny: socket base registers must be
445 1.22 chopps * mapped on memory space, but ...
446 1.22 chopps */
447 1.22 chopps if (pci_mapreg_map(pa, PCI_SOCKBASE, PCI_MAPREG_TYPE_IO,
448 1.22 chopps 0, &sc->sc_base_memt, &sc->sc_base_memh, &sockbase,
449 1.158 dyoung &sc->sc_base_size)) {
450 1.164 dyoung aprint_error_dev(&sc->sc_dev,
451 1.164 dyoung "can't map socket base address"
452 1.164 dyoung " 0x%lx: io mode\n",
453 1.63 jmc (unsigned long)sockbase);
454 1.22 chopps /* give up... allocate reg space via rbus. */
455 1.22 chopps pci_conf_write(pc, pa->pa_tag, PCI_SOCKBASE, 0);
456 1.88 nakayama } else
457 1.88 nakayama sc->sc_flags |= CBB_MEMHMAPPED;
458 1.22 chopps } else {
459 1.22 chopps DPRINTF(("%s: socket base address 0x%lx\n",
460 1.164 dyoung device_xname(&sc->sc_dev),
461 1.164 dyoung (unsigned long)sockbase));
462 1.88 nakayama sc->sc_flags |= CBB_MEMHMAPPED;
463 1.22 chopps }
464 1.22 chopps }
465 1.1 haya
466 1.22 chopps sc->sc_mem_start = 0; /* XXX */
467 1.22 chopps sc->sc_mem_end = 0xffffffff; /* XXX */
468 1.1 haya
469 1.22 chopps busreg = pci_conf_read(pc, pa->pa_tag, PCI_BUSNUM);
470 1.4 haya
471 1.22 chopps /* pccbb_machdep.c end */
472 1.1 haya
473 1.1 haya #if defined CBB_DEBUG
474 1.22 chopps {
475 1.121 sekiya static const char *intrname[] = { "NON", "A", "B", "C", "D" };
476 1.164 dyoung aprint_debug_dev(&sc->sc_dev, "intrpin %s, intrtag %d\n",
477 1.23 cgd intrname[pa->pa_intrpin], pa->pa_intrline);
478 1.22 chopps }
479 1.1 haya #endif
480 1.1 haya
481 1.22 chopps /* setup softc */
482 1.22 chopps sc->sc_pc = pc;
483 1.22 chopps sc->sc_iot = pa->pa_iot;
484 1.22 chopps sc->sc_memt = pa->pa_memt;
485 1.22 chopps sc->sc_dmat = pa->pa_dmat;
486 1.22 chopps sc->sc_tag = pa->pa_tag;
487 1.22 chopps sc->sc_function = pa->pa_function;
488 1.22 chopps
489 1.51 sommerfe memcpy(&sc->sc_pa, pa, sizeof(*pa));
490 1.1 haya
491 1.22 chopps sc->sc_pcmcia_flags = flags; /* set PCMCIA facility */
492 1.1 haya
493 1.43 jhawk /* Disable legacy register mapping. */
494 1.43 jhawk switch (sc->sc_chipset) {
495 1.43 jhawk case CB_RX5C46X: /* fallthrough */
496 1.43 jhawk #if 0
497 1.44 jhawk /* The RX5C47X-series requires writes to the PCI_LEGACY register. */
498 1.43 jhawk case CB_RX5C47X:
499 1.43 jhawk #endif
500 1.117 perry /*
501 1.44 jhawk * The legacy pcic io-port on Ricoh RX5C46X CardBus bridges
502 1.44 jhawk * cannot be disabled by substituting 0 into PCI_LEGACY
503 1.44 jhawk * register. Ricoh CardBus bridges have special bits on Bridge
504 1.44 jhawk * control reg (addr 0x3e on PCI config space).
505 1.43 jhawk */
506 1.146 dyoung reg = pci_conf_read(pc, pa->pa_tag, PCI_BRIDGE_CONTROL_REG);
507 1.43 jhawk reg &= ~(CB_BCRI_RL_3E0_ENA | CB_BCRI_RL_3E2_ENA);
508 1.146 dyoung pci_conf_write(pc, pa->pa_tag, PCI_BRIDGE_CONTROL_REG, reg);
509 1.43 jhawk break;
510 1.43 jhawk
511 1.43 jhawk default:
512 1.43 jhawk /* XXX I don't know proper way to kill legacy I/O. */
513 1.43 jhawk pci_conf_write(pc, pa->pa_tag, PCI_LEGACY, 0x0);
514 1.43 jhawk break;
515 1.43 jhawk }
516 1.43 jhawk
517 1.156 jmcneill if (!pmf_device_register(self, pccbb_suspend, pccbb_resume))
518 1.156 jmcneill aprint_error_dev(self, "couldn't establish power handler\n");
519 1.156 jmcneill
520 1.22 chopps config_defer(self, pccbb_pci_callback);
521 1.1 haya }
522 1.1 haya
523 1.158 dyoung int
524 1.158 dyoung pccbbdetach(device_t self, int flags)
525 1.158 dyoung {
526 1.158 dyoung struct pccbb_softc *sc = device_private(self);
527 1.158 dyoung pci_chipset_tag_t pc = sc->sc_pa.pa_pc;
528 1.158 dyoung bus_space_tag_t bmt = sc->sc_base_memt;
529 1.158 dyoung bus_space_handle_t bmh = sc->sc_base_memh;
530 1.158 dyoung uint32_t sockmask;
531 1.158 dyoung int rc;
532 1.158 dyoung
533 1.158 dyoung if ((rc = config_detach_children(self, flags)) != 0)
534 1.158 dyoung return rc;
535 1.158 dyoung
536 1.161 dyoung if (!LIST_EMPTY(&sc->sc_pil)) {
537 1.161 dyoung panic("%s: interrupt handlers still registered",
538 1.161 dyoung device_xname(&sc->sc_dev));
539 1.161 dyoung return EBUSY;
540 1.161 dyoung }
541 1.161 dyoung
542 1.158 dyoung if (sc->sc_ih != NULL) {
543 1.158 dyoung pci_intr_disestablish(pc, sc->sc_ih);
544 1.158 dyoung sc->sc_ih = NULL;
545 1.158 dyoung }
546 1.158 dyoung
547 1.158 dyoung /* CSC Interrupt: turn off card detect and power cycle interrupts */
548 1.158 dyoung sockmask = bus_space_read_4(bmt, bmh, CB_SOCKET_MASK);
549 1.158 dyoung sockmask &= ~(CB_SOCKET_MASK_CD | CB_SOCKET_MASK_POWER);
550 1.158 dyoung bus_space_write_4(bmt, bmh, CB_SOCKET_MASK, sockmask);
551 1.158 dyoung /* reset interrupt */
552 1.158 dyoung bus_space_write_4(bmt, bmh, CB_SOCKET_EVENT,
553 1.158 dyoung bus_space_read_4(bmt, bmh, CB_SOCKET_EVENT));
554 1.158 dyoung
555 1.158 dyoung switch (sc->sc_flags & (CBB_MEMHMAPPED|CBB_SPECMAPPED)) {
556 1.158 dyoung case CBB_MEMHMAPPED:
557 1.158 dyoung bus_space_unmap(bmt, bmh, sc->sc_base_size);
558 1.158 dyoung break;
559 1.158 dyoung case CBB_MEMHMAPPED|CBB_SPECMAPPED:
560 1.158 dyoung #if rbus
561 1.158 dyoung {
562 1.158 dyoung pcireg_t sockbase;
563 1.158 dyoung
564 1.158 dyoung sockbase = pci_conf_read(pc, sc->sc_tag, PCI_SOCKBASE);
565 1.158 dyoung rbus_space_free(sc->sc_rbus_memt, bmh, 0x1000,
566 1.158 dyoung NULL);
567 1.158 dyoung }
568 1.158 dyoung #else
569 1.158 dyoung bus_space_free(bmt, bmh, 0x1000);
570 1.158 dyoung #endif
571 1.158 dyoung }
572 1.158 dyoung sc->sc_flags &= ~(CBB_MEMHMAPPED|CBB_SPECMAPPED);
573 1.26 haya
574 1.158 dyoung if (!TAILQ_EMPTY(&sc->sc_iowindow))
575 1.158 dyoung aprint_error_dev(self, "i/o windows not empty");
576 1.158 dyoung if (!TAILQ_EMPTY(&sc->sc_memwindow))
577 1.158 dyoung aprint_error_dev(self, "memory windows not empty");
578 1.26 haya
579 1.158 dyoung callout_stop(&sc->sc_insert_ch);
580 1.158 dyoung callout_destroy(&sc->sc_insert_ch);
581 1.158 dyoung return 0;
582 1.158 dyoung }
583 1.26 haya
584 1.26 haya /*
585 1.162 dyoung * static void pccbb_pci_callback(device_t self)
586 1.26 haya *
587 1.26 haya * The actual attach routine: get memory space for YENTA register
588 1.26 haya * space, setup YENTA register and route interrupt.
589 1.26 haya *
590 1.26 haya * This function should be deferred because this device may obtain
591 1.26 haya * memory space dynamically. This function must avoid obtaining
592 1.43 jhawk * memory area which has already kept for another device.
593 1.26 haya */
594 1.1 haya static void
595 1.162 dyoung pccbb_pci_callback(device_t self)
596 1.1 haya {
597 1.162 dyoung struct pccbb_softc *sc = device_private(self);
598 1.22 chopps pci_chipset_tag_t pc = sc->sc_pc;
599 1.22 chopps pci_intr_handle_t ih;
600 1.22 chopps const char *intrstr = NULL;
601 1.22 chopps bus_addr_t sockbase;
602 1.22 chopps struct cbslot_attach_args cba;
603 1.22 chopps struct pcmciabus_attach_args paa;
604 1.22 chopps struct cardslot_attach_args caa;
605 1.22 chopps struct cardslot_softc *csc;
606 1.1 haya
607 1.88 nakayama if (!(sc->sc_flags & CBB_MEMHMAPPED)) {
608 1.22 chopps /* The socket registers aren't mapped correctly. */
609 1.1 haya #if rbus
610 1.22 chopps if (rbus_space_alloc(sc->sc_rbus_memt, 0, 0x1000, 0x0fff,
611 1.22 chopps (sc->sc_chipset == CB_RX5C47X
612 1.22 chopps || sc->sc_chipset == CB_TI113X) ? 0x10000 : 0x1000,
613 1.22 chopps 0, &sockbase, &sc->sc_base_memh)) {
614 1.22 chopps return;
615 1.22 chopps }
616 1.22 chopps sc->sc_base_memt = sc->sc_memt;
617 1.22 chopps pci_conf_write(pc, sc->sc_tag, PCI_SOCKBASE, sockbase);
618 1.120 sekiya DPRINTF(("%s: CardBus register address 0x%lx -> 0x%lx\n",
619 1.164 dyoung device_xname(&sc->sc_dev), (unsigned long)sockbase,
620 1.94 christos (unsigned long)pci_conf_read(pc, sc->sc_tag,
621 1.22 chopps PCI_SOCKBASE)));
622 1.1 haya #else
623 1.22 chopps sc->sc_base_memt = sc->sc_memt;
624 1.1 haya #if !defined CBB_PCI_BASE
625 1.1 haya #define CBB_PCI_BASE 0x20000000
626 1.1 haya #endif
627 1.22 chopps if (bus_space_alloc(sc->sc_base_memt, CBB_PCI_BASE, 0xffffffff,
628 1.22 chopps 0x1000, 0x1000, 0, 0, &sockbase, &sc->sc_base_memh)) {
629 1.22 chopps /* cannot allocate memory space */
630 1.22 chopps return;
631 1.22 chopps }
632 1.22 chopps pci_conf_write(pc, sc->sc_tag, PCI_SOCKBASE, sockbase);
633 1.120 sekiya DPRINTF(("%s: CardBus register address 0x%lx -> 0x%lx\n",
634 1.164 dyoung device_xname(&sc->sc_dev), (unsigned long)sock_base,
635 1.94 christos (unsigned long)pci_conf_read(pc,
636 1.22 chopps sc->sc_tag, PCI_SOCKBASE)));
637 1.1 haya #endif
638 1.88 nakayama sc->sc_flags |= CBB_MEMHMAPPED;
639 1.22 chopps }
640 1.19 haya
641 1.32 enami /* bus bridge initialization */
642 1.22 chopps pccbb_chipinit(sc);
643 1.1 haya
644 1.38 haya /* clear data structure for child device interrupt handlers */
645 1.80 haya LIST_INIT(&sc->sc_pil);
646 1.38 haya sc->sc_pil_intr_enable = 1;
647 1.38 haya
648 1.22 chopps /* Map and establish the interrupt. */
649 1.51 sommerfe if (pci_intr_map(&sc->sc_pa, &ih)) {
650 1.164 dyoung aprint_error_dev(&sc->sc_dev, "couldn't map interrupt\n");
651 1.22 chopps return;
652 1.22 chopps }
653 1.22 chopps intrstr = pci_intr_string(pc, ih);
654 1.41 haya
655 1.41 haya /*
656 1.41 haya * XXX pccbbintr should be called under the priority lower
657 1.118 christos * than any other hard interupts.
658 1.41 haya */
659 1.22 chopps sc->sc_ih = pci_intr_establish(pc, ih, IPL_BIO, pccbbintr, sc);
660 1.1 haya
661 1.22 chopps if (sc->sc_ih == NULL) {
662 1.164 dyoung aprint_error_dev(&sc->sc_dev, "couldn't establish interrupt");
663 1.164 dyoung if (intrstr != NULL)
664 1.164 dyoung aprint_error(" at %s\n", intrstr);
665 1.164 dyoung else
666 1.164 dyoung aprint_error("\n");
667 1.22 chopps return;
668 1.22 chopps }
669 1.1 haya
670 1.164 dyoung aprint_normal_dev(&sc->sc_dev, "interrupting at %s\n", intrstr);
671 1.1 haya
672 1.22 chopps {
673 1.69 haya u_int32_t sockstat;
674 1.69 haya
675 1.69 haya sockstat = bus_space_read_4(sc->sc_base_memt,
676 1.69 haya sc->sc_base_memh, CB_SOCKET_STAT);
677 1.22 chopps if (0 == (sockstat & CB_SOCKET_STAT_CD)) {
678 1.22 chopps sc->sc_flags |= CBB_CARDEXIST;
679 1.22 chopps }
680 1.22 chopps }
681 1.1 haya
682 1.117 perry /*
683 1.117 perry * attach cardbus
684 1.22 chopps */
685 1.98 mycroft {
686 1.22 chopps pcireg_t busreg = pci_conf_read(pc, sc->sc_tag, PCI_BUSNUM);
687 1.22 chopps pcireg_t bhlc = pci_conf_read(pc, sc->sc_tag, PCI_BHLC_REG);
688 1.22 chopps
689 1.32 enami /* initialize cbslot_attach */
690 1.22 chopps cba.cba_busname = "cardbus";
691 1.22 chopps cba.cba_iot = sc->sc_iot;
692 1.22 chopps cba.cba_memt = sc->sc_memt;
693 1.22 chopps cba.cba_dmat = sc->sc_dmat;
694 1.22 chopps cba.cba_bus = (busreg >> 8) & 0x0ff;
695 1.22 chopps cba.cba_cc = (void *)sc;
696 1.22 chopps cba.cba_cf = &pccbb_funcs;
697 1.51 sommerfe cba.cba_intrline = sc->sc_pa.pa_intrline;
698 1.1 haya
699 1.1 haya #if rbus
700 1.22 chopps cba.cba_rbus_iot = sc->sc_rbus_iot;
701 1.22 chopps cba.cba_rbus_memt = sc->sc_rbus_memt;
702 1.1 haya #endif
703 1.1 haya
704 1.22 chopps cba.cba_cacheline = PCI_CACHELINE(bhlc);
705 1.151 dyoung cba.cba_max_lattimer = PCI_LATTIMER(bhlc);
706 1.1 haya
707 1.164 dyoung aprint_verbose_dev(&sc->sc_dev,
708 1.164 dyoung "cacheline 0x%x lattimer 0x%x\n",
709 1.164 dyoung cba.cba_cacheline,
710 1.164 dyoung cba.cba_max_lattimer);
711 1.164 dyoung aprint_verbose_dev(&sc->sc_dev, "bhlc 0x%x\n", bhlc);
712 1.1 haya #if defined SHOW_REGS
713 1.22 chopps cb_show_regs(sc->sc_pc, sc->sc_tag, sc->sc_base_memt,
714 1.22 chopps sc->sc_base_memh);
715 1.1 haya #endif
716 1.22 chopps }
717 1.1 haya
718 1.22 chopps pccbb_pcmcia_attach_setup(sc, &paa);
719 1.22 chopps caa.caa_cb_attach = NULL;
720 1.98 mycroft if (cba.cba_bus == 0)
721 1.164 dyoung aprint_error_dev(&sc->sc_dev,
722 1.164 dyoung "secondary bus number uninitialized; try PCI_BUS_FIXUP\n");
723 1.98 mycroft else
724 1.22 chopps caa.caa_cb_attach = &cba;
725 1.22 chopps caa.caa_16_attach = &paa;
726 1.22 chopps caa.caa_ph = &sc->sc_pcmcia_h;
727 1.1 haya
728 1.22 chopps if (NULL != (csc = (void *)config_found(self, &caa, cbbprint))) {
729 1.141 dyoung DPRINTF(("%s: found cardslot\n", __func__));
730 1.22 chopps sc->sc_csc = csc;
731 1.22 chopps }
732 1.1 haya
733 1.22 chopps return;
734 1.1 haya }
735 1.1 haya
736 1.26 haya
737 1.26 haya
738 1.26 haya
739 1.26 haya
740 1.26 haya /*
741 1.26 haya * static void pccbb_chipinit(struct pccbb_softc *sc)
742 1.26 haya *
743 1.32 enami * This function initialize YENTA chip registers listed below:
744 1.26 haya * 1) PCI command reg,
745 1.26 haya * 2) PCI and CardBus latency timer,
746 1.43 jhawk * 3) route PCI interrupt,
747 1.43 jhawk * 4) close all memory and io windows.
748 1.69 haya * 5) turn off bus power.
749 1.118 christos * 6) card detect and power cycle interrupts on.
750 1.69 haya * 7) clear interrupt
751 1.26 haya */
752 1.1 haya static void
753 1.143 dyoung pccbb_chipinit(struct pccbb_softc *sc)
754 1.1 haya {
755 1.22 chopps pci_chipset_tag_t pc = sc->sc_pc;
756 1.22 chopps pcitag_t tag = sc->sc_tag;
757 1.69 haya bus_space_tag_t bmt = sc->sc_base_memt;
758 1.69 haya bus_space_handle_t bmh = sc->sc_base_memh;
759 1.151 dyoung pcireg_t bcr, bhlc, cbctl, csr, lscp, mfunc, mrburst, slotctl, sockctl,
760 1.151 dyoung sockmask, sysctrl;
761 1.22 chopps
762 1.117 perry /*
763 1.22 chopps * Set PCI command reg.
764 1.22 chopps * Some laptop's BIOSes (i.e. TICO) do not enable CardBus chip.
765 1.22 chopps */
766 1.146 dyoung csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
767 1.30 mycroft /* I believe it is harmless. */
768 1.146 dyoung csr |= (PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MEM_ENABLE |
769 1.30 mycroft PCI_COMMAND_MASTER_ENABLE);
770 1.151 dyoung csr |= (PCI_COMMAND_PARITY_ENABLE|PCI_COMMAND_SERR_ENABLE);
771 1.146 dyoung pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
772 1.1 haya
773 1.117 perry /*
774 1.30 mycroft * Set CardBus latency timer.
775 1.22 chopps */
776 1.146 dyoung lscp = pci_conf_read(pc, tag, PCI_CB_LSCP_REG);
777 1.146 dyoung if (PCI_CB_LATENCY(lscp) < 0x20) {
778 1.146 dyoung lscp &= ~(PCI_CB_LATENCY_MASK << PCI_CB_LATENCY_SHIFT);
779 1.146 dyoung lscp |= (0x20 << PCI_CB_LATENCY_SHIFT);
780 1.146 dyoung pci_conf_write(pc, tag, PCI_CB_LSCP_REG, lscp);
781 1.22 chopps }
782 1.30 mycroft DPRINTF(("CardBus latency timer 0x%x (%x)\n",
783 1.146 dyoung PCI_CB_LATENCY(lscp), pci_conf_read(pc, tag, PCI_CB_LSCP_REG)));
784 1.1 haya
785 1.117 perry /*
786 1.30 mycroft * Set PCI latency timer.
787 1.22 chopps */
788 1.146 dyoung bhlc = pci_conf_read(pc, tag, PCI_BHLC_REG);
789 1.146 dyoung if (PCI_LATTIMER(bhlc) < 0x10) {
790 1.146 dyoung bhlc &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
791 1.146 dyoung bhlc |= (0x10 << PCI_LATTIMER_SHIFT);
792 1.146 dyoung pci_conf_write(pc, tag, PCI_BHLC_REG, bhlc);
793 1.22 chopps }
794 1.30 mycroft DPRINTF(("PCI latency timer 0x%x (%x)\n",
795 1.146 dyoung PCI_LATTIMER(bhlc), pci_conf_read(pc, tag, PCI_BHLC_REG)));
796 1.1 haya
797 1.1 haya
798 1.30 mycroft /* Route functional interrupts to PCI. */
799 1.146 dyoung bcr = pci_conf_read(pc, tag, PCI_BRIDGE_CONTROL_REG);
800 1.146 dyoung bcr |= CB_BCR_INTR_IREQ_ENABLE; /* disable PCI Intr */
801 1.146 dyoung bcr |= CB_BCR_WRITE_POST_ENABLE; /* enable write post */
802 1.146 dyoung /* assert reset */
803 1.146 dyoung bcr |= PCI_BRIDGE_CONTROL_SECBR << PCI_BRIDGE_CONTROL_SHIFT;
804 1.151 dyoung /* Set master abort mode to 1, forward SERR# from secondary
805 1.151 dyoung * to primary, and detect parity errors on secondary.
806 1.151 dyoung */
807 1.151 dyoung bcr |= PCI_BRIDGE_CONTROL_MABRT << PCI_BRIDGE_CONTROL_SHIFT;
808 1.151 dyoung bcr |= PCI_BRIDGE_CONTROL_SERR << PCI_BRIDGE_CONTROL_SHIFT;
809 1.151 dyoung bcr |= PCI_BRIDGE_CONTROL_PERE << PCI_BRIDGE_CONTROL_SHIFT;
810 1.146 dyoung pci_conf_write(pc, tag, PCI_BRIDGE_CONTROL_REG, bcr);
811 1.1 haya
812 1.30 mycroft switch (sc->sc_chipset) {
813 1.30 mycroft case CB_TI113X:
814 1.146 dyoung cbctl = pci_conf_read(pc, tag, PCI_CBCTRL);
815 1.30 mycroft /* This bit is shared, but may read as 0 on some chips, so set
816 1.30 mycroft it explicitly on both functions. */
817 1.146 dyoung cbctl |= PCI113X_CBCTRL_PCI_IRQ_ENA;
818 1.22 chopps /* CSC intr enable */
819 1.146 dyoung cbctl |= PCI113X_CBCTRL_PCI_CSC;
820 1.45 haya /* functional intr prohibit | prohibit ISA routing */
821 1.146 dyoung cbctl &= ~(PCI113X_CBCTRL_PCI_INTR | PCI113X_CBCTRL_INT_MASK);
822 1.146 dyoung pci_conf_write(pc, tag, PCI_CBCTRL, cbctl);
823 1.50 mycroft break;
824 1.50 mycroft
825 1.151 dyoung case CB_TI1420:
826 1.151 dyoung sysctrl = pci_conf_read(pc, tag, PCI_SYSCTRL);
827 1.151 dyoung mrburst = pccbb_burstup
828 1.151 dyoung ? PCI1420_SYSCTRL_MRBURST : PCI1420_SYSCTRL_MRBURSTDN;
829 1.151 dyoung if ((sysctrl & PCI1420_SYSCTRL_MRBURST) == mrburst) {
830 1.151 dyoung printf("%s: %swrite bursts enabled\n",
831 1.151 dyoung device_xname(&sc->sc_dev),
832 1.151 dyoung pccbb_burstup ? "read/" : "");
833 1.151 dyoung } else if (pccbb_burstup) {
834 1.151 dyoung printf("%s: enabling read/write bursts\n",
835 1.151 dyoung device_xname(&sc->sc_dev));
836 1.151 dyoung sysctrl |= PCI1420_SYSCTRL_MRBURST;
837 1.151 dyoung pci_conf_write(pc, tag, PCI_SYSCTRL, sysctrl);
838 1.151 dyoung } else {
839 1.151 dyoung printf("%s: disabling read bursts, "
840 1.151 dyoung "enabling write bursts\n",
841 1.151 dyoung device_xname(&sc->sc_dev));
842 1.151 dyoung sysctrl |= PCI1420_SYSCTRL_MRBURSTDN;
843 1.151 dyoung sysctrl &= ~PCI1420_SYSCTRL_MRBURSTUP;
844 1.151 dyoung pci_conf_write(pc, tag, PCI_SYSCTRL, sysctrl);
845 1.151 dyoung }
846 1.151 dyoung /*FALLTHROUGH*/
847 1.50 mycroft case CB_TI12XX:
848 1.96 nakayama /*
849 1.96 nakayama * Some TI 12xx (and [14][45]xx) based pci cards
850 1.96 nakayama * sometimes have issues with the MFUNC register not
851 1.96 nakayama * being initialized due to a bad EEPROM on board.
852 1.96 nakayama * Laptops that this matters on have this register
853 1.96 nakayama * properly initialized.
854 1.96 nakayama *
855 1.96 nakayama * The TI125X parts have a different register.
856 1.96 nakayama */
857 1.146 dyoung mfunc = pci_conf_read(pc, tag, PCI12XX_MFUNC);
858 1.146 dyoung if (mfunc == 0) {
859 1.146 dyoung mfunc &= ~PCI12XX_MFUNC_PIN0;
860 1.146 dyoung mfunc |= PCI12XX_MFUNC_PIN0_INTA;
861 1.96 nakayama if ((pci_conf_read(pc, tag, PCI_SYSCTRL) &
862 1.96 nakayama PCI12XX_SYSCTRL_INTRTIE) == 0) {
863 1.146 dyoung mfunc &= ~PCI12XX_MFUNC_PIN1;
864 1.146 dyoung mfunc |= PCI12XX_MFUNC_PIN1_INTB;
865 1.96 nakayama }
866 1.146 dyoung pci_conf_write(pc, tag, PCI12XX_MFUNC, mfunc);
867 1.96 nakayama }
868 1.96 nakayama /* fallthrough */
869 1.96 nakayama
870 1.96 nakayama case CB_TI125X:
871 1.96 nakayama /*
872 1.96 nakayama * Disable zoom video. Some machines initialize this
873 1.96 nakayama * improperly and experience has shown that this helps
874 1.96 nakayama * prevent strange behavior.
875 1.96 nakayama */
876 1.96 nakayama pci_conf_write(pc, tag, PCI12XX_MMCTRL, 0);
877 1.96 nakayama
878 1.146 dyoung sysctrl = pci_conf_read(pc, tag, PCI_SYSCTRL);
879 1.146 dyoung sysctrl |= PCI12XX_SYSCTRL_VCCPROT;
880 1.146 dyoung pci_conf_write(pc, tag, PCI_SYSCTRL, sysctrl);
881 1.146 dyoung cbctl = pci_conf_read(pc, tag, PCI_CBCTRL);
882 1.146 dyoung cbctl |= PCI12XX_CBCTRL_CSC;
883 1.146 dyoung pci_conf_write(pc, tag, PCI_CBCTRL, cbctl);
884 1.30 mycroft break;
885 1.30 mycroft
886 1.30 mycroft case CB_TOPIC95B:
887 1.146 dyoung sockctl = pci_conf_read(pc, tag, TOPIC_SOCKET_CTRL);
888 1.146 dyoung sockctl |= TOPIC_SOCKET_CTRL_SCR_IRQSEL;
889 1.146 dyoung pci_conf_write(pc, tag, TOPIC_SOCKET_CTRL, sockctl);
890 1.146 dyoung slotctl = pci_conf_read(pc, tag, TOPIC_SLOT_CTRL);
891 1.67 haya DPRINTF(("%s: topic slot ctrl reg 0x%x -> ",
892 1.164 dyoung device_xname(&sc->sc_dev), slotctl));
893 1.146 dyoung slotctl |= (TOPIC_SLOT_CTRL_SLOTON | TOPIC_SLOT_CTRL_SLOTEN |
894 1.67 haya TOPIC_SLOT_CTRL_ID_LOCK | TOPIC_SLOT_CTRL_CARDBUS);
895 1.146 dyoung slotctl &= ~TOPIC_SLOT_CTRL_SWDETECT;
896 1.146 dyoung DPRINTF(("0x%x\n", slotctl));
897 1.146 dyoung pci_conf_write(pc, tag, TOPIC_SLOT_CTRL, slotctl);
898 1.67 haya break;
899 1.22 chopps
900 1.67 haya case CB_TOPIC97:
901 1.146 dyoung slotctl = pci_conf_read(pc, tag, TOPIC_SLOT_CTRL);
902 1.22 chopps DPRINTF(("%s: topic slot ctrl reg 0x%x -> ",
903 1.164 dyoung device_xname(&sc->sc_dev), slotctl));
904 1.146 dyoung slotctl |= (TOPIC_SLOT_CTRL_SLOTON | TOPIC_SLOT_CTRL_SLOTEN |
905 1.30 mycroft TOPIC_SLOT_CTRL_ID_LOCK | TOPIC_SLOT_CTRL_CARDBUS);
906 1.146 dyoung slotctl &= ~TOPIC_SLOT_CTRL_SWDETECT;
907 1.146 dyoung slotctl |= TOPIC97_SLOT_CTRL_PCIINT;
908 1.146 dyoung slotctl &= ~(TOPIC97_SLOT_CTRL_STSIRQP | TOPIC97_SLOT_CTRL_IRQP);
909 1.146 dyoung DPRINTF(("0x%x\n", slotctl));
910 1.146 dyoung pci_conf_write(pc, tag, TOPIC_SLOT_CTRL, slotctl);
911 1.69 haya /* make sure to assert LV card support bits */
912 1.69 haya bus_space_write_1(sc->sc_base_memt, sc->sc_base_memh,
913 1.69 haya 0x800 + 0x3e,
914 1.69 haya bus_space_read_1(sc->sc_base_memt, sc->sc_base_memh,
915 1.69 haya 0x800 + 0x3e) | 0x03);
916 1.30 mycroft break;
917 1.22 chopps }
918 1.1 haya
919 1.30 mycroft /* Close all memory and I/O windows. */
920 1.22 chopps pci_conf_write(pc, tag, PCI_CB_MEMBASE0, 0xffffffff);
921 1.22 chopps pci_conf_write(pc, tag, PCI_CB_MEMLIMIT0, 0);
922 1.22 chopps pci_conf_write(pc, tag, PCI_CB_MEMBASE1, 0xffffffff);
923 1.22 chopps pci_conf_write(pc, tag, PCI_CB_MEMLIMIT1, 0);
924 1.22 chopps pci_conf_write(pc, tag, PCI_CB_IOBASE0, 0xffffffff);
925 1.22 chopps pci_conf_write(pc, tag, PCI_CB_IOLIMIT0, 0);
926 1.22 chopps pci_conf_write(pc, tag, PCI_CB_IOBASE1, 0xffffffff);
927 1.22 chopps pci_conf_write(pc, tag, PCI_CB_IOLIMIT1, 0);
928 1.46 haya
929 1.46 haya /* reset 16-bit pcmcia bus */
930 1.69 haya bus_space_write_1(bmt, bmh, 0x800 + PCIC_INTR,
931 1.69 haya bus_space_read_1(bmt, bmh, 0x800 + PCIC_INTR) & ~PCIC_INTR_RESET);
932 1.46 haya
933 1.69 haya /* turn off power */
934 1.160 dyoung pccbb_power(sc, CARDBUS_VCC_0V | CARDBUS_VPP_0V);
935 1.69 haya
936 1.118 christos /* CSC Interrupt: Card detect and power cycle interrupts on */
937 1.146 dyoung sockmask = bus_space_read_4(bmt, bmh, CB_SOCKET_MASK);
938 1.146 dyoung sockmask |= CB_SOCKET_MASK_CD | CB_SOCKET_MASK_POWER;
939 1.146 dyoung bus_space_write_4(bmt, bmh, CB_SOCKET_MASK, sockmask);
940 1.69 haya /* reset interrupt */
941 1.69 haya bus_space_write_4(bmt, bmh, CB_SOCKET_EVENT,
942 1.69 haya bus_space_read_4(bmt, bmh, CB_SOCKET_EVENT));
943 1.1 haya }
944 1.1 haya
945 1.26 haya
946 1.26 haya
947 1.26 haya
948 1.4 haya /*
949 1.26 haya * STATIC void pccbb_pcmcia_attach_setup(struct pccbb_softc *sc,
950 1.26 haya * struct pcmciabus_attach_args *paa)
951 1.26 haya *
952 1.26 haya * This function attaches 16-bit PCcard bus.
953 1.4 haya */
954 1.1 haya STATIC void
955 1.143 dyoung pccbb_pcmcia_attach_setup(struct pccbb_softc *sc,
956 1.143 dyoung struct pcmciabus_attach_args *paa)
957 1.1 haya {
958 1.22 chopps struct pcic_handle *ph = &sc->sc_pcmcia_h;
959 1.10 haya #if rbus
960 1.22 chopps rbus_tag_t rb;
961 1.10 haya #endif
962 1.1 haya
963 1.32 enami /* initialize pcmcia part in pccbb_softc */
964 1.162 dyoung ph->ph_parent = &sc->sc_dev;
965 1.22 chopps ph->sock = sc->sc_function;
966 1.22 chopps ph->flags = 0;
967 1.22 chopps ph->shutdown = 0;
968 1.51 sommerfe ph->ih_irq = sc->sc_pa.pa_intrline;
969 1.22 chopps ph->ph_bus_t = sc->sc_base_memt;
970 1.22 chopps ph->ph_bus_h = sc->sc_base_memh;
971 1.22 chopps ph->ph_read = pccbb_pcmcia_read;
972 1.22 chopps ph->ph_write = pccbb_pcmcia_write;
973 1.22 chopps sc->sc_pct = &pccbb_pcmcia_funcs;
974 1.22 chopps
975 1.31 mycroft /*
976 1.31 mycroft * We need to do a few things here:
977 1.31 mycroft * 1) Disable routing of CSC and functional interrupts to ISA IRQs by
978 1.31 mycroft * setting the IRQ numbers to 0.
979 1.31 mycroft * 2) Set bit 4 of PCIC_INTR, which is needed on some chips to enable
980 1.31 mycroft * routing of CSC interrupts (e.g. card removal) to PCI while in
981 1.31 mycroft * PCMCIA mode. We just leave this set all the time.
982 1.31 mycroft * 3) Enable card insertion/removal interrupts in case the chip also
983 1.31 mycroft * needs that while in PCMCIA mode.
984 1.31 mycroft * 4) Clear any pending CSC interrupt.
985 1.31 mycroft */
986 1.46 haya Pcic_write(ph, PCIC_INTR, PCIC_INTR_ENABLE);
987 1.45 haya if (sc->sc_chipset == CB_TI113X) {
988 1.45 haya Pcic_write(ph, PCIC_CSC_INTR, 0);
989 1.45 haya } else {
990 1.45 haya Pcic_write(ph, PCIC_CSC_INTR, PCIC_CSC_INTR_CD_ENABLE);
991 1.45 haya Pcic_read(ph, PCIC_CSC);
992 1.45 haya }
993 1.22 chopps
994 1.32 enami /* initialize pcmcia bus attachment */
995 1.22 chopps paa->paa_busname = "pcmcia";
996 1.22 chopps paa->pct = sc->sc_pct;
997 1.22 chopps paa->pch = ph;
998 1.22 chopps paa->iobase = 0; /* I don't use them */
999 1.22 chopps paa->iosize = 0;
1000 1.10 haya #if rbus
1001 1.22 chopps rb = ((struct pccbb_softc *)(ph->ph_parent))->sc_rbus_iot;
1002 1.22 chopps paa->iobase = rb->rb_start + rb->rb_offset;
1003 1.22 chopps paa->iosize = rb->rb_end - rb->rb_start;
1004 1.10 haya #endif
1005 1.1 haya
1006 1.22 chopps return;
1007 1.1 haya }
1008 1.1 haya
1009 1.1 haya #if 0
1010 1.1 haya STATIC void
1011 1.143 dyoung pccbb_pcmcia_attach_card(struct pcic_handle *ph)
1012 1.1 haya {
1013 1.22 chopps if (ph->flags & PCIC_FLAG_CARDP) {
1014 1.22 chopps panic("pccbb_pcmcia_attach_card: already attached");
1015 1.22 chopps }
1016 1.1 haya
1017 1.22 chopps /* call the MI attach function */
1018 1.22 chopps pcmcia_card_attach(ph->pcmcia);
1019 1.1 haya
1020 1.22 chopps ph->flags |= PCIC_FLAG_CARDP;
1021 1.1 haya }
1022 1.1 haya
1023 1.1 haya STATIC void
1024 1.143 dyoung pccbb_pcmcia_detach_card(struct pcic_handle *ph, int flags)
1025 1.1 haya {
1026 1.22 chopps if (!(ph->flags & PCIC_FLAG_CARDP)) {
1027 1.22 chopps panic("pccbb_pcmcia_detach_card: already detached");
1028 1.22 chopps }
1029 1.1 haya
1030 1.22 chopps ph->flags &= ~PCIC_FLAG_CARDP;
1031 1.1 haya
1032 1.22 chopps /* call the MI detach function */
1033 1.22 chopps pcmcia_card_detach(ph->pcmcia, flags);
1034 1.1 haya }
1035 1.1 haya #endif
1036 1.1 haya
1037 1.4 haya /*
1038 1.4 haya * int pccbbintr(arg)
1039 1.4 haya * void *arg;
1040 1.4 haya * This routine handles the interrupt from Yenta PCI-CardBus bridge
1041 1.4 haya * itself.
1042 1.4 haya */
1043 1.1 haya int
1044 1.143 dyoung pccbbintr(void *arg)
1045 1.1 haya {
1046 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)arg;
1047 1.31 mycroft u_int32_t sockevent, sockstate;
1048 1.22 chopps bus_space_tag_t memt = sc->sc_base_memt;
1049 1.22 chopps bus_space_handle_t memh = sc->sc_base_memh;
1050 1.31 mycroft struct pcic_handle *ph = &sc->sc_pcmcia_h;
1051 1.22 chopps
1052 1.22 chopps sockevent = bus_space_read_4(memt, memh, CB_SOCKET_EVENT);
1053 1.31 mycroft bus_space_write_4(memt, memh, CB_SOCKET_EVENT, sockevent);
1054 1.31 mycroft Pcic_read(ph, PCIC_CSC);
1055 1.31 mycroft
1056 1.152 dyoung if (sockevent != 0) {
1057 1.152 dyoung aprint_debug("%s: enter sockevent %" PRIx32 "\n", __func__,
1058 1.152 dyoung sockevent);
1059 1.152 dyoung }
1060 1.152 dyoung
1061 1.152 dyoung /* Sometimes a change of CSTSCHG# accompanies the first
1062 1.152 dyoung * interrupt from an Atheros WLAN. That generates a
1063 1.152 dyoung * CB_SOCKET_EVENT_CSTS event on the bridge. The event
1064 1.152 dyoung * isn't interesting to pccbb(4), so we used to ignore the
1065 1.152 dyoung * interrupt. Now, let the child devices try to handle
1066 1.152 dyoung * the interrupt, instead. The Atheros NIC produces
1067 1.152 dyoung * interrupts more reliably, now: used to be that it would
1068 1.152 dyoung * only interrupt if the driver avoided powering down the
1069 1.152 dyoung * NIC's cardslot, and then the NIC would only work after
1070 1.152 dyoung * it was reset a second time.
1071 1.152 dyoung */
1072 1.152 dyoung if (sockevent == 0 ||
1073 1.152 dyoung (sockevent & ~(CB_SOCKET_EVENT_POWER|CB_SOCKET_EVENT_CD)) != 0) {
1074 1.22 chopps /* This intr is not for me: it may be for my child devices. */
1075 1.38 haya if (sc->sc_pil_intr_enable) {
1076 1.38 haya return pccbbintr_function(sc);
1077 1.38 haya } else {
1078 1.38 haya return 0;
1079 1.38 haya }
1080 1.22 chopps }
1081 1.1 haya
1082 1.22 chopps if (sockevent & CB_SOCKET_EVENT_CD) {
1083 1.31 mycroft sockstate = bus_space_read_4(memt, memh, CB_SOCKET_STAT);
1084 1.90 msaitoh if (0x00 != (sockstate & CB_SOCKET_STAT_CD)) {
1085 1.22 chopps /* A card should be removed. */
1086 1.22 chopps if (sc->sc_flags & CBB_CARDEXIST) {
1087 1.164 dyoung DPRINTF(("%s: 0x%08x",
1088 1.164 dyoung device_xname(&sc->sc_dev), sockevent));
1089 1.22 chopps DPRINTF((" card removed, 0x%08x\n", sockstate));
1090 1.22 chopps sc->sc_flags &= ~CBB_CARDEXIST;
1091 1.33 enami if (sc->sc_csc->sc_status &
1092 1.33 enami CARDSLOT_STATUS_CARD_16) {
1093 1.1 haya #if 0
1094 1.22 chopps struct pcic_handle *ph =
1095 1.22 chopps &sc->sc_pcmcia_h;
1096 1.1 haya
1097 1.22 chopps pcmcia_card_deactivate(ph->pcmcia);
1098 1.22 chopps pccbb_pcmcia_socket_disable(ph);
1099 1.22 chopps pccbb_pcmcia_detach_card(ph,
1100 1.22 chopps DETACH_FORCE);
1101 1.22 chopps #endif
1102 1.22 chopps cardslot_event_throw(sc->sc_csc,
1103 1.22 chopps CARDSLOT_EVENT_REMOVAL_16);
1104 1.33 enami } else if (sc->sc_csc->sc_status &
1105 1.33 enami CARDSLOT_STATUS_CARD_CB) {
1106 1.22 chopps /* Cardbus intr removed */
1107 1.22 chopps cardslot_event_throw(sc->sc_csc,
1108 1.22 chopps CARDSLOT_EVENT_REMOVAL_CB);
1109 1.22 chopps }
1110 1.74 haya } else if (sc->sc_flags & CBB_INSERTING) {
1111 1.74 haya sc->sc_flags &= ~CBB_INSERTING;
1112 1.74 haya callout_stop(&sc->sc_insert_ch);
1113 1.22 chopps }
1114 1.34 enami } else if (0x00 == (sockstate & CB_SOCKET_STAT_CD) &&
1115 1.34 enami /*
1116 1.34 enami * The pccbbintr may called from powerdown hook when
1117 1.34 enami * the system resumed, to detect the card
1118 1.34 enami * insertion/removal during suspension.
1119 1.34 enami */
1120 1.34 enami (sc->sc_flags & CBB_CARDEXIST) == 0) {
1121 1.22 chopps if (sc->sc_flags & CBB_INSERTING) {
1122 1.37 thorpej callout_stop(&sc->sc_insert_ch);
1123 1.22 chopps }
1124 1.149 joerg callout_schedule(&sc->sc_insert_ch, hz / 5);
1125 1.22 chopps sc->sc_flags |= CBB_INSERTING;
1126 1.22 chopps }
1127 1.22 chopps }
1128 1.1 haya
1129 1.153 dyoung /* XXX sockevent == 9 does occur in the wild. handle it. */
1130 1.111 mycroft if (sockevent & CB_SOCKET_EVENT_POWER) {
1131 1.132 christos DPRINTF(("Powercycling because of socket event\n"));
1132 1.118 christos /* XXX: Does not happen when attaching a 16-bit card */
1133 1.111 mycroft sc->sc_pwrcycle++;
1134 1.111 mycroft wakeup(&sc->sc_pwrcycle);
1135 1.111 mycroft }
1136 1.111 mycroft
1137 1.33 enami return (1);
1138 1.1 haya }
1139 1.1 haya
1140 1.21 haya /*
1141 1.21 haya * static int pccbbintr_function(struct pccbb_softc *sc)
1142 1.21 haya *
1143 1.21 haya * This function calls each interrupt handler registered at the
1144 1.32 enami * bridge. The interrupt handlers are called in registered order.
1145 1.21 haya */
1146 1.21 haya static int
1147 1.143 dyoung pccbbintr_function(struct pccbb_softc *sc)
1148 1.21 haya {
1149 1.22 chopps int retval = 0, val;
1150 1.22 chopps struct pccbb_intrhand_list *pil;
1151 1.138 yamt int s;
1152 1.21 haya
1153 1.159 dyoung LIST_FOREACH(pil, &sc->sc_pil, pil_next) {
1154 1.138 yamt s = splraiseipl(pil->pil_icookie);
1155 1.41 haya val = (*pil->pil_func)(pil->pil_arg);
1156 1.138 yamt splx(s);
1157 1.41 haya
1158 1.22 chopps retval = retval == 1 ? 1 :
1159 1.22 chopps retval == 0 ? val : val != 0 ? val : retval;
1160 1.22 chopps }
1161 1.21 haya
1162 1.22 chopps return retval;
1163 1.21 haya }
1164 1.21 haya
1165 1.1 haya static void
1166 1.143 dyoung pci113x_insert(void *arg)
1167 1.1 haya {
1168 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)arg;
1169 1.22 chopps u_int32_t sockevent, sockstate;
1170 1.74 haya
1171 1.74 haya if (!(sc->sc_flags & CBB_INSERTING)) {
1172 1.74 haya /* We add a card only under inserting state. */
1173 1.74 haya return;
1174 1.74 haya }
1175 1.74 haya sc->sc_flags &= ~CBB_INSERTING;
1176 1.1 haya
1177 1.22 chopps sockevent = bus_space_read_4(sc->sc_base_memt, sc->sc_base_memh,
1178 1.22 chopps CB_SOCKET_EVENT);
1179 1.22 chopps sockstate = bus_space_read_4(sc->sc_base_memt, sc->sc_base_memh,
1180 1.22 chopps CB_SOCKET_STAT);
1181 1.22 chopps
1182 1.22 chopps if (0 == (sockstate & CB_SOCKET_STAT_CD)) { /* card exist */
1183 1.164 dyoung DPRINTF(("%s: 0x%08x", device_xname(&sc->sc_dev), sockevent));
1184 1.22 chopps DPRINTF((" card inserted, 0x%08x\n", sockstate));
1185 1.22 chopps sc->sc_flags |= CBB_CARDEXIST;
1186 1.32 enami /* call pccard interrupt handler here */
1187 1.22 chopps if (sockstate & CB_SOCKET_STAT_16BIT) {
1188 1.22 chopps /* 16-bit card found */
1189 1.1 haya /* pccbb_pcmcia_attach_card(&sc->sc_pcmcia_h); */
1190 1.22 chopps cardslot_event_throw(sc->sc_csc,
1191 1.22 chopps CARDSLOT_EVENT_INSERTION_16);
1192 1.22 chopps } else if (sockstate & CB_SOCKET_STAT_CB) {
1193 1.32 enami /* cardbus card found */
1194 1.1 haya /* cardbus_attach_card(sc->sc_csc); */
1195 1.22 chopps cardslot_event_throw(sc->sc_csc,
1196 1.22 chopps CARDSLOT_EVENT_INSERTION_CB);
1197 1.22 chopps } else {
1198 1.22 chopps /* who are you? */
1199 1.22 chopps }
1200 1.22 chopps } else {
1201 1.149 joerg callout_schedule(&sc->sc_insert_ch, hz / 10);
1202 1.22 chopps }
1203 1.1 haya }
1204 1.1 haya
1205 1.1 haya #define PCCBB_PCMCIA_OFFSET 0x800
1206 1.1 haya static u_int8_t
1207 1.143 dyoung pccbb_pcmcia_read(struct pcic_handle *ph, int reg)
1208 1.1 haya {
1209 1.48 haya bus_space_barrier(ph->ph_bus_t, ph->ph_bus_h,
1210 1.48 haya PCCBB_PCMCIA_OFFSET + reg, 1, BUS_SPACE_BARRIER_READ);
1211 1.48 haya
1212 1.22 chopps return bus_space_read_1(ph->ph_bus_t, ph->ph_bus_h,
1213 1.22 chopps PCCBB_PCMCIA_OFFSET + reg);
1214 1.1 haya }
1215 1.1 haya
1216 1.1 haya static void
1217 1.143 dyoung pccbb_pcmcia_write(struct pcic_handle *ph, int reg, u_int8_t val)
1218 1.1 haya {
1219 1.22 chopps bus_space_write_1(ph->ph_bus_t, ph->ph_bus_h, PCCBB_PCMCIA_OFFSET + reg,
1220 1.22 chopps val);
1221 1.48 haya
1222 1.48 haya bus_space_barrier(ph->ph_bus_t, ph->ph_bus_h,
1223 1.48 haya PCCBB_PCMCIA_OFFSET + reg, 1, BUS_SPACE_BARRIER_WRITE);
1224 1.1 haya }
1225 1.1 haya
1226 1.4 haya /*
1227 1.4 haya * STATIC int pccbb_ctrl(cardbus_chipset_tag_t, int)
1228 1.4 haya */
1229 1.1 haya STATIC int
1230 1.143 dyoung pccbb_ctrl(cardbus_chipset_tag_t ct, int command)
1231 1.1 haya {
1232 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1233 1.1 haya
1234 1.22 chopps switch (command) {
1235 1.22 chopps case CARDBUS_CD:
1236 1.22 chopps if (2 == pccbb_detect_card(sc)) {
1237 1.22 chopps int retval = 0;
1238 1.22 chopps int status = cb_detect_voltage(sc);
1239 1.22 chopps if (PCCARD_VCC_5V & status) {
1240 1.22 chopps retval |= CARDBUS_5V_CARD;
1241 1.22 chopps }
1242 1.22 chopps if (PCCARD_VCC_3V & status) {
1243 1.22 chopps retval |= CARDBUS_3V_CARD;
1244 1.22 chopps }
1245 1.22 chopps if (PCCARD_VCC_XV & status) {
1246 1.22 chopps retval |= CARDBUS_XV_CARD;
1247 1.22 chopps }
1248 1.22 chopps if (PCCARD_VCC_YV & status) {
1249 1.22 chopps retval |= CARDBUS_YV_CARD;
1250 1.22 chopps }
1251 1.22 chopps return retval;
1252 1.22 chopps } else {
1253 1.22 chopps return 0;
1254 1.22 chopps }
1255 1.22 chopps case CARDBUS_RESET:
1256 1.22 chopps return cb_reset(sc);
1257 1.22 chopps case CARDBUS_IO_ENABLE: /* fallthrough */
1258 1.22 chopps case CARDBUS_IO_DISABLE: /* fallthrough */
1259 1.22 chopps case CARDBUS_MEM_ENABLE: /* fallthrough */
1260 1.22 chopps case CARDBUS_MEM_DISABLE: /* fallthrough */
1261 1.22 chopps case CARDBUS_BM_ENABLE: /* fallthrough */
1262 1.22 chopps case CARDBUS_BM_DISABLE: /* fallthrough */
1263 1.69 haya /* XXX: I think we don't need to call this function below. */
1264 1.22 chopps return pccbb_cardenable(sc, command);
1265 1.22 chopps }
1266 1.1 haya
1267 1.22 chopps return 0;
1268 1.1 haya }
1269 1.1 haya
1270 1.160 dyoung STATIC int
1271 1.160 dyoung pccbb_power_ct(cardbus_chipset_tag_t ct, int command)
1272 1.160 dyoung {
1273 1.160 dyoung struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1274 1.160 dyoung
1275 1.160 dyoung return pccbb_power(sc, command);
1276 1.160 dyoung }
1277 1.160 dyoung
1278 1.4 haya /*
1279 1.4 haya * STATIC int pccbb_power(cardbus_chipset_tag_t, int)
1280 1.4 haya * This function returns true when it succeeds and returns false when
1281 1.4 haya * it fails.
1282 1.4 haya */
1283 1.1 haya STATIC int
1284 1.160 dyoung pccbb_power(struct pccbb_softc *sc, int command)
1285 1.1 haya {
1286 1.144 dyoung u_int32_t status, osock_ctrl, sock_ctrl, reg_ctrl;
1287 1.22 chopps bus_space_tag_t memt = sc->sc_base_memt;
1288 1.22 chopps bus_space_handle_t memh = sc->sc_base_memh;
1289 1.144 dyoung int on = 0, pwrcycle, s, times;
1290 1.144 dyoung struct timeval before, after, diff;
1291 1.22 chopps
1292 1.95 christos DPRINTF(("pccbb_power: %s and %s [0x%x]\n",
1293 1.22 chopps (command & CARDBUS_VCCMASK) == CARDBUS_VCC_UC ? "CARDBUS_VCC_UC" :
1294 1.22 chopps (command & CARDBUS_VCCMASK) == CARDBUS_VCC_5V ? "CARDBUS_VCC_5V" :
1295 1.22 chopps (command & CARDBUS_VCCMASK) == CARDBUS_VCC_3V ? "CARDBUS_VCC_3V" :
1296 1.22 chopps (command & CARDBUS_VCCMASK) == CARDBUS_VCC_XV ? "CARDBUS_VCC_XV" :
1297 1.22 chopps (command & CARDBUS_VCCMASK) == CARDBUS_VCC_YV ? "CARDBUS_VCC_YV" :
1298 1.22 chopps (command & CARDBUS_VCCMASK) == CARDBUS_VCC_0V ? "CARDBUS_VCC_0V" :
1299 1.22 chopps "UNKNOWN",
1300 1.22 chopps (command & CARDBUS_VPPMASK) == CARDBUS_VPP_UC ? "CARDBUS_VPP_UC" :
1301 1.22 chopps (command & CARDBUS_VPPMASK) == CARDBUS_VPP_12V ? "CARDBUS_VPP_12V" :
1302 1.22 chopps (command & CARDBUS_VPPMASK) == CARDBUS_VPP_VCC ? "CARDBUS_VPP_VCC" :
1303 1.22 chopps (command & CARDBUS_VPPMASK) == CARDBUS_VPP_0V ? "CARDBUS_VPP_0V" :
1304 1.22 chopps "UNKNOWN", command));
1305 1.22 chopps
1306 1.22 chopps status = bus_space_read_4(memt, memh, CB_SOCKET_STAT);
1307 1.144 dyoung osock_ctrl = sock_ctrl = bus_space_read_4(memt, memh, CB_SOCKET_CTRL);
1308 1.22 chopps
1309 1.22 chopps switch (command & CARDBUS_VCCMASK) {
1310 1.22 chopps case CARDBUS_VCC_UC:
1311 1.22 chopps break;
1312 1.22 chopps case CARDBUS_VCC_5V:
1313 1.111 mycroft on++;
1314 1.22 chopps if (CB_SOCKET_STAT_5VCARD & status) { /* check 5 V card */
1315 1.22 chopps sock_ctrl &= ~CB_SOCKET_CTRL_VCCMASK;
1316 1.22 chopps sock_ctrl |= CB_SOCKET_CTRL_VCC_5V;
1317 1.22 chopps } else {
1318 1.164 dyoung aprint_error_dev(&sc->sc_dev,
1319 1.164 dyoung "BAD voltage request: no 5 V card\n");
1320 1.91 briggs return 0;
1321 1.22 chopps }
1322 1.22 chopps break;
1323 1.22 chopps case CARDBUS_VCC_3V:
1324 1.111 mycroft on++;
1325 1.22 chopps if (CB_SOCKET_STAT_3VCARD & status) {
1326 1.22 chopps sock_ctrl &= ~CB_SOCKET_CTRL_VCCMASK;
1327 1.22 chopps sock_ctrl |= CB_SOCKET_CTRL_VCC_3V;
1328 1.22 chopps } else {
1329 1.164 dyoung aprint_error_dev(&sc->sc_dev,
1330 1.164 dyoung "BAD voltage request: no 3.3 V card\n");
1331 1.91 briggs return 0;
1332 1.22 chopps }
1333 1.22 chopps break;
1334 1.22 chopps case CARDBUS_VCC_0V:
1335 1.22 chopps sock_ctrl &= ~CB_SOCKET_CTRL_VCCMASK;
1336 1.22 chopps break;
1337 1.22 chopps default:
1338 1.22 chopps return 0; /* power NEVER changed */
1339 1.22 chopps }
1340 1.1 haya
1341 1.22 chopps switch (command & CARDBUS_VPPMASK) {
1342 1.22 chopps case CARDBUS_VPP_UC:
1343 1.22 chopps break;
1344 1.22 chopps case CARDBUS_VPP_0V:
1345 1.22 chopps sock_ctrl &= ~CB_SOCKET_CTRL_VPPMASK;
1346 1.22 chopps break;
1347 1.22 chopps case CARDBUS_VPP_VCC:
1348 1.22 chopps sock_ctrl &= ~CB_SOCKET_CTRL_VPPMASK;
1349 1.22 chopps sock_ctrl |= ((sock_ctrl >> 4) & 0x07);
1350 1.22 chopps break;
1351 1.22 chopps case CARDBUS_VPP_12V:
1352 1.22 chopps sock_ctrl &= ~CB_SOCKET_CTRL_VPPMASK;
1353 1.22 chopps sock_ctrl |= CB_SOCKET_CTRL_VPP_12V;
1354 1.22 chopps break;
1355 1.22 chopps }
1356 1.1 haya
1357 1.111 mycroft pwrcycle = sc->sc_pwrcycle;
1358 1.164 dyoung aprint_debug_dev(&sc->sc_dev, "osock_ctrl %#" PRIx32
1359 1.164 dyoung " sock_ctrl %#" PRIx32 "\n", osock_ctrl, sock_ctrl);
1360 1.111 mycroft
1361 1.144 dyoung microtime(&before);
1362 1.144 dyoung s = splbio();
1363 1.22 chopps bus_space_write_4(memt, memh, CB_SOCKET_CTRL, sock_ctrl);
1364 1.111 mycroft
1365 1.144 dyoung /*
1366 1.144 dyoung * Wait as long as 200ms for a power-cycle interrupt. If
1367 1.144 dyoung * interrupts are enabled, but the socket has already
1368 1.144 dyoung * changed to the desired status, keep waiting for the
1369 1.144 dyoung * interrupt. "Consuming" the interrupt in this way keeps
1370 1.144 dyoung * the interrupt from prematurely waking some subsequent
1371 1.144 dyoung * pccbb_power call.
1372 1.144 dyoung *
1373 1.144 dyoung * XXX Not every bridge interrupts on the ->OFF transition.
1374 1.144 dyoung * XXX That's ok, we will time-out after 200ms.
1375 1.144 dyoung *
1376 1.144 dyoung * XXX The power cycle event will never happen when attaching
1377 1.144 dyoung * XXX a 16-bit card. That's ok, we will time-out after
1378 1.144 dyoung * XXX 200ms.
1379 1.144 dyoung */
1380 1.144 dyoung for (times = 5; --times >= 0; ) {
1381 1.144 dyoung if (cold)
1382 1.144 dyoung DELAY(40 * 1000);
1383 1.144 dyoung else {
1384 1.144 dyoung (void)tsleep(&sc->sc_pwrcycle, PWAIT, "pccpwr",
1385 1.144 dyoung hz / 25);
1386 1.144 dyoung if (pwrcycle == sc->sc_pwrcycle)
1387 1.144 dyoung continue;
1388 1.118 christos }
1389 1.144 dyoung status = bus_space_read_4(memt, memh, CB_SOCKET_STAT);
1390 1.144 dyoung if ((status & CB_SOCKET_STAT_PWRCYCLE) != 0 && on)
1391 1.144 dyoung break;
1392 1.144 dyoung if ((status & CB_SOCKET_STAT_PWRCYCLE) == 0 && !on)
1393 1.144 dyoung break;
1394 1.144 dyoung }
1395 1.144 dyoung splx(s);
1396 1.144 dyoung microtime(&after);
1397 1.144 dyoung timersub(&after, &before, &diff);
1398 1.164 dyoung aprint_debug_dev(&sc->sc_dev, "wait took%s %ld.%06lds\n",
1399 1.144 dyoung (on && times < 0) ? " too long" : "", diff.tv_sec, diff.tv_usec);
1400 1.133 christos
1401 1.144 dyoung /*
1402 1.144 dyoung * Ok, wait a bit longer for things to settle.
1403 1.144 dyoung */
1404 1.144 dyoung if (on && sc->sc_chipset == CB_TOPIC95B)
1405 1.144 dyoung delay_ms(100, sc);
1406 1.111 mycroft
1407 1.22 chopps status = bus_space_read_4(memt, memh, CB_SOCKET_STAT);
1408 1.1 haya
1409 1.132 christos if (on && sc->sc_chipset != CB_TOPIC95B) {
1410 1.111 mycroft if ((status & CB_SOCKET_STAT_PWRCYCLE) == 0)
1411 1.164 dyoung aprint_error_dev(&sc->sc_dev, "power on failed?\n");
1412 1.111 mycroft }
1413 1.111 mycroft
1414 1.22 chopps if (status & CB_SOCKET_STAT_BADVCC) { /* bad Vcc request */
1415 1.164 dyoung aprint_error_dev(&sc->sc_dev,
1416 1.164 dyoung "bad Vcc request. sock_ctrl 0x%x, sock_status 0x%x\n",
1417 1.164 dyoung sock_ctrl, status);
1418 1.164 dyoung aprint_error_dev(&sc->sc_dev, "disabling socket\n");
1419 1.104 mycroft sock_ctrl &= ~CB_SOCKET_CTRL_VCCMASK;
1420 1.104 mycroft sock_ctrl &= ~CB_SOCKET_CTRL_VPPMASK;
1421 1.104 mycroft bus_space_write_4(memt, memh, CB_SOCKET_CTRL, sock_ctrl);
1422 1.111 mycroft status &= ~CB_SOCKET_STAT_BADVCC;
1423 1.145 christos bus_space_write_4(memt, memh, CB_SOCKET_FORCE, status);
1424 1.104 mycroft printf("new status 0x%x\n", bus_space_read_4(memt, memh,
1425 1.104 mycroft CB_SOCKET_STAT));
1426 1.22 chopps return 0;
1427 1.77 mycroft }
1428 1.77 mycroft
1429 1.77 mycroft if (sc->sc_chipset == CB_TOPIC97) {
1430 1.77 mycroft reg_ctrl = pci_conf_read(sc->sc_pc, sc->sc_tag, TOPIC_REG_CTRL);
1431 1.77 mycroft reg_ctrl &= ~TOPIC97_REG_CTRL_TESTMODE;
1432 1.77 mycroft if ((command & CARDBUS_VCCMASK) == CARDBUS_VCC_0V)
1433 1.77 mycroft reg_ctrl &= ~TOPIC97_REG_CTRL_CLKRUN_ENA;
1434 1.77 mycroft else
1435 1.77 mycroft reg_ctrl |= TOPIC97_REG_CTRL_CLKRUN_ENA;
1436 1.77 mycroft pci_conf_write(sc->sc_pc, sc->sc_tag, TOPIC_REG_CTRL, reg_ctrl);
1437 1.22 chopps }
1438 1.48 haya
1439 1.22 chopps return 1; /* power changed correctly */
1440 1.1 haya }
1441 1.1 haya
1442 1.1 haya #if defined CB_PCMCIA_POLL
1443 1.1 haya struct cb_poll_str {
1444 1.22 chopps void *arg;
1445 1.116 perry int (*func)(void *);
1446 1.22 chopps int level;
1447 1.22 chopps pccard_chipset_tag_t ct;
1448 1.22 chopps int count;
1449 1.37 thorpej struct callout poll_ch;
1450 1.1 haya };
1451 1.1 haya
1452 1.1 haya static struct cb_poll_str cb_poll[10];
1453 1.1 haya static int cb_poll_n = 0;
1454 1.1 haya
1455 1.116 perry static void cb_pcmcia_poll(void *arg);
1456 1.1 haya
1457 1.1 haya static void
1458 1.143 dyoung cb_pcmcia_poll(void *arg)
1459 1.1 haya {
1460 1.22 chopps struct cb_poll_str *poll = arg;
1461 1.22 chopps struct cbb_pcmcia_softc *psc = (void *)poll->ct->v;
1462 1.22 chopps struct pccbb_softc *sc = psc->cpc_parent;
1463 1.22 chopps int s;
1464 1.22 chopps u_int32_t spsr; /* socket present-state reg */
1465 1.22 chopps
1466 1.37 thorpej callout_reset(&poll->poll_ch, hz / 10, cb_pcmcia_poll, poll);
1467 1.22 chopps switch (poll->level) {
1468 1.22 chopps case IPL_NET:
1469 1.22 chopps s = splnet();
1470 1.22 chopps break;
1471 1.22 chopps case IPL_BIO:
1472 1.22 chopps s = splbio();
1473 1.22 chopps break;
1474 1.22 chopps case IPL_TTY: /* fallthrough */
1475 1.22 chopps default:
1476 1.22 chopps s = spltty();
1477 1.22 chopps break;
1478 1.22 chopps }
1479 1.22 chopps
1480 1.22 chopps spsr =
1481 1.22 chopps bus_space_read_4(sc->sc_base_memt, sc->sc_base_memh,
1482 1.22 chopps CB_SOCKET_STAT);
1483 1.1 haya
1484 1.1 haya #if defined CB_PCMCIA_POLL_ONLY && defined LEVEL2
1485 1.22 chopps if (!(spsr & 0x40)) { /* CINT low */
1486 1.1 haya #else
1487 1.22 chopps if (1) {
1488 1.1 haya #endif
1489 1.22 chopps if ((*poll->func) (poll->arg) == 1) {
1490 1.22 chopps ++poll->count;
1491 1.22 chopps printf("intr: reported from poller, 0x%x\n", spsr);
1492 1.1 haya #if defined LEVEL2
1493 1.22 chopps } else {
1494 1.22 chopps printf("intr: miss! 0x%x\n", spsr);
1495 1.1 haya #endif
1496 1.22 chopps }
1497 1.22 chopps }
1498 1.22 chopps splx(s);
1499 1.1 haya }
1500 1.1 haya #endif /* defined CB_PCMCIA_POLL */
1501 1.1 haya
1502 1.4 haya /*
1503 1.4 haya * static int pccbb_detect_card(struct pccbb_softc *sc)
1504 1.4 haya * return value: 0 if no card exists.
1505 1.4 haya * 1 if 16-bit card exists.
1506 1.4 haya * 2 if cardbus card exists.
1507 1.4 haya */
1508 1.1 haya static int
1509 1.143 dyoung pccbb_detect_card(struct pccbb_softc *sc)
1510 1.1 haya {
1511 1.22 chopps bus_space_handle_t base_memh = sc->sc_base_memh;
1512 1.22 chopps bus_space_tag_t base_memt = sc->sc_base_memt;
1513 1.22 chopps u_int32_t sockstat =
1514 1.22 chopps bus_space_read_4(base_memt, base_memh, CB_SOCKET_STAT);
1515 1.22 chopps int retval = 0;
1516 1.22 chopps
1517 1.22 chopps /* CD1 and CD2 asserted */
1518 1.22 chopps if (0x00 == (sockstat & CB_SOCKET_STAT_CD)) {
1519 1.22 chopps /* card must be present */
1520 1.22 chopps if (!(CB_SOCKET_STAT_NOTCARD & sockstat)) {
1521 1.22 chopps /* NOTACARD DEASSERTED */
1522 1.22 chopps if (CB_SOCKET_STAT_CB & sockstat) {
1523 1.22 chopps /* CardBus mode */
1524 1.22 chopps retval = 2;
1525 1.22 chopps } else if (CB_SOCKET_STAT_16BIT & sockstat) {
1526 1.22 chopps /* 16-bit mode */
1527 1.22 chopps retval = 1;
1528 1.22 chopps }
1529 1.22 chopps }
1530 1.22 chopps }
1531 1.22 chopps return retval;
1532 1.1 haya }
1533 1.1 haya
1534 1.4 haya /*
1535 1.4 haya * STATIC int cb_reset(struct pccbb_softc *sc)
1536 1.4 haya * This function resets CardBus card.
1537 1.4 haya */
1538 1.1 haya STATIC int
1539 1.143 dyoung cb_reset(struct pccbb_softc *sc)
1540 1.1 haya {
1541 1.117 perry /*
1542 1.117 perry * Reset Assert at least 20 ms
1543 1.22 chopps * Some machines request longer duration.
1544 1.22 chopps */
1545 1.22 chopps int reset_duration =
1546 1.136 itohy (sc->sc_chipset == CB_RX5C47X ? 400 : 50);
1547 1.146 dyoung u_int32_t bcr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_BRIDGE_CONTROL_REG);
1548 1.153 dyoung aprint_debug("%s: enter bcr %" PRIx32 "\n", __func__, bcr);
1549 1.22 chopps
1550 1.40 haya /* Reset bit Assert (bit 6 at 0x3E) */
1551 1.153 dyoung bcr |= PCI_BRIDGE_CONTROL_SECBR << PCI_BRIDGE_CONTROL_SHIFT;
1552 1.146 dyoung pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_BRIDGE_CONTROL_REG, bcr);
1553 1.153 dyoung aprint_debug("%s: wrote bcr %" PRIx32 "\n", __func__, bcr);
1554 1.142 dyoung delay_ms(reset_duration, sc);
1555 1.22 chopps
1556 1.22 chopps if (CBB_CARDEXIST & sc->sc_flags) { /* A card exists. Reset it! */
1557 1.40 haya /* Reset bit Deassert (bit 6 at 0x3E) */
1558 1.153 dyoung bcr &= ~(PCI_BRIDGE_CONTROL_SECBR << PCI_BRIDGE_CONTROL_SHIFT);
1559 1.153 dyoung pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_BRIDGE_CONTROL_REG,
1560 1.153 dyoung bcr);
1561 1.153 dyoung aprint_debug("%s: wrote bcr %" PRIx32 "\n", __func__, bcr);
1562 1.142 dyoung delay_ms(reset_duration, sc);
1563 1.153 dyoung aprint_debug("%s: end of delay\n", __func__);
1564 1.22 chopps }
1565 1.22 chopps /* No card found on the slot. Keep Reset. */
1566 1.22 chopps return 1;
1567 1.1 haya }
1568 1.1 haya
1569 1.4 haya /*
1570 1.4 haya * STATIC int cb_detect_voltage(struct pccbb_softc *sc)
1571 1.4 haya * This function detect card Voltage.
1572 1.4 haya */
1573 1.1 haya STATIC int
1574 1.143 dyoung cb_detect_voltage(struct pccbb_softc *sc)
1575 1.1 haya {
1576 1.22 chopps u_int32_t psr; /* socket present-state reg */
1577 1.22 chopps bus_space_tag_t iot = sc->sc_base_memt;
1578 1.22 chopps bus_space_handle_t ioh = sc->sc_base_memh;
1579 1.22 chopps int vol = PCCARD_VCC_UKN; /* set 0 */
1580 1.22 chopps
1581 1.22 chopps psr = bus_space_read_4(iot, ioh, CB_SOCKET_STAT);
1582 1.1 haya
1583 1.22 chopps if (0x400u & psr) {
1584 1.22 chopps vol |= PCCARD_VCC_5V;
1585 1.22 chopps }
1586 1.22 chopps if (0x800u & psr) {
1587 1.22 chopps vol |= PCCARD_VCC_3V;
1588 1.22 chopps }
1589 1.1 haya
1590 1.22 chopps return vol;
1591 1.1 haya }
1592 1.1 haya
1593 1.1 haya STATIC int
1594 1.137 christos cbbprint(void *aux, const char *pcic)
1595 1.1 haya {
1596 1.135 christos #if 0
1597 1.135 christos struct cbslot_attach_args *cba = aux;
1598 1.1 haya
1599 1.135 christos if (cba->cba_slot >= 0) {
1600 1.135 christos aprint_normal(" slot %d", cba->cba_slot);
1601 1.135 christos }
1602 1.135 christos #endif
1603 1.22 chopps return UNCONF;
1604 1.1 haya }
1605 1.1 haya
1606 1.4 haya /*
1607 1.4 haya * STATIC int pccbb_cardenable(struct pccbb_softc *sc, int function)
1608 1.4 haya * This function enables and disables the card
1609 1.4 haya */
1610 1.1 haya STATIC int
1611 1.143 dyoung pccbb_cardenable(struct pccbb_softc *sc, int function)
1612 1.1 haya {
1613 1.22 chopps u_int32_t command =
1614 1.22 chopps pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG);
1615 1.1 haya
1616 1.22 chopps DPRINTF(("pccbb_cardenable:"));
1617 1.22 chopps switch (function) {
1618 1.22 chopps case CARDBUS_IO_ENABLE:
1619 1.22 chopps command |= PCI_COMMAND_IO_ENABLE;
1620 1.22 chopps break;
1621 1.22 chopps case CARDBUS_IO_DISABLE:
1622 1.22 chopps command &= ~PCI_COMMAND_IO_ENABLE;
1623 1.22 chopps break;
1624 1.22 chopps case CARDBUS_MEM_ENABLE:
1625 1.22 chopps command |= PCI_COMMAND_MEM_ENABLE;
1626 1.22 chopps break;
1627 1.22 chopps case CARDBUS_MEM_DISABLE:
1628 1.22 chopps command &= ~PCI_COMMAND_MEM_ENABLE;
1629 1.22 chopps break;
1630 1.22 chopps case CARDBUS_BM_ENABLE:
1631 1.22 chopps command |= PCI_COMMAND_MASTER_ENABLE;
1632 1.22 chopps break;
1633 1.22 chopps case CARDBUS_BM_DISABLE:
1634 1.22 chopps command &= ~PCI_COMMAND_MASTER_ENABLE;
1635 1.22 chopps break;
1636 1.22 chopps default:
1637 1.22 chopps return 0;
1638 1.22 chopps }
1639 1.1 haya
1640 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG, command);
1641 1.22 chopps DPRINTF((" command reg 0x%x\n", command));
1642 1.22 chopps return 1;
1643 1.1 haya }
1644 1.1 haya
1645 1.1 haya #if !rbus
1646 1.1 haya static int
1647 1.143 dyoung pccbb_io_open(cardbus_chipset_tag_t ct, int win, uint32_t start, uint32_t end)
1648 1.22 chopps {
1649 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1650 1.22 chopps int basereg;
1651 1.22 chopps int limitreg;
1652 1.1 haya
1653 1.22 chopps if ((win < 0) || (win > 2)) {
1654 1.1 haya #if defined DIAGNOSTIC
1655 1.22 chopps printf("cardbus_io_open: window out of range %d\n", win);
1656 1.1 haya #endif
1657 1.22 chopps return 0;
1658 1.22 chopps }
1659 1.1 haya
1660 1.161 dyoung basereg = win * 8 + PCI_CB_IOBASE0;
1661 1.161 dyoung limitreg = win * 8 + PCI_CB_IOLIMIT0;
1662 1.1 haya
1663 1.22 chopps DPRINTF(("pccbb_io_open: 0x%x[0x%x] - 0x%x[0x%x]\n",
1664 1.22 chopps start, basereg, end, limitreg));
1665 1.1 haya
1666 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, basereg, start);
1667 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, limitreg, end);
1668 1.22 chopps return 1;
1669 1.1 haya }
1670 1.22 chopps
1671 1.4 haya /*
1672 1.4 haya * int pccbb_io_close(cardbus_chipset_tag_t, int)
1673 1.4 haya */
1674 1.1 haya static int
1675 1.143 dyoung pccbb_io_close(cardbus_chipset_tag_t ct, int win)
1676 1.1 haya {
1677 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1678 1.22 chopps int basereg;
1679 1.22 chopps int limitreg;
1680 1.1 haya
1681 1.22 chopps if ((win < 0) || (win > 2)) {
1682 1.1 haya #if defined DIAGNOSTIC
1683 1.22 chopps printf("cardbus_io_close: window out of range %d\n", win);
1684 1.1 haya #endif
1685 1.22 chopps return 0;
1686 1.22 chopps }
1687 1.1 haya
1688 1.161 dyoung basereg = win * 8 + PCI_CB_IOBASE0;
1689 1.161 dyoung limitreg = win * 8 + PCI_CB_IOLIMIT0;
1690 1.1 haya
1691 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, basereg, 0);
1692 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, limitreg, 0);
1693 1.22 chopps return 1;
1694 1.1 haya }
1695 1.1 haya
1696 1.1 haya static int
1697 1.143 dyoung pccbb_mem_open(cardbus_chipset_tag_t ct, int win, uint32_t start, uint32_t end)
1698 1.22 chopps {
1699 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1700 1.22 chopps int basereg;
1701 1.22 chopps int limitreg;
1702 1.1 haya
1703 1.22 chopps if ((win < 0) || (win > 2)) {
1704 1.1 haya #if defined DIAGNOSTIC
1705 1.22 chopps printf("cardbus_mem_open: window out of range %d\n", win);
1706 1.1 haya #endif
1707 1.22 chopps return 0;
1708 1.22 chopps }
1709 1.1 haya
1710 1.161 dyoung basereg = win * 8 + PCI_CB_MEMBASE0;
1711 1.161 dyoung limitreg = win * 8 + PCI_CB_MEMLIMIT0;
1712 1.1 haya
1713 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, basereg, start);
1714 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, limitreg, end);
1715 1.22 chopps return 1;
1716 1.1 haya }
1717 1.1 haya
1718 1.1 haya static int
1719 1.143 dyoung pccbb_mem_close(cardbus_chipset_tag_t ct, int win)
1720 1.1 haya {
1721 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1722 1.22 chopps int basereg;
1723 1.22 chopps int limitreg;
1724 1.1 haya
1725 1.22 chopps if ((win < 0) || (win > 2)) {
1726 1.1 haya #if defined DIAGNOSTIC
1727 1.22 chopps printf("cardbus_mem_close: window out of range %d\n", win);
1728 1.1 haya #endif
1729 1.22 chopps return 0;
1730 1.22 chopps }
1731 1.1 haya
1732 1.161 dyoung basereg = win * 8 + PCI_CB_MEMBASE0;
1733 1.161 dyoung limitreg = win * 8 + PCI_CB_MEMLIMIT0;
1734 1.1 haya
1735 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, basereg, 0);
1736 1.22 chopps pci_conf_write(sc->sc_pc, sc->sc_tag, limitreg, 0);
1737 1.22 chopps return 1;
1738 1.1 haya }
1739 1.1 haya #endif
1740 1.1 haya
1741 1.21 haya /*
1742 1.26 haya * static void *pccbb_cb_intr_establish(cardbus_chipset_tag_t ct,
1743 1.26 haya * int irq,
1744 1.26 haya * int level,
1745 1.116 perry * int (* func)(void *),
1746 1.26 haya * void *arg)
1747 1.26 haya *
1748 1.26 haya * This function registers an interrupt handler at the bridge, in
1749 1.32 enami * order not to call the interrupt handlers of child devices when
1750 1.32 enami * a card-deletion interrupt occurs.
1751 1.26 haya *
1752 1.26 haya * The arguments irq and level are not used.
1753 1.26 haya */
1754 1.26 haya static void *
1755 1.143 dyoung pccbb_cb_intr_establish(cardbus_chipset_tag_t ct, int irq, int level,
1756 1.143 dyoung int (*func)(void *), void *arg)
1757 1.26 haya {
1758 1.26 haya struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1759 1.26 haya
1760 1.26 haya return pccbb_intr_establish(sc, irq, level, func, arg);
1761 1.26 haya }
1762 1.26 haya
1763 1.26 haya
1764 1.26 haya /*
1765 1.26 haya * static void *pccbb_cb_intr_disestablish(cardbus_chipset_tag_t ct,
1766 1.26 haya * void *ih)
1767 1.26 haya *
1768 1.26 haya * This function removes an interrupt handler pointed by ih.
1769 1.26 haya */
1770 1.26 haya static void
1771 1.143 dyoung pccbb_cb_intr_disestablish(cardbus_chipset_tag_t ct, void *ih)
1772 1.26 haya {
1773 1.26 haya struct pccbb_softc *sc = (struct pccbb_softc *)ct;
1774 1.26 haya
1775 1.26 haya pccbb_intr_disestablish(sc, ih);
1776 1.26 haya }
1777 1.26 haya
1778 1.26 haya
1779 1.65 mcr void
1780 1.143 dyoung pccbb_intr_route(struct pccbb_softc *sc)
1781 1.65 mcr {
1782 1.143 dyoung pcireg_t bcr, cbctrl;
1783 1.65 mcr
1784 1.143 dyoung /* initialize bridge intr routing */
1785 1.146 dyoung bcr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_BRIDGE_CONTROL_REG);
1786 1.143 dyoung bcr &= ~CB_BCR_INTR_IREQ_ENABLE;
1787 1.146 dyoung pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_BRIDGE_CONTROL_REG, bcr);
1788 1.143 dyoung
1789 1.143 dyoung switch (sc->sc_chipset) {
1790 1.143 dyoung case CB_TI113X:
1791 1.143 dyoung cbctrl = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CBCTRL);
1792 1.143 dyoung /* functional intr enabled */
1793 1.143 dyoung cbctrl |= PCI113X_CBCTRL_PCI_INTR;
1794 1.143 dyoung pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_CBCTRL, cbctrl);
1795 1.143 dyoung break;
1796 1.143 dyoung default:
1797 1.143 dyoung break;
1798 1.143 dyoung }
1799 1.65 mcr }
1800 1.65 mcr
1801 1.26 haya /*
1802 1.26 haya * static void *pccbb_intr_establish(struct pccbb_softc *sc,
1803 1.21 haya * int irq,
1804 1.21 haya * int level,
1805 1.116 perry * int (* func)(void *),
1806 1.21 haya * void *arg)
1807 1.21 haya *
1808 1.21 haya * This function registers an interrupt handler at the bridge, in
1809 1.32 enami * order not to call the interrupt handlers of child devices when
1810 1.32 enami * a card-deletion interrupt occurs.
1811 1.21 haya *
1812 1.41 haya * The arguments irq is not used because pccbb selects intr vector.
1813 1.21 haya */
1814 1.1 haya static void *
1815 1.137 christos pccbb_intr_establish(struct pccbb_softc *sc, int irq, int level,
1816 1.135 christos int (*func)(void *), void *arg)
1817 1.22 chopps {
1818 1.22 chopps struct pccbb_intrhand_list *pil, *newpil;
1819 1.22 chopps
1820 1.81 onoe DPRINTF(("pccbb_intr_establish start. %p\n", LIST_FIRST(&sc->sc_pil)));
1821 1.26 haya
1822 1.80 haya if (LIST_EMPTY(&sc->sc_pil)) {
1823 1.80 haya pccbb_intr_route(sc);
1824 1.22 chopps }
1825 1.22 chopps
1826 1.117 perry /*
1827 1.32 enami * Allocate a room for interrupt handler structure.
1828 1.22 chopps */
1829 1.22 chopps if (NULL == (newpil =
1830 1.22 chopps (struct pccbb_intrhand_list *)malloc(sizeof(struct
1831 1.22 chopps pccbb_intrhand_list), M_DEVBUF, M_WAITOK))) {
1832 1.22 chopps return NULL;
1833 1.22 chopps }
1834 1.21 haya
1835 1.22 chopps newpil->pil_func = func;
1836 1.22 chopps newpil->pil_arg = arg;
1837 1.138 yamt newpil->pil_icookie = makeiplcookie(level);
1838 1.21 haya
1839 1.80 haya if (LIST_EMPTY(&sc->sc_pil)) {
1840 1.80 haya LIST_INSERT_HEAD(&sc->sc_pil, newpil, pil_next);
1841 1.22 chopps } else {
1842 1.80 haya for (pil = LIST_FIRST(&sc->sc_pil);
1843 1.80 haya LIST_NEXT(pil, pil_next) != NULL;
1844 1.80 haya pil = LIST_NEXT(pil, pil_next));
1845 1.80 haya LIST_INSERT_AFTER(pil, newpil, pil_next);
1846 1.21 haya }
1847 1.1 haya
1848 1.81 onoe DPRINTF(("pccbb_intr_establish add pil. %p\n",
1849 1.81 onoe LIST_FIRST(&sc->sc_pil)));
1850 1.26 haya
1851 1.22 chopps return newpil;
1852 1.1 haya }
1853 1.1 haya
1854 1.21 haya /*
1855 1.26 haya * static void *pccbb_intr_disestablish(struct pccbb_softc *sc,
1856 1.21 haya * void *ih)
1857 1.21 haya *
1858 1.80 haya * This function removes an interrupt handler pointed by ih. ih
1859 1.80 haya * should be the value returned by cardbus_intr_establish() or
1860 1.80 haya * NULL.
1861 1.80 haya *
1862 1.80 haya * When ih is NULL, this function will do nothing.
1863 1.21 haya */
1864 1.1 haya static void
1865 1.143 dyoung pccbb_intr_disestablish(struct pccbb_softc *sc, void *ih)
1866 1.1 haya {
1867 1.80 haya struct pccbb_intrhand_list *pil;
1868 1.48 haya pcireg_t reg;
1869 1.21 haya
1870 1.81 onoe DPRINTF(("pccbb_intr_disestablish start. %p\n",
1871 1.81 onoe LIST_FIRST(&sc->sc_pil)));
1872 1.26 haya
1873 1.80 haya if (ih == NULL) {
1874 1.80 haya /* intr handler is not set */
1875 1.80 haya DPRINTF(("pccbb_intr_disestablish: no ih\n"));
1876 1.80 haya return;
1877 1.80 haya }
1878 1.22 chopps
1879 1.80 haya #ifdef DIAGNOSTIC
1880 1.159 dyoung LIST_FOREACH(pil, &sc->sc_pil, pil_next) {
1881 1.83 atatat DPRINTF(("pccbb_intr_disestablish: pil %p\n", pil));
1882 1.22 chopps if (pil == ih) {
1883 1.26 haya DPRINTF(("pccbb_intr_disestablish frees one pil\n"));
1884 1.22 chopps break;
1885 1.22 chopps }
1886 1.21 haya }
1887 1.80 haya if (pil == NULL) {
1888 1.80 haya panic("pccbb_intr_disestablish: %s cannot find pil %p",
1889 1.164 dyoung device_xname(&sc->sc_dev), ih);
1890 1.80 haya }
1891 1.80 haya #endif
1892 1.80 haya
1893 1.80 haya pil = (struct pccbb_intrhand_list *)ih;
1894 1.80 haya LIST_REMOVE(pil, pil_next);
1895 1.80 haya free(pil, M_DEVBUF);
1896 1.80 haya DPRINTF(("pccbb_intr_disestablish frees one pil\n"));
1897 1.21 haya
1898 1.80 haya if (LIST_EMPTY(&sc->sc_pil)) {
1899 1.22 chopps /* No interrupt handlers */
1900 1.21 haya
1901 1.26 haya DPRINTF(("pccbb_intr_disestablish: no interrupt handler\n"));
1902 1.26 haya
1903 1.48 haya /* stop routing PCI intr */
1904 1.146 dyoung reg = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_BRIDGE_CONTROL_REG);
1905 1.48 haya reg |= CB_BCR_INTR_IREQ_ENABLE;
1906 1.146 dyoung pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_BRIDGE_CONTROL_REG, reg);
1907 1.48 haya
1908 1.22 chopps switch (sc->sc_chipset) {
1909 1.22 chopps case CB_TI113X:
1910 1.48 haya reg = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CBCTRL);
1911 1.48 haya /* functional intr disabled */
1912 1.48 haya reg &= ~PCI113X_CBCTRL_PCI_INTR;
1913 1.48 haya pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_CBCTRL, reg);
1914 1.48 haya break;
1915 1.22 chopps default:
1916 1.22 chopps break;
1917 1.22 chopps }
1918 1.21 haya }
1919 1.1 haya }
1920 1.1 haya
1921 1.1 haya #if defined SHOW_REGS
1922 1.1 haya static void
1923 1.143 dyoung cb_show_regs(pci_chipset_tag_t pc, pcitag_t tag, bus_space_tag_t memt,
1924 1.143 dyoung bus_space_handle_t memh)
1925 1.22 chopps {
1926 1.22 chopps int i;
1927 1.22 chopps printf("PCI config regs:");
1928 1.22 chopps for (i = 0; i < 0x50; i += 4) {
1929 1.143 dyoung if (i % 16 == 0)
1930 1.22 chopps printf("\n 0x%02x:", i);
1931 1.22 chopps printf(" %08x", pci_conf_read(pc, tag, i));
1932 1.22 chopps }
1933 1.22 chopps for (i = 0x80; i < 0xb0; i += 4) {
1934 1.143 dyoung if (i % 16 == 0)
1935 1.22 chopps printf("\n 0x%02x:", i);
1936 1.22 chopps printf(" %08x", pci_conf_read(pc, tag, i));
1937 1.22 chopps }
1938 1.1 haya
1939 1.22 chopps if (memh == 0) {
1940 1.22 chopps printf("\n");
1941 1.22 chopps return;
1942 1.22 chopps }
1943 1.1 haya
1944 1.22 chopps printf("\nsocket regs:");
1945 1.143 dyoung for (i = 0; i <= 0x10; i += 0x04)
1946 1.22 chopps printf(" %08x", bus_space_read_4(memt, memh, i));
1947 1.22 chopps printf("\nExCA regs:");
1948 1.143 dyoung for (i = 0; i < 0x08; ++i)
1949 1.22 chopps printf(" %02x", bus_space_read_1(memt, memh, 0x800 + i));
1950 1.22 chopps printf("\n");
1951 1.22 chopps return;
1952 1.1 haya }
1953 1.1 haya #endif
1954 1.1 haya
1955 1.4 haya /*
1956 1.4 haya * static cardbustag_t pccbb_make_tag(cardbus_chipset_tag_t cc,
1957 1.125 drochner * int busno, int function)
1958 1.4 haya * This is the function to make a tag to access config space of
1959 1.4 haya * a CardBus Card. It works same as pci_conf_read.
1960 1.4 haya */
1961 1.1 haya static cardbustag_t
1962 1.143 dyoung pccbb_make_tag(cardbus_chipset_tag_t cc, int busno, int function)
1963 1.1 haya {
1964 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)cc;
1965 1.1 haya
1966 1.125 drochner return pci_make_tag(sc->sc_pc, busno, 0, function);
1967 1.1 haya }
1968 1.1 haya
1969 1.1 haya static void
1970 1.137 christos pccbb_free_tag(cardbus_chipset_tag_t cc, cardbustag_t tag)
1971 1.1 haya {
1972 1.1 haya }
1973 1.1 haya
1974 1.4 haya /*
1975 1.143 dyoung * pccbb_conf_read
1976 1.143 dyoung *
1977 1.143 dyoung * This is the function to read the config space of a CardBus card.
1978 1.143 dyoung * It works the same as pci_conf_read(9).
1979 1.4 haya */
1980 1.1 haya static cardbusreg_t
1981 1.143 dyoung pccbb_conf_read(cardbus_chipset_tag_t cc, cardbustag_t tag, int offset)
1982 1.1 haya {
1983 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)cc;
1984 1.1 haya
1985 1.22 chopps return pci_conf_read(sc->sc_pc, tag, offset);
1986 1.1 haya }
1987 1.1 haya
1988 1.4 haya /*
1989 1.143 dyoung * pccbb_conf_write
1990 1.143 dyoung *
1991 1.143 dyoung * This is the function to write the config space of a CardBus
1992 1.143 dyoung * card. It works the same as pci_conf_write(9).
1993 1.4 haya */
1994 1.1 haya static void
1995 1.143 dyoung pccbb_conf_write(cardbus_chipset_tag_t cc, cardbustag_t tag, int reg,
1996 1.143 dyoung cardbusreg_t val)
1997 1.1 haya {
1998 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)cc;
1999 1.1 haya
2000 1.22 chopps pci_conf_write(sc->sc_pc, tag, reg, val);
2001 1.1 haya }
2002 1.1 haya
2003 1.1 haya #if 0
2004 1.1 haya STATIC int
2005 1.1 haya pccbb_new_pcmcia_io_alloc(pcmcia_chipset_handle_t pch,
2006 1.22 chopps bus_addr_t start, bus_size_t size, bus_size_t align, bus_addr_t mask,
2007 1.22 chopps int speed, int flags,
2008 1.22 chopps bus_space_handle_t * iohp)
2009 1.1 haya #endif
2010 1.4 haya /*
2011 1.4 haya * STATIC int pccbb_pcmcia_io_alloc(pcmcia_chipset_handle_t pch,
2012 1.4 haya * bus_addr_t start, bus_size_t size,
2013 1.4 haya * bus_size_t align,
2014 1.4 haya * struct pcmcia_io_handle *pcihp
2015 1.4 haya *
2016 1.4 haya * This function only allocates I/O region for pccard. This function
2017 1.32 enami * never maps the allocated region to pccard I/O area.
2018 1.4 haya *
2019 1.4 haya * XXX: The interface of this function is not very good, I believe.
2020 1.4 haya */
2021 1.22 chopps STATIC int
2022 1.143 dyoung pccbb_pcmcia_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start,
2023 1.143 dyoung bus_size_t size, bus_size_t align, struct pcmcia_io_handle *pcihp)
2024 1.22 chopps {
2025 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2026 1.22 chopps bus_addr_t ioaddr;
2027 1.22 chopps int flags = 0;
2028 1.22 chopps bus_space_tag_t iot;
2029 1.22 chopps bus_space_handle_t ioh;
2030 1.57 haya bus_addr_t mask;
2031 1.1 haya #if rbus
2032 1.22 chopps rbus_tag_t rb;
2033 1.1 haya #endif
2034 1.22 chopps if (align == 0) {
2035 1.22 chopps align = size; /* XXX: funny??? */
2036 1.22 chopps }
2037 1.1 haya
2038 1.57 haya if (start != 0) {
2039 1.57 haya /* XXX: assume all card decode lower 10 bits by its hardware */
2040 1.57 haya mask = 0x3ff;
2041 1.75 haya /* enforce to use only masked address */
2042 1.75 haya start &= mask;
2043 1.57 haya } else {
2044 1.57 haya /*
2045 1.57 haya * calculate mask:
2046 1.57 haya * 1. get the most significant bit of size (call it msb).
2047 1.57 haya * 2. compare msb with the value of size.
2048 1.57 haya * 3. if size is larger, shift msb left once.
2049 1.57 haya * 4. obtain mask value to decrement msb.
2050 1.57 haya */
2051 1.57 haya bus_size_t size_tmp = size;
2052 1.57 haya int shifts = 0;
2053 1.57 haya
2054 1.57 haya mask = 1;
2055 1.57 haya while (size_tmp) {
2056 1.57 haya ++shifts;
2057 1.57 haya size_tmp >>= 1;
2058 1.57 haya }
2059 1.57 haya mask = (1 << shifts);
2060 1.57 haya if (mask < size) {
2061 1.57 haya mask <<= 1;
2062 1.57 haya }
2063 1.57 haya --mask;
2064 1.57 haya }
2065 1.57 haya
2066 1.117 perry /*
2067 1.22 chopps * Allocate some arbitrary I/O space.
2068 1.22 chopps */
2069 1.1 haya
2070 1.22 chopps iot = ((struct pccbb_softc *)(ph->ph_parent))->sc_iot;
2071 1.1 haya
2072 1.1 haya #if rbus
2073 1.22 chopps rb = ((struct pccbb_softc *)(ph->ph_parent))->sc_rbus_iot;
2074 1.57 haya if (rbus_space_alloc(rb, start, size, mask, align, 0, &ioaddr, &ioh)) {
2075 1.22 chopps return 1;
2076 1.22 chopps }
2077 1.95 christos DPRINTF(("pccbb_pcmcia_io_alloc alloc port 0x%lx+0x%lx\n",
2078 1.81 onoe (u_long) ioaddr, (u_long) size));
2079 1.22 chopps #else
2080 1.22 chopps if (start) {
2081 1.22 chopps ioaddr = start;
2082 1.22 chopps if (bus_space_map(iot, start, size, 0, &ioh)) {
2083 1.22 chopps return 1;
2084 1.22 chopps }
2085 1.95 christos DPRINTF(("pccbb_pcmcia_io_alloc map port 0x%lx+0x%lx\n",
2086 1.22 chopps (u_long) ioaddr, (u_long) size));
2087 1.22 chopps } else {
2088 1.22 chopps flags |= PCMCIA_IO_ALLOCATED;
2089 1.22 chopps if (bus_space_alloc(iot, 0x700 /* ph->sc->sc_iobase */ ,
2090 1.22 chopps 0x800, /* ph->sc->sc_iobase + ph->sc->sc_iosize */
2091 1.22 chopps size, align, 0, 0, &ioaddr, &ioh)) {
2092 1.22 chopps /* No room be able to be get. */
2093 1.22 chopps return 1;
2094 1.22 chopps }
2095 1.22 chopps DPRINTF(("pccbb_pcmmcia_io_alloc alloc port 0x%lx+0x%lx\n",
2096 1.22 chopps (u_long) ioaddr, (u_long) size));
2097 1.22 chopps }
2098 1.1 haya #endif
2099 1.1 haya
2100 1.22 chopps pcihp->iot = iot;
2101 1.22 chopps pcihp->ioh = ioh;
2102 1.22 chopps pcihp->addr = ioaddr;
2103 1.22 chopps pcihp->size = size;
2104 1.22 chopps pcihp->flags = flags;
2105 1.1 haya
2106 1.22 chopps return 0;
2107 1.1 haya }
2108 1.1 haya
2109 1.4 haya /*
2110 1.4 haya * STATIC int pccbb_pcmcia_io_free(pcmcia_chipset_handle_t pch,
2111 1.4 haya * struct pcmcia_io_handle *pcihp)
2112 1.4 haya *
2113 1.4 haya * This function only frees I/O region for pccard.
2114 1.4 haya *
2115 1.4 haya * XXX: The interface of this function is not very good, I believe.
2116 1.4 haya */
2117 1.22 chopps void
2118 1.143 dyoung pccbb_pcmcia_io_free(pcmcia_chipset_handle_t pch,
2119 1.143 dyoung struct pcmcia_io_handle *pcihp)
2120 1.1 haya {
2121 1.1 haya #if !rbus
2122 1.22 chopps bus_space_tag_t iot = pcihp->iot;
2123 1.1 haya #endif
2124 1.22 chopps bus_space_handle_t ioh = pcihp->ioh;
2125 1.22 chopps bus_size_t size = pcihp->size;
2126 1.1 haya
2127 1.1 haya #if rbus
2128 1.22 chopps struct pccbb_softc *sc =
2129 1.22 chopps (struct pccbb_softc *)((struct pcic_handle *)pch)->ph_parent;
2130 1.22 chopps rbus_tag_t rb = sc->sc_rbus_iot;
2131 1.1 haya
2132 1.22 chopps rbus_space_free(rb, ioh, size, NULL);
2133 1.1 haya #else
2134 1.22 chopps if (pcihp->flags & PCMCIA_IO_ALLOCATED)
2135 1.22 chopps bus_space_free(iot, ioh, size);
2136 1.22 chopps else
2137 1.22 chopps bus_space_unmap(iot, ioh, size);
2138 1.1 haya #endif
2139 1.1 haya }
2140 1.1 haya
2141 1.4 haya /*
2142 1.4 haya * STATIC int pccbb_pcmcia_io_map(pcmcia_chipset_handle_t pch, int width,
2143 1.4 haya * bus_addr_t offset, bus_size_t size,
2144 1.4 haya * struct pcmcia_io_handle *pcihp,
2145 1.4 haya * int *windowp)
2146 1.4 haya *
2147 1.4 haya * This function maps the allocated I/O region to pccard. This function
2148 1.4 haya * never allocates any I/O region for pccard I/O area. I don't
2149 1.4 haya * understand why the original authors of pcmciabus separated alloc and
2150 1.4 haya * map. I believe the two must be unite.
2151 1.4 haya *
2152 1.4 haya * XXX: no wait timing control?
2153 1.4 haya */
2154 1.22 chopps int
2155 1.143 dyoung pccbb_pcmcia_io_map(pcmcia_chipset_handle_t pch, int width, bus_addr_t offset,
2156 1.143 dyoung bus_size_t size, struct pcmcia_io_handle *pcihp, int *windowp)
2157 1.22 chopps {
2158 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2159 1.22 chopps bus_addr_t ioaddr = pcihp->addr + offset;
2160 1.22 chopps int i, win;
2161 1.1 haya #if defined CBB_DEBUG
2162 1.121 sekiya static const char *width_names[] = { "dynamic", "io8", "io16" };
2163 1.1 haya #endif
2164 1.1 haya
2165 1.22 chopps /* Sanity check I/O handle. */
2166 1.1 haya
2167 1.22 chopps if (((struct pccbb_softc *)ph->ph_parent)->sc_iot != pcihp->iot) {
2168 1.22 chopps panic("pccbb_pcmcia_io_map iot is bogus");
2169 1.22 chopps }
2170 1.1 haya
2171 1.22 chopps /* XXX Sanity check offset/size. */
2172 1.1 haya
2173 1.22 chopps win = -1;
2174 1.22 chopps for (i = 0; i < PCIC_IO_WINS; i++) {
2175 1.22 chopps if ((ph->ioalloc & (1 << i)) == 0) {
2176 1.22 chopps win = i;
2177 1.22 chopps ph->ioalloc |= (1 << i);
2178 1.22 chopps break;
2179 1.22 chopps }
2180 1.22 chopps }
2181 1.1 haya
2182 1.22 chopps if (win == -1) {
2183 1.22 chopps return 1;
2184 1.22 chopps }
2185 1.1 haya
2186 1.22 chopps *windowp = win;
2187 1.1 haya
2188 1.22 chopps /* XXX this is pretty gross */
2189 1.1 haya
2190 1.22 chopps DPRINTF(("pccbb_pcmcia_io_map window %d %s port %lx+%lx\n",
2191 1.22 chopps win, width_names[width], (u_long) ioaddr, (u_long) size));
2192 1.1 haya
2193 1.22 chopps /* XXX wtf is this doing here? */
2194 1.1 haya
2195 1.1 haya #if 0
2196 1.22 chopps printf(" port 0x%lx", (u_long) ioaddr);
2197 1.22 chopps if (size > 1) {
2198 1.22 chopps printf("-0x%lx", (u_long) ioaddr + (u_long) size - 1);
2199 1.22 chopps }
2200 1.1 haya #endif
2201 1.1 haya
2202 1.22 chopps ph->io[win].addr = ioaddr;
2203 1.22 chopps ph->io[win].size = size;
2204 1.22 chopps ph->io[win].width = width;
2205 1.1 haya
2206 1.22 chopps /* actual dirty register-value changing in the function below. */
2207 1.22 chopps pccbb_pcmcia_do_io_map(ph, win);
2208 1.1 haya
2209 1.22 chopps return 0;
2210 1.1 haya }
2211 1.1 haya
2212 1.4 haya /*
2213 1.4 haya * STATIC void pccbb_pcmcia_do_io_map(struct pcic_handle *h, int win)
2214 1.4 haya *
2215 1.4 haya * This function changes register-value to map I/O region for pccard.
2216 1.4 haya */
2217 1.22 chopps static void
2218 1.143 dyoung pccbb_pcmcia_do_io_map(struct pcic_handle *ph, int win)
2219 1.1 haya {
2220 1.22 chopps static u_int8_t pcic_iowidth[3] = {
2221 1.22 chopps PCIC_IOCTL_IO0_IOCS16SRC_CARD,
2222 1.22 chopps PCIC_IOCTL_IO0_IOCS16SRC_DATASIZE |
2223 1.22 chopps PCIC_IOCTL_IO0_DATASIZE_8BIT,
2224 1.22 chopps PCIC_IOCTL_IO0_IOCS16SRC_DATASIZE |
2225 1.22 chopps PCIC_IOCTL_IO0_DATASIZE_16BIT,
2226 1.22 chopps };
2227 1.1 haya
2228 1.1 haya #define PCIC_SIA_START_LOW 0
2229 1.1 haya #define PCIC_SIA_START_HIGH 1
2230 1.1 haya #define PCIC_SIA_STOP_LOW 2
2231 1.1 haya #define PCIC_SIA_STOP_HIGH 3
2232 1.1 haya
2233 1.22 chopps int regbase_win = 0x8 + win * 0x04;
2234 1.22 chopps u_int8_t ioctl, enable;
2235 1.1 haya
2236 1.95 christos DPRINTF(("pccbb_pcmcia_do_io_map win %d addr 0x%lx size 0x%lx "
2237 1.95 christos "width %d\n", win, (unsigned long)ph->io[win].addr,
2238 1.95 christos (unsigned long)ph->io[win].size, ph->io[win].width * 8));
2239 1.22 chopps
2240 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SIA_START_LOW,
2241 1.22 chopps ph->io[win].addr & 0xff);
2242 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SIA_START_HIGH,
2243 1.22 chopps (ph->io[win].addr >> 8) & 0xff);
2244 1.22 chopps
2245 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SIA_STOP_LOW,
2246 1.22 chopps (ph->io[win].addr + ph->io[win].size - 1) & 0xff);
2247 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SIA_STOP_HIGH,
2248 1.22 chopps ((ph->io[win].addr + ph->io[win].size - 1) >> 8) & 0xff);
2249 1.22 chopps
2250 1.22 chopps ioctl = Pcic_read(ph, PCIC_IOCTL);
2251 1.22 chopps enable = Pcic_read(ph, PCIC_ADDRWIN_ENABLE);
2252 1.22 chopps switch (win) {
2253 1.22 chopps case 0:
2254 1.22 chopps ioctl &= ~(PCIC_IOCTL_IO0_WAITSTATE | PCIC_IOCTL_IO0_ZEROWAIT |
2255 1.22 chopps PCIC_IOCTL_IO0_IOCS16SRC_MASK |
2256 1.22 chopps PCIC_IOCTL_IO0_DATASIZE_MASK);
2257 1.22 chopps ioctl |= pcic_iowidth[ph->io[win].width];
2258 1.22 chopps enable |= PCIC_ADDRWIN_ENABLE_IO0;
2259 1.22 chopps break;
2260 1.22 chopps case 1:
2261 1.22 chopps ioctl &= ~(PCIC_IOCTL_IO1_WAITSTATE | PCIC_IOCTL_IO1_ZEROWAIT |
2262 1.22 chopps PCIC_IOCTL_IO1_IOCS16SRC_MASK |
2263 1.22 chopps PCIC_IOCTL_IO1_DATASIZE_MASK);
2264 1.22 chopps ioctl |= (pcic_iowidth[ph->io[win].width] << 4);
2265 1.22 chopps enable |= PCIC_ADDRWIN_ENABLE_IO1;
2266 1.22 chopps break;
2267 1.22 chopps }
2268 1.22 chopps Pcic_write(ph, PCIC_IOCTL, ioctl);
2269 1.22 chopps Pcic_write(ph, PCIC_ADDRWIN_ENABLE, enable);
2270 1.133 christos #if defined(CBB_DEBUG)
2271 1.22 chopps {
2272 1.22 chopps u_int8_t start_low =
2273 1.22 chopps Pcic_read(ph, regbase_win + PCIC_SIA_START_LOW);
2274 1.22 chopps u_int8_t start_high =
2275 1.22 chopps Pcic_read(ph, regbase_win + PCIC_SIA_START_HIGH);
2276 1.22 chopps u_int8_t stop_low =
2277 1.22 chopps Pcic_read(ph, regbase_win + PCIC_SIA_STOP_LOW);
2278 1.22 chopps u_int8_t stop_high =
2279 1.22 chopps Pcic_read(ph, regbase_win + PCIC_SIA_STOP_HIGH);
2280 1.133 christos printf("pccbb_pcmcia_do_io_map start %02x %02x, "
2281 1.133 christos "stop %02x %02x, ioctl %02x enable %02x\n",
2282 1.22 chopps start_low, start_high, stop_low, stop_high, ioctl, enable);
2283 1.22 chopps }
2284 1.1 haya #endif
2285 1.1 haya }
2286 1.1 haya
2287 1.4 haya /*
2288 1.4 haya * STATIC void pccbb_pcmcia_io_unmap(pcmcia_chipset_handle_t *h, int win)
2289 1.4 haya *
2290 1.32 enami * This function unmaps I/O region. No return value.
2291 1.4 haya */
2292 1.22 chopps STATIC void
2293 1.143 dyoung pccbb_pcmcia_io_unmap(pcmcia_chipset_handle_t pch, int win)
2294 1.1 haya {
2295 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2296 1.22 chopps int reg;
2297 1.1 haya
2298 1.22 chopps if (win >= PCIC_IO_WINS || win < 0) {
2299 1.22 chopps panic("pccbb_pcmcia_io_unmap: window out of range");
2300 1.22 chopps }
2301 1.1 haya
2302 1.22 chopps reg = Pcic_read(ph, PCIC_ADDRWIN_ENABLE);
2303 1.22 chopps switch (win) {
2304 1.22 chopps case 0:
2305 1.22 chopps reg &= ~PCIC_ADDRWIN_ENABLE_IO0;
2306 1.22 chopps break;
2307 1.22 chopps case 1:
2308 1.22 chopps reg &= ~PCIC_ADDRWIN_ENABLE_IO1;
2309 1.22 chopps break;
2310 1.22 chopps }
2311 1.22 chopps Pcic_write(ph, PCIC_ADDRWIN_ENABLE, reg);
2312 1.1 haya
2313 1.22 chopps ph->ioalloc &= ~(1 << win);
2314 1.1 haya }
2315 1.1 haya
2316 1.91 briggs static int
2317 1.143 dyoung pccbb_pcmcia_wait_ready(struct pcic_handle *ph)
2318 1.1 haya {
2319 1.104 mycroft u_int8_t stat;
2320 1.22 chopps int i;
2321 1.1 haya
2322 1.104 mycroft /* wait an initial 10ms for quick cards */
2323 1.104 mycroft stat = Pcic_read(ph, PCIC_IF_STATUS);
2324 1.104 mycroft if (stat & PCIC_IF_STATUS_READY)
2325 1.104 mycroft return (0);
2326 1.104 mycroft pccbb_pcmcia_delay(ph, 10, "pccwr0");
2327 1.104 mycroft for (i = 0; i < 50; i++) {
2328 1.91 briggs stat = Pcic_read(ph, PCIC_IF_STATUS);
2329 1.91 briggs if (stat & PCIC_IF_STATUS_READY)
2330 1.104 mycroft return (0);
2331 1.91 briggs if ((stat & PCIC_IF_STATUS_CARDDETECT_MASK) !=
2332 1.91 briggs PCIC_IF_STATUS_CARDDETECT_PRESENT)
2333 1.104 mycroft return (ENXIO);
2334 1.104 mycroft /* wait .1s (100ms) each iteration now */
2335 1.104 mycroft pccbb_pcmcia_delay(ph, 100, "pccwr1");
2336 1.22 chopps }
2337 1.1 haya
2338 1.104 mycroft printf("pccbb_pcmcia_wait_ready: ready never happened, status=%02x\n", stat);
2339 1.104 mycroft return (EWOULDBLOCK);
2340 1.104 mycroft }
2341 1.104 mycroft
2342 1.104 mycroft /*
2343 1.143 dyoung * Perform long (msec order) delay. timo is in milliseconds.
2344 1.104 mycroft */
2345 1.104 mycroft static void
2346 1.143 dyoung pccbb_pcmcia_delay(struct pcic_handle *ph, int timo, const char *wmesg)
2347 1.104 mycroft {
2348 1.1 haya #ifdef DIAGNOSTIC
2349 1.104 mycroft if (timo <= 0)
2350 1.104 mycroft panic("pccbb_pcmcia_delay: called with timeout %d", timo);
2351 1.104 mycroft if (!curlwp)
2352 1.104 mycroft panic("pccbb_pcmcia_delay: called in interrupt context");
2353 1.104 mycroft #if 0
2354 1.104 mycroft if (!ph->event_thread)
2355 1.104 mycroft panic("pccbb_pcmcia_delay: no event thread");
2356 1.104 mycroft #endif
2357 1.1 haya #endif
2358 1.104 mycroft DPRINTF(("pccbb_pcmcia_delay: \"%s\" %p, sleep %d ms\n",
2359 1.110 mrg wmesg, ph->event_thread, timo));
2360 1.104 mycroft tsleep(pccbb_pcmcia_delay, PWAIT, wmesg, roundup(timo * hz, 1000) / 1000);
2361 1.1 haya }
2362 1.1 haya
2363 1.4 haya /*
2364 1.4 haya * STATIC void pccbb_pcmcia_socket_enable(pcmcia_chipset_handle_t pch)
2365 1.4 haya *
2366 1.4 haya * This function enables the card. All information is stored in
2367 1.4 haya * the first argument, pcmcia_chipset_handle_t.
2368 1.4 haya */
2369 1.1 haya STATIC void
2370 1.143 dyoung pccbb_pcmcia_socket_enable(pcmcia_chipset_handle_t pch)
2371 1.1 haya {
2372 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2373 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ph->ph_parent;
2374 1.104 mycroft pcireg_t spsr;
2375 1.104 mycroft int voltage;
2376 1.101 mycroft int win;
2377 1.22 chopps u_int8_t power, intr;
2378 1.104 mycroft #ifdef DIAGNOSTIC
2379 1.104 mycroft int reg;
2380 1.104 mycroft #endif
2381 1.1 haya
2382 1.22 chopps /* this bit is mostly stolen from pcic_attach_card */
2383 1.1 haya
2384 1.22 chopps DPRINTF(("pccbb_pcmcia_socket_enable: "));
2385 1.1 haya
2386 1.22 chopps /* get card Vcc info */
2387 1.22 chopps spsr =
2388 1.22 chopps bus_space_read_4(sc->sc_base_memt, sc->sc_base_memh,
2389 1.22 chopps CB_SOCKET_STAT);
2390 1.22 chopps if (spsr & CB_SOCKET_STAT_5VCARD) {
2391 1.22 chopps DPRINTF(("5V card\n"));
2392 1.22 chopps voltage = CARDBUS_VCC_5V | CARDBUS_VPP_VCC;
2393 1.22 chopps } else if (spsr & CB_SOCKET_STAT_3VCARD) {
2394 1.22 chopps DPRINTF(("3V card\n"));
2395 1.22 chopps voltage = CARDBUS_VCC_3V | CARDBUS_VPP_VCC;
2396 1.22 chopps } else {
2397 1.133 christos DPRINTF(("?V card, 0x%x\n", spsr)); /* XXX */
2398 1.22 chopps return;
2399 1.22 chopps }
2400 1.1 haya
2401 1.108 mycroft /* disable interrupts; assert RESET */
2402 1.104 mycroft intr = Pcic_read(ph, PCIC_INTR);
2403 1.109 mycroft intr &= PCIC_INTR_ENABLE;
2404 1.104 mycroft Pcic_write(ph, PCIC_INTR, intr);
2405 1.104 mycroft
2406 1.104 mycroft /* zero out the address windows */
2407 1.104 mycroft Pcic_write(ph, PCIC_ADDRWIN_ENABLE, 0);
2408 1.100 mycroft
2409 1.104 mycroft /* power down the socket to reset it, clear the card reset pin */
2410 1.104 mycroft pccbb_power(sc, CARDBUS_VCC_0V | CARDBUS_VPP_0V);
2411 1.1 haya
2412 1.108 mycroft /* power off; assert output enable bit */
2413 1.108 mycroft power = PCIC_PWRCTL_OE;
2414 1.108 mycroft Pcic_write(ph, PCIC_PWRCTL, power);
2415 1.1 haya
2416 1.106 mycroft /* power up the socket */
2417 1.104 mycroft if (pccbb_power(sc, voltage) == 0)
2418 1.104 mycroft return;
2419 1.104 mycroft
2420 1.112 mycroft /*
2421 1.112 mycroft * Table 4-18 and figure 4-6 of the PC Card specifiction say:
2422 1.112 mycroft * Vcc Rising Time (Tpr) = 100ms (handled in pccbb_power() above)
2423 1.112 mycroft * RESET Width (Th (Hi-z RESET)) = 1ms
2424 1.112 mycroft * RESET Width (Tw (RESET)) = 10us
2425 1.132 christos *
2426 1.132 christos * some machines require some more time to be settled
2427 1.132 christos * for example old toshiba topic bridges!
2428 1.132 christos * (100ms is added here).
2429 1.132 christos */
2430 1.132 christos pccbb_pcmcia_delay(ph, 200 + 1, "pccen1");
2431 1.112 mycroft
2432 1.108 mycroft /* negate RESET */
2433 1.22 chopps intr |= PCIC_INTR_RESET;
2434 1.22 chopps Pcic_write(ph, PCIC_INTR, intr);
2435 1.1 haya
2436 1.108 mycroft /*
2437 1.108 mycroft * RESET Setup Time (Tsu (RESET)) = 20ms
2438 1.108 mycroft */
2439 1.104 mycroft pccbb_pcmcia_delay(ph, 20, "pccen2");
2440 1.1 haya
2441 1.104 mycroft #ifdef DIAGNOSTIC
2442 1.104 mycroft reg = Pcic_read(ph, PCIC_IF_STATUS);
2443 1.104 mycroft if ((reg & PCIC_IF_STATUS_POWERACTIVE) == 0)
2444 1.104 mycroft printf("pccbb_pcmcia_socket_enable: no power, status=%x\n", reg);
2445 1.56 itohy #endif
2446 1.1 haya
2447 1.22 chopps /* wait for the chip to finish initializing */
2448 1.104 mycroft if (pccbb_pcmcia_wait_ready(ph)) {
2449 1.133 christos #ifdef DIAGNOSTIC
2450 1.133 christos printf("pccbb_pcmcia_socket_enable: never became ready\n");
2451 1.133 christos #endif
2452 1.104 mycroft /* XXX return a failure status?? */
2453 1.91 briggs pccbb_power(sc, CARDBUS_VCC_0V | CARDBUS_VPP_0V);
2454 1.104 mycroft Pcic_write(ph, PCIC_PWRCTL, 0);
2455 1.91 briggs return;
2456 1.91 briggs }
2457 1.1 haya
2458 1.22 chopps /* reinstall all the memory and io mappings */
2459 1.104 mycroft for (win = 0; win < PCIC_MEM_WINS; ++win)
2460 1.104 mycroft if (ph->memalloc & (1 << win))
2461 1.22 chopps pccbb_pcmcia_do_mem_map(ph, win);
2462 1.104 mycroft for (win = 0; win < PCIC_IO_WINS; ++win)
2463 1.104 mycroft if (ph->ioalloc & (1 << win))
2464 1.22 chopps pccbb_pcmcia_do_io_map(ph, win);
2465 1.1 haya }
2466 1.1 haya
2467 1.4 haya /*
2468 1.4 haya * STATIC void pccbb_pcmcia_socket_disable(pcmcia_chipset_handle_t *ph)
2469 1.4 haya *
2470 1.4 haya * This function disables the card. All information is stored in
2471 1.4 haya * the first argument, pcmcia_chipset_handle_t.
2472 1.4 haya */
2473 1.1 haya STATIC void
2474 1.143 dyoung pccbb_pcmcia_socket_disable(pcmcia_chipset_handle_t pch)
2475 1.1 haya {
2476 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2477 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ph->ph_parent;
2478 1.104 mycroft u_int8_t intr;
2479 1.22 chopps
2480 1.22 chopps DPRINTF(("pccbb_pcmcia_socket_disable\n"));
2481 1.22 chopps
2482 1.108 mycroft /* disable interrupts; assert RESET */
2483 1.103 mycroft intr = Pcic_read(ph, PCIC_INTR);
2484 1.109 mycroft intr &= PCIC_INTR_ENABLE;
2485 1.103 mycroft Pcic_write(ph, PCIC_INTR, intr);
2486 1.102 mycroft
2487 1.102 mycroft /* zero out the address windows */
2488 1.102 mycroft Pcic_write(ph, PCIC_ADDRWIN_ENABLE, 0);
2489 1.22 chopps
2490 1.108 mycroft /* power down the socket to reset it, clear the card reset pin */
2491 1.108 mycroft pccbb_power(sc, CARDBUS_VCC_0V | CARDBUS_VPP_0V);
2492 1.108 mycroft
2493 1.104 mycroft /* disable socket: negate output enable bit and power off */
2494 1.104 mycroft Pcic_write(ph, PCIC_PWRCTL, 0);
2495 1.104 mycroft
2496 1.108 mycroft /*
2497 1.108 mycroft * Vcc Falling Time (Tpf) = 300ms
2498 1.108 mycroft */
2499 1.104 mycroft pccbb_pcmcia_delay(ph, 300, "pccwr1");
2500 1.101 mycroft }
2501 1.101 mycroft
2502 1.101 mycroft STATIC void
2503 1.143 dyoung pccbb_pcmcia_socket_settype(pcmcia_chipset_handle_t pch, int type)
2504 1.101 mycroft {
2505 1.101 mycroft struct pcic_handle *ph = (struct pcic_handle *)pch;
2506 1.101 mycroft u_int8_t intr;
2507 1.101 mycroft
2508 1.101 mycroft /* set the card type */
2509 1.100 mycroft
2510 1.100 mycroft intr = Pcic_read(ph, PCIC_INTR);
2511 1.102 mycroft intr &= ~(PCIC_INTR_IRQ_MASK | PCIC_INTR_CARDTYPE_MASK);
2512 1.101 mycroft if (type == PCMCIA_IFTYPE_IO)
2513 1.101 mycroft intr |= PCIC_INTR_CARDTYPE_IO;
2514 1.101 mycroft else
2515 1.101 mycroft intr |= PCIC_INTR_CARDTYPE_MEM;
2516 1.100 mycroft Pcic_write(ph, PCIC_INTR, intr);
2517 1.101 mycroft
2518 1.101 mycroft DPRINTF(("%s: pccbb_pcmcia_socket_settype %02x type %s %02x\n",
2519 1.164 dyoung device_xname(ph->ph_parent), ph->sock,
2520 1.101 mycroft ((type == PCMCIA_IFTYPE_IO) ? "io" : "mem"), intr));
2521 1.1 haya }
2522 1.1 haya
2523 1.4 haya /*
2524 1.1 haya * STATIC int pccbb_pcmcia_card_detect(pcmcia_chipset_handle_t *ph)
2525 1.1 haya *
2526 1.1 haya * This function detects whether a card is in the slot or not.
2527 1.1 haya * If a card is inserted, return 1. Otherwise, return 0.
2528 1.4 haya */
2529 1.1 haya STATIC int
2530 1.143 dyoung pccbb_pcmcia_card_detect(pcmcia_chipset_handle_t pch)
2531 1.1 haya {
2532 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2533 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ph->ph_parent;
2534 1.22 chopps
2535 1.22 chopps DPRINTF(("pccbb_pcmcia_card_detect\n"));
2536 1.22 chopps return pccbb_detect_card(sc) == 1 ? 1 : 0;
2537 1.1 haya }
2538 1.1 haya
2539 1.1 haya #if 0
2540 1.1 haya STATIC int
2541 1.1 haya pccbb_new_pcmcia_mem_alloc(pcmcia_chipset_handle_t pch,
2542 1.22 chopps bus_addr_t start, bus_size_t size, bus_size_t align, int speed, int flags,
2543 1.22 chopps bus_space_tag_t * memtp bus_space_handle_t * memhp)
2544 1.1 haya #endif
2545 1.4 haya /*
2546 1.4 haya * STATIC int pccbb_pcmcia_mem_alloc(pcmcia_chipset_handle_t pch,
2547 1.4 haya * bus_size_t size,
2548 1.4 haya * struct pcmcia_mem_handle *pcmhp)
2549 1.4 haya *
2550 1.4 haya * This function only allocates memory region for pccard. This
2551 1.32 enami * function never maps the allocated region to pccard memory area.
2552 1.4 haya *
2553 1.4 haya * XXX: Why the argument of start address is not in?
2554 1.4 haya */
2555 1.22 chopps STATIC int
2556 1.143 dyoung pccbb_pcmcia_mem_alloc(pcmcia_chipset_handle_t pch, bus_size_t size,
2557 1.143 dyoung struct pcmcia_mem_handle *pcmhp)
2558 1.22 chopps {
2559 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2560 1.22 chopps bus_space_handle_t memh;
2561 1.22 chopps bus_addr_t addr;
2562 1.22 chopps bus_size_t sizepg;
2563 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ph->ph_parent;
2564 1.1 haya #if rbus
2565 1.22 chopps rbus_tag_t rb;
2566 1.1 haya #endif
2567 1.1 haya
2568 1.91 briggs /* Check that the card is still there. */
2569 1.91 briggs if ((Pcic_read(ph, PCIC_IF_STATUS) & PCIC_IF_STATUS_CARDDETECT_MASK) !=
2570 1.91 briggs PCIC_IF_STATUS_CARDDETECT_PRESENT)
2571 1.91 briggs return 1;
2572 1.91 briggs
2573 1.22 chopps /* out of sc->memh, allocate as many pages as necessary */
2574 1.1 haya
2575 1.22 chopps /* convert size to PCIC pages */
2576 1.117 perry /*
2577 1.22 chopps * This is not enough; when the requested region is on the page
2578 1.22 chopps * boundaries, this may calculate wrong result.
2579 1.22 chopps */
2580 1.22 chopps sizepg = (size + (PCIC_MEM_PAGESIZE - 1)) / PCIC_MEM_PAGESIZE;
2581 1.1 haya #if 0
2582 1.22 chopps if (sizepg > PCIC_MAX_MEM_PAGES) {
2583 1.22 chopps return 1;
2584 1.22 chopps }
2585 1.1 haya #endif
2586 1.1 haya
2587 1.22 chopps if (!(sc->sc_pcmcia_flags & PCCBB_PCMCIA_MEM_32)) {
2588 1.22 chopps return 1;
2589 1.22 chopps }
2590 1.1 haya
2591 1.22 chopps addr = 0; /* XXX gcc -Wuninitialized */
2592 1.1 haya
2593 1.1 haya #if rbus
2594 1.22 chopps rb = sc->sc_rbus_memt;
2595 1.22 chopps if (rbus_space_alloc(rb, 0, sizepg * PCIC_MEM_PAGESIZE,
2596 1.22 chopps sizepg * PCIC_MEM_PAGESIZE - 1, PCIC_MEM_PAGESIZE, 0,
2597 1.22 chopps &addr, &memh)) {
2598 1.22 chopps return 1;
2599 1.22 chopps }
2600 1.1 haya #else
2601 1.22 chopps if (bus_space_alloc(sc->sc_memt, sc->sc_mem_start, sc->sc_mem_end,
2602 1.22 chopps sizepg * PCIC_MEM_PAGESIZE, PCIC_MEM_PAGESIZE,
2603 1.22 chopps 0, /* boundary */
2604 1.22 chopps 0, /* flags */
2605 1.22 chopps &addr, &memh)) {
2606 1.22 chopps return 1;
2607 1.22 chopps }
2608 1.1 haya #endif
2609 1.1 haya
2610 1.95 christos DPRINTF(("pccbb_pcmcia_alloc_mem: addr 0x%lx size 0x%lx, "
2611 1.95 christos "realsize 0x%lx\n", (unsigned long)addr, (unsigned long)size,
2612 1.95 christos (unsigned long)sizepg * PCIC_MEM_PAGESIZE));
2613 1.22 chopps
2614 1.22 chopps pcmhp->memt = sc->sc_memt;
2615 1.22 chopps pcmhp->memh = memh;
2616 1.22 chopps pcmhp->addr = addr;
2617 1.22 chopps pcmhp->size = size;
2618 1.22 chopps pcmhp->realsize = sizepg * PCIC_MEM_PAGESIZE;
2619 1.22 chopps /* What is mhandle? I feel it is very dirty and it must go trush. */
2620 1.22 chopps pcmhp->mhandle = 0;
2621 1.22 chopps /* No offset??? Funny. */
2622 1.1 haya
2623 1.22 chopps return 0;
2624 1.1 haya }
2625 1.1 haya
2626 1.4 haya /*
2627 1.4 haya * STATIC void pccbb_pcmcia_mem_free(pcmcia_chipset_handle_t pch,
2628 1.4 haya * struct pcmcia_mem_handle *pcmhp)
2629 1.4 haya *
2630 1.32 enami * This function release the memory space allocated by the function
2631 1.4 haya * pccbb_pcmcia_mem_alloc().
2632 1.4 haya */
2633 1.22 chopps STATIC void
2634 1.143 dyoung pccbb_pcmcia_mem_free(pcmcia_chipset_handle_t pch,
2635 1.143 dyoung struct pcmcia_mem_handle *pcmhp)
2636 1.1 haya {
2637 1.1 haya #if rbus
2638 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2639 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ph->ph_parent;
2640 1.1 haya
2641 1.22 chopps rbus_space_free(sc->sc_rbus_memt, pcmhp->memh, pcmhp->realsize, NULL);
2642 1.1 haya #else
2643 1.22 chopps bus_space_free(pcmhp->memt, pcmhp->memh, pcmhp->realsize);
2644 1.1 haya #endif
2645 1.1 haya }
2646 1.1 haya
2647 1.4 haya /*
2648 1.4 haya * STATIC void pccbb_pcmcia_do_mem_map(struct pcic_handle *ph, int win)
2649 1.4 haya *
2650 1.32 enami * This function release the memory space allocated by the function
2651 1.4 haya * pccbb_pcmcia_mem_alloc().
2652 1.4 haya */
2653 1.22 chopps STATIC void
2654 1.143 dyoung pccbb_pcmcia_do_mem_map(struct pcic_handle *ph, int win)
2655 1.1 haya {
2656 1.22 chopps int regbase_win;
2657 1.22 chopps bus_addr_t phys_addr;
2658 1.22 chopps bus_addr_t phys_end;
2659 1.1 haya
2660 1.1 haya #define PCIC_SMM_START_LOW 0
2661 1.1 haya #define PCIC_SMM_START_HIGH 1
2662 1.1 haya #define PCIC_SMM_STOP_LOW 2
2663 1.1 haya #define PCIC_SMM_STOP_HIGH 3
2664 1.1 haya #define PCIC_CMA_LOW 4
2665 1.1 haya #define PCIC_CMA_HIGH 5
2666 1.1 haya
2667 1.22 chopps u_int8_t start_low, start_high = 0;
2668 1.22 chopps u_int8_t stop_low, stop_high;
2669 1.22 chopps u_int8_t off_low, off_high;
2670 1.22 chopps u_int8_t mem_window;
2671 1.22 chopps int reg;
2672 1.22 chopps
2673 1.22 chopps int kind = ph->mem[win].kind & ~PCMCIA_WIDTH_MEM_MASK;
2674 1.22 chopps int mem8 =
2675 1.24 thorpej (ph->mem[win].kind & PCMCIA_WIDTH_MEM_MASK) == PCMCIA_WIDTH_MEM8
2676 1.24 thorpej || (kind == PCMCIA_MEM_ATTR);
2677 1.12 joda
2678 1.22 chopps regbase_win = 0x10 + win * 0x08;
2679 1.1 haya
2680 1.22 chopps phys_addr = ph->mem[win].addr;
2681 1.22 chopps phys_end = phys_addr + ph->mem[win].size;
2682 1.1 haya
2683 1.22 chopps DPRINTF(("pccbb_pcmcia_do_mem_map: start 0x%lx end 0x%lx off 0x%lx\n",
2684 1.95 christos (unsigned long)phys_addr, (unsigned long)phys_end,
2685 1.95 christos (unsigned long)ph->mem[win].offset));
2686 1.1 haya
2687 1.1 haya #define PCIC_MEMREG_LSB_SHIFT PCIC_SYSMEM_ADDRX_SHIFT
2688 1.1 haya #define PCIC_MEMREG_MSB_SHIFT (PCIC_SYSMEM_ADDRX_SHIFT + 8)
2689 1.1 haya #define PCIC_MEMREG_WIN_SHIFT (PCIC_SYSMEM_ADDRX_SHIFT + 12)
2690 1.1 haya
2691 1.22 chopps /* bit 19:12 */
2692 1.22 chopps start_low = (phys_addr >> PCIC_MEMREG_LSB_SHIFT) & 0xff;
2693 1.22 chopps /* bit 23:20 and bit 7 on */
2694 1.22 chopps start_high = ((phys_addr >> PCIC_MEMREG_MSB_SHIFT) & 0x0f)
2695 1.22 chopps |(mem8 ? 0 : PCIC_SYSMEM_ADDRX_START_MSB_DATASIZE_16BIT);
2696 1.22 chopps /* bit 31:24, for 32-bit address */
2697 1.22 chopps mem_window = (phys_addr >> PCIC_MEMREG_WIN_SHIFT) & 0xff;
2698 1.22 chopps
2699 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SMM_START_LOW, start_low);
2700 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SMM_START_HIGH, start_high);
2701 1.22 chopps
2702 1.22 chopps if (((struct pccbb_softc *)ph->
2703 1.22 chopps ph_parent)->sc_pcmcia_flags & PCCBB_PCMCIA_MEM_32) {
2704 1.22 chopps Pcic_write(ph, 0x40 + win, mem_window);
2705 1.22 chopps }
2706 1.1 haya
2707 1.22 chopps stop_low = (phys_end >> PCIC_MEMREG_LSB_SHIFT) & 0xff;
2708 1.22 chopps stop_high = ((phys_end >> PCIC_MEMREG_MSB_SHIFT) & 0x0f)
2709 1.22 chopps | PCIC_SYSMEM_ADDRX_STOP_MSB_WAIT2; /* wait 2 cycles */
2710 1.22 chopps /* XXX Geee, WAIT2!! Crazy!! I must rewrite this routine. */
2711 1.22 chopps
2712 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SMM_STOP_LOW, stop_low);
2713 1.22 chopps Pcic_write(ph, regbase_win + PCIC_SMM_STOP_HIGH, stop_high);
2714 1.22 chopps
2715 1.22 chopps off_low = (ph->mem[win].offset >> PCIC_CARDMEM_ADDRX_SHIFT) & 0xff;
2716 1.22 chopps off_high = ((ph->mem[win].offset >> (PCIC_CARDMEM_ADDRX_SHIFT + 8))
2717 1.22 chopps & PCIC_CARDMEM_ADDRX_MSB_ADDR_MASK)
2718 1.22 chopps | ((kind == PCMCIA_MEM_ATTR) ?
2719 1.22 chopps PCIC_CARDMEM_ADDRX_MSB_REGACTIVE_ATTR : 0);
2720 1.22 chopps
2721 1.22 chopps Pcic_write(ph, regbase_win + PCIC_CMA_LOW, off_low);
2722 1.22 chopps Pcic_write(ph, regbase_win + PCIC_CMA_HIGH, off_high);
2723 1.22 chopps
2724 1.22 chopps reg = Pcic_read(ph, PCIC_ADDRWIN_ENABLE);
2725 1.22 chopps reg |= ((1 << win) | PCIC_ADDRWIN_ENABLE_MEMCS16);
2726 1.22 chopps Pcic_write(ph, PCIC_ADDRWIN_ENABLE, reg);
2727 1.1 haya
2728 1.133 christos #if defined(CBB_DEBUG)
2729 1.22 chopps {
2730 1.22 chopps int r1, r2, r3, r4, r5, r6, r7 = 0;
2731 1.1 haya
2732 1.22 chopps r1 = Pcic_read(ph, regbase_win + PCIC_SMM_START_LOW);
2733 1.22 chopps r2 = Pcic_read(ph, regbase_win + PCIC_SMM_START_HIGH);
2734 1.22 chopps r3 = Pcic_read(ph, regbase_win + PCIC_SMM_STOP_LOW);
2735 1.22 chopps r4 = Pcic_read(ph, regbase_win + PCIC_SMM_STOP_HIGH);
2736 1.22 chopps r5 = Pcic_read(ph, regbase_win + PCIC_CMA_LOW);
2737 1.22 chopps r6 = Pcic_read(ph, regbase_win + PCIC_CMA_HIGH);
2738 1.22 chopps if (((struct pccbb_softc *)(ph->
2739 1.22 chopps ph_parent))->sc_pcmcia_flags & PCCBB_PCMCIA_MEM_32) {
2740 1.22 chopps r7 = Pcic_read(ph, 0x40 + win);
2741 1.22 chopps }
2742 1.22 chopps
2743 1.133 christos printf("pccbb_pcmcia_do_mem_map window %d: %02x%02x %02x%02x "
2744 1.133 christos "%02x%02x", win, r1, r2, r3, r4, r5, r6);
2745 1.22 chopps if (((struct pccbb_softc *)(ph->
2746 1.22 chopps ph_parent))->sc_pcmcia_flags & PCCBB_PCMCIA_MEM_32) {
2747 1.133 christos printf(" %02x", r7);
2748 1.22 chopps }
2749 1.133 christos printf("\n");
2750 1.22 chopps }
2751 1.1 haya #endif
2752 1.1 haya }
2753 1.1 haya
2754 1.4 haya /*
2755 1.4 haya * STATIC int pccbb_pcmcia_mem_map(pcmcia_chipset_handle_t pch, int kind,
2756 1.4 haya * bus_addr_t card_addr, bus_size_t size,
2757 1.4 haya * struct pcmcia_mem_handle *pcmhp,
2758 1.4 haya * bus_addr_t *offsetp, int *windowp)
2759 1.4 haya *
2760 1.32 enami * This function maps memory space allocated by the function
2761 1.4 haya * pccbb_pcmcia_mem_alloc().
2762 1.4 haya */
2763 1.22 chopps STATIC int
2764 1.143 dyoung pccbb_pcmcia_mem_map(pcmcia_chipset_handle_t pch, int kind,
2765 1.143 dyoung bus_addr_t card_addr, bus_size_t size, struct pcmcia_mem_handle *pcmhp,
2766 1.143 dyoung bus_addr_t *offsetp, int *windowp)
2767 1.22 chopps {
2768 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2769 1.22 chopps bus_addr_t busaddr;
2770 1.22 chopps long card_offset;
2771 1.22 chopps int win;
2772 1.91 briggs
2773 1.91 briggs /* Check that the card is still there. */
2774 1.91 briggs if ((Pcic_read(ph, PCIC_IF_STATUS) & PCIC_IF_STATUS_CARDDETECT_MASK) !=
2775 1.91 briggs PCIC_IF_STATUS_CARDDETECT_PRESENT)
2776 1.91 briggs return 1;
2777 1.22 chopps
2778 1.22 chopps for (win = 0; win < PCIC_MEM_WINS; ++win) {
2779 1.22 chopps if ((ph->memalloc & (1 << win)) == 0) {
2780 1.22 chopps ph->memalloc |= (1 << win);
2781 1.22 chopps break;
2782 1.22 chopps }
2783 1.22 chopps }
2784 1.1 haya
2785 1.22 chopps if (win == PCIC_MEM_WINS) {
2786 1.22 chopps return 1;
2787 1.22 chopps }
2788 1.1 haya
2789 1.22 chopps *windowp = win;
2790 1.1 haya
2791 1.22 chopps /* XXX this is pretty gross */
2792 1.1 haya
2793 1.22 chopps if (((struct pccbb_softc *)ph->ph_parent)->sc_memt != pcmhp->memt) {
2794 1.22 chopps panic("pccbb_pcmcia_mem_map memt is bogus");
2795 1.22 chopps }
2796 1.1 haya
2797 1.22 chopps busaddr = pcmhp->addr;
2798 1.1 haya
2799 1.117 perry /*
2800 1.22 chopps * compute the address offset to the pcmcia address space for the
2801 1.22 chopps * pcic. this is intentionally signed. The masks and shifts below
2802 1.22 chopps * will cause TRT to happen in the pcic registers. Deal with making
2803 1.22 chopps * sure the address is aligned, and return the alignment offset.
2804 1.22 chopps */
2805 1.22 chopps
2806 1.22 chopps *offsetp = card_addr % PCIC_MEM_PAGESIZE;
2807 1.22 chopps card_addr -= *offsetp;
2808 1.22 chopps
2809 1.22 chopps DPRINTF(("pccbb_pcmcia_mem_map window %d bus %lx+%lx+%lx at card addr "
2810 1.22 chopps "%lx\n", win, (u_long) busaddr, (u_long) * offsetp, (u_long) size,
2811 1.22 chopps (u_long) card_addr));
2812 1.22 chopps
2813 1.117 perry /*
2814 1.22 chopps * include the offset in the size, and decrement size by one, since
2815 1.22 chopps * the hw wants start/stop
2816 1.22 chopps */
2817 1.22 chopps size += *offsetp - 1;
2818 1.22 chopps
2819 1.22 chopps card_offset = (((long)card_addr) - ((long)busaddr));
2820 1.22 chopps
2821 1.22 chopps ph->mem[win].addr = busaddr;
2822 1.22 chopps ph->mem[win].size = size;
2823 1.22 chopps ph->mem[win].offset = card_offset;
2824 1.22 chopps ph->mem[win].kind = kind;
2825 1.1 haya
2826 1.22 chopps pccbb_pcmcia_do_mem_map(ph, win);
2827 1.1 haya
2828 1.22 chopps return 0;
2829 1.1 haya }
2830 1.1 haya
2831 1.4 haya /*
2832 1.4 haya * STATIC int pccbb_pcmcia_mem_unmap(pcmcia_chipset_handle_t pch,
2833 1.4 haya * int window)
2834 1.4 haya *
2835 1.32 enami * This function unmaps memory space which mapped by the function
2836 1.4 haya * pccbb_pcmcia_mem_map().
2837 1.4 haya */
2838 1.22 chopps STATIC void
2839 1.143 dyoung pccbb_pcmcia_mem_unmap(pcmcia_chipset_handle_t pch, int window)
2840 1.1 haya {
2841 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2842 1.22 chopps int reg;
2843 1.1 haya
2844 1.22 chopps if (window >= PCIC_MEM_WINS) {
2845 1.22 chopps panic("pccbb_pcmcia_mem_unmap: window out of range");
2846 1.22 chopps }
2847 1.1 haya
2848 1.22 chopps reg = Pcic_read(ph, PCIC_ADDRWIN_ENABLE);
2849 1.22 chopps reg &= ~(1 << window);
2850 1.22 chopps Pcic_write(ph, PCIC_ADDRWIN_ENABLE, reg);
2851 1.1 haya
2852 1.22 chopps ph->memalloc &= ~(1 << window);
2853 1.1 haya }
2854 1.1 haya
2855 1.1 haya #if defined PCCBB_PCMCIA_POLL
2856 1.1 haya struct pccbb_poll_str {
2857 1.22 chopps void *arg;
2858 1.116 perry int (*func)(void *);
2859 1.22 chopps int level;
2860 1.22 chopps struct pcic_handle *ph;
2861 1.22 chopps int count;
2862 1.22 chopps int num;
2863 1.37 thorpej struct callout poll_ch;
2864 1.1 haya };
2865 1.1 haya
2866 1.1 haya static struct pccbb_poll_str pccbb_poll[10];
2867 1.1 haya static int pccbb_poll_n = 0;
2868 1.1 haya
2869 1.116 perry static void pccbb_pcmcia_poll(void *arg);
2870 1.1 haya
2871 1.1 haya static void
2872 1.143 dyoung pccbb_pcmcia_poll(void *arg)
2873 1.1 haya {
2874 1.22 chopps struct pccbb_poll_str *poll = arg;
2875 1.22 chopps struct pcic_handle *ph = poll->ph;
2876 1.22 chopps struct pccbb_softc *sc = ph->sc;
2877 1.22 chopps int s;
2878 1.22 chopps u_int32_t spsr; /* socket present-state reg */
2879 1.22 chopps
2880 1.37 thorpej callout_reset(&poll->poll_ch, hz * 2, pccbb_pcmcia_poll, arg);
2881 1.22 chopps switch (poll->level) {
2882 1.22 chopps case IPL_NET:
2883 1.22 chopps s = splnet();
2884 1.22 chopps break;
2885 1.22 chopps case IPL_BIO:
2886 1.22 chopps s = splbio();
2887 1.22 chopps break;
2888 1.22 chopps case IPL_TTY: /* fallthrough */
2889 1.22 chopps default:
2890 1.22 chopps s = spltty();
2891 1.22 chopps break;
2892 1.22 chopps }
2893 1.22 chopps
2894 1.145 christos spsr = bus_space_read_4(sc->sc_base_memt, sc->sc_base_memh,
2895 1.22 chopps CB_SOCKET_STAT);
2896 1.1 haya
2897 1.1 haya #if defined PCCBB_PCMCIA_POLL_ONLY && defined LEVEL2
2898 1.22 chopps if (!(spsr & 0x40)) /* CINT low */
2899 1.1 haya #else
2900 1.22 chopps if (1)
2901 1.1 haya #endif
2902 1.22 chopps {
2903 1.22 chopps if ((*poll->func) (poll->arg) > 0) {
2904 1.22 chopps ++poll->count;
2905 1.73 christos /* printf("intr: reported from poller, 0x%x\n", spsr); */
2906 1.1 haya #if defined LEVEL2
2907 1.22 chopps } else {
2908 1.22 chopps printf("intr: miss! 0x%x\n", spsr);
2909 1.1 haya #endif
2910 1.22 chopps }
2911 1.22 chopps }
2912 1.22 chopps splx(s);
2913 1.1 haya }
2914 1.1 haya #endif /* defined CB_PCMCIA_POLL */
2915 1.1 haya
2916 1.4 haya /*
2917 1.4 haya * STATIC void *pccbb_pcmcia_intr_establish(pcmcia_chipset_handle_t pch,
2918 1.4 haya * struct pcmcia_function *pf,
2919 1.4 haya * int ipl,
2920 1.4 haya * int (*func)(void *),
2921 1.4 haya * void *arg);
2922 1.4 haya *
2923 1.4 haya * This function enables PC-Card interrupt. PCCBB uses PCI interrupt line.
2924 1.4 haya */
2925 1.1 haya STATIC void *
2926 1.143 dyoung pccbb_pcmcia_intr_establish(pcmcia_chipset_handle_t pch,
2927 1.143 dyoung struct pcmcia_function *pf, int ipl, int (*func)(void *), void *arg)
2928 1.22 chopps {
2929 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2930 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ph->ph_parent;
2931 1.22 chopps
2932 1.22 chopps if (!(pf->cfe->flags & PCMCIA_CFE_IRQLEVEL)) {
2933 1.22 chopps /* what should I do? */
2934 1.22 chopps if ((pf->cfe->flags & PCMCIA_CFE_IRQLEVEL)) {
2935 1.95 christos DPRINTF(("%s does not provide edge nor pulse "
2936 1.164 dyoung "interrupt\n", device_xname(&sc->sc_dev)));
2937 1.22 chopps return NULL;
2938 1.22 chopps }
2939 1.117 perry /*
2940 1.22 chopps * XXX Noooooo! The interrupt flag must set properly!!
2941 1.22 chopps * dumb pcmcia driver!!
2942 1.22 chopps */
2943 1.22 chopps }
2944 1.1 haya
2945 1.88 nakayama return pccbb_intr_establish(sc, 0, ipl, func, arg);
2946 1.1 haya }
2947 1.1 haya
2948 1.4 haya /*
2949 1.4 haya * STATIC void pccbb_pcmcia_intr_disestablish(pcmcia_chipset_handle_t pch,
2950 1.4 haya * void *ih)
2951 1.4 haya *
2952 1.4 haya * This function disables PC-Card interrupt.
2953 1.4 haya */
2954 1.1 haya STATIC void
2955 1.143 dyoung pccbb_pcmcia_intr_disestablish(pcmcia_chipset_handle_t pch, void *ih)
2956 1.1 haya {
2957 1.22 chopps struct pcic_handle *ph = (struct pcic_handle *)pch;
2958 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ph->ph_parent;
2959 1.1 haya
2960 1.26 haya pccbb_intr_disestablish(sc, ih);
2961 1.1 haya }
2962 1.1 haya
2963 1.1 haya #if rbus
2964 1.4 haya /*
2965 1.4 haya * static int
2966 1.4 haya * pccbb_rbus_cb_space_alloc(cardbus_chipset_tag_t ct, rbus_tag_t rb,
2967 1.4 haya * bus_addr_t addr, bus_size_t size,
2968 1.4 haya * bus_addr_t mask, bus_size_t align,
2969 1.4 haya * int flags, bus_addr_t *addrp;
2970 1.4 haya * bus_space_handle_t *bshp)
2971 1.4 haya *
2972 1.4 haya * This function allocates a portion of memory or io space for
2973 1.4 haya * clients. This function is called from CardBus card drivers.
2974 1.4 haya */
2975 1.1 haya static int
2976 1.143 dyoung pccbb_rbus_cb_space_alloc(cardbus_chipset_tag_t ct, rbus_tag_t rb,
2977 1.143 dyoung bus_addr_t addr, bus_size_t size, bus_addr_t mask, bus_size_t align,
2978 1.143 dyoung int flags, bus_addr_t *addrp, bus_space_handle_t *bshp)
2979 1.22 chopps {
2980 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ct;
2981 1.22 chopps
2982 1.95 christos DPRINTF(("pccbb_rbus_cb_space_alloc: addr 0x%lx, size 0x%lx, "
2983 1.95 christos "mask 0x%lx, align 0x%lx\n", (unsigned long)addr,
2984 1.95 christos (unsigned long)size, (unsigned long)mask, (unsigned long)align));
2985 1.1 haya
2986 1.22 chopps if (align == 0) {
2987 1.22 chopps align = size;
2988 1.22 chopps }
2989 1.1 haya
2990 1.22 chopps if (rb->rb_bt == sc->sc_memt) {
2991 1.22 chopps if (align < 16) {
2992 1.22 chopps return 1;
2993 1.68 yamt }
2994 1.76 haya /*
2995 1.76 haya * XXX: align more than 0x1000 to avoid overwrapping
2996 1.76 haya * memory windows for two or more devices. 0x1000
2997 1.76 haya * means memory window's granularity.
2998 1.76 haya *
2999 1.76 haya * Two or more devices should be able to share same
3000 1.76 haya * memory window region. However, overrapping memory
3001 1.76 haya * window is not good because some devices, such as
3002 1.76 haya * 3Com 3C575[BC], have a broken address decoder and
3003 1.76 haya * intrude other's memory region.
3004 1.76 haya */
3005 1.68 yamt if (align < 0x1000) {
3006 1.68 yamt align = 0x1000;
3007 1.22 chopps }
3008 1.22 chopps } else if (rb->rb_bt == sc->sc_iot) {
3009 1.22 chopps if (align < 4) {
3010 1.22 chopps return 1;
3011 1.22 chopps }
3012 1.36 haya /* XXX: hack for avoiding ISA image */
3013 1.36 haya if (mask < 0x0100) {
3014 1.36 haya mask = 0x3ff;
3015 1.36 haya addr = 0x300;
3016 1.36 haya }
3017 1.36 haya
3018 1.22 chopps } else {
3019 1.95 christos DPRINTF(("pccbb_rbus_cb_space_alloc: Bus space tag 0x%lx is "
3020 1.95 christos "NOT used. io: 0x%lx, mem: 0x%lx\n",
3021 1.95 christos (unsigned long)rb->rb_bt, (unsigned long)sc->sc_iot,
3022 1.95 christos (unsigned long)sc->sc_memt));
3023 1.22 chopps return 1;
3024 1.22 chopps /* XXX: panic here? */
3025 1.22 chopps }
3026 1.1 haya
3027 1.22 chopps if (rbus_space_alloc(rb, addr, size, mask, align, flags, addrp, bshp)) {
3028 1.164 dyoung aprint_normal_dev(&sc->sc_dev, "<rbus> no bus space\n");
3029 1.22 chopps return 1;
3030 1.22 chopps }
3031 1.1 haya
3032 1.22 chopps pccbb_open_win(sc, rb->rb_bt, *addrp, size, *bshp, 0);
3033 1.1 haya
3034 1.22 chopps return 0;
3035 1.1 haya }
3036 1.1 haya
3037 1.4 haya /*
3038 1.4 haya * static int
3039 1.4 haya * pccbb_rbus_cb_space_free(cardbus_chipset_tag_t *ct, rbus_tag_t rb,
3040 1.4 haya * bus_space_handle_t *bshp, bus_size_t size);
3041 1.4 haya *
3042 1.4 haya * This function is called from CardBus card drivers.
3043 1.4 haya */
3044 1.1 haya static int
3045 1.143 dyoung pccbb_rbus_cb_space_free(cardbus_chipset_tag_t ct, rbus_tag_t rb,
3046 1.143 dyoung bus_space_handle_t bsh, bus_size_t size)
3047 1.22 chopps {
3048 1.22 chopps struct pccbb_softc *sc = (struct pccbb_softc *)ct;
3049 1.22 chopps bus_space_tag_t bt = rb->rb_bt;
3050 1.22 chopps
3051 1.22 chopps pccbb_close_win(sc, bt, bsh, size);
3052 1.22 chopps
3053 1.22 chopps if (bt == sc->sc_memt) {
3054 1.22 chopps } else if (bt == sc->sc_iot) {
3055 1.22 chopps } else {
3056 1.22 chopps return 1;
3057 1.22 chopps /* XXX: panic here? */
3058 1.22 chopps }
3059 1.1 haya
3060 1.22 chopps return rbus_space_free(rb, bsh, size, NULL);
3061 1.1 haya }
3062 1.1 haya #endif /* rbus */
3063 1.1 haya
3064 1.1 haya #if rbus
3065 1.1 haya
3066 1.1 haya static int
3067 1.143 dyoung pccbb_open_win(struct pccbb_softc *sc, bus_space_tag_t bst, bus_addr_t addr,
3068 1.143 dyoung bus_size_t size, bus_space_handle_t bsh, int flags)
3069 1.22 chopps {
3070 1.27 thorpej struct pccbb_win_chain_head *head;
3071 1.22 chopps bus_addr_t align;
3072 1.22 chopps
3073 1.27 thorpej head = &sc->sc_iowindow;
3074 1.22 chopps align = 0x04;
3075 1.22 chopps if (sc->sc_memt == bst) {
3076 1.27 thorpej head = &sc->sc_memwindow;
3077 1.22 chopps align = 0x1000;
3078 1.95 christos DPRINTF(("using memory window, 0x%lx 0x%lx 0x%lx\n\n",
3079 1.95 christos (unsigned long)sc->sc_iot, (unsigned long)sc->sc_memt,
3080 1.95 christos (unsigned long)bst));
3081 1.22 chopps }
3082 1.1 haya
3083 1.27 thorpej if (pccbb_winlist_insert(head, addr, size, bsh, flags)) {
3084 1.164 dyoung aprint_error_dev(&sc->sc_dev,
3085 1.164 dyoung "pccbb_open_win: %s winlist insert failed\n",
3086 1.27 thorpej (head == &sc->sc_memwindow) ? "mem" : "io");
3087 1.22 chopps }
3088 1.22 chopps pccbb_winset(align, sc, bst);
3089 1.1 haya
3090 1.22 chopps return 0;
3091 1.1 haya }
3092 1.1 haya
3093 1.1 haya static int
3094 1.143 dyoung pccbb_close_win(struct pccbb_softc *sc, bus_space_tag_t bst,
3095 1.143 dyoung bus_space_handle_t bsh, bus_size_t size)
3096 1.22 chopps {
3097 1.27 thorpej struct pccbb_win_chain_head *head;
3098 1.22 chopps bus_addr_t align;
3099 1.22 chopps
3100 1.27 thorpej head = &sc->sc_iowindow;
3101 1.22 chopps align = 0x04;
3102 1.22 chopps if (sc->sc_memt == bst) {
3103 1.27 thorpej head = &sc->sc_memwindow;
3104 1.22 chopps align = 0x1000;
3105 1.22 chopps }
3106 1.1 haya
3107 1.27 thorpej if (pccbb_winlist_delete(head, bsh, size)) {
3108 1.164 dyoung aprint_error_dev(&sc->sc_dev,
3109 1.164 dyoung "pccbb_close_win: %s winlist delete failed\n",
3110 1.27 thorpej (head == &sc->sc_memwindow) ? "mem" : "io");
3111 1.22 chopps }
3112 1.22 chopps pccbb_winset(align, sc, bst);
3113 1.1 haya
3114 1.22 chopps return 0;
3115 1.1 haya }
3116 1.1 haya
3117 1.1 haya static int
3118 1.143 dyoung pccbb_winlist_insert(struct pccbb_win_chain_head *head, bus_addr_t start,
3119 1.143 dyoung bus_size_t size, bus_space_handle_t bsh, int flags)
3120 1.22 chopps {
3121 1.27 thorpej struct pccbb_win_chain *chainp, *elem;
3122 1.22 chopps
3123 1.27 thorpej if ((elem = malloc(sizeof(struct pccbb_win_chain), M_DEVBUF,
3124 1.27 thorpej M_NOWAIT)) == NULL)
3125 1.35 enami return (1); /* fail */
3126 1.1 haya
3127 1.27 thorpej elem->wc_start = start;
3128 1.27 thorpej elem->wc_end = start + (size - 1);
3129 1.27 thorpej elem->wc_handle = bsh;
3130 1.27 thorpej elem->wc_flags = flags;
3131 1.1 haya
3132 1.154 dyoung TAILQ_FOREACH(chainp, head, wc_list) {
3133 1.154 dyoung if (chainp->wc_end >= start)
3134 1.154 dyoung break;
3135 1.154 dyoung }
3136 1.154 dyoung if (chainp != NULL)
3137 1.27 thorpej TAILQ_INSERT_AFTER(head, chainp, elem, wc_list);
3138 1.154 dyoung else
3139 1.154 dyoung TAILQ_INSERT_TAIL(head, elem, wc_list);
3140 1.35 enami return (0);
3141 1.1 haya }
3142 1.1 haya
3143 1.1 haya static int
3144 1.143 dyoung pccbb_winlist_delete(struct pccbb_win_chain_head *head, bus_space_handle_t bsh,
3145 1.143 dyoung bus_size_t size)
3146 1.1 haya {
3147 1.27 thorpej struct pccbb_win_chain *chainp;
3148 1.1 haya
3149 1.154 dyoung TAILQ_FOREACH(chainp, head, wc_list) {
3150 1.154 dyoung if (memcmp(&chainp->wc_handle, &bsh, sizeof(bsh)) == 0)
3151 1.154 dyoung break;
3152 1.154 dyoung }
3153 1.154 dyoung if (chainp == NULL)
3154 1.154 dyoung return 1; /* fail: no candidate to remove */
3155 1.1 haya
3156 1.154 dyoung if ((chainp->wc_end - chainp->wc_start) != (size - 1)) {
3157 1.154 dyoung printf("pccbb_winlist_delete: window 0x%lx size "
3158 1.154 dyoung "inconsistent: 0x%lx, 0x%lx\n",
3159 1.154 dyoung (unsigned long)chainp->wc_start,
3160 1.154 dyoung (unsigned long)(chainp->wc_end - chainp->wc_start),
3161 1.154 dyoung (unsigned long)(size - 1));
3162 1.154 dyoung return 1;
3163 1.154 dyoung }
3164 1.1 haya
3165 1.154 dyoung TAILQ_REMOVE(head, chainp, wc_list);
3166 1.154 dyoung free(chainp, M_DEVBUF);
3167 1.1 haya
3168 1.154 dyoung return 0;
3169 1.1 haya }
3170 1.1 haya
3171 1.1 haya static void
3172 1.143 dyoung pccbb_winset(bus_addr_t align, struct pccbb_softc *sc, bus_space_tag_t bst)
3173 1.22 chopps {
3174 1.22 chopps pci_chipset_tag_t pc;
3175 1.22 chopps pcitag_t tag;
3176 1.22 chopps bus_addr_t mask = ~(align - 1);
3177 1.22 chopps struct {
3178 1.22 chopps cardbusreg_t win_start;
3179 1.22 chopps cardbusreg_t win_limit;
3180 1.22 chopps int win_flags;
3181 1.22 chopps } win[2];
3182 1.22 chopps struct pccbb_win_chain *chainp;
3183 1.22 chopps int offs;
3184 1.22 chopps
3185 1.61 enami win[0].win_start = win[1].win_start = 0xffffffff;
3186 1.61 enami win[0].win_limit = win[1].win_limit = 0;
3187 1.61 enami win[0].win_flags = win[1].win_flags = 0;
3188 1.22 chopps
3189 1.27 thorpej chainp = TAILQ_FIRST(&sc->sc_iowindow);
3190 1.161 dyoung offs = PCI_CB_IOBASE0;
3191 1.22 chopps if (sc->sc_memt == bst) {
3192 1.27 thorpej chainp = TAILQ_FIRST(&sc->sc_memwindow);
3193 1.161 dyoung offs = PCI_CB_MEMBASE0;
3194 1.22 chopps }
3195 1.1 haya
3196 1.27 thorpej if (chainp != NULL) {
3197 1.22 chopps win[0].win_start = chainp->wc_start & mask;
3198 1.22 chopps win[0].win_limit = chainp->wc_end & mask;
3199 1.22 chopps win[0].win_flags = chainp->wc_flags;
3200 1.27 thorpej chainp = TAILQ_NEXT(chainp, wc_list);
3201 1.1 haya }
3202 1.1 haya
3203 1.27 thorpej for (; chainp != NULL; chainp = TAILQ_NEXT(chainp, wc_list)) {
3204 1.22 chopps if (win[1].win_start == 0xffffffff) {
3205 1.22 chopps /* window 1 is not used */
3206 1.22 chopps if ((win[0].win_flags == chainp->wc_flags) &&
3207 1.22 chopps (win[0].win_limit + align >=
3208 1.22 chopps (chainp->wc_start & mask))) {
3209 1.27 thorpej /* concatenate */
3210 1.22 chopps win[0].win_limit = chainp->wc_end & mask;
3211 1.22 chopps } else {
3212 1.22 chopps /* make new window */
3213 1.22 chopps win[1].win_start = chainp->wc_start & mask;
3214 1.22 chopps win[1].win_limit = chainp->wc_end & mask;
3215 1.22 chopps win[1].win_flags = chainp->wc_flags;
3216 1.22 chopps }
3217 1.22 chopps continue;
3218 1.22 chopps }
3219 1.22 chopps
3220 1.32 enami /* Both windows are engaged. */
3221 1.22 chopps if (win[0].win_flags == win[1].win_flags) {
3222 1.22 chopps /* same flags */
3223 1.22 chopps if (win[0].win_flags == chainp->wc_flags) {
3224 1.22 chopps if (win[1].win_start - (win[0].win_limit +
3225 1.22 chopps align) <
3226 1.22 chopps (chainp->wc_start & mask) -
3227 1.22 chopps ((chainp->wc_end & mask) + align)) {
3228 1.22 chopps /*
3229 1.22 chopps * merge window 0 and 1, and set win1
3230 1.22 chopps * to chainp
3231 1.22 chopps */
3232 1.22 chopps win[0].win_limit = win[1].win_limit;
3233 1.22 chopps win[1].win_start =
3234 1.22 chopps chainp->wc_start & mask;
3235 1.22 chopps win[1].win_limit =
3236 1.22 chopps chainp->wc_end & mask;
3237 1.22 chopps } else {
3238 1.22 chopps win[1].win_limit =
3239 1.22 chopps chainp->wc_end & mask;
3240 1.22 chopps }
3241 1.22 chopps } else {
3242 1.22 chopps /* different flags */
3243 1.22 chopps
3244 1.27 thorpej /* concatenate win0 and win1 */
3245 1.22 chopps win[0].win_limit = win[1].win_limit;
3246 1.22 chopps /* allocate win[1] to new space */
3247 1.22 chopps win[1].win_start = chainp->wc_start & mask;
3248 1.22 chopps win[1].win_limit = chainp->wc_end & mask;
3249 1.22 chopps win[1].win_flags = chainp->wc_flags;
3250 1.22 chopps }
3251 1.22 chopps } else {
3252 1.22 chopps /* the flags of win[0] and win[1] is different */
3253 1.22 chopps if (win[0].win_flags == chainp->wc_flags) {
3254 1.22 chopps win[0].win_limit = chainp->wc_end & mask;
3255 1.22 chopps /*
3256 1.22 chopps * XXX this creates overlapping windows, so
3257 1.22 chopps * what should the poor bridge do if one is
3258 1.22 chopps * cachable, and the other is not?
3259 1.22 chopps */
3260 1.164 dyoung aprint_error_dev(&sc->sc_dev,
3261 1.164 dyoung "overlapping windows\n");
3262 1.22 chopps } else {
3263 1.22 chopps win[1].win_limit = chainp->wc_end & mask;
3264 1.22 chopps }
3265 1.22 chopps }
3266 1.22 chopps }
3267 1.1 haya
3268 1.22 chopps pc = sc->sc_pc;
3269 1.22 chopps tag = sc->sc_tag;
3270 1.22 chopps pci_conf_write(pc, tag, offs, win[0].win_start);
3271 1.22 chopps pci_conf_write(pc, tag, offs + 4, win[0].win_limit);
3272 1.22 chopps pci_conf_write(pc, tag, offs + 8, win[1].win_start);
3273 1.22 chopps pci_conf_write(pc, tag, offs + 12, win[1].win_limit);
3274 1.95 christos DPRINTF(("--pccbb_winset: win0 [0x%lx, 0x%lx), win1 [0x%lx, 0x%lx)\n",
3275 1.95 christos (unsigned long)pci_conf_read(pc, tag, offs),
3276 1.95 christos (unsigned long)pci_conf_read(pc, tag, offs + 4) + align,
3277 1.95 christos (unsigned long)pci_conf_read(pc, tag, offs + 8),
3278 1.95 christos (unsigned long)pci_conf_read(pc, tag, offs + 12) + align));
3279 1.22 chopps
3280 1.22 chopps if (bst == sc->sc_memt) {
3281 1.146 dyoung pcireg_t bcr = pci_conf_read(pc, tag, PCI_BRIDGE_CONTROL_REG);
3282 1.61 enami
3283 1.61 enami bcr &= ~(CB_BCR_PREFETCH_MEMWIN0 | CB_BCR_PREFETCH_MEMWIN1);
3284 1.61 enami if (win[0].win_flags & PCCBB_MEM_CACHABLE)
3285 1.22 chopps bcr |= CB_BCR_PREFETCH_MEMWIN0;
3286 1.61 enami if (win[1].win_flags & PCCBB_MEM_CACHABLE)
3287 1.22 chopps bcr |= CB_BCR_PREFETCH_MEMWIN1;
3288 1.146 dyoung pci_conf_write(pc, tag, PCI_BRIDGE_CONTROL_REG, bcr);
3289 1.22 chopps }
3290 1.1 haya }
3291 1.1 haya
3292 1.1 haya #endif /* rbus */
3293 1.25 enami
3294 1.156 jmcneill static bool
3295 1.156 jmcneill pccbb_suspend(device_t dv)
3296 1.25 enami {
3297 1.156 jmcneill struct pccbb_softc *sc = device_private(dv);
3298 1.25 enami bus_space_tag_t base_memt = sc->sc_base_memt; /* socket regs memory */
3299 1.25 enami bus_space_handle_t base_memh = sc->sc_base_memh;
3300 1.156 jmcneill pcireg_t reg;
3301 1.25 enami
3302 1.156 jmcneill if (sc->sc_pil_intr_enable)
3303 1.156 jmcneill (void)pccbbintr_function(sc);
3304 1.156 jmcneill sc->sc_pil_intr_enable = 0;
3305 1.25 enami
3306 1.156 jmcneill reg = bus_space_read_4(base_memt, base_memh, CB_SOCKET_MASK);
3307 1.156 jmcneill /* Disable interrupts. */
3308 1.156 jmcneill reg &= ~(CB_SOCKET_MASK_CSTS | CB_SOCKET_MASK_CD | CB_SOCKET_MASK_POWER);
3309 1.156 jmcneill bus_space_write_4(base_memt, base_memh, CB_SOCKET_MASK, reg);
3310 1.156 jmcneill /* XXX joerg Disable power to the socket? */
3311 1.38 haya
3312 1.156 jmcneill return true;
3313 1.156 jmcneill }
3314 1.129 jmcneill
3315 1.156 jmcneill static bool
3316 1.156 jmcneill pccbb_resume(device_t dv)
3317 1.156 jmcneill {
3318 1.156 jmcneill struct pccbb_softc *sc = device_private(dv);
3319 1.156 jmcneill bus_space_tag_t base_memt = sc->sc_base_memt; /* socket regs memory */
3320 1.156 jmcneill bus_space_handle_t base_memh = sc->sc_base_memh;
3321 1.156 jmcneill pcireg_t reg;
3322 1.38 haya
3323 1.156 jmcneill pccbb_chipinit(sc);
3324 1.156 jmcneill /* setup memory and io space window for CB */
3325 1.156 jmcneill pccbb_winset(0x1000, sc, sc->sc_memt);
3326 1.156 jmcneill pccbb_winset(0x04, sc, sc->sc_iot);
3327 1.156 jmcneill
3328 1.156 jmcneill /* CSC Interrupt: Card detect interrupt on */
3329 1.156 jmcneill reg = bus_space_read_4(base_memt, base_memh, CB_SOCKET_MASK);
3330 1.156 jmcneill /* Card detect intr is turned on. */
3331 1.156 jmcneill reg |= CB_SOCKET_MASK_CD | CB_SOCKET_MASK_POWER;
3332 1.156 jmcneill bus_space_write_4(base_memt, base_memh, CB_SOCKET_MASK, reg);
3333 1.156 jmcneill /* reset interrupt */
3334 1.156 jmcneill reg = bus_space_read_4(base_memt, base_memh, CB_SOCKET_EVENT);
3335 1.156 jmcneill bus_space_write_4(base_memt, base_memh, CB_SOCKET_EVENT, reg);
3336 1.70 haya
3337 1.156 jmcneill /*
3338 1.156 jmcneill * check for card insertion or removal during suspend period.
3339 1.156 jmcneill * XXX: the code can't cope with card swap (remove then
3340 1.156 jmcneill * insert). how can we detect such situation?
3341 1.156 jmcneill */
3342 1.156 jmcneill (void)pccbbintr(sc);
3343 1.129 jmcneill
3344 1.156 jmcneill sc->sc_pil_intr_enable = 1;
3345 1.25 enami
3346 1.156 jmcneill return true;
3347 1.25 enami }
3348