/* $OpenBSD: syscon.c,v 1.10 2014/05/17 12:20:55 miod Exp $ */ /* * Copyright (c) 2007 Miodrag Vallat. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice, this permission notice, and the disclaimer below * appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * Copyright (c) 1999 Steve Murphree, Jr. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include struct sysconsoftc { struct device sc_dev; struct intrhand sc_abih; /* `abort' switch */ struct intrhand sc_acih; /* `ac fail' */ struct intrhand sc_sfih; /* `sys fail' */ }; void sysconattach(struct device *, struct device *, void *); int sysconmatch(struct device *, void *, void *); int syscon_print(void *, const char *); int syscon_scan(struct device *, void *, void *); int sysconabort(void *); int sysconacfail(void *); int sysconsysfail(void *); struct cfattach syscon_ca = { sizeof(struct sysconsoftc), sysconmatch, sysconattach }; struct cfdriver syscon_cd = { NULL, "syscon", DV_DULL }; int sysconmatch(struct device *parent, void *cf, void *args) { return (syscon_cd.cd_ndevs == 0); } void sysconattach(struct device *parent, struct device *self, void *args) { struct sysconsoftc *sc = (struct sysconsoftc *)self; int i; printf("\n"); /* * Set up interrupt handlers. */ for (i = 0; i < NINTSRC_SYSCON; i++) SLIST_INIT(&sysconintr_handlers[i]); /* * Clear SYSFAIL if lit. */ *(volatile u_int32_t *)AV_UCSR |= UCSR_DRVSFBIT; *(volatile u_int32_t *)AV_CLRINT = ISTATE_SYSFAIL; sc->sc_abih.ih_fn = sysconabort; sc->sc_abih.ih_arg = 0; sc->sc_abih.ih_flags = INTR_WANTFRAME; sc->sc_abih.ih_ipl = IPL_ABORT; sc->sc_acih.ih_fn = sysconacfail; sc->sc_acih.ih_arg = 0; sc->sc_acih.ih_flags = INTR_WANTFRAME; sc->sc_acih.ih_ipl = IPL_ABORT; sc->sc_sfih.ih_fn = sysconsysfail; sc->sc_sfih.ih_arg = 0; sc->sc_sfih.ih_flags = INTR_WANTFRAME; sc->sc_sfih.ih_ipl = IPL_ABORT; sysconintr_establish(INTSRC_ABORT, &sc->sc_abih, "abort"); sysconintr_establish(INTSRC_ACFAIL, &sc->sc_acih, "acfail"); sysconintr_establish(INTSRC_SYSFAIL, &sc->sc_sfih, "sysfail"); config_search(syscon_scan, self, args); } int syscon_scan(struct device *parent, void *child, void *args) { struct cfdata *cf = child; struct confargs oca, *ca = args; bzero(&oca, sizeof oca); oca.ca_iot = ca->ca_iot; oca.ca_offset = (paddr_t)cf->cf_loc[0]; if (oca.ca_offset != (paddr_t)-1) oca.ca_paddr = ca->ca_paddr + oca.ca_offset; else oca.ca_paddr = (paddr_t)-1; if ((*cf->cf_attach->ca_match)(parent, cf, &oca) == 0) return (0); config_attach(parent, cf, &oca, syscon_print); return (1); } int syscon_print(void *args, const char *pnp) { struct confargs *ca = args; if (ca->ca_offset != (paddr_t)-1) printf(" offset 0x%lx", ca->ca_offset); return (UNCONF); } /* * Interrupt related code */ intrhand_t sysconintr_handlers[NINTSRC_SYSCON]; int sysconintr_establish(u_int intsrc, struct intrhand *ih, const char *name) { intrhand_t *list; list = &sysconintr_handlers[intsrc]; if (!SLIST_EMPTY(list)) { #ifdef DIAGNOSTIC printf("%s: interrupt source %u already registered\n", __func__, intsrc); #endif return (EINVAL); } evcount_attach(&ih->ih_count, name, &ih->ih_ipl); SLIST_INSERT_HEAD(list, ih, ih_link); intsrc_enable(intsrc, ih->ih_ipl); return (0); } void sysconintr_disestablish(u_int intsrc, struct intrhand *ih) { intrhand_t *list; list = &sysconintr_handlers[intsrc]; evcount_detach(&ih->ih_count); SLIST_REMOVE(list, ih, intrhand, ih_link); intsrc_disable(intsrc); } int sysconabort(void *eframe) { *(volatile u_int32_t *)AV_CLRINT = ISTATE_ABORT; nmihand(eframe); return (1); } int sysconsysfail(void *eframe) { *(volatile u_int32_t *)AV_CLRINT = ISTATE_SYSFAIL; printf("SYSFAIL* ASSERTED\n"); return (1); } int sysconacfail(void *eframe) { *(volatile u_int32_t *)AV_CLRINT = ISTATE_ACFAIL; printf("ACFAIL* ASSERTED\n"); return (1); }