Home | History | Annotate | Line # | Download | only in hd64465
hd64465uart.c revision 1.2
      1 /*	$NetBSD: hd64465uart.c,v 1.2 2002/03/02 22:26:26 uch Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *        This product includes software developed by the NetBSD
     18  *        Foundation, Inc. and its contributors.
     19  * 4. Neither the name of The NetBSD Foundation nor the names of its
     20  *    contributors may be used to endorse or promote products derived
     21  *    from this software without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     24  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     27  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33  * POSSIBILITY OF SUCH DAMAGE.
     34  */
     35 
     36 #include "opt_kgdb.h"
     37 
     38 #include <sys/param.h>
     39 #include <sys/systm.h>
     40 #include <sys/reboot.h>
     41 #include <sys/malloc.h>
     42 #include <sys/device.h>
     43 #include <sys/kgdb.h>
     44 
     45 #include <sys/termios.h>
     46 #include <dev/cons.h>
     47 #include <sys/conf.h>
     48 
     49 #include <machine/bus.h>
     50 #include <machine/intr.h>
     51 #include <machine/console.h>
     52 
     53 #include <dev/ic/comvar.h>
     54 #include <dev/ic/comreg.h>
     55 
     56 #include <machine/debug.h>
     57 
     58 #include <hpcsh/dev/hd64465/hd64465var.h>
     59 #include <hpcsh/dev/hd64465/hd64465uartvar.h>
     60 #include <hpcsh/dev/hd64465/hd64465uartreg.h>
     61 
     62 STATIC struct hd64465uart_chip {
     63 	struct hpcsh_bus_space __tag_body;
     64 	bus_space_tag_t io_tag;
     65 	int console;
     66 } hd64465uart_chip;
     67 
     68 struct hd64465uart_softc {
     69 	struct com_softc sc_com;
     70 
     71 	struct hd64465uart_chip *sc_chip;
     72 	enum hd64465_module_id sc_module_id;
     73 };
     74 
     75 /* boot console */
     76 cdev_decl(com);
     77 void hd64465uartcnprobe(struct consdev *);
     78 void hd64465uartcninit(struct consdev *);
     79 
     80 STATIC int hd64465uart_match(struct device *, struct cfdata *, void *);
     81 STATIC void hd64465uart_attach(struct device *, struct device *, void *);
     82 
     83 struct cfattach hd64465uart_ca = {
     84 	sizeof(struct hd64465uart_softc), hd64465uart_match,
     85 	hd64465uart_attach
     86 };
     87 
     88 STATIC void hd64465uart_init(void);
     89 STATIC u_int8_t hd64465uart_read_1(void *, bus_space_handle_t, bus_size_t);
     90 STATIC void hd64465uart_write_1(void *, bus_space_handle_t, bus_size_t,
     91     u_int8_t);
     92 
     93 #define CONMODE ((TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8) /* 8N1 */
     94 #ifndef COMCN_SPEED
     95 #define COMCN_SPEED	19200
     96 #endif
     97 
     98 void
     99 hd64465uartcnprobe(struct consdev *cp)
    100 {
    101 	int maj;
    102 
    103 	/* locate the major number */
    104 	for (maj = 0; maj < nchrdev; maj++)
    105 		if (cdevsw[maj].d_open == comopen)
    106 			break;
    107 
    108 	/* Initialize required fields. */
    109 	cp->cn_dev = makedev(maj, 0);
    110 	cp->cn_pri = CN_NORMAL;
    111 }
    112 
    113 void
    114 hd64465uartcninit(struct consdev *cp)
    115 {
    116 
    117 	hd64465uart_init();
    118 
    119 	comcnattach(hd64465uart_chip.io_tag, 0x0, COMCN_SPEED, COM_FREQ,
    120 	    CONMODE);
    121 
    122 	hd64465uart_chip.console = 1;
    123 }
    124 
    125 #ifdef KGDB
    126 int
    127 hd64465uart_kgdb_init()
    128 {
    129 
    130 	if (strcmp(kgdb_devname, "hd64465uart") != 0)
    131 		return (1);
    132 
    133 	hd64465uart_init();
    134 
    135 	if (com_kgdb_attach(hd64465uart_chip.io_tag, 0x0, kgdb_rate,
    136 	    COM_FREQ, CONMODE) != 0) {
    137 		printf("%s: KGDB console open failed.\n", __FUNCTION__);
    138 		return (1);
    139 	}
    140 
    141 	return (0);
    142 }
    143 #endif /* KGDB */
    144 
    145 int
    146 hd64465uart_match(struct device *parent, struct cfdata *cf, void *aux)
    147 {
    148 	struct hd64465_attach_args *ha = aux;
    149 
    150 	return (ha->ha_module_id == HD64465_MODULE_UART);
    151 }
    152 
    153 void
    154 hd64465uart_attach(struct device *parent, struct device *self, void *aux)
    155 {
    156 	struct hd64465_attach_args *ha = aux;
    157 	struct hd64465uart_softc *sc = (struct hd64465uart_softc *)self;
    158 	struct com_softc *csc = &sc->sc_com;
    159 
    160 	sc->sc_chip = &hd64465uart_chip;
    161 
    162 	sc->sc_module_id = ha->ha_module_id;
    163 
    164 	hd64465uart_init();
    165 
    166 	csc->sc_iot = sc->sc_chip->io_tag;
    167 	bus_space_map(csc->sc_iot, 0, 8, 0, &csc->sc_ioh);
    168 	csc->sc_iobase = 0;
    169 	csc->sc_frequency = COM_FREQ;
    170 
    171 	/* supply clock XXX notyet */
    172 
    173 	/* sanity check */
    174 	if (!comprobe1(csc->sc_iot, csc->sc_ioh)) {
    175 		printf(": device problem. don't attach.\n");
    176 
    177 		/* stop clock XXX notyet */
    178 		return;
    179 	}
    180 
    181 	com_attach_subr(csc);
    182 
    183 	/* register interrupt handler */
    184 	hd64465_intr_establish(HD64465_IRQ_UART, IST_EDGE, IPL_TTY,
    185 	    comintr, self);
    186 }
    187 
    188 void
    189 hd64465uart_init()
    190 {
    191 
    192 	if (hd64465uart_chip.io_tag)
    193 		return;
    194 
    195 	hd64465uart_chip.io_tag = bus_space_create(
    196 		&hd64465uart_chip.__tag_body, "HD64465 UART I/O",
    197 		0xb0008000, 0); /* no extent */
    198 
    199 	/* override bus_space_read_1, bus_space_write_1 */
    200 	hd64465uart_chip.io_tag->hbs_r_1 = hd64465uart_read_1;
    201 	hd64465uart_chip.io_tag->hbs_w_1 = hd64465uart_write_1;
    202 }
    203 
    204 u_int8_t
    205 hd64465uart_read_1(void *t, bus_space_handle_t h, bus_size_t ofs)
    206 {
    207 
    208 	return *(__volatile__ u_int8_t *)(h + (ofs << 1));
    209 }
    210 
    211 void
    212 hd64465uart_write_1(void *t, bus_space_handle_t h, bus_size_t ofs,
    213     u_int8_t val)
    214 {
    215 
    216 	*(__volatile__ u_int8_t *)(h + (ofs << 1)) = val;
    217 }
    218