Home | History | Annotate | Line # | Download | only in xmi
xmi.c revision 1.12.8.1
      1  1.12.8.1   thorpej /*	$NetBSD: xmi.c,v 1.12.8.1 2021/08/04 23:25:00 thorpej Exp $	*/
      2       1.1     ragge 
      3       1.1     ragge /*
      4       1.1     ragge  * Copyright (c) 2000 Ludd, University of Lule}, Sweden. All rights reserved.
      5       1.1     ragge  *
      6       1.1     ragge  * Redistribution and use in source and binary forms, with or without
      7       1.1     ragge  * modification, are permitted provided that the following conditions
      8       1.1     ragge  * are met:
      9       1.1     ragge  * 1. Redistributions of source code must retain the above copyright
     10       1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     11       1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     13       1.1     ragge  *    documentation and/or other materials provided with the distribution.
     14       1.1     ragge  * 3. All advertising materials mentioning features or use of this software
     15       1.1     ragge  *    must display the following acknowledgement:
     16       1.1     ragge  *      This product includes software developed at Ludd, University of
     17       1.1     ragge  *      Lule}, Sweden and its contributors.
     18       1.1     ragge  * 4. The name of the author may not be used to endorse or promote products
     19       1.1     ragge  *    derived from this software without specific prior written permission
     20       1.1     ragge  *
     21       1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1     ragge  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1     ragge  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1     ragge  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1     ragge  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1     ragge  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1     ragge  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1     ragge  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1     ragge  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1     ragge  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1     ragge  */
     32       1.1     ragge 
     33       1.1     ragge /*
     34       1.1     ragge  * XMI specific routines.
     35       1.1     ragge  */
     36       1.2     lukem 
     37       1.2     lukem #include <sys/cdefs.h>
     38  1.12.8.1   thorpej __KERNEL_RCSID(0, "$NetBSD: xmi.c,v 1.12.8.1 2021/08/04 23:25:00 thorpej Exp $");
     39       1.1     ragge 
     40       1.1     ragge #include <sys/param.h>
     41       1.1     ragge #include <sys/systm.h>
     42       1.1     ragge #include <sys/device.h>
     43       1.1     ragge 
     44       1.9        ad #include <sys/bus.h>
     45       1.9        ad #include <sys/cpu.h>
     46       1.1     ragge 
     47       1.1     ragge #include <dev/xmi/xmireg.h>
     48       1.1     ragge #include <dev/xmi/xmivar.h>
     49       1.1     ragge 
     50       1.1     ragge static int xmi_print(void *, const char *);
     51       1.1     ragge 
     52      1.10      matt const struct xmi_list xmi_list[] = {
     53       1.1     ragge 	{XMIDT_KA62, 0, "ka6200"},
     54       1.1     ragge 	{XMIDT_KA64, 1, "ka6400"},
     55       1.1     ragge 	{XMIDT_KA65, 0, "ka6500"},
     56       1.1     ragge 	{XMIDT_KA66, 0, "ka6600"},
     57       1.1     ragge 	{XMIDT_MS62, 1, "ms62"},
     58       1.1     ragge 	{XMIDT_DWMBA, 1, "dwmba"},
     59       1.1     ragge 	{0,0,0}
     60       1.1     ragge };
     61       1.1     ragge 
     62       1.1     ragge int
     63       1.1     ragge xmi_print(void *aux, const char *name)
     64       1.1     ragge {
     65      1.10      matt 	struct xmi_attach_args * const xa = aux;
     66      1.10      matt 	const struct xmi_list *xl;
     67       1.1     ragge 
     68       1.1     ragge 	for (xl = &xmi_list[0]; xl->xl_nr; xl++)
     69       1.1     ragge 		if (xl->xl_nr == bus_space_read_2(xa->xa_iot, xa->xa_ioh, 0))
     70       1.1     ragge 			break;
     71       1.1     ragge 
     72       1.1     ragge 	if (name) {
     73       1.1     ragge 		if (xl->xl_nr == 0)
     74       1.3   thorpej 			aprint_normal("unknown device 0x%x",
     75       1.1     ragge 			    bus_space_read_2(xa->xa_iot, xa->xa_ioh, 0));
     76       1.1     ragge 		else
     77       1.4   thorpej 			aprint_normal(xl->xl_name);
     78       1.3   thorpej 		aprint_normal(" at %s", name);
     79       1.1     ragge 	}
     80       1.3   thorpej 	aprint_normal(" node %d", xa->xa_nodenr);
     81       1.1     ragge 	return xl->xl_havedriver ? UNCONF : UNSUPP;
     82       1.1     ragge }
     83       1.1     ragge 
     84       1.1     ragge static	int lastiv = 0;
     85       1.1     ragge 
     86       1.1     ragge void
     87       1.1     ragge xmi_attach(struct xmi_softc *sc)
     88       1.1     ragge {
     89       1.1     ragge 	struct xmi_attach_args xa;
     90       1.1     ragge 	int nodenr;
     91       1.1     ragge 
     92      1.10      matt 	aprint_normal("\n");
     93       1.1     ragge 
     94       1.1     ragge 	xa.xa_iot = sc->sc_iot;
     95       1.1     ragge 	xa.xa_busnr = sc->sc_busnr;
     96       1.1     ragge 	xa.xa_dmat = sc->sc_dmat;
     97       1.1     ragge 	xa.xa_intcpu = sc->sc_intcpu;
     98       1.1     ragge 	/*
     99       1.1     ragge 	 * Interrupt numbers. All vectors from 256-512 are free, use
    100       1.1     ragge 	 * them for XMI devices and just count them up.
    101       1.1     ragge 	 * Above 512 are only interrupt vectors for unibus devices.
    102       1.1     ragge 	 *
    103       1.1     ragge 	 * The XMI nodespace is giant in size. Only map in the first
    104       1.1     ragge 	 * page here and map more (if needed) in the device itself.
    105       1.1     ragge 	 */
    106       1.1     ragge 	for (nodenr = 0; nodenr < NNODEXMI; nodenr++) {
    107       1.1     ragge 		if (bus_space_map(sc->sc_iot, sc->sc_addr + XMI_NODE(nodenr),
    108       1.5   thorpej 		    PAGE_SIZE, 0, &xa.xa_ioh)) {
    109      1.10      matt 			aprint_error_dev(sc->sc_dev,
    110      1.10      matt 			    "bus_space_map failed, node %d\n", nodenr);
    111       1.1     ragge 			return;
    112       1.1     ragge 		}
    113       1.8  christos 		if (badaddr((void *)xa.xa_ioh, 4)) {
    114       1.5   thorpej 			bus_space_unmap(sc->sc_iot, xa.xa_ioh, PAGE_SIZE);
    115       1.1     ragge 			continue;
    116       1.1     ragge 		}
    117       1.1     ragge 		xa.xa_nodenr = nodenr;
    118       1.1     ragge 		xa.xa_ivec = 256 + lastiv;
    119       1.1     ragge 		lastiv += 4;
    120  1.12.8.1   thorpej 		config_found(sc->sc_dev, &xa, xmi_print, CFARGS_NONE);
    121       1.1     ragge 	}
    122       1.1     ragge }
    123