Home | History | Annotate | Line # | Download | only in vr
com_vrip.c revision 1.3
      1  1.3  takemura /*	$NetBSD: com_vrip.c,v 1.3 2000/02/11 03:20:21 takemura Exp $	*/
      2  1.1  takemura 
      3  1.1  takemura /*-
      4  1.1  takemura  * Copyright (c) 1999 SASAKI Takesi. All rights reserved.
      5  1.1  takemura  * Copyright (c) 1999 PocketBSD Project. All rights reserved.
      6  1.1  takemura  *
      7  1.1  takemura  * Redistribution and use in source and binary forms, with or without
      8  1.1  takemura  * modification, are permitted provided that the following conditions
      9  1.1  takemura  * are met:
     10  1.1  takemura  * 1. Redistributions of source code must retain the above copyright
     11  1.1  takemura  *    notice, this list of conditions and the following disclaimer.
     12  1.1  takemura  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  takemura  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  takemura  *    documentation and/or other materials provided with the distribution.
     15  1.1  takemura  * 3. All advertising materials mentioning features or use of this software
     16  1.1  takemura  *    must display the following acknowledgement:
     17  1.1  takemura  *	This product includes software developed by the PocketBSD project
     18  1.1  takemura  *	and its contributors.
     19  1.1  takemura  * 4. Neither the name of the project nor the names of its contributors
     20  1.1  takemura  *    may be used to endorse or promote products derived from this software
     21  1.1  takemura  *    without specific prior written permission.
     22  1.1  takemura  *
     23  1.1  takemura  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.1  takemura  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.1  takemura  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.1  takemura  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.1  takemura  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.1  takemura  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.1  takemura  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.1  takemura  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.1  takemura  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.1  takemura  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.1  takemura  * SUCH DAMAGE.
     34  1.1  takemura  *
     35  1.1  takemura  */
     36  1.1  takemura 
     37  1.1  takemura #include <sys/param.h>
     38  1.1  takemura #include <sys/systm.h>
     39  1.1  takemura #include <sys/ioctl.h>
     40  1.1  takemura #include <sys/termios.h>
     41  1.1  takemura #include <sys/select.h>
     42  1.1  takemura #include <sys/tty.h>
     43  1.1  takemura #include <sys/proc.h>
     44  1.1  takemura #include <sys/user.h>
     45  1.1  takemura #include <sys/conf.h>
     46  1.1  takemura #include <sys/file.h>
     47  1.1  takemura #include <sys/uio.h>
     48  1.1  takemura #include <sys/kernel.h>
     49  1.1  takemura #include <sys/syslog.h>
     50  1.1  takemura #include <sys/types.h>
     51  1.1  takemura #include <sys/device.h>
     52  1.1  takemura #include <sys/reboot.h>
     53  1.1  takemura 
     54  1.1  takemura #include <machine/intr.h>
     55  1.1  takemura #include <machine/bus.h>
     56  1.1  takemura /* For serial console */
     57  1.1  takemura #include <machine/platid.h>
     58  1.1  takemura #include <machine/platid_mask.h>
     59  1.2  takemura #include <machine/config_hook.h>
     60  1.1  takemura 
     61  1.1  takemura #include <hpcmips/vr/vr.h>
     62  1.1  takemura #include <hpcmips/vr/vripvar.h>
     63  1.1  takemura #include <hpcmips/vr/cmureg.h>
     64  1.1  takemura #include <hpcmips/vr/siureg.h>
     65  1.1  takemura 
     66  1.1  takemura #include <dev/ic/comvar.h>
     67  1.1  takemura #include <dev/ic/comreg.h>
     68  1.1  takemura 
     69  1.1  takemura #include <hpcmips/vr/com_vripvar.h>
     70  1.1  takemura 
     71  1.1  takemura #include "locators.h"
     72  1.1  takemura 
     73  1.3  takemura #define COMVRIPDEBUG
     74  1.1  takemura #ifdef COMVRIPDEBUG
     75  1.1  takemura int	com_vrip_debug = 0;
     76  1.1  takemura #define	DPRINTF(arg) if (com_vrip_debug) printf arg;
     77  1.1  takemura #else
     78  1.1  takemura #define	DPRINTF(arg)
     79  1.1  takemura #endif
     80  1.1  takemura 
     81  1.1  takemura struct com_vrip_softc {
     82  1.1  takemura 	struct com_softc	sc_com;
     83  1.2  takemura 	int sc_pwctl;
     84  1.1  takemura };
     85  1.1  takemura 
     86  1.1  takemura static int com_vrip_probe __P((struct device *, struct cfdata *, void *));
     87  1.1  takemura static void com_vrip_attach __P((struct device *, struct device *, void *));
     88  1.1  takemura static int com_vrip_common_probe __P((bus_space_tag_t iot, int iobase));
     89  1.1  takemura int find_comenableport_from_cfdata __P((int *));
     90  1.1  takemura 
     91  1.1  takemura void vrcmu_init __P((void));
     92  1.1  takemura void vrcmu_supply __P((int));
     93  1.1  takemura void vrcmu_mask __P((int));
     94  1.1  takemura 
     95  1.1  takemura struct cfattach com_vrip_ca = {
     96  1.1  takemura 	sizeof(struct com_vrip_softc), com_vrip_probe, com_vrip_attach
     97  1.1  takemura };
     98  1.1  takemura 
     99  1.1  takemura /* For serial console */
    100  1.1  takemura extern struct cfdata cfdata[];
    101  1.1  takemura int
    102  1.1  takemura find_comenableport_from_cfdata(int *port)
    103  1.1  takemura {
    104  1.1  takemura 	platid_mask_t mask;
    105  1.1  takemura 	struct cfdata *cf;
    106  1.2  takemura 	int id;
    107  1.2  takemura 
    108  1.1  takemura 	printf ("COM enable port: ");
    109  1.1  takemura 	for (cf = cfdata; cf->cf_driver; cf++) {
    110  1.2  takemura 		if (strcmp(cf->cf_driver->cd_name, "pwctl"))
    111  1.1  takemura 			continue;
    112  1.2  takemura 		mask = PLATID_DEREF(cf->cf_loc[NEWGPBUSIFCF_PLATFORM]);
    113  1.2  takemura 		id = cf->cf_loc[NEWGPBUSIFCF_ID];
    114  1.2  takemura 		if (platid_match(&platid, &mask) &&
    115  1.2  takemura 		    id == CONFIG_HOOK_POWERCONTROL_COM0)
    116  1.1  takemura 			goto found;
    117  1.1  takemura 	}
    118  1.1  takemura 	*port = -1;
    119  1.1  takemura 	printf ("not found\n");
    120  1.1  takemura 	return 1;
    121  1.1  takemura  found:
    122  1.2  takemura 	*port = cf->cf_loc[NEWGPBUSIFCF_PORT];
    123  1.1  takemura 	printf ("#%d\n", *port);
    124  1.1  takemura 
    125  1.1  takemura 	return *port == GPBUSIFCF_COMCTRL_DEFAULT;
    126  1.1  takemura }
    127  1.1  takemura 
    128  1.1  takemura int
    129  1.1  takemura com_vrip_cnattach(iot, iobase, rate, frequency, cflag)
    130  1.1  takemura 	bus_space_tag_t iot;
    131  1.1  takemura 	int iobase;
    132  1.1  takemura 	int rate, frequency;
    133  1.1  takemura 	tcflag_t cflag;
    134  1.1  takemura {
    135  1.1  takemura 	int port;
    136  1.1  takemura 	/* Platform dependent setting */
    137  1.1  takemura 	__vrcmu_supply(CMUMSKSSIU | CMUMSKSIU, 1);
    138  1.1  takemura 	if (find_comenableport_from_cfdata(&port) == 0)
    139  1.1  takemura 		__vrgiu_out(port, 1);
    140  1.1  takemura 
    141  1.1  takemura 	if (!com_vrip_common_probe(iot, iobase))
    142  1.1  takemura 		return (EIO);	/* I can't find appropriate error number. */
    143  1.1  takemura 	return (comcnattach(iot, iobase, rate, frequency, cflag));
    144  1.1  takemura }
    145  1.1  takemura 
    146  1.1  takemura static int
    147  1.1  takemura com_vrip_common_probe(iot, iobase)
    148  1.1  takemura 	bus_space_tag_t iot;
    149  1.1  takemura 	int iobase;
    150  1.1  takemura {
    151  1.1  takemura 	bus_space_handle_t ioh;
    152  1.1  takemura 	int rv;
    153  1.1  takemura 
    154  1.1  takemura 	if (bus_space_map(iot, iobase, 1, 0, &ioh)) {
    155  1.1  takemura 		printf(": can't map i/o space\n");
    156  1.1  takemura 		return 0;
    157  1.1  takemura 	}
    158  1.1  takemura 	rv = comprobe1(iot, ioh);
    159  1.1  takemura 	bus_space_unmap(iot, ioh, 1);
    160  1.1  takemura 	return (rv);
    161  1.1  takemura }
    162  1.1  takemura 
    163  1.1  takemura static int
    164  1.1  takemura com_vrip_probe(parent, cf, aux)
    165  1.1  takemura 	struct device *parent;
    166  1.1  takemura 	struct cfdata *cf;
    167  1.1  takemura 	void *aux;
    168  1.1  takemura {
    169  1.1  takemura 	struct vrip_attach_args *va = aux;
    170  1.1  takemura 	bus_space_tag_t iot = va->va_iot;
    171  1.1  takemura 	int rv;
    172  1.1  takemura 
    173  1.1  takemura 	DPRINTF(("==com_vrip_probe"));
    174  1.1  takemura 
    175  1.1  takemura 	if (va->va_addr == VRIPCF_ADDR_DEFAULT ||
    176  1.1  takemura 	    va->va_intr == VRIPCF_INTR_DEFAULT) {
    177  1.1  takemura 		printf(": need addr and intr.\n");
    178  1.1  takemura 		return (0);
    179  1.1  takemura 	}
    180  1.1  takemura 
    181  1.1  takemura 	if (!va->va_cf || !va->va_cf->cf_clock)
    182  1.1  takemura 		return 0; /* not yet CMU attached. Try again later. */
    183  1.1  takemura 
    184  1.1  takemura 	va->va_cf->cf_clock(va->va_cc, CMUMSKSSIU | CMUMSKSIU, 1);
    185  1.1  takemura 
    186  1.1  takemura 	if (com_is_console(iot, va->va_addr, 0)) {
    187  1.1  takemura 		/*
    188  1.1  takemura 		 *  We have alredy probed.
    189  1.1  takemura 		 */
    190  1.1  takemura 		rv = 1;
    191  1.1  takemura 	} else {
    192  1.1  takemura 		rv = com_vrip_common_probe(iot, va->va_addr);
    193  1.1  takemura 	}
    194  1.1  takemura 
    195  1.1  takemura 	DPRINTF((rv ? ": found COM ports\n" : ": can't probe COM device\n"));
    196  1.1  takemura 
    197  1.1  takemura 	if (rv) {
    198  1.1  takemura 		va->va_size = COM_NPORTS;
    199  1.1  takemura 	}
    200  1.1  takemura 	return (rv);
    201  1.1  takemura }
    202  1.1  takemura 
    203  1.1  takemura 
    204  1.1  takemura static void
    205  1.1  takemura com_vrip_attach(parent, self, aux)
    206  1.1  takemura 	struct device *parent, *self;
    207  1.1  takemura 	void *aux;
    208  1.1  takemura {
    209  1.1  takemura 	struct com_vrip_softc *vsc = (void *) self;
    210  1.1  takemura 	struct com_softc *sc = &vsc->sc_com;
    211  1.1  takemura 	struct vrip_attach_args *va = aux;
    212  1.1  takemura 
    213  1.1  takemura 	bus_space_tag_t iot = va->va_iot;
    214  1.1  takemura 	bus_space_handle_t ioh;
    215  1.1  takemura 
    216  1.2  takemura 	vsc->sc_pwctl = sc->sc_dev.dv_cfdata->cf_loc[VRIPCF_PWCTL];
    217  1.2  takemura 
    218  1.1  takemura 	DPRINTF(("==com_vrip_attach"));
    219  1.1  takemura 
    220  1.1  takemura 	if (bus_space_map(iot, va->va_addr, 1, 0, &ioh)) {
    221  1.1  takemura 		printf(": can't map bus space\n");
    222  1.1  takemura 		return;
    223  1.1  takemura 	}
    224  1.1  takemura 	sc->sc_iobase = va->va_addr;
    225  1.1  takemura 	sc->sc_iot = iot;
    226  1.1  takemura 	sc->sc_ioh = ioh;
    227  1.1  takemura 
    228  1.1  takemura 	sc->enable = NULL; /* XXX: CMU control */
    229  1.1  takemura 	sc->disable = NULL;
    230  1.1  takemura 
    231  1.1  takemura 	sc->sc_frequency = VRCOM_FREQ;
    232  1.1  takemura 	/* Power management */
    233  1.1  takemura 	va->va_cf->cf_clock(va->va_cc, CMUMSKSSIU | CMUMSKSIU, 1);
    234  1.2  takemura 	/*
    235  1.2  takemura 	va->va_gf->gf_portwrite(va->va_gc, GIUPORT_COM, 1);
    236  1.2  takemura 	*/
    237  1.2  takemura 	/* XXX, locale 'ID' must be need */
    238  1.2  takemura 	config_hook_call(CONFIG_HOOK_POWERCONTROL, vsc->sc_pwctl, (void*)1);
    239  1.2  takemura 
    240  1.1  takemura 
    241  1.1  takemura 	DPRINTF(("Try to attach com.\n"));
    242  1.1  takemura 	com_attach_subr(sc);
    243  1.1  takemura 
    244  1.1  takemura 	DPRINTF(("Establish intr"));
    245  1.1  takemura 	vrip_intr_establish(va->va_vc, va->va_intr, IPL_TTY, comintr, self);
    246  1.1  takemura 
    247  1.1  takemura 	DPRINTF((":return()"));
    248  1.1  takemura }
    249