elan520.c revision 1.23 1 1.23 dyoung /* $NetBSD: elan520.c,v 1.23 2008/02/18 06:26:42 dyoung Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 2002 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe.
9 1.1 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.1 thorpej * must display the following acknowledgement:
20 1.1 thorpej * This product includes software developed by the NetBSD
21 1.1 thorpej * Foundation, Inc. and its contributors.
22 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 thorpej * contributors may be used to endorse or promote products derived
24 1.1 thorpej * from this software without specific prior written permission.
25 1.1 thorpej *
26 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.1 thorpej */
38 1.1 thorpej
39 1.1 thorpej /*
40 1.1 thorpej * Device driver for the AMD Elan SC520 System Controller. This attaches
41 1.1 thorpej * where the "pchb" driver might normally attach, and provides support for
42 1.1 thorpej * extra features on the SC520, such as the watchdog timer and GPIO.
43 1.1 thorpej *
44 1.1 thorpej * Information about the GP bus echo bug work-around is from code posted
45 1.1 thorpej * to the "soekris-tech" mailing list by Jasper Wallace.
46 1.1 thorpej */
47 1.1 thorpej
48 1.1 thorpej #include <sys/cdefs.h>
49 1.1 thorpej
50 1.23 dyoung __KERNEL_RCSID(0, "$NetBSD: elan520.c,v 1.23 2008/02/18 06:26:42 dyoung Exp $");
51 1.1 thorpej
52 1.1 thorpej #include <sys/param.h>
53 1.1 thorpej #include <sys/systm.h>
54 1.22 dyoung #include <sys/time.h>
55 1.1 thorpej #include <sys/device.h>
56 1.19 dyoung #include <sys/gpio.h>
57 1.19 dyoung #include <sys/mutex.h>
58 1.1 thorpej #include <sys/wdog.h>
59 1.1 thorpej
60 1.5 thorpej #include <uvm/uvm_extern.h>
61 1.5 thorpej
62 1.1 thorpej #include <machine/bus.h>
63 1.1 thorpej
64 1.1 thorpej #include <dev/pci/pcivar.h>
65 1.1 thorpej
66 1.1 thorpej #include <dev/pci/pcidevs.h>
67 1.1 thorpej
68 1.10 drochner #include "gpio.h"
69 1.10 drochner #if NGPIO > 0
70 1.9 riz #include <dev/gpio/gpiovar.h>
71 1.10 drochner #endif
72 1.9 riz
73 1.1 thorpej #include <arch/i386/pci/elan520reg.h>
74 1.1 thorpej
75 1.1 thorpej #include <dev/sysmon/sysmonvar.h>
76 1.1 thorpej
77 1.22 dyoung #define ELAN_IRQ 1
78 1.23 dyoung #define PG0_PROT_SIZE PAGE_SIZE
79 1.22 dyoung
80 1.1 thorpej struct elansc_softc {
81 1.1 thorpej struct device sc_dev;
82 1.22 dyoung device_t sc_par;
83 1.22 dyoung device_t sc_pex;
84 1.22 dyoung
85 1.22 dyoung pci_chipset_tag_t sc_pc;
86 1.22 dyoung pcitag_t sc_tag;
87 1.1 thorpej bus_space_tag_t sc_memt;
88 1.1 thorpej bus_space_handle_t sc_memh;
89 1.1 thorpej int sc_echobug;
90 1.1 thorpej
91 1.19 dyoung kmutex_t sc_mtx;
92 1.19 dyoung
93 1.1 thorpej struct sysmon_wdog sc_smw;
94 1.22 dyoung void *sc_eih;
95 1.22 dyoung void *sc_pih;
96 1.22 dyoung void *sc_sh;
97 1.22 dyoung uint8_t sc_mpicmode;
98 1.22 dyoung uint8_t sc_picicr;
99 1.23 dyoung int sc_pg0par;
100 1.22 dyoung int sc_textpar;
101 1.11 riz #if NGPIO > 0
102 1.9 riz /* GPIO interface */
103 1.9 riz struct gpio_chipset_tag sc_gpio_gc;
104 1.9 riz gpio_pin_t sc_gpio_pins[ELANSC_PIO_NPINS];
105 1.11 riz #endif
106 1.1 thorpej };
107 1.1 thorpej
108 1.22 dyoung int elansc_wpvnmi = 1;
109 1.22 dyoung int elansc_pcinmi = 1;
110 1.23 dyoung int elansc_do_protect_pg0 = 1;
111 1.22 dyoung
112 1.10 drochner #if NGPIO > 0
113 1.9 riz static int elansc_gpio_pin_read(void *, int);
114 1.9 riz static void elansc_gpio_pin_write(void *, int, int);
115 1.9 riz static void elansc_gpio_pin_ctl(void *, int, int);
116 1.10 drochner #endif
117 1.9 riz
118 1.22 dyoung static void elansc_print_par(device_t, int, uint32_t);
119 1.22 dyoung static void elanpex_intr_establish(device_t, struct elansc_softc *);
120 1.22 dyoung static void elanpar_intr_establish(device_t, struct elansc_softc *);
121 1.22 dyoung static void elanpex_intr_disestablish(struct elansc_softc *);
122 1.22 dyoung static void elanpar_intr_disestablish(struct elansc_softc *);
123 1.22 dyoung
124 1.1 thorpej static void
125 1.19 dyoung elansc_childdetached(device_t self, device_t child)
126 1.19 dyoung {
127 1.22 dyoung struct elansc_softc *sc = device_private(self);
128 1.22 dyoung
129 1.22 dyoung if (child == sc->sc_par)
130 1.22 dyoung sc->sc_par = NULL;
131 1.22 dyoung if (child == sc->sc_pex)
132 1.22 dyoung sc->sc_pex = NULL;
133 1.22 dyoung /* elansc does not presently keep a pointer to
134 1.22 dyoung * the gpio, so there is nothing to do if it is detached.
135 1.19 dyoung */
136 1.19 dyoung }
137 1.19 dyoung
138 1.19 dyoung static void
139 1.1 thorpej elansc_wdogctl_write(struct elansc_softc *sc, uint16_t val)
140 1.1 thorpej {
141 1.6 christos uint8_t echo_mode = 0; /* XXX: gcc */
142 1.1 thorpej
143 1.19 dyoung KASSERT(mutex_owned(&sc->sc_mtx));
144 1.1 thorpej
145 1.1 thorpej /* Switch off GP bus echo mode if we need to. */
146 1.1 thorpej if (sc->sc_echobug) {
147 1.1 thorpej echo_mode = bus_space_read_1(sc->sc_memt, sc->sc_memh,
148 1.1 thorpej MMCR_GPECHO);
149 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh,
150 1.1 thorpej MMCR_GPECHO, echo_mode & ~GPECHO_GP_ECHO_ENB);
151 1.1 thorpej }
152 1.1 thorpej
153 1.1 thorpej /* Unlock the register. */
154 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
155 1.1 thorpej WDTMRCTL_UNLOCK1);
156 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
157 1.1 thorpej WDTMRCTL_UNLOCK2);
158 1.1 thorpej
159 1.1 thorpej /* Write the value. */
160 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL, val);
161 1.1 thorpej
162 1.1 thorpej /* Switch GP bus echo mode back. */
163 1.1 thorpej if (sc->sc_echobug)
164 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_GPECHO,
165 1.1 thorpej echo_mode);
166 1.1 thorpej }
167 1.1 thorpej
168 1.1 thorpej static void
169 1.1 thorpej elansc_wdogctl_reset(struct elansc_softc *sc)
170 1.1 thorpej {
171 1.7 christos uint8_t echo_mode = 0/* XXX: gcc */;
172 1.1 thorpej
173 1.19 dyoung KASSERT(mutex_owned(&sc->sc_mtx));
174 1.1 thorpej
175 1.1 thorpej /* Switch off GP bus echo mode if we need to. */
176 1.1 thorpej if (sc->sc_echobug) {
177 1.1 thorpej echo_mode = bus_space_read_1(sc->sc_memt, sc->sc_memh,
178 1.1 thorpej MMCR_GPECHO);
179 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh,
180 1.1 thorpej MMCR_GPECHO, echo_mode & ~GPECHO_GP_ECHO_ENB);
181 1.1 thorpej }
182 1.1 thorpej
183 1.1 thorpej /* Reset the watchdog. */
184 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
185 1.1 thorpej WDTMRCTL_RESET1);
186 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
187 1.1 thorpej WDTMRCTL_RESET2);
188 1.1 thorpej
189 1.1 thorpej /* Switch GP bus echo mode back. */
190 1.1 thorpej if (sc->sc_echobug)
191 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_GPECHO,
192 1.1 thorpej echo_mode);
193 1.1 thorpej }
194 1.1 thorpej
195 1.1 thorpej static const struct {
196 1.1 thorpej int period; /* whole seconds */
197 1.1 thorpej uint16_t exp; /* exponent select */
198 1.1 thorpej } elansc_wdog_periods[] = {
199 1.1 thorpej { 1, WDTMRCTL_EXP_SEL25 },
200 1.1 thorpej { 2, WDTMRCTL_EXP_SEL26 },
201 1.1 thorpej { 4, WDTMRCTL_EXP_SEL27 },
202 1.1 thorpej { 8, WDTMRCTL_EXP_SEL28 },
203 1.1 thorpej { 16, WDTMRCTL_EXP_SEL29 },
204 1.1 thorpej { 32, WDTMRCTL_EXP_SEL30 },
205 1.1 thorpej { 0, 0 },
206 1.1 thorpej };
207 1.1 thorpej
208 1.1 thorpej static int
209 1.19 dyoung elansc_wdog_arm(struct elansc_softc *sc)
210 1.1 thorpej {
211 1.19 dyoung struct sysmon_wdog *smw = &sc->sc_smw;
212 1.1 thorpej int i;
213 1.7 christos uint16_t exp_sel = 0; /* XXX: gcc */
214 1.1 thorpej
215 1.19 dyoung KASSERT(mutex_owned(&sc->sc_mtx));
216 1.17 dyoung
217 1.19 dyoung if (smw->smw_period == WDOG_PERIOD_DEFAULT) {
218 1.19 dyoung smw->smw_period = 32;
219 1.19 dyoung exp_sel = WDTMRCTL_EXP_SEL30;
220 1.1 thorpej } else {
221 1.19 dyoung for (i = 0; elansc_wdog_periods[i].period != 0; i++) {
222 1.19 dyoung if (elansc_wdog_periods[i].period ==
223 1.19 dyoung smw->smw_period) {
224 1.19 dyoung exp_sel = elansc_wdog_periods[i].exp;
225 1.19 dyoung break;
226 1.1 thorpej }
227 1.1 thorpej }
228 1.19 dyoung if (elansc_wdog_periods[i].period == 0)
229 1.19 dyoung return EINVAL;
230 1.1 thorpej }
231 1.19 dyoung elansc_wdogctl_write(sc, WDTMRCTL_ENB |
232 1.19 dyoung WDTMRCTL_WRST_ENB | exp_sel);
233 1.19 dyoung elansc_wdogctl_reset(sc);
234 1.19 dyoung return 0;
235 1.19 dyoung }
236 1.19 dyoung
237 1.19 dyoung static int
238 1.19 dyoung elansc_wdog_setmode(struct sysmon_wdog *smw)
239 1.19 dyoung {
240 1.19 dyoung struct elansc_softc *sc = smw->smw_cookie;
241 1.19 dyoung int rc = 0;
242 1.19 dyoung
243 1.19 dyoung mutex_enter(&sc->sc_mtx);
244 1.19 dyoung
245 1.19 dyoung if (!device_is_active(&sc->sc_dev))
246 1.19 dyoung rc = EBUSY;
247 1.19 dyoung else if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
248 1.19 dyoung elansc_wdogctl_write(sc,
249 1.19 dyoung WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
250 1.19 dyoung } else
251 1.19 dyoung rc = elansc_wdog_arm(sc);
252 1.19 dyoung
253 1.19 dyoung mutex_exit(&sc->sc_mtx);
254 1.19 dyoung return rc;
255 1.1 thorpej }
256 1.1 thorpej
257 1.1 thorpej static int
258 1.1 thorpej elansc_wdog_tickle(struct sysmon_wdog *smw)
259 1.1 thorpej {
260 1.1 thorpej struct elansc_softc *sc = smw->smw_cookie;
261 1.1 thorpej
262 1.19 dyoung mutex_enter(&sc->sc_mtx);
263 1.1 thorpej elansc_wdogctl_reset(sc);
264 1.19 dyoung mutex_exit(&sc->sc_mtx);
265 1.19 dyoung return 0;
266 1.1 thorpej }
267 1.1 thorpej
268 1.1 thorpej static int
269 1.21 dyoung elansc_match(device_t parent, struct cfdata *match, void *aux)
270 1.1 thorpej {
271 1.1 thorpej struct pci_attach_args *pa = aux;
272 1.1 thorpej
273 1.1 thorpej if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_AMD &&
274 1.1 thorpej PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AMD_SC520_SC)
275 1.1 thorpej return (10); /* beat pchb */
276 1.1 thorpej
277 1.1 thorpej return (0);
278 1.1 thorpej }
279 1.1 thorpej
280 1.1 thorpej static const char *elansc_speeds[] = {
281 1.1 thorpej "(reserved 00)",
282 1.1 thorpej "100MHz",
283 1.1 thorpej "133MHz",
284 1.1 thorpej "(reserved 11)",
285 1.1 thorpej };
286 1.1 thorpej
287 1.22 dyoung static int
288 1.22 dyoung elanpar_intr(void *arg)
289 1.22 dyoung {
290 1.22 dyoung struct elansc_softc *sc = arg;
291 1.22 dyoung uint16_t wpvsta;
292 1.22 dyoung unsigned win;
293 1.22 dyoung uint32_t par;
294 1.22 dyoung const char *wpvstr;
295 1.22 dyoung
296 1.22 dyoung wpvsta = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA);
297 1.22 dyoung
298 1.22 dyoung if ((wpvsta & MMCR_WPVSTA_WPV_STA) == 0)
299 1.22 dyoung return 0;
300 1.22 dyoung
301 1.22 dyoung win = __SHIFTOUT(wpvsta, MMCR_WPVSTA_WPV_WINDOW);
302 1.22 dyoung
303 1.22 dyoung par = bus_space_read_4(sc->sc_memt, sc->sc_memh, MMCR_PAR(win));
304 1.22 dyoung
305 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA,
306 1.22 dyoung MMCR_WPVSTA_WPV_STA);
307 1.22 dyoung
308 1.22 dyoung switch (wpvsta & MMCR_WPVSTA_WPV_MSTR) {
309 1.22 dyoung case MMCR_WPVSTA_WPV_MSTR_CPU:
310 1.22 dyoung wpvstr = "cpu";
311 1.22 dyoung break;
312 1.22 dyoung case MMCR_WPVSTA_WPV_MSTR_PCI:
313 1.22 dyoung wpvstr = "pci";
314 1.22 dyoung break;
315 1.22 dyoung case MMCR_WPVSTA_WPV_MSTR_GP:
316 1.22 dyoung wpvstr = "gp";
317 1.22 dyoung break;
318 1.22 dyoung default:
319 1.22 dyoung wpvstr = "unknown";
320 1.22 dyoung break;
321 1.22 dyoung }
322 1.22 dyoung aprint_error_dev(sc->sc_par,
323 1.22 dyoung "%s violated write-protect window %u\n", wpvstr, win);
324 1.22 dyoung elansc_print_par(sc->sc_par, win, par);
325 1.22 dyoung return 0;
326 1.22 dyoung }
327 1.22 dyoung
328 1.22 dyoung static int
329 1.22 dyoung elanpex_intr(void *arg)
330 1.22 dyoung {
331 1.22 dyoung static struct {
332 1.22 dyoung const char *string;
333 1.22 dyoung bool nonfatal;
334 1.22 dyoung } cmd[16] = {
335 1.22 dyoung [0] = {.string = "not latched"}
336 1.22 dyoung , [1] = {.string = "special cycle"}
337 1.22 dyoung , [2] = {.string = "i/o read"}
338 1.22 dyoung , [3] = {.string = "i/o write"}
339 1.22 dyoung , [4] = {.string = "4"}
340 1.22 dyoung , [5] = {.string = "5"}
341 1.22 dyoung , [6] = {.string = "memory rd"}
342 1.22 dyoung , [7] = {.string = "memory wr"}
343 1.22 dyoung , [8] = {.string = "8"}
344 1.22 dyoung , [9] = {.string = "9"}
345 1.22 dyoung , [10] = {.string = "cfg rd", .nonfatal = true}
346 1.22 dyoung , [11] = {.string = "cfg wr"}
347 1.22 dyoung , [12] = {.string = "memory rd mul"}
348 1.22 dyoung , [13] = {.string = "dual-address cycle"}
349 1.22 dyoung , [14] = {.string = "memory rd line"}
350 1.22 dyoung , [15] = {.string = "memory wr & inv"}
351 1.22 dyoung };
352 1.22 dyoung
353 1.22 dyoung static const struct {
354 1.22 dyoung uint16_t bit;
355 1.22 dyoung const char *msg;
356 1.22 dyoung } mmsg[] = {
357 1.22 dyoung {MMCR_HBMSTIRQSTA_M_RTRTO_IRQ_STA, "retry timeout"}
358 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_TABRT_IRQ_STA, "target abort"}
359 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_MABRT_IRQ_STA, "abort"}
360 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_SERR_IRQ_STA, "system error"}
361 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_RPER_IRQ_STA, "received parity error"}
362 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_DPER_IRQ_STA, "detected parity error"}
363 1.22 dyoung }, tmsg[] = {
364 1.22 dyoung {MMCR_HBTGTIRQSTA_T_DLYTO_IRQ_STA, "delayed txn timeout"}
365 1.22 dyoung , {MMCR_HBTGTIRQSTA_T_APER_IRQ_STA, "address parity"}
366 1.22 dyoung , {MMCR_HBTGTIRQSTA_T_DPER_IRQ_STA, "data parity"}
367 1.22 dyoung };
368 1.22 dyoung uint8_t pciarbsta;
369 1.22 dyoung uint16_t mstcmd, mstirq, tgtid, tgtirq;
370 1.22 dyoung uint32_t mstaddr;
371 1.22 dyoung uint16_t mstack = 0, tgtack = 0;
372 1.22 dyoung int fatal = 0, i, handled = 0;
373 1.22 dyoung struct elansc_softc *sc = arg;
374 1.22 dyoung
375 1.22 dyoung pciarbsta = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_PCIARBSTA);
376 1.22 dyoung mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQSTA);
377 1.22 dyoung mstaddr = bus_space_read_4(sc->sc_memt, sc->sc_memh, MMCR_MSTINTADD);
378 1.22 dyoung tgtirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQSTA);
379 1.22 dyoung
380 1.22 dyoung if ((pciarbsta & MMCR_PCIARBSTA_GNT_TO_STA) != 0) {
381 1.22 dyoung aprint_error_dev(sc->sc_pex,
382 1.22 dyoung "grant time-out, GNT%" __PRIuBITS "# asserted\n",
383 1.22 dyoung __SHIFTOUT(pciarbsta, MMCR_PCIARBSTA_GNT_TO_ID));
384 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_PCIARBSTA,
385 1.22 dyoung MMCR_PCIARBSTA_GNT_TO_STA);
386 1.22 dyoung handled = true;
387 1.22 dyoung }
388 1.22 dyoung
389 1.22 dyoung mstcmd = __SHIFTOUT(mstirq, MMCR_HBMSTIRQSTA_M_CMD_IRQ_ID);
390 1.22 dyoung
391 1.22 dyoung for (i = 0; i < __arraycount(mmsg); i++) {
392 1.22 dyoung if ((mstirq & mmsg[i].bit) == 0)
393 1.22 dyoung continue;
394 1.22 dyoung aprint_error_dev(sc->sc_pex,
395 1.22 dyoung "%s %08" PRIx32 " master %s\n",
396 1.22 dyoung cmd[mstcmd].string, mstaddr, mmsg[i].msg);
397 1.22 dyoung
398 1.22 dyoung mstack |= mmsg[i].bit;
399 1.22 dyoung if (!cmd[mstcmd].nonfatal)
400 1.22 dyoung fatal = true;
401 1.22 dyoung }
402 1.22 dyoung
403 1.22 dyoung tgtid = __SHIFTOUT(tgtirq, MMCR_HBTGTIRQSTA_T_IRQ_ID);
404 1.22 dyoung
405 1.22 dyoung for (i = 0; i < __arraycount(tmsg); i++) {
406 1.22 dyoung if ((tgtirq & tmsg[i].bit) == 0)
407 1.22 dyoung continue;
408 1.22 dyoung aprint_error_dev(sc->sc_pex, "%1x target %s\n", tgtid,
409 1.22 dyoung tmsg[i].msg);
410 1.22 dyoung tgtack |= tmsg[i].bit;
411 1.22 dyoung }
412 1.22 dyoung
413 1.22 dyoung /* acknowledge interrupts */
414 1.22 dyoung if (tgtack != 0) {
415 1.22 dyoung handled = true;
416 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQSTA,
417 1.22 dyoung tgtack);
418 1.22 dyoung }
419 1.22 dyoung if (mstack != 0) {
420 1.22 dyoung handled = true;
421 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQSTA,
422 1.22 dyoung mstack);
423 1.22 dyoung }
424 1.22 dyoung return fatal ? 0 : (handled ? 1 : 0);
425 1.22 dyoung }
426 1.22 dyoung
427 1.22 dyoung #define elansc_print_1(__dev, __sc, __reg) \
428 1.22 dyoung do { \
429 1.22 dyoung aprint_debug_dev(__dev, \
430 1.22 dyoung "%s: %s %02" PRIx8 "\n", __func__, #__reg, \
431 1.22 dyoung bus_space_read_1((__sc)->sc_memt, (__sc)->sc_memh, __reg)); \
432 1.22 dyoung } while (/*CONSTCOND*/0)
433 1.22 dyoung
434 1.22 dyoung static void
435 1.22 dyoung elansc_print_par(device_t dev, int i, uint32_t par)
436 1.22 dyoung {
437 1.22 dyoung uint32_t addr, sz, unit;
438 1.22 dyoung const char *tgtstr;
439 1.22 dyoung
440 1.22 dyoung switch (par & MMCR_PAR_TARGET) {
441 1.22 dyoung default:
442 1.22 dyoung case MMCR_PAR_TARGET_OFF:
443 1.22 dyoung tgtstr = "off";
444 1.22 dyoung break;
445 1.22 dyoung case MMCR_PAR_TARGET_GPIO:
446 1.22 dyoung tgtstr = "gpio";
447 1.22 dyoung break;
448 1.22 dyoung case MMCR_PAR_TARGET_GPMEM:
449 1.22 dyoung tgtstr = "gpmem";
450 1.22 dyoung break;
451 1.22 dyoung case MMCR_PAR_TARGET_PCI:
452 1.22 dyoung tgtstr = "pci";
453 1.22 dyoung break;
454 1.22 dyoung case MMCR_PAR_TARGET_BOOTCS:
455 1.22 dyoung tgtstr = "bootcs";
456 1.22 dyoung break;
457 1.22 dyoung case MMCR_PAR_TARGET_ROMCS1:
458 1.22 dyoung tgtstr = "romcs1";
459 1.22 dyoung break;
460 1.22 dyoung case MMCR_PAR_TARGET_ROMCS2:
461 1.22 dyoung tgtstr = "romcs2";
462 1.22 dyoung break;
463 1.22 dyoung case MMCR_PAR_TARGET_SDRAM:
464 1.22 dyoung tgtstr = "sdram";
465 1.22 dyoung break;
466 1.22 dyoung }
467 1.22 dyoung if ((par & MMCR_PAR_TARGET) == MMCR_PAR_TARGET_GPIO) {
468 1.22 dyoung unit = 1;
469 1.22 dyoung sz = __SHIFTOUT(par, MMCR_PAR_IO_SZ);
470 1.22 dyoung addr = __SHIFTOUT(par, MMCR_PAR_IO_ST_ADR);
471 1.22 dyoung } else if ((par & MMCR_PAR_PG_SZ) != 0) {
472 1.22 dyoung unit = 64 * 1024;
473 1.22 dyoung sz = __SHIFTOUT(par, MMCR_PAR_64KB_SZ);
474 1.22 dyoung addr = __SHIFTOUT(par, MMCR_PAR_64KB_ST_ADR);
475 1.22 dyoung } else {
476 1.22 dyoung unit = 4 * 1024;
477 1.22 dyoung sz = __SHIFTOUT(par, MMCR_PAR_4KB_SZ);
478 1.22 dyoung addr = __SHIFTOUT(par, MMCR_PAR_4KB_ST_ADR);
479 1.22 dyoung }
480 1.22 dyoung
481 1.22 dyoung aprint_debug_dev(dev,
482 1.22 dyoung "PAR[%d] %08" PRIx32 " tgt %s attr %1" __PRIxBITS
483 1.22 dyoung " start %08" PRIx32 " size %" PRIu32 "\n",
484 1.22 dyoung i, par, tgtstr, __SHIFTOUT(par, MMCR_PAR_ATTR),
485 1.22 dyoung addr * unit, (sz + 1) * unit);
486 1.22 dyoung }
487 1.22 dyoung
488 1.22 dyoung static void
489 1.22 dyoung elansc_print_all_par(device_t dev,
490 1.22 dyoung bus_space_tag_t memt, bus_space_handle_t memh)
491 1.22 dyoung {
492 1.22 dyoung int i;
493 1.22 dyoung uint32_t par;
494 1.22 dyoung
495 1.22 dyoung for (i = 0; i < 16; i++) {
496 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(i));
497 1.22 dyoung elansc_print_par(dev, i, par);
498 1.22 dyoung }
499 1.22 dyoung }
500 1.22 dyoung
501 1.22 dyoung static int
502 1.22 dyoung elansc_alloc_par(bus_space_tag_t memt, bus_space_handle_t memh)
503 1.22 dyoung {
504 1.22 dyoung int i;
505 1.22 dyoung uint32_t par;
506 1.22 dyoung
507 1.22 dyoung for (i = 0; i < 16; i++) {
508 1.22 dyoung
509 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(i));
510 1.22 dyoung
511 1.22 dyoung if ((par & MMCR_PAR_TARGET) == MMCR_PAR_TARGET_OFF)
512 1.22 dyoung break;
513 1.22 dyoung }
514 1.22 dyoung if (i == 16)
515 1.22 dyoung return -1;
516 1.22 dyoung return i;
517 1.22 dyoung }
518 1.22 dyoung
519 1.22 dyoung static void
520 1.22 dyoung elansc_disable_par(bus_space_tag_t memt, bus_space_handle_t memh, int idx)
521 1.22 dyoung {
522 1.22 dyoung uint32_t par;
523 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(idx));
524 1.22 dyoung par &= ~MMCR_PAR_TARGET;
525 1.22 dyoung par |= MMCR_PAR_TARGET_OFF;
526 1.22 dyoung bus_space_write_4(memt, memh, MMCR_PAR(idx), par);
527 1.22 dyoung }
528 1.22 dyoung
529 1.22 dyoung static int
530 1.22 dyoung elansc_protect_text(device_t self, struct elansc_softc *sc)
531 1.22 dyoung {
532 1.22 dyoung int i;
533 1.22 dyoung uint32_t par;
534 1.22 dyoung uint32_t protsize, unprotsize;
535 1.22 dyoung const uint32_t sfkb = 64 * 1024;
536 1.22 dyoung paddr_t start_pa, end_pa;
537 1.22 dyoung extern char kernel_text, etext;
538 1.22 dyoung bus_space_tag_t memt;
539 1.22 dyoung bus_space_handle_t memh;
540 1.22 dyoung
541 1.22 dyoung memt = sc->sc_memt;
542 1.22 dyoung memh = sc->sc_memh;
543 1.22 dyoung
544 1.22 dyoung if (!pmap_extract(pmap_kernel(), (vaddr_t)&kernel_text, &start_pa) ||
545 1.22 dyoung !pmap_extract(pmap_kernel(), (vaddr_t)&etext, &end_pa))
546 1.22 dyoung return -1;
547 1.22 dyoung
548 1.22 dyoung if (&etext - &kernel_text != end_pa - start_pa) {
549 1.22 dyoung aprint_error_dev(self, "kernel text may not be contiguous\n");
550 1.22 dyoung return -1;
551 1.22 dyoung }
552 1.22 dyoung
553 1.22 dyoung if ((i = elansc_alloc_par(memt, memh)) == -1) {
554 1.22 dyoung aprint_error_dev(self, "cannot allocate PAR\n");
555 1.22 dyoung return -1;
556 1.22 dyoung }
557 1.22 dyoung
558 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(i));
559 1.22 dyoung
560 1.22 dyoung aprint_debug_dev(self,
561 1.22 dyoung "protect kernel text at physical addresses %p - %p\n",
562 1.22 dyoung (void *)start_pa, (void *)end_pa);
563 1.22 dyoung
564 1.22 dyoung unprotsize = sfkb - start_pa % sfkb;
565 1.22 dyoung start_pa += unprotsize;
566 1.22 dyoung unprotsize += end_pa % sfkb;
567 1.22 dyoung end_pa -= end_pa % sfkb;
568 1.22 dyoung
569 1.22 dyoung aprint_debug_dev(self,
570 1.22 dyoung "actually protect kernel text at physical addresses %p - %p\n",
571 1.22 dyoung (void *)start_pa, (void *)end_pa);
572 1.22 dyoung
573 1.22 dyoung aprint_verbose_dev(self,
574 1.22 dyoung "%" PRIu32 " bytes of kernel text are unprotected\n", unprotsize);
575 1.22 dyoung
576 1.22 dyoung protsize = end_pa - start_pa;
577 1.22 dyoung
578 1.22 dyoung /* clear PG_SZ, attribute, target, size, address. */
579 1.22 dyoung par = MMCR_PAR_TARGET_SDRAM | MMCR_PAR_ATTR_NOWRITE | MMCR_PAR_PG_SZ;
580 1.22 dyoung par |= __SHIFTIN(protsize / sfkb - 1, MMCR_PAR_64KB_SZ);
581 1.22 dyoung par |= __SHIFTIN(start_pa / sfkb, MMCR_PAR_64KB_ST_ADR);
582 1.22 dyoung bus_space_write_4(memt, memh, MMCR_PAR(i), par);
583 1.22 dyoung return i;
584 1.22 dyoung }
585 1.22 dyoung
586 1.22 dyoung static int
587 1.23 dyoung elansc_protect_pg0(device_t self, struct elansc_softc *sc)
588 1.22 dyoung {
589 1.22 dyoung int i;
590 1.22 dyoung uint32_t par;
591 1.23 dyoung const paddr_t pg0_paddr = 0;
592 1.22 dyoung bus_space_tag_t memt;
593 1.22 dyoung bus_space_handle_t memh;
594 1.22 dyoung
595 1.22 dyoung memt = sc->sc_memt;
596 1.22 dyoung memh = sc->sc_memh;
597 1.22 dyoung
598 1.23 dyoung if (elansc_do_protect_pg0 == 0)
599 1.22 dyoung return -1;
600 1.22 dyoung
601 1.22 dyoung if ((i = elansc_alloc_par(memt, memh)) == -1)
602 1.22 dyoung return -1;
603 1.22 dyoung
604 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(i));
605 1.22 dyoung
606 1.23 dyoung aprint_debug_dev(self, "protect page 0\n");
607 1.22 dyoung
608 1.22 dyoung /* clear PG_SZ, attribute, target, size, address. */
609 1.22 dyoung par = MMCR_PAR_TARGET_SDRAM | MMCR_PAR_ATTR_NOWRITE;
610 1.23 dyoung par |= __SHIFTIN(PG0_PROT_SIZE / PAGE_SIZE - 1, MMCR_PAR_4KB_SZ);
611 1.23 dyoung par |= __SHIFTIN(pg0_paddr / PAGE_SIZE, MMCR_PAR_4KB_ST_ADR);
612 1.22 dyoung bus_space_write_4(memt, memh, MMCR_PAR(i), par);
613 1.22 dyoung return i;
614 1.22 dyoung }
615 1.22 dyoung
616 1.22 dyoung static void
617 1.22 dyoung elanpex_intr_ack(bus_space_tag_t memt, bus_space_handle_t memh)
618 1.22 dyoung {
619 1.22 dyoung bus_space_write_1(memt, memh, MMCR_PCIARBSTA,
620 1.22 dyoung MMCR_PCIARBSTA_GNT_TO_STA);
621 1.22 dyoung bus_space_write_2(memt, memh, MMCR_HBTGTIRQSTA, MMCR_TGTIRQ_ACT);
622 1.22 dyoung bus_space_write_2(memt, memh, MMCR_HBMSTIRQSTA, MMCR_MSTIRQ_ACT);
623 1.22 dyoung }
624 1.22 dyoung
625 1.17 dyoung static bool
626 1.17 dyoung elansc_suspend(device_t dev)
627 1.17 dyoung {
628 1.19 dyoung bool rc;
629 1.17 dyoung struct elansc_softc *sc = device_private(dev);
630 1.17 dyoung
631 1.19 dyoung mutex_enter(&sc->sc_mtx);
632 1.19 dyoung rc = ((sc->sc_smw.smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED);
633 1.19 dyoung mutex_exit(&sc->sc_mtx);
634 1.19 dyoung if (!rc)
635 1.17 dyoung aprint_debug_dev(dev, "watchdog enabled, suspend forbidden");
636 1.19 dyoung return rc;
637 1.17 dyoung }
638 1.17 dyoung
639 1.17 dyoung static bool
640 1.17 dyoung elansc_resume(device_t dev)
641 1.17 dyoung {
642 1.17 dyoung struct elansc_softc *sc = device_private(dev);
643 1.17 dyoung
644 1.19 dyoung mutex_enter(&sc->sc_mtx);
645 1.17 dyoung /* Set up the watchdog registers with some defaults. */
646 1.17 dyoung elansc_wdogctl_write(sc, WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
647 1.17 dyoung
648 1.17 dyoung /* ...and clear it. */
649 1.17 dyoung elansc_wdogctl_reset(sc);
650 1.19 dyoung mutex_exit(&sc->sc_mtx);
651 1.17 dyoung
652 1.17 dyoung return true;
653 1.17 dyoung }
654 1.17 dyoung
655 1.18 dyoung static int
656 1.18 dyoung elansc_detach(device_t self, int flags)
657 1.18 dyoung {
658 1.19 dyoung int rc;
659 1.18 dyoung struct elansc_softc *sc = device_private(self);
660 1.18 dyoung
661 1.19 dyoung if ((rc = config_detach_children(self, flags)) != 0)
662 1.19 dyoung return rc;
663 1.19 dyoung
664 1.18 dyoung pmf_device_deregister(self);
665 1.18 dyoung
666 1.19 dyoung if ((rc = sysmon_wdog_unregister(&sc->sc_smw)) != 0) {
667 1.19 dyoung if (rc == ERESTART)
668 1.19 dyoung rc = EINTR;
669 1.19 dyoung return rc;
670 1.19 dyoung }
671 1.19 dyoung
672 1.19 dyoung mutex_enter(&sc->sc_mtx);
673 1.18 dyoung
674 1.18 dyoung /* Set up the watchdog registers with some defaults. */
675 1.18 dyoung elansc_wdogctl_write(sc, WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
676 1.18 dyoung
677 1.18 dyoung /* ...and clear it. */
678 1.18 dyoung elansc_wdogctl_reset(sc);
679 1.18 dyoung
680 1.18 dyoung bus_space_unmap(sc->sc_memt, sc->sc_memh, PAGE_SIZE);
681 1.19 dyoung
682 1.19 dyoung mutex_exit(&sc->sc_mtx);
683 1.19 dyoung mutex_destroy(&sc->sc_mtx);
684 1.18 dyoung return 0;
685 1.18 dyoung }
686 1.18 dyoung
687 1.22 dyoung static void *
688 1.22 dyoung elansc_intr_establish(device_t dev, int (*handler)(void *), void *arg)
689 1.22 dyoung {
690 1.22 dyoung struct pic *pic;
691 1.22 dyoung void *ih;
692 1.22 dyoung
693 1.22 dyoung if ((pic = intr_findpic(ELAN_IRQ)) == NULL) {
694 1.22 dyoung aprint_error_dev(dev, "PIC for irq %d not found\n",
695 1.22 dyoung ELAN_IRQ);
696 1.22 dyoung return NULL;
697 1.22 dyoung } else if ((ih = intr_establish(ELAN_IRQ, pic, ELAN_IRQ,
698 1.22 dyoung IST_LEVEL, IPL_HIGH, handler, arg)) == NULL) {
699 1.22 dyoung aprint_error_dev(dev,
700 1.22 dyoung "could not establish interrupt\n");
701 1.22 dyoung return NULL;
702 1.22 dyoung }
703 1.22 dyoung aprint_verbose_dev(dev, "interrupting at irq %d\n", ELAN_IRQ);
704 1.22 dyoung return ih;
705 1.22 dyoung }
706 1.22 dyoung
707 1.22 dyoung static bool
708 1.22 dyoung elanpex_resume(device_t self)
709 1.22 dyoung {
710 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
711 1.22 dyoung
712 1.22 dyoung elanpex_intr_establish(self, sc);
713 1.22 dyoung return sc->sc_eih != NULL;
714 1.22 dyoung }
715 1.22 dyoung
716 1.22 dyoung static bool
717 1.22 dyoung elanpex_suspend(device_t self)
718 1.22 dyoung {
719 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
720 1.22 dyoung
721 1.22 dyoung elanpex_intr_disestablish(sc);
722 1.22 dyoung
723 1.22 dyoung return true;
724 1.22 dyoung }
725 1.22 dyoung
726 1.22 dyoung static bool
727 1.22 dyoung elanpar_resume(device_t self)
728 1.22 dyoung {
729 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
730 1.22 dyoung
731 1.22 dyoung elanpar_intr_establish(self, sc);
732 1.22 dyoung return sc->sc_pih != NULL;
733 1.22 dyoung }
734 1.22 dyoung
735 1.22 dyoung static bool
736 1.22 dyoung elanpar_suspend(device_t self)
737 1.22 dyoung {
738 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
739 1.22 dyoung
740 1.22 dyoung elanpar_intr_disestablish(sc->sc_pih);
741 1.22 dyoung
742 1.22 dyoung return true;
743 1.22 dyoung }
744 1.22 dyoung
745 1.22 dyoung static void
746 1.22 dyoung elanpex_intr_establish(device_t self, struct elansc_softc *sc)
747 1.22 dyoung {
748 1.22 dyoung uint8_t sysarbctl;
749 1.22 dyoung uint16_t pcihostmap, mstirq, tgtirq;
750 1.22 dyoung
751 1.22 dyoung pcihostmap = bus_space_read_2(sc->sc_memt, sc->sc_memh,
752 1.22 dyoung MMCR_PCIHOSTMAP);
753 1.22 dyoung /* Priority P2 (Master PIC IR1) */
754 1.22 dyoung pcihostmap &= ~MMCR_PCIHOSTMAP_PCI_IRQ_MAP;
755 1.22 dyoung pcihostmap |= __SHIFTIN(__BIT(ELAN_IRQ), MMCR_PCIHOSTMAP_PCI_IRQ_MAP);
756 1.22 dyoung if (elansc_pcinmi)
757 1.22 dyoung pcihostmap |= MMCR_PCIHOSTMAP_PCI_NMI_ENB;
758 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_PCIHOSTMAP,
759 1.22 dyoung pcihostmap);
760 1.22 dyoung
761 1.22 dyoung elanpex_intr_ack(sc->sc_memt, sc->sc_memh);
762 1.22 dyoung
763 1.22 dyoung sysarbctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL);
764 1.22 dyoung mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL);
765 1.22 dyoung tgtirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL);
766 1.22 dyoung
767 1.22 dyoung sysarbctl |= MMCR_SYSARBCTL_GNT_TO_INT_ENB;
768 1.22 dyoung
769 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_ENB;
770 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_TABRT_IRQ_ENB;
771 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_MABRT_IRQ_ENB;
772 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_SERR_IRQ_ENB;
773 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RPER_IRQ_ENB;
774 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_DPER_IRQ_ENB;
775 1.22 dyoung
776 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DLYTO_IRQ_ENB;
777 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_APER_IRQ_ENB;
778 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DPER_IRQ_ENB;
779 1.22 dyoung
780 1.22 dyoung if (elansc_pcinmi) {
781 1.22 dyoung sc->sc_eih = nmi_establish(elanpex_intr, sc);
782 1.22 dyoung
783 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_SEL;
784 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_TABRT_IRQ_SEL;
785 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_MABRT_IRQ_SEL;
786 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_SERR_IRQ_SEL;
787 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RPER_IRQ_SEL;
788 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_DPER_IRQ_SEL;
789 1.22 dyoung
790 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DLYTO_IRQ_SEL;
791 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_APER_IRQ_SEL;
792 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DPER_IRQ_SEL;
793 1.22 dyoung } else
794 1.22 dyoung sc->sc_eih = elansc_intr_establish(self, elanpex_intr, sc);
795 1.22 dyoung
796 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL, sysarbctl);
797 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL, mstirq);
798 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL, tgtirq);
799 1.22 dyoung }
800 1.22 dyoung
801 1.22 dyoung static void
802 1.22 dyoung elanpex_attach(device_t parent, device_t self, void *aux)
803 1.22 dyoung {
804 1.22 dyoung struct elansc_softc *sc = device_private(parent);
805 1.22 dyoung
806 1.22 dyoung aprint_naive(": PCI Exceptions\n");
807 1.22 dyoung aprint_normal(": AMD Elan SC520 PCI Exceptions\n");
808 1.22 dyoung
809 1.22 dyoung elanpex_intr_establish(self, sc);
810 1.22 dyoung
811 1.22 dyoung aprint_debug_dev(self, "HBMSTIRQCTL %04x\n",
812 1.22 dyoung bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL));
813 1.22 dyoung
814 1.22 dyoung aprint_debug_dev(self, "HBTGTIRQCTL %04x\n",
815 1.22 dyoung bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL));
816 1.22 dyoung
817 1.22 dyoung aprint_debug_dev(self, "PCIHOSTMAP %04x\n",
818 1.22 dyoung bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_PCIHOSTMAP));
819 1.22 dyoung
820 1.22 dyoung pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG,
821 1.22 dyoung pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG) |
822 1.22 dyoung PCI_COMMAND_PARITY_ENABLE|PCI_COMMAND_SERR_ENABLE);
823 1.22 dyoung
824 1.22 dyoung if (!pmf_device_register(self, elanpex_suspend, elanpex_resume))
825 1.22 dyoung aprint_error_dev(self, "could not establish power hooks\n");
826 1.22 dyoung }
827 1.22 dyoung
828 1.22 dyoung static void
829 1.22 dyoung elanpex_intr_disestablish(struct elansc_softc *sc)
830 1.22 dyoung {
831 1.22 dyoung uint8_t sysarbctl;
832 1.22 dyoung uint16_t pcihostmap, mstirq, tgtirq;
833 1.22 dyoung
834 1.22 dyoung sysarbctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL);
835 1.22 dyoung sysarbctl &= ~MMCR_SYSARBCTL_GNT_TO_INT_ENB;
836 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL, sysarbctl);
837 1.22 dyoung
838 1.22 dyoung mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL);
839 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_ENB;
840 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_TABRT_IRQ_ENB;
841 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_MABRT_IRQ_ENB;
842 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_SERR_IRQ_ENB;
843 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_RPER_IRQ_ENB;
844 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_DPER_IRQ_ENB;
845 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL, mstirq);
846 1.22 dyoung
847 1.22 dyoung tgtirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL);
848 1.22 dyoung tgtirq &= ~MMCR_HBTGTIRQCTL_T_DLYTO_IRQ_ENB;
849 1.22 dyoung tgtirq &= ~MMCR_HBTGTIRQCTL_T_APER_IRQ_ENB;
850 1.22 dyoung tgtirq &= ~MMCR_HBTGTIRQCTL_T_DPER_IRQ_ENB;
851 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL, tgtirq);
852 1.22 dyoung
853 1.22 dyoung pcihostmap = bus_space_read_2(sc->sc_memt, sc->sc_memh,
854 1.22 dyoung MMCR_PCIHOSTMAP);
855 1.22 dyoung /* Priority P2 (Master PIC IR1) */
856 1.22 dyoung pcihostmap &= ~MMCR_PCIHOSTMAP_PCI_IRQ_MAP;
857 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_PCIHOSTMAP,
858 1.22 dyoung pcihostmap);
859 1.22 dyoung
860 1.22 dyoung if (elansc_pcinmi)
861 1.22 dyoung nmi_disestablish(sc->sc_eih);
862 1.22 dyoung else
863 1.22 dyoung intr_disestablish(sc->sc_eih);
864 1.22 dyoung sc->sc_eih = NULL;
865 1.22 dyoung
866 1.22 dyoung }
867 1.22 dyoung
868 1.22 dyoung static int
869 1.22 dyoung elanpex_detach(device_t self, int flags)
870 1.22 dyoung {
871 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
872 1.22 dyoung
873 1.22 dyoung pmf_device_deregister(self);
874 1.22 dyoung elanpex_intr_disestablish(sc);
875 1.22 dyoung
876 1.22 dyoung return 0;
877 1.22 dyoung }
878 1.22 dyoung
879 1.22 dyoung static void
880 1.22 dyoung elanpar_intr_establish(device_t self, struct elansc_softc *sc)
881 1.22 dyoung {
882 1.22 dyoung uint8_t adddecctl, wpvmap;
883 1.22 dyoung
884 1.22 dyoung wpvmap = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP);
885 1.22 dyoung wpvmap &= ~MMCR_WPVMAP_INT_MAP;
886 1.22 dyoung if (elansc_wpvnmi)
887 1.22 dyoung wpvmap |= MMCR_WPVMAP_INT_NMI;
888 1.22 dyoung else
889 1.22 dyoung wpvmap |= __SHIFTIN(__BIT(ELAN_IRQ), MMCR_WPVMAP_INT_MAP);
890 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP, wpvmap);
891 1.22 dyoung
892 1.22 dyoung /* clear interrupt status */
893 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA,
894 1.22 dyoung MMCR_WPVSTA_WPV_STA);
895 1.22 dyoung
896 1.22 dyoung /* establish interrupt */
897 1.22 dyoung if (elansc_wpvnmi)
898 1.22 dyoung sc->sc_pih = nmi_establish(elanpar_intr, sc);
899 1.22 dyoung else
900 1.22 dyoung sc->sc_pih = elansc_intr_establish(self, elanpar_intr, sc);
901 1.22 dyoung
902 1.22 dyoung adddecctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL);
903 1.22 dyoung adddecctl |= MMCR_ADDDECCTL_WPV_INT_ENB;
904 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL, adddecctl);
905 1.22 dyoung }
906 1.22 dyoung
907 1.22 dyoung static void
908 1.22 dyoung elanpar_attach(device_t parent, device_t self, void *aux)
909 1.22 dyoung {
910 1.22 dyoung struct elansc_softc *sc = device_private(parent);
911 1.22 dyoung
912 1.22 dyoung aprint_naive(": Programmable Address Regions\n");
913 1.22 dyoung aprint_normal(": AMD Elan SC520 Programmable Address Regions\n");
914 1.22 dyoung
915 1.22 dyoung elansc_print_1(self, sc, MMCR_WPVMAP);
916 1.22 dyoung elansc_print_all_par(self, sc->sc_memt, sc->sc_memh);
917 1.22 dyoung
918 1.23 dyoung sc->sc_pg0par = elansc_protect_pg0(self, sc);
919 1.22 dyoung sc->sc_textpar = elansc_protect_text(self, sc);
920 1.22 dyoung
921 1.22 dyoung elanpar_intr_establish(self, sc);
922 1.22 dyoung
923 1.22 dyoung elansc_print_1(self, sc, MMCR_ADDDECCTL);
924 1.22 dyoung
925 1.22 dyoung if (!pmf_device_register(self, elanpar_suspend, elanpar_resume))
926 1.22 dyoung aprint_error_dev(self, "could not establish power hooks\n");
927 1.22 dyoung }
928 1.22 dyoung
929 1.22 dyoung static void
930 1.22 dyoung elanpar_intr_disestablish(struct elansc_softc *sc)
931 1.22 dyoung {
932 1.22 dyoung uint8_t adddecctl, wpvmap;
933 1.22 dyoung
934 1.22 dyoung /* disable interrupt, acknowledge it, disestablish our
935 1.22 dyoung * handler, unmap it
936 1.22 dyoung */
937 1.22 dyoung adddecctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL);
938 1.22 dyoung adddecctl &= ~MMCR_ADDDECCTL_WPV_INT_ENB;
939 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL, adddecctl);
940 1.22 dyoung
941 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA,
942 1.22 dyoung MMCR_WPVSTA_WPV_STA);
943 1.22 dyoung
944 1.22 dyoung if (elansc_wpvnmi)
945 1.22 dyoung nmi_disestablish(sc->sc_pih);
946 1.22 dyoung else
947 1.22 dyoung intr_disestablish(sc->sc_pih);
948 1.22 dyoung sc->sc_pih = NULL;
949 1.22 dyoung
950 1.22 dyoung wpvmap = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP);
951 1.22 dyoung wpvmap &= ~MMCR_WPVMAP_INT_MAP;
952 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP, wpvmap);
953 1.22 dyoung }
954 1.22 dyoung
955 1.22 dyoung static int
956 1.22 dyoung elanpar_detach(device_t self, int flags)
957 1.22 dyoung {
958 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
959 1.22 dyoung
960 1.22 dyoung pmf_device_deregister(self);
961 1.22 dyoung
962 1.22 dyoung if (sc->sc_textpar != -1) {
963 1.22 dyoung elansc_disable_par(sc->sc_memt, sc->sc_memh, sc->sc_textpar);
964 1.22 dyoung sc->sc_textpar = -1;
965 1.22 dyoung }
966 1.23 dyoung if (sc->sc_pg0par != -1) {
967 1.23 dyoung elansc_disable_par(sc->sc_memt, sc->sc_memh, sc->sc_pg0par);
968 1.23 dyoung sc->sc_pg0par = -1;
969 1.22 dyoung }
970 1.22 dyoung
971 1.22 dyoung elanpar_intr_disestablish(sc);
972 1.22 dyoung
973 1.22 dyoung return 0;
974 1.22 dyoung }
975 1.22 dyoung
976 1.1 thorpej static void
977 1.21 dyoung elansc_attach(device_t parent, device_t self, void *aux)
978 1.1 thorpej {
979 1.17 dyoung struct elansc_softc *sc = device_private(self);
980 1.1 thorpej struct pci_attach_args *pa = aux;
981 1.1 thorpej uint16_t rev;
982 1.22 dyoung uint8_t cpuctl, picicr, ressta;
983 1.10 drochner #if NGPIO > 0
984 1.10 drochner struct gpiobus_attach_args gba;
985 1.22 dyoung int pin, reg, shift;
986 1.9 riz uint16_t data;
987 1.10 drochner #endif
988 1.22 dyoung sc->sc_pc = pa->pa_pc;
989 1.22 dyoung sc->sc_tag = pa->pa_tag;
990 1.1 thorpej
991 1.14 thorpej aprint_naive(": System Controller\n");
992 1.14 thorpej aprint_normal(": AMD Elan SC520 System Controller\n");
993 1.1 thorpej
994 1.1 thorpej sc->sc_memt = pa->pa_memt;
995 1.5 thorpej if (bus_space_map(sc->sc_memt, MMCR_BASE_ADDR, PAGE_SIZE, 0,
996 1.1 thorpej &sc->sc_memh) != 0) {
997 1.21 dyoung aprint_error_dev(&sc->sc_dev, "unable to map registers\n");
998 1.1 thorpej return;
999 1.1 thorpej }
1000 1.1 thorpej
1001 1.19 dyoung mutex_init(&sc->sc_mtx, MUTEX_DEFAULT, IPL_HIGH);
1002 1.19 dyoung
1003 1.1 thorpej rev = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_REVID);
1004 1.1 thorpej cpuctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_CPUCTL);
1005 1.1 thorpej
1006 1.21 dyoung aprint_normal_dev(&sc->sc_dev,
1007 1.21 dyoung "product %d stepping %d.%d, CPU clock %s\n",
1008 1.1 thorpej (rev & REVID_PRODID) >> REVID_PRODID_SHIFT,
1009 1.1 thorpej (rev & REVID_MAJSTEP) >> REVID_MAJSTEP_SHIFT,
1010 1.1 thorpej (rev & REVID_MINSTEP),
1011 1.1 thorpej elansc_speeds[cpuctl & CPUCTL_CPU_CLK_SPD_MASK]);
1012 1.1 thorpej
1013 1.1 thorpej /*
1014 1.1 thorpej * SC520 rev A1 has a bug that affects the watchdog timer. If
1015 1.1 thorpej * the GP bus echo mode is enabled, writing to the watchdog control
1016 1.1 thorpej * register is blocked.
1017 1.1 thorpej *
1018 1.1 thorpej * The BIOS in some systems (e.g. the Soekris net4501) enables
1019 1.1 thorpej * GP bus echo for various reasons, so we need to switch it off
1020 1.1 thorpej * when we talk to the watchdog timer.
1021 1.1 thorpej *
1022 1.1 thorpej * XXX The step 1.1 (B1?) in my Soekris net4501 also has this
1023 1.1 thorpej * XXX problem, so we'll just enable it for all Elan SC520s
1024 1.8 keihan * XXX for now. --thorpej (at) NetBSD.org
1025 1.1 thorpej */
1026 1.1 thorpej if (1 || rev == ((PRODID_ELAN_SC520 << REVID_PRODID_SHIFT) |
1027 1.1 thorpej (0 << REVID_MAJSTEP_SHIFT) | (1)))
1028 1.1 thorpej sc->sc_echobug = 1;
1029 1.1 thorpej
1030 1.1 thorpej /*
1031 1.1 thorpej * Determine cause of the last reset, and issue a warning if it
1032 1.1 thorpej * was due to watchdog expiry.
1033 1.1 thorpej */
1034 1.1 thorpej ressta = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_RESSTA);
1035 1.1 thorpej if (ressta & RESSTA_WDT_RST_DET)
1036 1.21 dyoung aprint_error_dev(&sc->sc_dev,
1037 1.21 dyoung "WARNING: LAST RESET DUE TO WATCHDOG EXPIRATION!\n");
1038 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_RESSTA, ressta);
1039 1.1 thorpej
1040 1.22 dyoung elansc_print_1(self, sc, MMCR_MPICMODE);
1041 1.22 dyoung elansc_print_1(self, sc, MMCR_SL1PICMODE);
1042 1.22 dyoung elansc_print_1(self, sc, MMCR_SL2PICMODE);
1043 1.22 dyoung elansc_print_1(self, sc, MMCR_PICICR);
1044 1.22 dyoung
1045 1.22 dyoung sc->sc_mpicmode = bus_space_read_1(sc->sc_memt, sc->sc_memh,
1046 1.22 dyoung MMCR_MPICMODE);
1047 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_MPICMODE,
1048 1.22 dyoung sc->sc_mpicmode | __BIT(ELAN_IRQ));
1049 1.22 dyoung
1050 1.22 dyoung sc->sc_picicr = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_PICICR);
1051 1.22 dyoung picicr = sc->sc_picicr;
1052 1.22 dyoung if (elansc_pcinmi || elansc_wpvnmi)
1053 1.22 dyoung picicr |= MMCR_PICICR_NMI_ENB;
1054 1.22 dyoung #if 0
1055 1.22 dyoung /* PC/AT compatibility */
1056 1.22 dyoung picicr |= MMCR_PICICR_S1_GINT_MODE|MMCR_PICICR_M_GINT_MODE;
1057 1.22 dyoung #endif
1058 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_PICICR, picicr);
1059 1.22 dyoung
1060 1.22 dyoung elansc_print_1(self, sc, MMCR_PICICR);
1061 1.22 dyoung elansc_print_1(self, sc, MMCR_MPICMODE);
1062 1.22 dyoung
1063 1.22 dyoung mutex_enter(&sc->sc_mtx);
1064 1.1 thorpej /* Set up the watchdog registers with some defaults. */
1065 1.1 thorpej elansc_wdogctl_write(sc, WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
1066 1.1 thorpej
1067 1.1 thorpej /* ...and clear it. */
1068 1.1 thorpej elansc_wdogctl_reset(sc);
1069 1.22 dyoung mutex_exit(&sc->sc_mtx);
1070 1.9 riz
1071 1.22 dyoung if (!pmf_device_register(self, elansc_suspend, elansc_resume))
1072 1.22 dyoung aprint_error_dev(self, "could not establish power hooks\n");
1073 1.17 dyoung
1074 1.10 drochner #if NGPIO > 0
1075 1.9 riz /* Initialize GPIO pins array */
1076 1.9 riz for (pin = 0; pin < ELANSC_PIO_NPINS; pin++) {
1077 1.9 riz sc->sc_gpio_pins[pin].pin_num = pin;
1078 1.9 riz sc->sc_gpio_pins[pin].pin_caps = GPIO_PIN_INPUT |
1079 1.9 riz GPIO_PIN_OUTPUT;
1080 1.9 riz
1081 1.9 riz /* Read initial state */
1082 1.9 riz reg = (pin < 16 ? MMCR_PIODIR15_0 : MMCR_PIODIR31_16);
1083 1.9 riz shift = pin % 16;
1084 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1085 1.9 riz if ((data & (1 << shift)) == 0)
1086 1.9 riz sc->sc_gpio_pins[pin].pin_flags = GPIO_PIN_INPUT;
1087 1.9 riz else
1088 1.9 riz sc->sc_gpio_pins[pin].pin_flags = GPIO_PIN_OUTPUT;
1089 1.9 riz if (elansc_gpio_pin_read(sc, pin) == 0)
1090 1.9 riz sc->sc_gpio_pins[pin].pin_state = GPIO_PIN_LOW;
1091 1.9 riz else
1092 1.9 riz sc->sc_gpio_pins[pin].pin_state = GPIO_PIN_HIGH;
1093 1.9 riz }
1094 1.9 riz
1095 1.9 riz /* Create controller tag */
1096 1.9 riz sc->sc_gpio_gc.gp_cookie = sc;
1097 1.9 riz sc->sc_gpio_gc.gp_pin_read = elansc_gpio_pin_read;
1098 1.9 riz sc->sc_gpio_gc.gp_pin_write = elansc_gpio_pin_write;
1099 1.9 riz sc->sc_gpio_gc.gp_pin_ctl = elansc_gpio_pin_ctl;
1100 1.9 riz
1101 1.9 riz gba.gba_gc = &sc->sc_gpio_gc;
1102 1.9 riz gba.gba_pins = sc->sc_gpio_pins;
1103 1.9 riz gba.gba_npins = ELANSC_PIO_NPINS;
1104 1.9 riz
1105 1.22 dyoung sc->sc_par = config_found_ia(&sc->sc_dev, "elanparbus", NULL, NULL);
1106 1.22 dyoung sc->sc_pex = config_found_ia(&sc->sc_dev, "elanpexbus", NULL, NULL);
1107 1.9 riz /* Attach GPIO framework */
1108 1.10 drochner config_found_ia(&sc->sc_dev, "gpiobus", &gba, gpiobus_print);
1109 1.10 drochner #endif /* NGPIO */
1110 1.19 dyoung
1111 1.19 dyoung /*
1112 1.19 dyoung * Hook up the watchdog timer.
1113 1.19 dyoung */
1114 1.21 dyoung sc->sc_smw.smw_name = device_xname(&sc->sc_dev);
1115 1.19 dyoung sc->sc_smw.smw_cookie = sc;
1116 1.19 dyoung sc->sc_smw.smw_setmode = elansc_wdog_setmode;
1117 1.19 dyoung sc->sc_smw.smw_tickle = elansc_wdog_tickle;
1118 1.19 dyoung sc->sc_smw.smw_period = 32; /* actually 32.54 */
1119 1.21 dyoung if (sysmon_wdog_register(&sc->sc_smw) != 0) {
1120 1.21 dyoung aprint_error_dev(&sc->sc_dev,
1121 1.21 dyoung "unable to register watchdog with sysmon\n");
1122 1.21 dyoung }
1123 1.1 thorpej }
1124 1.1 thorpej
1125 1.22 dyoung static int
1126 1.22 dyoung elanpex_match(device_t parent, struct cfdata *match, void *aux)
1127 1.22 dyoung {
1128 1.22 dyoung struct elansc_softc *sc = device_private(parent);
1129 1.22 dyoung
1130 1.22 dyoung return sc->sc_pex == NULL;
1131 1.22 dyoung }
1132 1.22 dyoung
1133 1.22 dyoung static int
1134 1.22 dyoung elanpar_match(device_t parent, struct cfdata *match, void *aux)
1135 1.22 dyoung {
1136 1.22 dyoung struct elansc_softc *sc = device_private(parent);
1137 1.22 dyoung
1138 1.22 dyoung return sc->sc_par == NULL;
1139 1.22 dyoung }
1140 1.22 dyoung
1141 1.22 dyoung CFATTACH_DECL_NEW(elanpar, sizeof(struct device),
1142 1.22 dyoung elanpar_match, elanpar_attach, elanpar_detach, NULL);
1143 1.22 dyoung
1144 1.22 dyoung CFATTACH_DECL_NEW(elanpex, sizeof(struct device),
1145 1.22 dyoung elanpex_match, elanpex_attach, elanpex_detach, NULL);
1146 1.22 dyoung
1147 1.19 dyoung CFATTACH_DECL2(elansc, sizeof(struct elansc_softc),
1148 1.19 dyoung elansc_match, elansc_attach, elansc_detach, NULL, NULL,
1149 1.19 dyoung elansc_childdetached);
1150 1.9 riz
1151 1.10 drochner #if NGPIO > 0
1152 1.9 riz static int
1153 1.9 riz elansc_gpio_pin_read(void *arg, int pin)
1154 1.9 riz {
1155 1.9 riz struct elansc_softc *sc = arg;
1156 1.9 riz int reg, shift;
1157 1.13 perry uint16_t data;
1158 1.9 riz
1159 1.9 riz reg = (pin < 16 ? MMCR_PIODATA15_0 : MMCR_PIODATA31_16);
1160 1.9 riz shift = pin % 16;
1161 1.19 dyoung
1162 1.19 dyoung mutex_enter(&sc->sc_mtx);
1163 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1164 1.19 dyoung mutex_exit(&sc->sc_mtx);
1165 1.9 riz
1166 1.9 riz return ((data >> shift) & 0x1);
1167 1.9 riz }
1168 1.9 riz
1169 1.9 riz static void
1170 1.9 riz elansc_gpio_pin_write(void *arg, int pin, int value)
1171 1.9 riz {
1172 1.9 riz struct elansc_softc *sc = arg;
1173 1.9 riz int reg, shift;
1174 1.13 perry uint16_t data;
1175 1.9 riz
1176 1.9 riz reg = (pin < 16 ? MMCR_PIODATA15_0 : MMCR_PIODATA31_16);
1177 1.9 riz shift = pin % 16;
1178 1.19 dyoung
1179 1.19 dyoung mutex_enter(&sc->sc_mtx);
1180 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1181 1.9 riz if (value == 0)
1182 1.9 riz data &= ~(1 << shift);
1183 1.9 riz else if (value == 1)
1184 1.9 riz data |= (1 << shift);
1185 1.9 riz
1186 1.9 riz bus_space_write_2(sc->sc_memt, sc->sc_memh, reg, data);
1187 1.19 dyoung mutex_exit(&sc->sc_mtx);
1188 1.9 riz }
1189 1.9 riz
1190 1.9 riz static void
1191 1.9 riz elansc_gpio_pin_ctl(void *arg, int pin, int flags)
1192 1.9 riz {
1193 1.9 riz struct elansc_softc *sc = arg;
1194 1.9 riz int reg, shift;
1195 1.13 perry uint16_t data;
1196 1.9 riz
1197 1.9 riz reg = (pin < 16 ? MMCR_PIODIR15_0 : MMCR_PIODIR31_16);
1198 1.9 riz shift = pin % 16;
1199 1.19 dyoung mutex_enter(&sc->sc_mtx);
1200 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1201 1.9 riz if (flags & GPIO_PIN_INPUT)
1202 1.9 riz data &= ~(1 << shift);
1203 1.9 riz if (flags & GPIO_PIN_OUTPUT)
1204 1.9 riz data |= (1 << shift);
1205 1.9 riz
1206 1.9 riz bus_space_write_2(sc->sc_memt, sc->sc_memh, reg, data);
1207 1.19 dyoung mutex_exit(&sc->sc_mtx);
1208 1.9 riz }
1209 1.10 drochner #endif /* NGPIO */
1210