Home | History | Annotate | Line # | Download | only in dev
plum.c revision 1.18.2.3
      1  1.18.2.3  thorpej /*	$NetBSD: plum.c,v 1.18.2.3 2021/03/21 17:35:44 thorpej Exp $ */
      2       1.1      uch 
      3       1.2      uch /*-
      4       1.2      uch  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5       1.1      uch  * All rights reserved.
      6       1.1      uch  *
      7       1.2      uch  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2      uch  * by UCHIYAMA Yasushi.
      9       1.2      uch  *
     10       1.1      uch  * Redistribution and use in source and binary forms, with or without
     11       1.1      uch  * modification, are permitted provided that the following conditions
     12       1.1      uch  * are met:
     13       1.1      uch  * 1. Redistributions of source code must retain the above copyright
     14       1.1      uch  *    notice, this list of conditions and the following disclaimer.
     15       1.2      uch  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2      uch  *    notice, this list of conditions and the following disclaimer in the
     17       1.2      uch  *    documentation and/or other materials provided with the distribution.
     18       1.1      uch  *
     19       1.2      uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.2      uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.2      uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.2      uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.2      uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.2      uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.2      uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.2      uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.2      uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.2      uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.2      uch  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1      uch  */
     31       1.7    lukem 
     32       1.7    lukem #include <sys/cdefs.h>
     33  1.18.2.3  thorpej __KERNEL_RCSID(0, "$NetBSD: plum.c,v 1.18.2.3 2021/03/21 17:35:44 thorpej Exp $");
     34       1.1      uch 
     35       1.1      uch #include <sys/param.h>
     36       1.1      uch #include <sys/systm.h>
     37       1.1      uch #include <sys/device.h>
     38      1.18  thorpej #include <sys/kmem.h>
     39       1.1      uch 
     40       1.1      uch #include <machine/bus.h>
     41       1.1      uch #include <machine/intr.h>
     42       1.1      uch 
     43       1.1      uch #include <hpcmips/tx/tx39var.h>
     44       1.1      uch #include <hpcmips/tx/txcsbusvar.h>
     45       1.1      uch #include <hpcmips/dev/plumvar.h>
     46       1.1      uch #include <hpcmips/dev/plumreg.h>
     47       1.1      uch 
     48      1.14      chs int plum_match(device_t, cfdata_t, void *);
     49      1.14      chs void plum_attach(device_t, device_t, void *);
     50       1.2      uch int plum_print(void *, const char *);
     51      1.14      chs int plum_search(device_t, cfdata_t, const int *, void *);
     52       1.1      uch 
     53       1.1      uch struct plum_softc {
     54       1.1      uch 	plum_chipset_tag_t	sc_pc;
     55       1.1      uch 	bus_space_tag_t		sc_csregt;
     56       1.1      uch 	bus_space_tag_t		sc_csiot;
     57       1.1      uch 	bus_space_tag_t		sc_csmemt;
     58       1.1      uch 	int			sc_irq;
     59       1.1      uch 	int			sc_pri;
     60       1.1      uch };
     61       1.1      uch 
     62      1.14      chs CFATTACH_DECL_NEW(plum, sizeof(struct plum_softc),
     63       1.6  thorpej     plum_match, plum_attach, NULL, NULL);
     64       1.1      uch 
     65       1.2      uch plumreg_t plum_idcheck(bus_space_tag_t);
     66       1.1      uch 
     67       1.1      uch int
     68      1.14      chs plum_match(device_t parent, cfdata_t cf, void *aux)
     69       1.1      uch {
     70       1.1      uch 	struct cs_attach_args *ca = aux;
     71       1.1      uch 
     72       1.1      uch 	switch (plum_idcheck(ca->ca_csreg.cstag)) {
     73       1.1      uch 	default:
     74       1.2      uch 		return (0);
     75       1.1      uch 	case PLUM2_1:
     76       1.1      uch 	case PLUM2_2:
     77       1.8   simonb 		/* nothing */;
     78       1.1      uch 	}
     79       1.1      uch 
     80       1.2      uch 	return (1);
     81       1.1      uch }
     82       1.1      uch 
     83       1.1      uch void
     84      1.14      chs plum_attach(device_t parent, device_t self, void *aux)
     85       1.1      uch {
     86       1.1      uch 	struct cs_attach_args *ca = aux;
     87      1.14      chs 	struct plum_softc *sc = device_private(self);
     88       1.1      uch 	plumreg_t reg;
     89       1.1      uch 
     90       1.1      uch 	sc->sc_csregt	= ca->ca_csreg.cstag;
     91       1.1      uch 	sc->sc_csiot	= ca->ca_csio.cstag;
     92       1.1      uch 	sc->sc_csmemt	= ca->ca_csmem.cstag;
     93       1.1      uch 	sc->sc_irq	= ca->ca_irq1;
     94       1.1      uch 
     95       1.9       he 	switch (reg = plum_idcheck(sc->sc_csregt)) {
     96       1.1      uch 	default:
     97       1.1      uch 		printf(": unknown revision %#x\n", reg);
     98       1.1      uch 		return;
     99       1.1      uch 	case PLUM2_1:
    100       1.1      uch 		printf(": Plum2 #1\n");
    101       1.1      uch 		break;
    102       1.1      uch 	case PLUM2_2:
    103       1.1      uch 		printf(": Plum2 #2\n");
    104       1.1      uch 		break;
    105       1.1      uch 	}
    106      1.18  thorpej 	sc->sc_pc = kmem_zalloc(sizeof(struct plum_chipset_tag), KM_SLEEP);
    107       1.1      uch 	sc->sc_pc->pc_tc = ca->ca_tc;
    108       1.1      uch 
    109       1.1      uch 	/* Attach Plum devices */
    110       1.1      uch 	/*
    111       1.1      uch 	 * interrupt, power/clock module is used by other plum module.
    112       1.1      uch 	 * attach first.
    113       1.1      uch 	 */
    114       1.1      uch 	sc->sc_pri = 2;
    115  1.18.2.2  thorpej 	config_search(self, NULL,
    116  1.18.2.1  thorpej 	    CFARG_SUBMATCH, plum_search,
    117  1.18.2.1  thorpej 	    CFARG_EOL);
    118  1.18.2.1  thorpej 
    119       1.1      uch 	/*
    120       1.1      uch 	 * Other plum module.
    121       1.1      uch 	 */
    122       1.1      uch 	sc->sc_pri = 1;
    123  1.18.2.2  thorpej 	config_search(self, NULL,
    124  1.18.2.1  thorpej 	    CFARG_SUBMATCH, plum_search,
    125  1.18.2.1  thorpej 	    CFARG_EOL);
    126       1.1      uch }
    127       1.1      uch 
    128       1.1      uch plumreg_t
    129       1.2      uch plum_idcheck(bus_space_tag_t regt)
    130       1.1      uch {
    131       1.1      uch 	bus_space_handle_t regh;
    132       1.1      uch 	plumreg_t reg;
    133       1.1      uch 
    134       1.1      uch 	if (bus_space_map(regt, PLUM_ID_REGBASE,
    135       1.2      uch 	    PLUM_ID_REGSIZE, 0, &regh)) {
    136       1.1      uch 		printf("ID register map failed\n");
    137       1.2      uch 		return (0);
    138       1.1      uch 	}
    139       1.1      uch 	reg = plum_conf_read(regt, regh, PLUM_ID_REG);
    140       1.1      uch 	bus_space_unmap(regt, regh, PLUM_ID_REGSIZE);
    141       1.1      uch 
    142       1.2      uch 	return (reg);
    143       1.1      uch }
    144       1.1      uch 
    145       1.1      uch int
    146       1.2      uch plum_print(void *aux, const char *pnp)
    147       1.1      uch {
    148       1.2      uch 
    149       1.2      uch 	return (pnp ? QUIET : UNCONF);
    150       1.1      uch }
    151       1.1      uch 
    152       1.1      uch int
    153      1.14      chs plum_search(device_t parent, cfdata_t cf, const int *ldesc, void *aux)
    154       1.1      uch {
    155      1.14      chs 	struct plum_softc *sc = device_private(parent);
    156       1.1      uch 	struct plum_attach_args pa;
    157       1.1      uch 
    158       1.1      uch 	pa.pa_pc	= sc->sc_pc;
    159       1.1      uch 	pa.pa_regt	= sc->sc_csregt;
    160       1.1      uch 	pa.pa_iot	= sc->sc_csiot;
    161       1.1      uch 	pa.pa_memt	= sc->sc_csmemt;
    162       1.1      uch 	pa.pa_irq	= sc->sc_irq;
    163       1.1      uch 
    164       1.4  thorpej 	if (config_match(parent, cf, &pa) == sc->sc_pri) {
    165       1.1      uch 		config_attach(parent, cf, &pa, plum_print);
    166       1.1      uch 	}
    167       1.1      uch 
    168       1.1      uch 	return 0;
    169       1.1      uch }
    170       1.1      uch 
    171       1.1      uch plumreg_t
    172       1.2      uch plum_conf_read(bus_space_tag_t t, bus_space_handle_t h, int o)
    173       1.1      uch {
    174       1.1      uch 	plumreg_t reg;
    175       1.2      uch 
    176       1.1      uch 	reg = bus_space_read_4(t, h, o);
    177       1.2      uch 
    178       1.2      uch 	return (reg);
    179       1.1      uch }
    180       1.1      uch 
    181       1.1      uch void
    182       1.2      uch plum_conf_write(bus_space_tag_t t, bus_space_handle_t h, int o, plumreg_t v)
    183       1.1      uch {
    184       1.2      uch 
    185       1.1      uch 	bus_space_write_4(t, h, o, v);
    186       1.1      uch }
    187       1.1      uch 
    188       1.1      uch void
    189       1.2      uch plum_conf_register_intr(plum_chipset_tag_t t, void *intrt)
    190       1.1      uch {
    191       1.2      uch 
    192       1.1      uch 	if (t->pc_intrt) {
    193       1.1      uch 		panic("duplicate intrt");
    194       1.1      uch 	}
    195       1.2      uch 
    196       1.1      uch 	t->pc_intrt = intrt;
    197       1.1      uch }
    198       1.1      uch 
    199       1.1      uch void
    200       1.2      uch plum_conf_register_power(plum_chipset_tag_t t, void *powert)
    201       1.1      uch {
    202       1.2      uch 
    203       1.1      uch 	if (t->pc_powert) {
    204       1.1      uch 		panic("duplicate powert");
    205       1.1      uch 	}
    206       1.2      uch 
    207       1.1      uch 	t->pc_powert = powert;
    208       1.1      uch }
    209