NetBSD/sys/arch/hpcsh/dev/hd64461/hd64461uart.c

219 lines
5.8 KiB
C

/* $NetBSD: hd64461uart.c,v 1.2 2001/03/20 16:03:28 uch Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``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 FOUNDATION OR CONTRIBUTORS
* 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 <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <sys/termios.h>
#include <dev/cons.h>
#include <sys/conf.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <dev/ic/comvar.h>
#include <dev/ic/comreg.h>
#ifdef DEBUG
#include <hpcsh/hpcsh/debug.h>
#endif
#include <hpcsh/dev/hd64461/hd64461var.h>
#include <hpcsh/dev/hd64461/hd64461reg.h>
#include <hpcsh/dev/hd64461/hd64461intcvar.h>
static struct hd64461uart_chip {
struct hpcsh_bus_space __tag_body;
bus_space_tag_t io_tag;
int console;
} hd64461uart_chip;
struct hd64461uart_softc {
struct com_softc sc_com;
struct hd64461uart_chip *sc_chip;
enum hd64461_module_id sc_module_id;
};
/* boot console */
cdev_decl(com);
void comcnprobe(struct consdev *);
void comcninit(struct consdev *);
static int hd64461uart_match(struct device *, struct cfdata *, void *);
static void hd64461uart_attach(struct device *, struct device *, void *);
struct cfattach hd64461uart_ca = {
sizeof(struct hd64461uart_softc), hd64461uart_match,
hd64461uart_attach
};
static void hd64461uart_init(void);
static u_int8_t hd64461uart_read_1(void *, bus_space_handle_t, bus_size_t);
static void hd64461uart_write_1(void *, bus_space_handle_t, bus_size_t,
u_int8_t);
#ifdef DEBUG
static void hd64461uart_info(struct hd64461uart_softc *);
#endif
#define CONMODE ((TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8) /* 8N1 */
#ifndef COMCN_SPEED
#define COMCN_SPEED 19200
#endif
void
comcnprobe(struct consdev *cp)
{
int maj;
/* locate the major number */
for (maj = 0; maj < nchrdev; maj++)
if (cdevsw[maj].d_open == comopen)
break;
/* Initialize required fields. */
cp->cn_dev = makedev(maj, 0);
cp->cn_pri = CN_NORMAL;
}
void
comcninit(struct consdev *cp)
{
hd64461uart_init();
comcnattach(hd64461uart_chip.io_tag, 0x0, COMCN_SPEED, COM_FREQ,
CONMODE);
hd64461uart_chip.console = 1;
}
static int
hd64461uart_match(struct device *parent, struct cfdata *cf, void *aux)
{
struct hd64461_attach_args *ha = aux;
return (ha->ha_module_id == HD64461_MODULE_UART);
}
static void
hd64461uart_attach(struct device *parent, struct device *self, void *aux)
{
struct hd64461_attach_args *ha = aux;
struct hd64461uart_softc *sc = (struct hd64461uart_softc *)self;
struct com_softc *csc = &sc->sc_com;
u_int16_t r16;
sc->sc_chip = &hd64461uart_chip;
sc->sc_module_id = ha->ha_module_id;
hd64461uart_init();
csc->sc_iot = sc->sc_chip->io_tag;
bus_space_map(csc->sc_iot, 0, 8, 0, &csc->sc_ioh);
csc->sc_iobase = 0;
csc->sc_frequency = COM_FREQ;
/* switch port to UART */
/* supply clock */
r16 = hd64461_reg_read_2(HD64461_SYSSTBCR_REG16);
r16 &= ~HD64461_SYSSTBCR_SURTSD;
hd64461_reg_write_2(HD64461_SYSSTBCR_REG16, r16);
#ifdef DEBUG
if (bootverbose)
hd64461uart_info(sc);
#endif
/* sanity check */
if (!comprobe1(csc->sc_iot, csc->sc_ioh)) {
printf(": device problem. don't attach.\n");
/* stop clock */
r16 |= HD64461_SYSSTBCR_SURTSD;
hd64461_reg_write_2(HD64461_SYSSTBCR_REG16, r16);
return;
}
com_attach_subr(csc);
hd64461_intr_establish(HD64461_IRQ_UART, IST_LEVEL, IPL_TTY,
comintr, self);
}
static void
hd64461uart_init()
{
if (hd64461uart_chip.io_tag)
return;
hd64461uart_chip.io_tag = bus_space_create(
&hd64461uart_chip.__tag_body, "HD64461 UART I/O",
HD64461_UART_REGBASE, 0); /* no extent */
/* override bus_space_read_1, bus_space_write_1 */
hd64461uart_chip.io_tag->hbs_r_1 = hd64461uart_read_1;
hd64461uart_chip.io_tag->hbs_w_1 = hd64461uart_write_1;
}
static u_int8_t
hd64461uart_read_1(void *t, bus_space_handle_t h, bus_size_t ofs)
{
return *(volatile u_int8_t *)(h + (ofs << 1));
}
static void
hd64461uart_write_1(void *t, bus_space_handle_t h, bus_size_t ofs,
u_int8_t val)
{
*(volatile u_int8_t *)(h + (ofs << 1)) = val;
}
#ifdef DEBUG
static void
hd64461uart_info(struct hd64461uart_softc *sc)
{
const char name[] = __FUNCTION__;
dbg_banner_start(name, sizeof name);
dbg_banner_end();
}
#endif /* DEBUG */