elan520.c revision 1.40 1 1.40 dyoung /* $NetBSD: elan520.c,v 1.40 2009/04/08 23:53:10 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 *
19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej /*
33 1.1 thorpej * Device driver for the AMD Elan SC520 System Controller. This attaches
34 1.1 thorpej * where the "pchb" driver might normally attach, and provides support for
35 1.1 thorpej * extra features on the SC520, such as the watchdog timer and GPIO.
36 1.1 thorpej *
37 1.1 thorpej * Information about the GP bus echo bug work-around is from code posted
38 1.1 thorpej * to the "soekris-tech" mailing list by Jasper Wallace.
39 1.1 thorpej */
40 1.1 thorpej
41 1.1 thorpej #include <sys/cdefs.h>
42 1.1 thorpej
43 1.40 dyoung __KERNEL_RCSID(0, "$NetBSD: elan520.c,v 1.40 2009/04/08 23:53:10 dyoung Exp $");
44 1.1 thorpej
45 1.1 thorpej #include <sys/param.h>
46 1.1 thorpej #include <sys/systm.h>
47 1.22 dyoung #include <sys/time.h>
48 1.1 thorpej #include <sys/device.h>
49 1.19 dyoung #include <sys/gpio.h>
50 1.19 dyoung #include <sys/mutex.h>
51 1.1 thorpej #include <sys/wdog.h>
52 1.35 dyoung #include <sys/reboot.h>
53 1.1 thorpej
54 1.5 thorpej #include <uvm/uvm_extern.h>
55 1.5 thorpej
56 1.1 thorpej #include <machine/bus.h>
57 1.1 thorpej
58 1.38 yamt #include <x86/nmi.h>
59 1.38 yamt
60 1.1 thorpej #include <dev/pci/pcivar.h>
61 1.1 thorpej
62 1.1 thorpej #include <dev/pci/pcidevs.h>
63 1.1 thorpej
64 1.10 drochner #include "gpio.h"
65 1.10 drochner #if NGPIO > 0
66 1.9 riz #include <dev/gpio/gpiovar.h>
67 1.10 drochner #endif
68 1.9 riz
69 1.1 thorpej #include <arch/i386/pci/elan520reg.h>
70 1.1 thorpej
71 1.1 thorpej #include <dev/sysmon/sysmonvar.h>
72 1.1 thorpej
73 1.22 dyoung #define ELAN_IRQ 1
74 1.23 dyoung #define PG0_PROT_SIZE PAGE_SIZE
75 1.22 dyoung
76 1.1 thorpej struct elansc_softc {
77 1.29 dyoung device_t sc_dev;
78 1.36 dyoung device_t sc_gpio;
79 1.22 dyoung device_t sc_par;
80 1.22 dyoung device_t sc_pex;
81 1.31 dyoung device_t sc_pci;
82 1.22 dyoung
83 1.40 dyoung pci_chipset_tag_t sc_pc;
84 1.40 dyoung pcitag_t sc_tag;
85 1.40 dyoung bus_dma_tag_t sc_dmat;
86 1.40 dyoung bus_dma_tag_t sc_dmat64;
87 1.40 dyoung bus_space_tag_t sc_iot;
88 1.40 dyoung bus_space_tag_t sc_memt;
89 1.40 dyoung bus_space_handle_t sc_memh;
90 1.40 dyoung int sc_pciflags;
91 1.40 dyoung
92 1.1 thorpej int sc_echobug;
93 1.1 thorpej
94 1.19 dyoung kmutex_t sc_mtx;
95 1.19 dyoung
96 1.1 thorpej struct sysmon_wdog sc_smw;
97 1.22 dyoung void *sc_eih;
98 1.22 dyoung void *sc_pih;
99 1.22 dyoung void *sc_sh;
100 1.22 dyoung uint8_t sc_mpicmode;
101 1.22 dyoung uint8_t sc_picicr;
102 1.23 dyoung int sc_pg0par;
103 1.27 dyoung int sc_textpar[3];
104 1.11 riz #if NGPIO > 0
105 1.9 riz /* GPIO interface */
106 1.9 riz struct gpio_chipset_tag sc_gpio_gc;
107 1.9 riz gpio_pin_t sc_gpio_pins[ELANSC_PIO_NPINS];
108 1.11 riz #endif
109 1.1 thorpej };
110 1.1 thorpej
111 1.31 dyoung static bool elansc_attached = false;
112 1.22 dyoung int elansc_wpvnmi = 1;
113 1.22 dyoung int elansc_pcinmi = 1;
114 1.23 dyoung int elansc_do_protect_pg0 = 1;
115 1.22 dyoung
116 1.10 drochner #if NGPIO > 0
117 1.9 riz static int elansc_gpio_pin_read(void *, int);
118 1.9 riz static void elansc_gpio_pin_write(void *, int, int);
119 1.9 riz static void elansc_gpio_pin_ctl(void *, int, int);
120 1.10 drochner #endif
121 1.9 riz
122 1.22 dyoung static void elansc_print_par(device_t, int, uint32_t);
123 1.31 dyoung
124 1.22 dyoung static void elanpar_intr_establish(device_t, struct elansc_softc *);
125 1.22 dyoung static void elanpar_intr_disestablish(struct elansc_softc *);
126 1.26 dyoung static bool elanpar_shutdown(device_t, int);
127 1.31 dyoung
128 1.31 dyoung static void elanpex_intr_establish(device_t, struct elansc_softc *);
129 1.31 dyoung static void elanpex_intr_disestablish(struct elansc_softc *);
130 1.26 dyoung static bool elanpex_shutdown(device_t, int);
131 1.40 dyoung static int elansc_rescan(device_t, const char *, const int *);
132 1.22 dyoung
133 1.27 dyoung static void elansc_protect(struct elansc_softc *, int, paddr_t, uint32_t);
134 1.27 dyoung
135 1.28 dyoung static const uint32_t sfkb = 64 * 1024, fkb = 4 * 1024;
136 1.28 dyoung
137 1.1 thorpej static void
138 1.19 dyoung elansc_childdetached(device_t self, device_t child)
139 1.19 dyoung {
140 1.22 dyoung struct elansc_softc *sc = device_private(self);
141 1.22 dyoung
142 1.22 dyoung if (child == sc->sc_par)
143 1.22 dyoung sc->sc_par = NULL;
144 1.22 dyoung if (child == sc->sc_pex)
145 1.22 dyoung sc->sc_pex = NULL;
146 1.31 dyoung if (child == sc->sc_pci)
147 1.31 dyoung sc->sc_pci = NULL;
148 1.40 dyoung if (child == sc->sc_gpio)
149 1.40 dyoung sc->sc_gpio = NULL;
150 1.19 dyoung }
151 1.19 dyoung
152 1.31 dyoung static int
153 1.31 dyoung elansc_match(device_t parent, cfdata_t match, void *aux)
154 1.31 dyoung {
155 1.31 dyoung struct pcibus_attach_args *pba = aux;
156 1.31 dyoung pcitag_t tag;
157 1.31 dyoung pcireg_t id;
158 1.31 dyoung
159 1.31 dyoung if (elansc_attached)
160 1.31 dyoung return 0;
161 1.31 dyoung
162 1.31 dyoung if (pcimatch(parent, match, aux) == 0)
163 1.31 dyoung return 0;
164 1.31 dyoung
165 1.31 dyoung if (pba->pba_bus != 0)
166 1.31 dyoung return 0;
167 1.31 dyoung
168 1.31 dyoung tag = pci_make_tag(pba->pba_pc, 0, 0, 0);
169 1.31 dyoung id = pci_conf_read(pba->pba_pc, tag, PCI_ID_REG);
170 1.31 dyoung
171 1.31 dyoung if (PCI_VENDOR(id) == PCI_VENDOR_AMD &&
172 1.31 dyoung PCI_PRODUCT(id) == PCI_PRODUCT_AMD_SC520_SC)
173 1.31 dyoung return 10;
174 1.31 dyoung
175 1.31 dyoung return 0;
176 1.31 dyoung }
177 1.31 dyoung
178 1.31 dyoung /*
179 1.31 dyoung * Performance tuning for Soekris net4501:
180 1.31 dyoung * - enable SDRAM write buffer and read prefetching
181 1.31 dyoung */
182 1.31 dyoung #if 0
183 1.31 dyoung uint8_t dbctl;
184 1.31 dyoung
185 1.31 dyoung dbctl = bus_space_read_1(memt, memh, MMCR_DBCTL);
186 1.31 dyoung dbctl &= ~MMCR_DBCTL_WB_WM_MASK;
187 1.31 dyoung dbctl |= MMCR_DBCTL_WB_WM_16DW;
188 1.31 dyoung dbctl |= MMCR_DBCTL_WB_ENB | MMCR_DBCTL_RAB_ENB;
189 1.31 dyoung bus_space_write_1(memt, memh, MMCR_DBCTL, dbctl);
190 1.31 dyoung #endif
191 1.31 dyoung
192 1.31 dyoung /*
193 1.31 dyoung * Performance tuning for PCI bus on the AMD Elan SC520:
194 1.31 dyoung * - enable concurrent arbitration of PCI and CPU busses
195 1.31 dyoung * (and PCI buffer)
196 1.31 dyoung * - enable PCI automatic delayed read transactions and
197 1.31 dyoung * write posting
198 1.31 dyoung * - enable PCI read buffer snooping (coherency)
199 1.31 dyoung */
200 1.31 dyoung static void
201 1.31 dyoung elansc_perf_tune(device_t self, bus_space_tag_t memt, bus_space_handle_t memh)
202 1.31 dyoung {
203 1.31 dyoung uint8_t sysarbctl;
204 1.31 dyoung uint16_t hbctl;
205 1.31 dyoung const bool concurrency = true; /* concurrent bus arbitration */
206 1.31 dyoung
207 1.31 dyoung sysarbctl = bus_space_read_1(memt, memh, MMCR_SYSARBCTL);
208 1.31 dyoung if ((sysarbctl & MMCR_SYSARBCTL_CNCR_MODE_ENB) != 0) {
209 1.31 dyoung aprint_debug_dev(self,
210 1.31 dyoung "concurrent arbitration mode is active\n");
211 1.31 dyoung } else if (concurrency) {
212 1.31 dyoung aprint_verbose_dev(self, "activating concurrent "
213 1.31 dyoung "arbitration mode\n");
214 1.31 dyoung /* activate concurrent bus arbitration */
215 1.31 dyoung sysarbctl |= MMCR_SYSARBCTL_CNCR_MODE_ENB;
216 1.31 dyoung bus_space_write_1(memt, memh, MMCR_SYSARBCTL, sysarbctl);
217 1.31 dyoung }
218 1.31 dyoung
219 1.31 dyoung hbctl = bus_space_read_2(memt, memh, MMCR_HBCTL);
220 1.31 dyoung
221 1.31 dyoung /* target read FIFO snoop */
222 1.31 dyoung if ((hbctl & MMCR_HBCTL_T_PURGE_RD_ENB) != 0)
223 1.31 dyoung aprint_debug_dev(self, "read-FIFO snooping is active\n");
224 1.31 dyoung else {
225 1.31 dyoung aprint_verbose_dev(self, "activating read-FIFO snooping\n");
226 1.31 dyoung hbctl |= MMCR_HBCTL_T_PURGE_RD_ENB;
227 1.31 dyoung }
228 1.31 dyoung
229 1.31 dyoung if ((hbctl & MMCR_HBCTL_M_WPOST_ENB) != 0)
230 1.31 dyoung aprint_debug_dev(self, "CPU->PCI write-posting is active\n");
231 1.31 dyoung else if (concurrency) {
232 1.31 dyoung aprint_verbose_dev(self, "activating CPU->PCI write-posting\n");
233 1.31 dyoung hbctl |= MMCR_HBCTL_M_WPOST_ENB;
234 1.31 dyoung }
235 1.31 dyoung
236 1.31 dyoung /* auto delay read txn: looks safe, but seems to cause
237 1.31 dyoung * net4526 w/ minipci ath fits
238 1.31 dyoung */
239 1.31 dyoung #if 0
240 1.31 dyoung if ((hbctl & MMCR_HBCTL_T_DLYTR_ENB_AUTORETRY) != 0)
241 1.31 dyoung aprint_debug_dev(self,
242 1.31 dyoung "automatic read transaction delay is active\n");
243 1.31 dyoung else {
244 1.31 dyoung aprint_verbose_dev(self,
245 1.31 dyoung "activating automatic read transaction delay\n");
246 1.31 dyoung hbctl |= MMCR_HBCTL_T_DLYTR_ENB_AUTORETRY;
247 1.31 dyoung }
248 1.31 dyoung #endif
249 1.31 dyoung bus_space_write_2(memt, memh, MMCR_HBCTL, hbctl);
250 1.31 dyoung }
251 1.31 dyoung
252 1.19 dyoung static void
253 1.1 thorpej elansc_wdogctl_write(struct elansc_softc *sc, uint16_t val)
254 1.1 thorpej {
255 1.6 christos uint8_t echo_mode = 0; /* XXX: gcc */
256 1.1 thorpej
257 1.19 dyoung KASSERT(mutex_owned(&sc->sc_mtx));
258 1.1 thorpej
259 1.1 thorpej /* Switch off GP bus echo mode if we need to. */
260 1.1 thorpej if (sc->sc_echobug) {
261 1.1 thorpej echo_mode = bus_space_read_1(sc->sc_memt, sc->sc_memh,
262 1.1 thorpej MMCR_GPECHO);
263 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh,
264 1.1 thorpej MMCR_GPECHO, echo_mode & ~GPECHO_GP_ECHO_ENB);
265 1.1 thorpej }
266 1.1 thorpej
267 1.1 thorpej /* Unlock the register. */
268 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
269 1.1 thorpej WDTMRCTL_UNLOCK1);
270 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
271 1.1 thorpej WDTMRCTL_UNLOCK2);
272 1.1 thorpej
273 1.1 thorpej /* Write the value. */
274 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL, val);
275 1.1 thorpej
276 1.1 thorpej /* Switch GP bus echo mode back. */
277 1.1 thorpej if (sc->sc_echobug)
278 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_GPECHO,
279 1.1 thorpej echo_mode);
280 1.1 thorpej }
281 1.1 thorpej
282 1.1 thorpej static void
283 1.1 thorpej elansc_wdogctl_reset(struct elansc_softc *sc)
284 1.1 thorpej {
285 1.7 christos uint8_t echo_mode = 0/* XXX: gcc */;
286 1.1 thorpej
287 1.19 dyoung KASSERT(mutex_owned(&sc->sc_mtx));
288 1.1 thorpej
289 1.1 thorpej /* Switch off GP bus echo mode if we need to. */
290 1.1 thorpej if (sc->sc_echobug) {
291 1.1 thorpej echo_mode = bus_space_read_1(sc->sc_memt, sc->sc_memh,
292 1.1 thorpej MMCR_GPECHO);
293 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh,
294 1.1 thorpej MMCR_GPECHO, echo_mode & ~GPECHO_GP_ECHO_ENB);
295 1.1 thorpej }
296 1.1 thorpej
297 1.1 thorpej /* Reset the watchdog. */
298 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
299 1.1 thorpej WDTMRCTL_RESET1);
300 1.1 thorpej bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WDTMRCTL,
301 1.1 thorpej WDTMRCTL_RESET2);
302 1.1 thorpej
303 1.1 thorpej /* Switch GP bus echo mode back. */
304 1.1 thorpej if (sc->sc_echobug)
305 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_GPECHO,
306 1.1 thorpej echo_mode);
307 1.1 thorpej }
308 1.1 thorpej
309 1.1 thorpej static const struct {
310 1.1 thorpej int period; /* whole seconds */
311 1.1 thorpej uint16_t exp; /* exponent select */
312 1.1 thorpej } elansc_wdog_periods[] = {
313 1.1 thorpej { 1, WDTMRCTL_EXP_SEL25 },
314 1.1 thorpej { 2, WDTMRCTL_EXP_SEL26 },
315 1.1 thorpej { 4, WDTMRCTL_EXP_SEL27 },
316 1.1 thorpej { 8, WDTMRCTL_EXP_SEL28 },
317 1.1 thorpej { 16, WDTMRCTL_EXP_SEL29 },
318 1.1 thorpej { 32, WDTMRCTL_EXP_SEL30 },
319 1.1 thorpej { 0, 0 },
320 1.1 thorpej };
321 1.1 thorpej
322 1.1 thorpej static int
323 1.19 dyoung elansc_wdog_arm(struct elansc_softc *sc)
324 1.1 thorpej {
325 1.19 dyoung struct sysmon_wdog *smw = &sc->sc_smw;
326 1.1 thorpej int i;
327 1.7 christos uint16_t exp_sel = 0; /* XXX: gcc */
328 1.1 thorpej
329 1.19 dyoung KASSERT(mutex_owned(&sc->sc_mtx));
330 1.17 dyoung
331 1.19 dyoung if (smw->smw_period == WDOG_PERIOD_DEFAULT) {
332 1.19 dyoung smw->smw_period = 32;
333 1.19 dyoung exp_sel = WDTMRCTL_EXP_SEL30;
334 1.1 thorpej } else {
335 1.19 dyoung for (i = 0; elansc_wdog_periods[i].period != 0; i++) {
336 1.19 dyoung if (elansc_wdog_periods[i].period ==
337 1.19 dyoung smw->smw_period) {
338 1.19 dyoung exp_sel = elansc_wdog_periods[i].exp;
339 1.19 dyoung break;
340 1.1 thorpej }
341 1.1 thorpej }
342 1.19 dyoung if (elansc_wdog_periods[i].period == 0)
343 1.19 dyoung return EINVAL;
344 1.1 thorpej }
345 1.19 dyoung elansc_wdogctl_write(sc, WDTMRCTL_ENB |
346 1.19 dyoung WDTMRCTL_WRST_ENB | exp_sel);
347 1.19 dyoung elansc_wdogctl_reset(sc);
348 1.19 dyoung return 0;
349 1.19 dyoung }
350 1.19 dyoung
351 1.19 dyoung static int
352 1.19 dyoung elansc_wdog_setmode(struct sysmon_wdog *smw)
353 1.19 dyoung {
354 1.19 dyoung struct elansc_softc *sc = smw->smw_cookie;
355 1.19 dyoung int rc = 0;
356 1.19 dyoung
357 1.19 dyoung mutex_enter(&sc->sc_mtx);
358 1.19 dyoung
359 1.29 dyoung if (!device_is_active(sc->sc_dev))
360 1.19 dyoung rc = EBUSY;
361 1.19 dyoung else if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
362 1.19 dyoung elansc_wdogctl_write(sc,
363 1.19 dyoung WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
364 1.19 dyoung } else
365 1.19 dyoung rc = elansc_wdog_arm(sc);
366 1.19 dyoung
367 1.19 dyoung mutex_exit(&sc->sc_mtx);
368 1.19 dyoung return rc;
369 1.1 thorpej }
370 1.1 thorpej
371 1.1 thorpej static int
372 1.1 thorpej elansc_wdog_tickle(struct sysmon_wdog *smw)
373 1.1 thorpej {
374 1.1 thorpej struct elansc_softc *sc = smw->smw_cookie;
375 1.1 thorpej
376 1.19 dyoung mutex_enter(&sc->sc_mtx);
377 1.1 thorpej elansc_wdogctl_reset(sc);
378 1.19 dyoung mutex_exit(&sc->sc_mtx);
379 1.19 dyoung return 0;
380 1.1 thorpej }
381 1.1 thorpej
382 1.1 thorpej static const char *elansc_speeds[] = {
383 1.1 thorpej "(reserved 00)",
384 1.1 thorpej "100MHz",
385 1.1 thorpej "133MHz",
386 1.1 thorpej "(reserved 11)",
387 1.1 thorpej };
388 1.1 thorpej
389 1.22 dyoung static int
390 1.22 dyoung elanpar_intr(void *arg)
391 1.22 dyoung {
392 1.22 dyoung struct elansc_softc *sc = arg;
393 1.22 dyoung uint16_t wpvsta;
394 1.22 dyoung unsigned win;
395 1.22 dyoung uint32_t par;
396 1.22 dyoung const char *wpvstr;
397 1.22 dyoung
398 1.22 dyoung wpvsta = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA);
399 1.22 dyoung
400 1.22 dyoung if ((wpvsta & MMCR_WPVSTA_WPV_STA) == 0)
401 1.22 dyoung return 0;
402 1.22 dyoung
403 1.22 dyoung win = __SHIFTOUT(wpvsta, MMCR_WPVSTA_WPV_WINDOW);
404 1.22 dyoung
405 1.22 dyoung par = bus_space_read_4(sc->sc_memt, sc->sc_memh, MMCR_PAR(win));
406 1.22 dyoung
407 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA,
408 1.22 dyoung MMCR_WPVSTA_WPV_STA);
409 1.22 dyoung
410 1.22 dyoung switch (wpvsta & MMCR_WPVSTA_WPV_MSTR) {
411 1.22 dyoung case MMCR_WPVSTA_WPV_MSTR_CPU:
412 1.22 dyoung wpvstr = "cpu";
413 1.22 dyoung break;
414 1.22 dyoung case MMCR_WPVSTA_WPV_MSTR_PCI:
415 1.22 dyoung wpvstr = "pci";
416 1.22 dyoung break;
417 1.22 dyoung case MMCR_WPVSTA_WPV_MSTR_GP:
418 1.22 dyoung wpvstr = "gp";
419 1.22 dyoung break;
420 1.22 dyoung default:
421 1.22 dyoung wpvstr = "unknown";
422 1.22 dyoung break;
423 1.22 dyoung }
424 1.35 dyoung printf_tolog("%s: %s violated write-protect window %u\n",
425 1.35 dyoung device_xname(sc->sc_par), wpvstr, win);
426 1.22 dyoung elansc_print_par(sc->sc_par, win, par);
427 1.22 dyoung return 0;
428 1.22 dyoung }
429 1.22 dyoung
430 1.22 dyoung static int
431 1.38 yamt elanpar_nmi(const struct trapframe *tf, void *arg)
432 1.38 yamt {
433 1.38 yamt
434 1.38 yamt return elanpar_intr(arg);
435 1.38 yamt }
436 1.38 yamt
437 1.38 yamt static int
438 1.22 dyoung elanpex_intr(void *arg)
439 1.22 dyoung {
440 1.22 dyoung static struct {
441 1.22 dyoung const char *string;
442 1.22 dyoung bool nonfatal;
443 1.22 dyoung } cmd[16] = {
444 1.22 dyoung [0] = {.string = "not latched"}
445 1.22 dyoung , [1] = {.string = "special cycle"}
446 1.22 dyoung , [2] = {.string = "i/o read"}
447 1.22 dyoung , [3] = {.string = "i/o write"}
448 1.22 dyoung , [4] = {.string = "4"}
449 1.22 dyoung , [5] = {.string = "5"}
450 1.22 dyoung , [6] = {.string = "memory rd"}
451 1.22 dyoung , [7] = {.string = "memory wr"}
452 1.22 dyoung , [8] = {.string = "8"}
453 1.22 dyoung , [9] = {.string = "9"}
454 1.22 dyoung , [10] = {.string = "cfg rd", .nonfatal = true}
455 1.22 dyoung , [11] = {.string = "cfg wr"}
456 1.22 dyoung , [12] = {.string = "memory rd mul"}
457 1.22 dyoung , [13] = {.string = "dual-address cycle"}
458 1.22 dyoung , [14] = {.string = "memory rd line"}
459 1.22 dyoung , [15] = {.string = "memory wr & inv"}
460 1.22 dyoung };
461 1.22 dyoung
462 1.22 dyoung static const struct {
463 1.22 dyoung uint16_t bit;
464 1.22 dyoung const char *msg;
465 1.22 dyoung } mmsg[] = {
466 1.22 dyoung {MMCR_HBMSTIRQSTA_M_RTRTO_IRQ_STA, "retry timeout"}
467 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_TABRT_IRQ_STA, "target abort"}
468 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_MABRT_IRQ_STA, "abort"}
469 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_SERR_IRQ_STA, "system error"}
470 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_RPER_IRQ_STA, "received parity error"}
471 1.22 dyoung , {MMCR_HBMSTIRQSTA_M_DPER_IRQ_STA, "detected parity error"}
472 1.22 dyoung }, tmsg[] = {
473 1.22 dyoung {MMCR_HBTGTIRQSTA_T_DLYTO_IRQ_STA, "delayed txn timeout"}
474 1.22 dyoung , {MMCR_HBTGTIRQSTA_T_APER_IRQ_STA, "address parity"}
475 1.22 dyoung , {MMCR_HBTGTIRQSTA_T_DPER_IRQ_STA, "data parity"}
476 1.22 dyoung };
477 1.22 dyoung uint8_t pciarbsta;
478 1.22 dyoung uint16_t mstcmd, mstirq, tgtid, tgtirq;
479 1.22 dyoung uint32_t mstaddr;
480 1.22 dyoung uint16_t mstack = 0, tgtack = 0;
481 1.22 dyoung int fatal = 0, i, handled = 0;
482 1.22 dyoung struct elansc_softc *sc = arg;
483 1.22 dyoung
484 1.22 dyoung pciarbsta = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_PCIARBSTA);
485 1.22 dyoung mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQSTA);
486 1.22 dyoung mstaddr = bus_space_read_4(sc->sc_memt, sc->sc_memh, MMCR_MSTINTADD);
487 1.22 dyoung tgtirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQSTA);
488 1.22 dyoung
489 1.22 dyoung if ((pciarbsta & MMCR_PCIARBSTA_GNT_TO_STA) != 0) {
490 1.35 dyoung printf_tolog(
491 1.35 dyoung "%s: grant time-out, GNT%" __PRIuBITS "# asserted\n",
492 1.35 dyoung device_xname(sc->sc_pex),
493 1.22 dyoung __SHIFTOUT(pciarbsta, MMCR_PCIARBSTA_GNT_TO_ID));
494 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_PCIARBSTA,
495 1.22 dyoung MMCR_PCIARBSTA_GNT_TO_STA);
496 1.22 dyoung handled = true;
497 1.22 dyoung }
498 1.22 dyoung
499 1.22 dyoung mstcmd = __SHIFTOUT(mstirq, MMCR_HBMSTIRQSTA_M_CMD_IRQ_ID);
500 1.22 dyoung
501 1.22 dyoung for (i = 0; i < __arraycount(mmsg); i++) {
502 1.22 dyoung if ((mstirq & mmsg[i].bit) == 0)
503 1.22 dyoung continue;
504 1.35 dyoung printf_tolog("%s: %s %08" PRIx32 " master %s\n",
505 1.35 dyoung device_xname(sc->sc_pex), cmd[mstcmd].string, mstaddr,
506 1.35 dyoung mmsg[i].msg);
507 1.22 dyoung
508 1.22 dyoung mstack |= mmsg[i].bit;
509 1.22 dyoung if (!cmd[mstcmd].nonfatal)
510 1.22 dyoung fatal = true;
511 1.22 dyoung }
512 1.22 dyoung
513 1.22 dyoung tgtid = __SHIFTOUT(tgtirq, MMCR_HBTGTIRQSTA_T_IRQ_ID);
514 1.22 dyoung
515 1.22 dyoung for (i = 0; i < __arraycount(tmsg); i++) {
516 1.22 dyoung if ((tgtirq & tmsg[i].bit) == 0)
517 1.22 dyoung continue;
518 1.35 dyoung printf_tolog("%s: %1x target %s\n", device_xname(sc->sc_pex),
519 1.35 dyoung tgtid, tmsg[i].msg);
520 1.22 dyoung tgtack |= tmsg[i].bit;
521 1.22 dyoung }
522 1.22 dyoung
523 1.22 dyoung /* acknowledge interrupts */
524 1.22 dyoung if (tgtack != 0) {
525 1.22 dyoung handled = true;
526 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQSTA,
527 1.22 dyoung tgtack);
528 1.22 dyoung }
529 1.22 dyoung if (mstack != 0) {
530 1.22 dyoung handled = true;
531 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQSTA,
532 1.22 dyoung mstack);
533 1.22 dyoung }
534 1.22 dyoung return fatal ? 0 : (handled ? 1 : 0);
535 1.22 dyoung }
536 1.22 dyoung
537 1.38 yamt static int
538 1.38 yamt elanpex_nmi(const struct trapframe *tf, void *arg)
539 1.38 yamt {
540 1.38 yamt
541 1.38 yamt return elanpex_intr(arg);
542 1.38 yamt }
543 1.38 yamt
544 1.22 dyoung #define elansc_print_1(__dev, __sc, __reg) \
545 1.22 dyoung do { \
546 1.22 dyoung aprint_debug_dev(__dev, \
547 1.22 dyoung "%s: %s %02" PRIx8 "\n", __func__, #__reg, \
548 1.22 dyoung bus_space_read_1((__sc)->sc_memt, (__sc)->sc_memh, __reg)); \
549 1.22 dyoung } while (/*CONSTCOND*/0)
550 1.22 dyoung
551 1.22 dyoung static void
552 1.22 dyoung elansc_print_par(device_t dev, int i, uint32_t par)
553 1.22 dyoung {
554 1.22 dyoung uint32_t addr, sz, unit;
555 1.22 dyoung const char *tgtstr;
556 1.22 dyoung
557 1.35 dyoung if ((boothowto & AB_DEBUG) == 0)
558 1.35 dyoung return;
559 1.35 dyoung
560 1.22 dyoung switch (par & MMCR_PAR_TARGET) {
561 1.22 dyoung default:
562 1.22 dyoung case MMCR_PAR_TARGET_OFF:
563 1.22 dyoung tgtstr = "off";
564 1.22 dyoung break;
565 1.22 dyoung case MMCR_PAR_TARGET_GPIO:
566 1.22 dyoung tgtstr = "gpio";
567 1.22 dyoung break;
568 1.22 dyoung case MMCR_PAR_TARGET_GPMEM:
569 1.22 dyoung tgtstr = "gpmem";
570 1.22 dyoung break;
571 1.22 dyoung case MMCR_PAR_TARGET_PCI:
572 1.22 dyoung tgtstr = "pci";
573 1.22 dyoung break;
574 1.22 dyoung case MMCR_PAR_TARGET_BOOTCS:
575 1.22 dyoung tgtstr = "bootcs";
576 1.22 dyoung break;
577 1.22 dyoung case MMCR_PAR_TARGET_ROMCS1:
578 1.22 dyoung tgtstr = "romcs1";
579 1.22 dyoung break;
580 1.22 dyoung case MMCR_PAR_TARGET_ROMCS2:
581 1.22 dyoung tgtstr = "romcs2";
582 1.22 dyoung break;
583 1.22 dyoung case MMCR_PAR_TARGET_SDRAM:
584 1.22 dyoung tgtstr = "sdram";
585 1.22 dyoung break;
586 1.22 dyoung }
587 1.22 dyoung if ((par & MMCR_PAR_TARGET) == MMCR_PAR_TARGET_GPIO) {
588 1.22 dyoung unit = 1;
589 1.22 dyoung sz = __SHIFTOUT(par, MMCR_PAR_IO_SZ);
590 1.22 dyoung addr = __SHIFTOUT(par, MMCR_PAR_IO_ST_ADR);
591 1.22 dyoung } else if ((par & MMCR_PAR_PG_SZ) != 0) {
592 1.22 dyoung unit = 64 * 1024;
593 1.22 dyoung sz = __SHIFTOUT(par, MMCR_PAR_64KB_SZ);
594 1.22 dyoung addr = __SHIFTOUT(par, MMCR_PAR_64KB_ST_ADR);
595 1.22 dyoung } else {
596 1.22 dyoung unit = 4 * 1024;
597 1.22 dyoung sz = __SHIFTOUT(par, MMCR_PAR_4KB_SZ);
598 1.22 dyoung addr = __SHIFTOUT(par, MMCR_PAR_4KB_ST_ADR);
599 1.22 dyoung }
600 1.22 dyoung
601 1.35 dyoung printf_tolog(
602 1.35 dyoung "%s: PAR[%d] %08" PRIx32 " tgt %s attr %1" __PRIxBITS
603 1.35 dyoung " start %08" PRIx32 " size %" PRIu32 "\n", device_xname(dev),
604 1.22 dyoung i, par, tgtstr, __SHIFTOUT(par, MMCR_PAR_ATTR),
605 1.22 dyoung addr * unit, (sz + 1) * unit);
606 1.22 dyoung }
607 1.22 dyoung
608 1.22 dyoung static void
609 1.22 dyoung elansc_print_all_par(device_t dev,
610 1.22 dyoung bus_space_tag_t memt, bus_space_handle_t memh)
611 1.22 dyoung {
612 1.22 dyoung int i;
613 1.22 dyoung uint32_t par;
614 1.22 dyoung
615 1.22 dyoung for (i = 0; i < 16; i++) {
616 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(i));
617 1.22 dyoung elansc_print_par(dev, i, par);
618 1.22 dyoung }
619 1.22 dyoung }
620 1.22 dyoung
621 1.22 dyoung static int
622 1.22 dyoung elansc_alloc_par(bus_space_tag_t memt, bus_space_handle_t memh)
623 1.22 dyoung {
624 1.22 dyoung int i;
625 1.22 dyoung uint32_t par;
626 1.22 dyoung
627 1.22 dyoung for (i = 0; i < 16; i++) {
628 1.22 dyoung
629 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(i));
630 1.22 dyoung
631 1.22 dyoung if ((par & MMCR_PAR_TARGET) == MMCR_PAR_TARGET_OFF)
632 1.22 dyoung break;
633 1.22 dyoung }
634 1.22 dyoung if (i == 16)
635 1.22 dyoung return -1;
636 1.22 dyoung return i;
637 1.22 dyoung }
638 1.22 dyoung
639 1.22 dyoung static void
640 1.22 dyoung elansc_disable_par(bus_space_tag_t memt, bus_space_handle_t memh, int idx)
641 1.22 dyoung {
642 1.22 dyoung uint32_t par;
643 1.22 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(idx));
644 1.22 dyoung par &= ~MMCR_PAR_TARGET;
645 1.22 dyoung par |= MMCR_PAR_TARGET_OFF;
646 1.22 dyoung bus_space_write_4(memt, memh, MMCR_PAR(idx), par);
647 1.22 dyoung }
648 1.22 dyoung
649 1.27 dyoung struct pareg {
650 1.27 dyoung paddr_t start;
651 1.27 dyoung paddr_t end;
652 1.27 dyoung };
653 1.27 dyoung
654 1.22 dyoung static int
655 1.27 dyoung region_paddr_to_par(struct pareg *region0, struct pareg *regions, uint32_t unit)
656 1.27 dyoung {
657 1.27 dyoung struct pareg *residue = regions;
658 1.27 dyoung paddr_t start, end;
659 1.27 dyoung paddr_t start0, end0;
660 1.27 dyoung
661 1.27 dyoung start0 = region0->start;
662 1.27 dyoung end0 = region0->end;
663 1.27 dyoung
664 1.27 dyoung if (start0 % unit != 0)
665 1.27 dyoung start = start0 + unit - start0 % unit;
666 1.27 dyoung else
667 1.27 dyoung start = start0;
668 1.27 dyoung
669 1.27 dyoung end = end0 - end0 % unit;
670 1.27 dyoung
671 1.27 dyoung if (start >= end)
672 1.27 dyoung return 0;
673 1.27 dyoung
674 1.27 dyoung residue->start = start;
675 1.27 dyoung residue->end = end;
676 1.27 dyoung residue++;
677 1.27 dyoung
678 1.27 dyoung if (start0 < start) {
679 1.27 dyoung residue->start = start0;
680 1.27 dyoung residue->end = start;
681 1.27 dyoung residue++;
682 1.27 dyoung }
683 1.27 dyoung if (end < end0) {
684 1.27 dyoung residue->start = end;
685 1.27 dyoung residue->end = end0;
686 1.27 dyoung residue++;
687 1.27 dyoung }
688 1.27 dyoung return residue - regions;
689 1.27 dyoung }
690 1.27 dyoung
691 1.27 dyoung static void
692 1.22 dyoung elansc_protect_text(device_t self, struct elansc_softc *sc)
693 1.22 dyoung {
694 1.27 dyoung int i, j, nregion, pidx, tidx = 0, xnregion;
695 1.22 dyoung uint32_t par;
696 1.22 dyoung uint32_t protsize, unprotsize;
697 1.22 dyoung paddr_t start_pa, end_pa;
698 1.22 dyoung extern char kernel_text, etext;
699 1.22 dyoung bus_space_tag_t memt;
700 1.22 dyoung bus_space_handle_t memh;
701 1.27 dyoung struct pareg region0, regions[3], xregions[3];
702 1.27 dyoung
703 1.27 dyoung sc->sc_textpar[0] = sc->sc_textpar[1] = sc->sc_textpar[2] = -1;
704 1.22 dyoung
705 1.22 dyoung memt = sc->sc_memt;
706 1.22 dyoung memh = sc->sc_memh;
707 1.22 dyoung
708 1.27 dyoung if (!pmap_extract(pmap_kernel(), (vaddr_t)&kernel_text,
709 1.27 dyoung ®ion0.start) ||
710 1.27 dyoung !pmap_extract(pmap_kernel(), (vaddr_t)&etext,
711 1.27 dyoung ®ion0.end))
712 1.27 dyoung return;
713 1.22 dyoung
714 1.27 dyoung if (&etext - &kernel_text != region0.end - region0.start) {
715 1.22 dyoung aprint_error_dev(self, "kernel text may not be contiguous\n");
716 1.27 dyoung return;
717 1.22 dyoung }
718 1.22 dyoung
719 1.27 dyoung if ((pidx = elansc_alloc_par(memt, memh)) == -1) {
720 1.22 dyoung aprint_error_dev(self, "cannot allocate PAR\n");
721 1.27 dyoung return;
722 1.22 dyoung }
723 1.22 dyoung
724 1.27 dyoung par = bus_space_read_4(memt, memh, MMCR_PAR(pidx));
725 1.22 dyoung
726 1.22 dyoung aprint_debug_dev(self,
727 1.22 dyoung "protect kernel text at physical addresses %p - %p\n",
728 1.27 dyoung (void *)region0.start, (void *)region0.end);
729 1.27 dyoung
730 1.27 dyoung nregion = region_paddr_to_par(®ion0, regions, sfkb);
731 1.27 dyoung if (nregion == 0) {
732 1.27 dyoung aprint_error_dev(self, "kernel text is unprotected\n");
733 1.27 dyoung return;
734 1.27 dyoung }
735 1.27 dyoung
736 1.27 dyoung unprotsize = 0;
737 1.27 dyoung for (i = 1; i < nregion; i++)
738 1.27 dyoung unprotsize += regions[i].end - regions[i].start;
739 1.22 dyoung
740 1.27 dyoung start_pa = regions[0].start;
741 1.27 dyoung end_pa = regions[0].end;
742 1.22 dyoung
743 1.22 dyoung aprint_debug_dev(self,
744 1.22 dyoung "actually protect kernel text at physical addresses %p - %p\n",
745 1.22 dyoung (void *)start_pa, (void *)end_pa);
746 1.22 dyoung
747 1.22 dyoung aprint_verbose_dev(self,
748 1.22 dyoung "%" PRIu32 " bytes of kernel text are unprotected\n", unprotsize);
749 1.22 dyoung
750 1.22 dyoung protsize = end_pa - start_pa;
751 1.22 dyoung
752 1.27 dyoung #if 0
753 1.27 dyoung /* set PG_SZ, attribute, target, size, address. */
754 1.22 dyoung par = MMCR_PAR_TARGET_SDRAM | MMCR_PAR_ATTR_NOWRITE | MMCR_PAR_PG_SZ;
755 1.22 dyoung par |= __SHIFTIN(protsize / sfkb - 1, MMCR_PAR_64KB_SZ);
756 1.22 dyoung par |= __SHIFTIN(start_pa / sfkb, MMCR_PAR_64KB_ST_ADR);
757 1.27 dyoung bus_space_write_4(memt, memh, MMCR_PAR(pidx), par);
758 1.27 dyoung #else
759 1.27 dyoung elansc_protect(sc, pidx, start_pa, protsize);
760 1.27 dyoung #endif
761 1.27 dyoung
762 1.27 dyoung sc->sc_textpar[tidx++] = pidx;
763 1.27 dyoung
764 1.27 dyoung unprotsize = 0;
765 1.27 dyoung for (i = 1; i < nregion; i++) {
766 1.27 dyoung xnregion = region_paddr_to_par(®ions[i], xregions, fkb);
767 1.27 dyoung if (xnregion == 0) {
768 1.27 dyoung aprint_verbose_dev(self, "skip region %p - %p\n",
769 1.27 dyoung (void *)regions[i].start, (void *)regions[i].end);
770 1.27 dyoung continue;
771 1.27 dyoung }
772 1.27 dyoung if ((pidx = elansc_alloc_par(memt, memh)) == -1) {
773 1.27 dyoung unprotsize += regions[i].end - regions[i].start;
774 1.27 dyoung continue;
775 1.27 dyoung }
776 1.27 dyoung elansc_protect(sc, pidx, xregions[0].start,
777 1.27 dyoung xregions[0].end - xregions[0].start);
778 1.27 dyoung sc->sc_textpar[tidx++] = pidx;
779 1.27 dyoung
780 1.27 dyoung aprint_debug_dev(self,
781 1.27 dyoung "protect add'l kernel text at physical addresses %p - %p\n",
782 1.27 dyoung (void *)xregions[0].start, (void *)xregions[0].end);
783 1.27 dyoung
784 1.27 dyoung for (j = 1; j < xnregion; j++)
785 1.27 dyoung unprotsize += xregions[j].end - xregions[j].start;
786 1.27 dyoung }
787 1.27 dyoung aprint_verbose_dev(self,
788 1.27 dyoung "%" PRIu32 " bytes of kernel text still unprotected\n", unprotsize);
789 1.27 dyoung
790 1.27 dyoung }
791 1.27 dyoung
792 1.27 dyoung static void
793 1.27 dyoung elansc_protect(struct elansc_softc *sc, int pidx, paddr_t addr, uint32_t sz)
794 1.27 dyoung {
795 1.27 dyoung uint32_t addr_field, blksz, par, size_field;
796 1.27 dyoung
797 1.27 dyoung /* set attribute, target. */
798 1.27 dyoung par = MMCR_PAR_TARGET_SDRAM | MMCR_PAR_ATTR_NOWRITE;
799 1.27 dyoung
800 1.27 dyoung KASSERT(addr % fkb == 0 && sz % fkb == 0);
801 1.27 dyoung
802 1.27 dyoung if (addr % sfkb == 0 && sz % sfkb == 0) {
803 1.27 dyoung par |= MMCR_PAR_PG_SZ;
804 1.27 dyoung
805 1.27 dyoung size_field = MMCR_PAR_64KB_SZ;
806 1.27 dyoung addr_field = MMCR_PAR_64KB_ST_ADR;
807 1.27 dyoung blksz = 64 * 1024;
808 1.27 dyoung } else {
809 1.27 dyoung size_field = MMCR_PAR_4KB_SZ;
810 1.27 dyoung addr_field = MMCR_PAR_4KB_ST_ADR;
811 1.27 dyoung blksz = 4 * 1024;
812 1.27 dyoung }
813 1.27 dyoung
814 1.27 dyoung KASSERT(sz / blksz - 1 <= __SHIFTOUT_MASK(size_field));
815 1.27 dyoung KASSERT(addr / blksz <= __SHIFTOUT_MASK(addr_field));
816 1.27 dyoung
817 1.27 dyoung /* set size and address. */
818 1.27 dyoung par |= __SHIFTIN(sz / blksz - 1, size_field);
819 1.27 dyoung par |= __SHIFTIN(addr / blksz, addr_field);
820 1.27 dyoung
821 1.27 dyoung bus_space_write_4(sc->sc_memt, sc->sc_memh, MMCR_PAR(pidx), par);
822 1.22 dyoung }
823 1.22 dyoung
824 1.22 dyoung static int
825 1.23 dyoung elansc_protect_pg0(device_t self, struct elansc_softc *sc)
826 1.22 dyoung {
827 1.27 dyoung int pidx;
828 1.23 dyoung const paddr_t pg0_paddr = 0;
829 1.22 dyoung bus_space_tag_t memt;
830 1.22 dyoung bus_space_handle_t memh;
831 1.22 dyoung
832 1.22 dyoung memt = sc->sc_memt;
833 1.22 dyoung memh = sc->sc_memh;
834 1.22 dyoung
835 1.23 dyoung if (elansc_do_protect_pg0 == 0)
836 1.22 dyoung return -1;
837 1.22 dyoung
838 1.27 dyoung if ((pidx = elansc_alloc_par(memt, memh)) == -1)
839 1.22 dyoung return -1;
840 1.22 dyoung
841 1.23 dyoung aprint_debug_dev(self, "protect page 0\n");
842 1.22 dyoung
843 1.27 dyoung #if 0
844 1.27 dyoung /* set PG_SZ, attribute, target, size, address. */
845 1.22 dyoung par = MMCR_PAR_TARGET_SDRAM | MMCR_PAR_ATTR_NOWRITE;
846 1.23 dyoung par |= __SHIFTIN(PG0_PROT_SIZE / PAGE_SIZE - 1, MMCR_PAR_4KB_SZ);
847 1.23 dyoung par |= __SHIFTIN(pg0_paddr / PAGE_SIZE, MMCR_PAR_4KB_ST_ADR);
848 1.27 dyoung bus_space_write_4(memt, memh, MMCR_PAR(pidx), par);
849 1.27 dyoung #else
850 1.27 dyoung elansc_protect(sc, pidx, pg0_paddr, PG0_PROT_SIZE);
851 1.27 dyoung #endif
852 1.27 dyoung return pidx;
853 1.22 dyoung }
854 1.22 dyoung
855 1.22 dyoung static void
856 1.22 dyoung elanpex_intr_ack(bus_space_tag_t memt, bus_space_handle_t memh)
857 1.22 dyoung {
858 1.22 dyoung bus_space_write_1(memt, memh, MMCR_PCIARBSTA,
859 1.22 dyoung MMCR_PCIARBSTA_GNT_TO_STA);
860 1.22 dyoung bus_space_write_2(memt, memh, MMCR_HBTGTIRQSTA, MMCR_TGTIRQ_ACT);
861 1.22 dyoung bus_space_write_2(memt, memh, MMCR_HBMSTIRQSTA, MMCR_MSTIRQ_ACT);
862 1.22 dyoung }
863 1.22 dyoung
864 1.17 dyoung static bool
865 1.24 dyoung elansc_suspend(device_t dev PMF_FN_ARGS)
866 1.17 dyoung {
867 1.19 dyoung bool rc;
868 1.17 dyoung struct elansc_softc *sc = device_private(dev);
869 1.17 dyoung
870 1.19 dyoung mutex_enter(&sc->sc_mtx);
871 1.19 dyoung rc = ((sc->sc_smw.smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED);
872 1.19 dyoung mutex_exit(&sc->sc_mtx);
873 1.19 dyoung if (!rc)
874 1.17 dyoung aprint_debug_dev(dev, "watchdog enabled, suspend forbidden");
875 1.19 dyoung return rc;
876 1.17 dyoung }
877 1.17 dyoung
878 1.17 dyoung static bool
879 1.24 dyoung elansc_resume(device_t dev PMF_FN_ARGS)
880 1.17 dyoung {
881 1.17 dyoung struct elansc_softc *sc = device_private(dev);
882 1.17 dyoung
883 1.19 dyoung mutex_enter(&sc->sc_mtx);
884 1.17 dyoung /* Set up the watchdog registers with some defaults. */
885 1.17 dyoung elansc_wdogctl_write(sc, WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
886 1.17 dyoung
887 1.17 dyoung /* ...and clear it. */
888 1.17 dyoung elansc_wdogctl_reset(sc);
889 1.19 dyoung mutex_exit(&sc->sc_mtx);
890 1.17 dyoung
891 1.31 dyoung elansc_perf_tune(dev, sc->sc_memt, sc->sc_memh);
892 1.31 dyoung
893 1.17 dyoung return true;
894 1.17 dyoung }
895 1.17 dyoung
896 1.18 dyoung static int
897 1.18 dyoung elansc_detach(device_t self, int flags)
898 1.18 dyoung {
899 1.19 dyoung int rc;
900 1.18 dyoung struct elansc_softc *sc = device_private(self);
901 1.18 dyoung
902 1.19 dyoung if ((rc = config_detach_children(self, flags)) != 0)
903 1.19 dyoung return rc;
904 1.19 dyoung
905 1.18 dyoung pmf_device_deregister(self);
906 1.18 dyoung
907 1.19 dyoung if ((rc = sysmon_wdog_unregister(&sc->sc_smw)) != 0) {
908 1.19 dyoung if (rc == ERESTART)
909 1.19 dyoung rc = EINTR;
910 1.19 dyoung return rc;
911 1.19 dyoung }
912 1.19 dyoung
913 1.19 dyoung mutex_enter(&sc->sc_mtx);
914 1.18 dyoung
915 1.18 dyoung /* Set up the watchdog registers with some defaults. */
916 1.18 dyoung elansc_wdogctl_write(sc, WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
917 1.18 dyoung
918 1.18 dyoung /* ...and clear it. */
919 1.18 dyoung elansc_wdogctl_reset(sc);
920 1.18 dyoung
921 1.37 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_PICICR, sc->sc_picicr);
922 1.37 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_MPICMODE,
923 1.37 dyoung sc->sc_mpicmode);
924 1.37 dyoung
925 1.19 dyoung mutex_exit(&sc->sc_mtx);
926 1.19 dyoung mutex_destroy(&sc->sc_mtx);
927 1.33 dyoung
928 1.33 dyoung bus_space_unmap(sc->sc_memt, sc->sc_memh, PAGE_SIZE);
929 1.31 dyoung elansc_attached = false;
930 1.18 dyoung return 0;
931 1.18 dyoung }
932 1.18 dyoung
933 1.22 dyoung static void *
934 1.22 dyoung elansc_intr_establish(device_t dev, int (*handler)(void *), void *arg)
935 1.22 dyoung {
936 1.22 dyoung struct pic *pic;
937 1.22 dyoung void *ih;
938 1.22 dyoung
939 1.22 dyoung if ((pic = intr_findpic(ELAN_IRQ)) == NULL) {
940 1.22 dyoung aprint_error_dev(dev, "PIC for irq %d not found\n",
941 1.22 dyoung ELAN_IRQ);
942 1.22 dyoung return NULL;
943 1.22 dyoung } else if ((ih = intr_establish(ELAN_IRQ, pic, ELAN_IRQ,
944 1.34 ad IST_LEVEL, IPL_HIGH, handler, arg, false)) == NULL) {
945 1.22 dyoung aprint_error_dev(dev,
946 1.22 dyoung "could not establish interrupt\n");
947 1.22 dyoung return NULL;
948 1.22 dyoung }
949 1.22 dyoung aprint_verbose_dev(dev, "interrupting at irq %d\n", ELAN_IRQ);
950 1.22 dyoung return ih;
951 1.22 dyoung }
952 1.22 dyoung
953 1.22 dyoung static bool
954 1.24 dyoung elanpex_resume(device_t self PMF_FN_ARGS)
955 1.22 dyoung {
956 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
957 1.22 dyoung
958 1.22 dyoung elanpex_intr_establish(self, sc);
959 1.22 dyoung return sc->sc_eih != NULL;
960 1.22 dyoung }
961 1.22 dyoung
962 1.22 dyoung static bool
963 1.24 dyoung elanpex_suspend(device_t self PMF_FN_ARGS)
964 1.22 dyoung {
965 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
966 1.22 dyoung
967 1.22 dyoung elanpex_intr_disestablish(sc);
968 1.22 dyoung
969 1.22 dyoung return true;
970 1.22 dyoung }
971 1.22 dyoung
972 1.22 dyoung static bool
973 1.24 dyoung elanpar_resume(device_t self PMF_FN_ARGS)
974 1.22 dyoung {
975 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
976 1.22 dyoung
977 1.22 dyoung elanpar_intr_establish(self, sc);
978 1.22 dyoung return sc->sc_pih != NULL;
979 1.22 dyoung }
980 1.22 dyoung
981 1.22 dyoung static bool
982 1.24 dyoung elanpar_suspend(device_t self PMF_FN_ARGS)
983 1.22 dyoung {
984 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
985 1.22 dyoung
986 1.25 dyoung elanpar_intr_disestablish(sc);
987 1.22 dyoung
988 1.22 dyoung return true;
989 1.22 dyoung }
990 1.22 dyoung
991 1.22 dyoung static void
992 1.22 dyoung elanpex_intr_establish(device_t self, struct elansc_softc *sc)
993 1.22 dyoung {
994 1.22 dyoung uint8_t sysarbctl;
995 1.22 dyoung uint16_t pcihostmap, mstirq, tgtirq;
996 1.22 dyoung
997 1.22 dyoung pcihostmap = bus_space_read_2(sc->sc_memt, sc->sc_memh,
998 1.22 dyoung MMCR_PCIHOSTMAP);
999 1.22 dyoung /* Priority P2 (Master PIC IR1) */
1000 1.22 dyoung pcihostmap &= ~MMCR_PCIHOSTMAP_PCI_IRQ_MAP;
1001 1.22 dyoung pcihostmap |= __SHIFTIN(__BIT(ELAN_IRQ), MMCR_PCIHOSTMAP_PCI_IRQ_MAP);
1002 1.22 dyoung if (elansc_pcinmi)
1003 1.22 dyoung pcihostmap |= MMCR_PCIHOSTMAP_PCI_NMI_ENB;
1004 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_PCIHOSTMAP,
1005 1.22 dyoung pcihostmap);
1006 1.22 dyoung
1007 1.22 dyoung elanpex_intr_ack(sc->sc_memt, sc->sc_memh);
1008 1.22 dyoung
1009 1.22 dyoung sysarbctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL);
1010 1.22 dyoung mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL);
1011 1.22 dyoung tgtirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL);
1012 1.22 dyoung
1013 1.22 dyoung sysarbctl |= MMCR_SYSARBCTL_GNT_TO_INT_ENB;
1014 1.22 dyoung
1015 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_ENB;
1016 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_TABRT_IRQ_ENB;
1017 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_MABRT_IRQ_ENB;
1018 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_SERR_IRQ_ENB;
1019 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RPER_IRQ_ENB;
1020 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_DPER_IRQ_ENB;
1021 1.22 dyoung
1022 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DLYTO_IRQ_ENB;
1023 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_APER_IRQ_ENB;
1024 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DPER_IRQ_ENB;
1025 1.22 dyoung
1026 1.22 dyoung if (elansc_pcinmi) {
1027 1.38 yamt sc->sc_eih = nmi_establish(elanpex_nmi, sc);
1028 1.22 dyoung
1029 1.35 dyoung /* Activate NMI instead of maskable interrupts for
1030 1.35 dyoung * all PCI exceptions:
1031 1.35 dyoung */
1032 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_SEL;
1033 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_TABRT_IRQ_SEL;
1034 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_MABRT_IRQ_SEL;
1035 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_SERR_IRQ_SEL;
1036 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_RPER_IRQ_SEL;
1037 1.22 dyoung mstirq |= MMCR_HBMSTIRQCTL_M_DPER_IRQ_SEL;
1038 1.22 dyoung
1039 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DLYTO_IRQ_SEL;
1040 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_APER_IRQ_SEL;
1041 1.22 dyoung tgtirq |= MMCR_HBTGTIRQCTL_T_DPER_IRQ_SEL;
1042 1.22 dyoung } else
1043 1.22 dyoung sc->sc_eih = elansc_intr_establish(self, elanpex_intr, sc);
1044 1.22 dyoung
1045 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL, sysarbctl);
1046 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL, mstirq);
1047 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL, tgtirq);
1048 1.22 dyoung }
1049 1.22 dyoung
1050 1.22 dyoung static void
1051 1.22 dyoung elanpex_attach(device_t parent, device_t self, void *aux)
1052 1.22 dyoung {
1053 1.22 dyoung struct elansc_softc *sc = device_private(parent);
1054 1.22 dyoung
1055 1.22 dyoung aprint_naive(": PCI Exceptions\n");
1056 1.22 dyoung aprint_normal(": AMD Elan SC520 PCI Exceptions\n");
1057 1.22 dyoung
1058 1.22 dyoung elanpex_intr_establish(self, sc);
1059 1.22 dyoung
1060 1.22 dyoung aprint_debug_dev(self, "HBMSTIRQCTL %04x\n",
1061 1.22 dyoung bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL));
1062 1.22 dyoung
1063 1.22 dyoung aprint_debug_dev(self, "HBTGTIRQCTL %04x\n",
1064 1.22 dyoung bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL));
1065 1.22 dyoung
1066 1.22 dyoung aprint_debug_dev(self, "PCIHOSTMAP %04x\n",
1067 1.22 dyoung bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_PCIHOSTMAP));
1068 1.22 dyoung
1069 1.22 dyoung pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG,
1070 1.22 dyoung pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG) |
1071 1.22 dyoung PCI_COMMAND_PARITY_ENABLE|PCI_COMMAND_SERR_ENABLE);
1072 1.22 dyoung
1073 1.26 dyoung if (!pmf_device_register1(self, elanpex_suspend, elanpex_resume,
1074 1.26 dyoung elanpex_shutdown))
1075 1.22 dyoung aprint_error_dev(self, "could not establish power hooks\n");
1076 1.22 dyoung }
1077 1.22 dyoung
1078 1.26 dyoung static bool
1079 1.26 dyoung elanpex_shutdown(device_t self, int flags)
1080 1.22 dyoung {
1081 1.26 dyoung struct elansc_softc *sc = device_private(device_parent(self));
1082 1.22 dyoung uint8_t sysarbctl;
1083 1.22 dyoung uint16_t pcihostmap, mstirq, tgtirq;
1084 1.22 dyoung
1085 1.22 dyoung sysarbctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL);
1086 1.22 dyoung sysarbctl &= ~MMCR_SYSARBCTL_GNT_TO_INT_ENB;
1087 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_SYSARBCTL, sysarbctl);
1088 1.22 dyoung
1089 1.22 dyoung mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL);
1090 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_ENB;
1091 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_TABRT_IRQ_ENB;
1092 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_MABRT_IRQ_ENB;
1093 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_SERR_IRQ_ENB;
1094 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_RPER_IRQ_ENB;
1095 1.22 dyoung mstirq &= ~MMCR_HBMSTIRQCTL_M_DPER_IRQ_ENB;
1096 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL, mstirq);
1097 1.22 dyoung
1098 1.22 dyoung tgtirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL);
1099 1.22 dyoung tgtirq &= ~MMCR_HBTGTIRQCTL_T_DLYTO_IRQ_ENB;
1100 1.22 dyoung tgtirq &= ~MMCR_HBTGTIRQCTL_T_APER_IRQ_ENB;
1101 1.22 dyoung tgtirq &= ~MMCR_HBTGTIRQCTL_T_DPER_IRQ_ENB;
1102 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBTGTIRQCTL, tgtirq);
1103 1.22 dyoung
1104 1.22 dyoung pcihostmap = bus_space_read_2(sc->sc_memt, sc->sc_memh,
1105 1.22 dyoung MMCR_PCIHOSTMAP);
1106 1.22 dyoung /* Priority P2 (Master PIC IR1) */
1107 1.22 dyoung pcihostmap &= ~MMCR_PCIHOSTMAP_PCI_IRQ_MAP;
1108 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_PCIHOSTMAP,
1109 1.22 dyoung pcihostmap);
1110 1.22 dyoung
1111 1.26 dyoung return true;
1112 1.26 dyoung }
1113 1.26 dyoung
1114 1.26 dyoung static void
1115 1.26 dyoung elanpex_intr_disestablish(struct elansc_softc *sc)
1116 1.26 dyoung {
1117 1.26 dyoung elanpex_shutdown(sc->sc_pex, 0);
1118 1.26 dyoung
1119 1.22 dyoung if (elansc_pcinmi)
1120 1.22 dyoung nmi_disestablish(sc->sc_eih);
1121 1.22 dyoung else
1122 1.22 dyoung intr_disestablish(sc->sc_eih);
1123 1.22 dyoung sc->sc_eih = NULL;
1124 1.22 dyoung
1125 1.22 dyoung }
1126 1.22 dyoung
1127 1.22 dyoung static int
1128 1.22 dyoung elanpex_detach(device_t self, int flags)
1129 1.22 dyoung {
1130 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
1131 1.22 dyoung
1132 1.22 dyoung pmf_device_deregister(self);
1133 1.22 dyoung elanpex_intr_disestablish(sc);
1134 1.22 dyoung
1135 1.22 dyoung return 0;
1136 1.22 dyoung }
1137 1.22 dyoung
1138 1.22 dyoung static void
1139 1.22 dyoung elanpar_intr_establish(device_t self, struct elansc_softc *sc)
1140 1.22 dyoung {
1141 1.22 dyoung uint8_t adddecctl, wpvmap;
1142 1.22 dyoung
1143 1.22 dyoung wpvmap = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP);
1144 1.22 dyoung wpvmap &= ~MMCR_WPVMAP_INT_MAP;
1145 1.22 dyoung if (elansc_wpvnmi)
1146 1.22 dyoung wpvmap |= MMCR_WPVMAP_INT_NMI;
1147 1.22 dyoung else
1148 1.22 dyoung wpvmap |= __SHIFTIN(__BIT(ELAN_IRQ), MMCR_WPVMAP_INT_MAP);
1149 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP, wpvmap);
1150 1.22 dyoung
1151 1.22 dyoung /* clear interrupt status */
1152 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA,
1153 1.22 dyoung MMCR_WPVSTA_WPV_STA);
1154 1.22 dyoung
1155 1.22 dyoung /* establish interrupt */
1156 1.22 dyoung if (elansc_wpvnmi)
1157 1.38 yamt sc->sc_pih = nmi_establish(elanpar_nmi, sc);
1158 1.22 dyoung else
1159 1.22 dyoung sc->sc_pih = elansc_intr_establish(self, elanpar_intr, sc);
1160 1.22 dyoung
1161 1.22 dyoung adddecctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL);
1162 1.22 dyoung adddecctl |= MMCR_ADDDECCTL_WPV_INT_ENB;
1163 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL, adddecctl);
1164 1.22 dyoung }
1165 1.22 dyoung
1166 1.26 dyoung static bool
1167 1.26 dyoung elanpar_shutdown(device_t self, int flags)
1168 1.26 dyoung {
1169 1.27 dyoung int i;
1170 1.26 dyoung struct elansc_softc *sc = device_private(device_parent(self));
1171 1.26 dyoung
1172 1.27 dyoung for (i = 0; i < __arraycount(sc->sc_textpar); i++) {
1173 1.27 dyoung if (sc->sc_textpar[i] == -1)
1174 1.27 dyoung continue;
1175 1.27 dyoung elansc_disable_par(sc->sc_memt, sc->sc_memh, sc->sc_textpar[i]);
1176 1.27 dyoung sc->sc_textpar[i] = -1;
1177 1.26 dyoung }
1178 1.26 dyoung if (sc->sc_pg0par != -1) {
1179 1.26 dyoung elansc_disable_par(sc->sc_memt, sc->sc_memh, sc->sc_pg0par);
1180 1.26 dyoung sc->sc_pg0par = -1;
1181 1.26 dyoung }
1182 1.26 dyoung return true;
1183 1.26 dyoung }
1184 1.26 dyoung
1185 1.22 dyoung static void
1186 1.30 dyoung elanpar_deferred_attach(device_t self)
1187 1.30 dyoung {
1188 1.30 dyoung struct elansc_softc *sc = device_private(device_parent(self));
1189 1.30 dyoung
1190 1.30 dyoung elansc_protect_text(self, sc);
1191 1.30 dyoung }
1192 1.30 dyoung
1193 1.30 dyoung static void
1194 1.22 dyoung elanpar_attach(device_t parent, device_t self, void *aux)
1195 1.22 dyoung {
1196 1.22 dyoung struct elansc_softc *sc = device_private(parent);
1197 1.22 dyoung
1198 1.22 dyoung aprint_naive(": Programmable Address Regions\n");
1199 1.22 dyoung aprint_normal(": AMD Elan SC520 Programmable Address Regions\n");
1200 1.22 dyoung
1201 1.22 dyoung elansc_print_1(self, sc, MMCR_WPVMAP);
1202 1.22 dyoung elansc_print_all_par(self, sc->sc_memt, sc->sc_memh);
1203 1.22 dyoung
1204 1.23 dyoung sc->sc_pg0par = elansc_protect_pg0(self, sc);
1205 1.30 dyoung /* XXX grotty hack to avoid trapping writes by x86_patch()
1206 1.30 dyoung * to the kernel text on a MULTIPROCESSOR kernel.
1207 1.30 dyoung */
1208 1.30 dyoung config_interrupts(self, elanpar_deferred_attach);
1209 1.27 dyoung
1210 1.27 dyoung elansc_print_all_par(self, sc->sc_memt, sc->sc_memh);
1211 1.22 dyoung
1212 1.22 dyoung elanpar_intr_establish(self, sc);
1213 1.22 dyoung
1214 1.22 dyoung elansc_print_1(self, sc, MMCR_ADDDECCTL);
1215 1.22 dyoung
1216 1.26 dyoung if (!pmf_device_register1(self, elanpar_suspend, elanpar_resume,
1217 1.26 dyoung elanpar_shutdown))
1218 1.22 dyoung aprint_error_dev(self, "could not establish power hooks\n");
1219 1.22 dyoung }
1220 1.22 dyoung
1221 1.22 dyoung static void
1222 1.22 dyoung elanpar_intr_disestablish(struct elansc_softc *sc)
1223 1.22 dyoung {
1224 1.22 dyoung uint8_t adddecctl, wpvmap;
1225 1.22 dyoung
1226 1.22 dyoung /* disable interrupt, acknowledge it, disestablish our
1227 1.22 dyoung * handler, unmap it
1228 1.22 dyoung */
1229 1.22 dyoung adddecctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL);
1230 1.22 dyoung adddecctl &= ~MMCR_ADDDECCTL_WPV_INT_ENB;
1231 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_ADDDECCTL, adddecctl);
1232 1.22 dyoung
1233 1.22 dyoung bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_WPVSTA,
1234 1.22 dyoung MMCR_WPVSTA_WPV_STA);
1235 1.22 dyoung
1236 1.22 dyoung if (elansc_wpvnmi)
1237 1.22 dyoung nmi_disestablish(sc->sc_pih);
1238 1.22 dyoung else
1239 1.22 dyoung intr_disestablish(sc->sc_pih);
1240 1.22 dyoung sc->sc_pih = NULL;
1241 1.22 dyoung
1242 1.22 dyoung wpvmap = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP);
1243 1.22 dyoung wpvmap &= ~MMCR_WPVMAP_INT_MAP;
1244 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_WPVMAP, wpvmap);
1245 1.22 dyoung }
1246 1.22 dyoung
1247 1.22 dyoung static int
1248 1.22 dyoung elanpar_detach(device_t self, int flags)
1249 1.22 dyoung {
1250 1.22 dyoung struct elansc_softc *sc = device_private(device_parent(self));
1251 1.22 dyoung
1252 1.22 dyoung pmf_device_deregister(self);
1253 1.22 dyoung
1254 1.26 dyoung elanpar_shutdown(self, 0);
1255 1.22 dyoung
1256 1.22 dyoung elanpar_intr_disestablish(sc);
1257 1.22 dyoung
1258 1.22 dyoung return 0;
1259 1.22 dyoung }
1260 1.22 dyoung
1261 1.1 thorpej static void
1262 1.21 dyoung elansc_attach(device_t parent, device_t self, void *aux)
1263 1.1 thorpej {
1264 1.17 dyoung struct elansc_softc *sc = device_private(self);
1265 1.31 dyoung struct pcibus_attach_args *pba = aux;
1266 1.1 thorpej uint16_t rev;
1267 1.22 dyoung uint8_t cpuctl, picicr, ressta;
1268 1.10 drochner #if NGPIO > 0
1269 1.10 drochner struct gpiobus_attach_args gba;
1270 1.22 dyoung int pin, reg, shift;
1271 1.9 riz uint16_t data;
1272 1.10 drochner #endif
1273 1.29 dyoung
1274 1.29 dyoung sc->sc_dev = self;
1275 1.29 dyoung
1276 1.31 dyoung sc->sc_pc = pba->pba_pc;
1277 1.40 dyoung sc->sc_pciflags = pba->pba_flags;
1278 1.40 dyoung sc->sc_dmat = pba->pba_dmat;
1279 1.40 dyoung sc->sc_dmat64 = pba->pba_dmat64;
1280 1.31 dyoung sc->sc_tag = pci_make_tag(sc->sc_pc, 0, 0, 0);
1281 1.1 thorpej
1282 1.14 thorpej aprint_naive(": System Controller\n");
1283 1.14 thorpej aprint_normal(": AMD Elan SC520 System Controller\n");
1284 1.1 thorpej
1285 1.40 dyoung sc->sc_iot = pba->pba_iot;
1286 1.31 dyoung sc->sc_memt = pba->pba_memt;
1287 1.5 thorpej if (bus_space_map(sc->sc_memt, MMCR_BASE_ADDR, PAGE_SIZE, 0,
1288 1.1 thorpej &sc->sc_memh) != 0) {
1289 1.29 dyoung aprint_error_dev(sc->sc_dev, "unable to map registers\n");
1290 1.1 thorpej return;
1291 1.1 thorpej }
1292 1.1 thorpej
1293 1.19 dyoung mutex_init(&sc->sc_mtx, MUTEX_DEFAULT, IPL_HIGH);
1294 1.19 dyoung
1295 1.1 thorpej rev = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_REVID);
1296 1.1 thorpej cpuctl = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_CPUCTL);
1297 1.1 thorpej
1298 1.29 dyoung aprint_normal_dev(sc->sc_dev,
1299 1.21 dyoung "product %d stepping %d.%d, CPU clock %s\n",
1300 1.1 thorpej (rev & REVID_PRODID) >> REVID_PRODID_SHIFT,
1301 1.1 thorpej (rev & REVID_MAJSTEP) >> REVID_MAJSTEP_SHIFT,
1302 1.1 thorpej (rev & REVID_MINSTEP),
1303 1.1 thorpej elansc_speeds[cpuctl & CPUCTL_CPU_CLK_SPD_MASK]);
1304 1.1 thorpej
1305 1.1 thorpej /*
1306 1.1 thorpej * SC520 rev A1 has a bug that affects the watchdog timer. If
1307 1.1 thorpej * the GP bus echo mode is enabled, writing to the watchdog control
1308 1.1 thorpej * register is blocked.
1309 1.1 thorpej *
1310 1.1 thorpej * The BIOS in some systems (e.g. the Soekris net4501) enables
1311 1.1 thorpej * GP bus echo for various reasons, so we need to switch it off
1312 1.1 thorpej * when we talk to the watchdog timer.
1313 1.1 thorpej *
1314 1.1 thorpej * XXX The step 1.1 (B1?) in my Soekris net4501 also has this
1315 1.1 thorpej * XXX problem, so we'll just enable it for all Elan SC520s
1316 1.8 keihan * XXX for now. --thorpej (at) NetBSD.org
1317 1.1 thorpej */
1318 1.1 thorpej if (1 || rev == ((PRODID_ELAN_SC520 << REVID_PRODID_SHIFT) |
1319 1.1 thorpej (0 << REVID_MAJSTEP_SHIFT) | (1)))
1320 1.1 thorpej sc->sc_echobug = 1;
1321 1.1 thorpej
1322 1.1 thorpej /*
1323 1.1 thorpej * Determine cause of the last reset, and issue a warning if it
1324 1.1 thorpej * was due to watchdog expiry.
1325 1.1 thorpej */
1326 1.1 thorpej ressta = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_RESSTA);
1327 1.1 thorpej if (ressta & RESSTA_WDT_RST_DET)
1328 1.29 dyoung aprint_error_dev(sc->sc_dev,
1329 1.21 dyoung "WARNING: LAST RESET DUE TO WATCHDOG EXPIRATION!\n");
1330 1.1 thorpej bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_RESSTA, ressta);
1331 1.1 thorpej
1332 1.22 dyoung elansc_print_1(self, sc, MMCR_MPICMODE);
1333 1.22 dyoung elansc_print_1(self, sc, MMCR_SL1PICMODE);
1334 1.22 dyoung elansc_print_1(self, sc, MMCR_SL2PICMODE);
1335 1.22 dyoung elansc_print_1(self, sc, MMCR_PICICR);
1336 1.22 dyoung
1337 1.22 dyoung sc->sc_mpicmode = bus_space_read_1(sc->sc_memt, sc->sc_memh,
1338 1.22 dyoung MMCR_MPICMODE);
1339 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_MPICMODE,
1340 1.22 dyoung sc->sc_mpicmode | __BIT(ELAN_IRQ));
1341 1.22 dyoung
1342 1.22 dyoung sc->sc_picicr = bus_space_read_1(sc->sc_memt, sc->sc_memh, MMCR_PICICR);
1343 1.22 dyoung picicr = sc->sc_picicr;
1344 1.22 dyoung if (elansc_pcinmi || elansc_wpvnmi)
1345 1.22 dyoung picicr |= MMCR_PICICR_NMI_ENB;
1346 1.22 dyoung #if 0
1347 1.22 dyoung /* PC/AT compatibility */
1348 1.22 dyoung picicr |= MMCR_PICICR_S1_GINT_MODE|MMCR_PICICR_M_GINT_MODE;
1349 1.22 dyoung #endif
1350 1.22 dyoung bus_space_write_1(sc->sc_memt, sc->sc_memh, MMCR_PICICR, picicr);
1351 1.22 dyoung
1352 1.22 dyoung elansc_print_1(self, sc, MMCR_PICICR);
1353 1.22 dyoung elansc_print_1(self, sc, MMCR_MPICMODE);
1354 1.22 dyoung
1355 1.22 dyoung mutex_enter(&sc->sc_mtx);
1356 1.1 thorpej /* Set up the watchdog registers with some defaults. */
1357 1.1 thorpej elansc_wdogctl_write(sc, WDTMRCTL_WRST_ENB | WDTMRCTL_EXP_SEL30);
1358 1.1 thorpej
1359 1.1 thorpej /* ...and clear it. */
1360 1.1 thorpej elansc_wdogctl_reset(sc);
1361 1.22 dyoung mutex_exit(&sc->sc_mtx);
1362 1.9 riz
1363 1.22 dyoung if (!pmf_device_register(self, elansc_suspend, elansc_resume))
1364 1.22 dyoung aprint_error_dev(self, "could not establish power hooks\n");
1365 1.17 dyoung
1366 1.10 drochner #if NGPIO > 0
1367 1.9 riz /* Initialize GPIO pins array */
1368 1.9 riz for (pin = 0; pin < ELANSC_PIO_NPINS; pin++) {
1369 1.9 riz sc->sc_gpio_pins[pin].pin_num = pin;
1370 1.9 riz sc->sc_gpio_pins[pin].pin_caps = GPIO_PIN_INPUT |
1371 1.9 riz GPIO_PIN_OUTPUT;
1372 1.9 riz
1373 1.9 riz /* Read initial state */
1374 1.9 riz reg = (pin < 16 ? MMCR_PIODIR15_0 : MMCR_PIODIR31_16);
1375 1.9 riz shift = pin % 16;
1376 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1377 1.9 riz if ((data & (1 << shift)) == 0)
1378 1.9 riz sc->sc_gpio_pins[pin].pin_flags = GPIO_PIN_INPUT;
1379 1.9 riz else
1380 1.9 riz sc->sc_gpio_pins[pin].pin_flags = GPIO_PIN_OUTPUT;
1381 1.9 riz if (elansc_gpio_pin_read(sc, pin) == 0)
1382 1.9 riz sc->sc_gpio_pins[pin].pin_state = GPIO_PIN_LOW;
1383 1.9 riz else
1384 1.9 riz sc->sc_gpio_pins[pin].pin_state = GPIO_PIN_HIGH;
1385 1.9 riz }
1386 1.9 riz
1387 1.9 riz /* Create controller tag */
1388 1.9 riz sc->sc_gpio_gc.gp_cookie = sc;
1389 1.9 riz sc->sc_gpio_gc.gp_pin_read = elansc_gpio_pin_read;
1390 1.9 riz sc->sc_gpio_gc.gp_pin_write = elansc_gpio_pin_write;
1391 1.9 riz sc->sc_gpio_gc.gp_pin_ctl = elansc_gpio_pin_ctl;
1392 1.9 riz
1393 1.9 riz gba.gba_gc = &sc->sc_gpio_gc;
1394 1.9 riz gba.gba_pins = sc->sc_gpio_pins;
1395 1.9 riz gba.gba_npins = ELANSC_PIO_NPINS;
1396 1.9 riz
1397 1.10 drochner #endif /* NGPIO */
1398 1.19 dyoung
1399 1.40 dyoung elansc_rescan(sc->sc_dev, "elanparbus", NULL);
1400 1.40 dyoung elansc_rescan(sc->sc_dev, "elanpexbus", NULL);
1401 1.40 dyoung elansc_rescan(sc->sc_dev, "gpiobus", NULL);
1402 1.40 dyoung
1403 1.19 dyoung /*
1404 1.19 dyoung * Hook up the watchdog timer.
1405 1.19 dyoung */
1406 1.29 dyoung sc->sc_smw.smw_name = device_xname(sc->sc_dev);
1407 1.19 dyoung sc->sc_smw.smw_cookie = sc;
1408 1.19 dyoung sc->sc_smw.smw_setmode = elansc_wdog_setmode;
1409 1.19 dyoung sc->sc_smw.smw_tickle = elansc_wdog_tickle;
1410 1.19 dyoung sc->sc_smw.smw_period = 32; /* actually 32.54 */
1411 1.21 dyoung if (sysmon_wdog_register(&sc->sc_smw) != 0) {
1412 1.29 dyoung aprint_error_dev(sc->sc_dev,
1413 1.21 dyoung "unable to register watchdog with sysmon\n");
1414 1.21 dyoung }
1415 1.31 dyoung elansc_attached = true;
1416 1.40 dyoung #if 0
1417 1.40 dyoung pba.pba_iot = sc->sc_iot;
1418 1.40 dyoung pba.pba_memt = sc->sc_memt;
1419 1.40 dyoung pba.pba_dmat = sc->sc_dmat;
1420 1.40 dyoung pba.pba_dmat64 = sc->sc_dmat64;
1421 1.40 dyoung pba.pba_pc = sc->sc_pc;
1422 1.40 dyoung pba.pba_flags = sc->sc_pciflags;
1423 1.40 dyoung pba.pba_bus = 0;
1424 1.40 dyoung pba.pba_bridgetag = NULL;
1425 1.31 dyoung sc->sc_pci = config_found_ia(self, "pcibus", pba, pcibusprint);
1426 1.40 dyoung #else
1427 1.40 dyoung elansc_rescan(sc->sc_dev, "pcibus", NULL);
1428 1.40 dyoung #endif
1429 1.1 thorpej }
1430 1.1 thorpej
1431 1.22 dyoung static int
1432 1.36 dyoung elanpex_match(device_t parent, cfdata_t match, void *aux)
1433 1.22 dyoung {
1434 1.22 dyoung struct elansc_softc *sc = device_private(parent);
1435 1.22 dyoung
1436 1.22 dyoung return sc->sc_pex == NULL;
1437 1.22 dyoung }
1438 1.22 dyoung
1439 1.22 dyoung static int
1440 1.36 dyoung elanpar_match(device_t parent, cfdata_t match, void *aux)
1441 1.22 dyoung {
1442 1.22 dyoung struct elansc_softc *sc = device_private(parent);
1443 1.22 dyoung
1444 1.22 dyoung return sc->sc_par == NULL;
1445 1.22 dyoung }
1446 1.22 dyoung
1447 1.36 dyoung static bool
1448 1.36 dyoung ifattr_match(const char *snull, const char *t)
1449 1.36 dyoung {
1450 1.36 dyoung return (snull == NULL) || strcmp(snull, t) == 0;
1451 1.36 dyoung }
1452 1.36 dyoung
1453 1.36 dyoung /* scan for new children */
1454 1.36 dyoung static int
1455 1.36 dyoung elansc_rescan(device_t self, const char *ifattr, const int *locators)
1456 1.36 dyoung {
1457 1.36 dyoung struct elansc_softc *sc = device_private(self);
1458 1.36 dyoung
1459 1.40 dyoung if (ifattr_match(ifattr, "elanparbus") && sc->sc_par == NULL) {
1460 1.40 dyoung sc->sc_par = config_found_ia(sc->sc_dev, "elanparbus", NULL,
1461 1.40 dyoung NULL);
1462 1.40 dyoung }
1463 1.40 dyoung
1464 1.40 dyoung if (ifattr_match(ifattr, "elanpexbus") && sc->sc_pex == NULL) {
1465 1.40 dyoung sc->sc_pex = config_found_ia(sc->sc_dev, "elanpexbus", NULL,
1466 1.40 dyoung NULL);
1467 1.40 dyoung }
1468 1.40 dyoung
1469 1.36 dyoung if (ifattr_match(ifattr, "gpiobus") && sc->sc_gpio == NULL) {
1470 1.36 dyoung #if NGPIO > 0
1471 1.36 dyoung struct gpiobus_attach_args gba;
1472 1.36 dyoung
1473 1.40 dyoung memset(&gba, 0, sizeof(gba));
1474 1.40 dyoung
1475 1.36 dyoung gba.gba_gc = &sc->sc_gpio_gc;
1476 1.36 dyoung gba.gba_pins = sc->sc_gpio_pins;
1477 1.36 dyoung gba.gba_npins = ELANSC_PIO_NPINS;
1478 1.36 dyoung sc->sc_gpio = config_found_ia(sc->sc_dev, "gpiobus", &gba,
1479 1.36 dyoung gpiobus_print);
1480 1.36 dyoung #endif
1481 1.36 dyoung }
1482 1.36 dyoung
1483 1.40 dyoung if (ifattr_match(ifattr, "pcibus") && sc->sc_pci == NULL) {
1484 1.40 dyoung struct pcibus_attach_args pba;
1485 1.36 dyoung
1486 1.40 dyoung memset(&pba, 0, sizeof(pba));
1487 1.40 dyoung pba.pba_iot = sc->sc_iot;
1488 1.40 dyoung pba.pba_memt = sc->sc_memt;
1489 1.40 dyoung pba.pba_dmat = sc->sc_dmat;
1490 1.40 dyoung pba.pba_dmat64 = sc->sc_dmat64;
1491 1.40 dyoung pba.pba_pc = sc->sc_pc;
1492 1.40 dyoung pba.pba_flags = sc->sc_pciflags;
1493 1.40 dyoung pba.pba_bus = 0;
1494 1.40 dyoung pba.pba_bridgetag = NULL;
1495 1.40 dyoung sc->sc_pci = config_found_ia(self, "pcibus", &pba, pcibusprint);
1496 1.40 dyoung }
1497 1.36 dyoung
1498 1.36 dyoung return 0;
1499 1.36 dyoung }
1500 1.36 dyoung
1501 1.39 dyoung CFATTACH_DECL3_NEW(elanpar, 0,
1502 1.39 dyoung elanpar_match, elanpar_attach, elanpar_detach, NULL, NULL, NULL,
1503 1.39 dyoung DVF_DETACH_SHUTDOWN);
1504 1.39 dyoung
1505 1.39 dyoung CFATTACH_DECL3_NEW(elanpex, 0,
1506 1.39 dyoung elanpex_match, elanpex_attach, elanpex_detach, NULL, NULL, NULL,
1507 1.39 dyoung DVF_DETACH_SHUTDOWN);
1508 1.22 dyoung
1509 1.39 dyoung CFATTACH_DECL3_NEW(elansc, sizeof(struct elansc_softc),
1510 1.36 dyoung elansc_match, elansc_attach, elansc_detach, NULL, elansc_rescan,
1511 1.39 dyoung elansc_childdetached, DVF_DETACH_SHUTDOWN);
1512 1.9 riz
1513 1.10 drochner #if NGPIO > 0
1514 1.9 riz static int
1515 1.9 riz elansc_gpio_pin_read(void *arg, int pin)
1516 1.9 riz {
1517 1.9 riz struct elansc_softc *sc = arg;
1518 1.9 riz int reg, shift;
1519 1.13 perry uint16_t data;
1520 1.9 riz
1521 1.9 riz reg = (pin < 16 ? MMCR_PIODATA15_0 : MMCR_PIODATA31_16);
1522 1.9 riz shift = pin % 16;
1523 1.19 dyoung
1524 1.19 dyoung mutex_enter(&sc->sc_mtx);
1525 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1526 1.19 dyoung mutex_exit(&sc->sc_mtx);
1527 1.9 riz
1528 1.9 riz return ((data >> shift) & 0x1);
1529 1.9 riz }
1530 1.9 riz
1531 1.9 riz static void
1532 1.9 riz elansc_gpio_pin_write(void *arg, int pin, int value)
1533 1.9 riz {
1534 1.9 riz struct elansc_softc *sc = arg;
1535 1.9 riz int reg, shift;
1536 1.13 perry uint16_t data;
1537 1.9 riz
1538 1.9 riz reg = (pin < 16 ? MMCR_PIODATA15_0 : MMCR_PIODATA31_16);
1539 1.9 riz shift = pin % 16;
1540 1.19 dyoung
1541 1.19 dyoung mutex_enter(&sc->sc_mtx);
1542 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1543 1.9 riz if (value == 0)
1544 1.9 riz data &= ~(1 << shift);
1545 1.9 riz else if (value == 1)
1546 1.9 riz data |= (1 << shift);
1547 1.9 riz
1548 1.9 riz bus_space_write_2(sc->sc_memt, sc->sc_memh, reg, data);
1549 1.19 dyoung mutex_exit(&sc->sc_mtx);
1550 1.9 riz }
1551 1.9 riz
1552 1.9 riz static void
1553 1.9 riz elansc_gpio_pin_ctl(void *arg, int pin, int flags)
1554 1.9 riz {
1555 1.9 riz struct elansc_softc *sc = arg;
1556 1.9 riz int reg, shift;
1557 1.13 perry uint16_t data;
1558 1.9 riz
1559 1.9 riz reg = (pin < 16 ? MMCR_PIODIR15_0 : MMCR_PIODIR31_16);
1560 1.9 riz shift = pin % 16;
1561 1.19 dyoung mutex_enter(&sc->sc_mtx);
1562 1.9 riz data = bus_space_read_2(sc->sc_memt, sc->sc_memh, reg);
1563 1.9 riz if (flags & GPIO_PIN_INPUT)
1564 1.9 riz data &= ~(1 << shift);
1565 1.9 riz if (flags & GPIO_PIN_OUTPUT)
1566 1.9 riz data |= (1 << shift);
1567 1.9 riz
1568 1.9 riz bus_space_write_2(sc->sc_memt, sc->sc_memh, reg, data);
1569 1.19 dyoung mutex_exit(&sc->sc_mtx);
1570 1.9 riz }
1571 1.10 drochner #endif /* NGPIO */
1572