2002-09-28 00:31:45 +04:00
|
|
|
/* $NetBSD: zs_pcc.c,v 1.14 2002/09/27 20:34:02 thorpej Exp $ */
|
1996-04-26 22:59:58 +04:00
|
|
|
|
1996-12-09 20:35:24 +03:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
1996-04-26 22:59:58 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
1996-12-09 20:35:24 +03:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Gordon W. Ross and Jason R. Thorpe.
|
|
|
|
*
|
1996-04-26 22:59:58 +04:00
|
|
|
* 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.
|
1996-12-09 20:35:24 +03:00
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
1996-04-26 22:59:58 +04:00
|
|
|
* must display the following acknowledgement:
|
1996-12-09 20:35:24 +03:00
|
|
|
* 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.
|
1996-04-26 22:59:58 +04:00
|
|
|
*
|
1996-12-09 20:35:24 +03:00
|
|
|
* 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
|
1997-10-09 12:37:20 +04:00
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
1996-12-09 20:35:24 +03:00
|
|
|
* 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.
|
1996-04-26 22:59:58 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Zilog Z8530 Dual UART driver (machine-dependent part)
|
|
|
|
*
|
|
|
|
* Runs two serial lines per chip using slave drivers.
|
|
|
|
* Plain tty/async lines use the zs_async slave.
|
|
|
|
*
|
|
|
|
* Modified for NetBSD/mvme68k by Jason R. Thorpe <thorpej@NetBSD.ORG>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/tty.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
|
|
|
#include <dev/cons.h>
|
|
|
|
#include <dev/ic/z8530reg.h>
|
|
|
|
#include <machine/z8530var.h>
|
|
|
|
|
|
|
|
#include <machine/cpu.h>
|
2000-03-19 01:33:02 +03:00
|
|
|
#include <machine/bus.h>
|
1996-04-26 22:59:58 +04:00
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
#include <mvme68k/dev/mainbus.h>
|
1996-04-26 22:59:58 +04:00
|
|
|
#include <mvme68k/dev/pccreg.h>
|
|
|
|
#include <mvme68k/dev/pccvar.h>
|
|
|
|
#include <mvme68k/dev/zsvar.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* Definition of the driver for autoconfig. */
|
1997-03-19 19:24:38 +03:00
|
|
|
static int zsc_pcc_match __P((struct device *, struct cfdata *, void *));
|
1996-04-26 22:59:58 +04:00
|
|
|
static void zsc_pcc_attach __P((struct device *, struct device *, void *));
|
|
|
|
|
2002-09-28 00:31:45 +04:00
|
|
|
const struct cfattach zsc_pcc_ca = {
|
1996-04-26 22:59:58 +04:00
|
|
|
sizeof(struct zsc_softc), zsc_pcc_match, zsc_pcc_attach
|
|
|
|
};
|
|
|
|
|
1998-01-12 22:51:03 +03:00
|
|
|
extern struct cfdriver zsc_cd;
|
1996-04-26 22:59:58 +04:00
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
cons_decl(zsc_pcc);
|
|
|
|
|
|
|
|
|
1996-04-26 22:59:58 +04:00
|
|
|
/*
|
|
|
|
* Is the zs chip present?
|
|
|
|
*/
|
|
|
|
static int
|
1997-03-19 19:24:38 +03:00
|
|
|
zsc_pcc_match(parent, cf, aux)
|
1996-04-26 22:59:58 +04:00
|
|
|
struct device *parent;
|
1997-03-19 19:24:38 +03:00
|
|
|
struct cfdata *cf;
|
|
|
|
void *aux;
|
1996-04-26 22:59:58 +04:00
|
|
|
{
|
|
|
|
struct pcc_attach_args *pa = aux;
|
|
|
|
|
|
|
|
if (strcmp(pa->pa_name, zsc_cd.cd_name))
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
pa->pa_ipl = cf->pcccf_ipl;
|
|
|
|
if (pa->pa_ipl == -1)
|
|
|
|
pa->pa_ipl = ZSHARD_PRI;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach a found zs.
|
|
|
|
*
|
|
|
|
* Match slave number to zs unit number, so that misconfiguration will
|
|
|
|
* not set up the keyboard as ttya, etc.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zsc_pcc_attach(parent, self, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct device *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct zsc_softc *zsc = (void *) self;
|
|
|
|
struct pcc_attach_args *pa = aux;
|
Add preliminary support for the MVME162-LX 200/300 series of boards.
Currently, the major onboard devices are supported (disk, network,
rs232 and VMEbus). However, work is still need to support the remaining
devices (eg. IndustryPack sites).
These boards are available with a dazzling array of build options. At
this time, the following options are *required*:
o Real floating point hardware (the 68LC040 model isn't tested),
o The VMEchip2 must be present,
o If offboard VMEbus RAM is not present, at least 8MB of onboard
RAM is required.
o Even if offboard VMEbus RAM *is* present, at least 4MB of onboard
RAM is required. (Boards with 1 or 2MB onboard RAM *can* be
supported with offboard RAM, but not without some funky values in
the VMEbus Master mapping registers.)
There is no support for boards other than those in the -LX 200/300 series.
2000-09-06 23:51:42 +04:00
|
|
|
struct zsdevice zs;
|
2000-03-19 01:33:02 +03:00
|
|
|
bus_space_handle_t bush;
|
1996-04-26 22:59:58 +04:00
|
|
|
int zs_level, ir;
|
|
|
|
static int didintr;
|
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
/* Map the device's registers */
|
|
|
|
bus_space_map(pa->pa_bust, pa->pa_offset, 4, 0, &bush);
|
|
|
|
|
1996-04-26 22:59:58 +04:00
|
|
|
zs_level = pa->pa_ipl;
|
|
|
|
|
Add preliminary support for the MVME162-LX 200/300 series of boards.
Currently, the major onboard devices are supported (disk, network,
rs232 and VMEbus). However, work is still need to support the remaining
devices (eg. IndustryPack sites).
These boards are available with a dazzling array of build options. At
this time, the following options are *required*:
o Real floating point hardware (the 68LC040 model isn't tested),
o The VMEchip2 must be present,
o If offboard VMEbus RAM is not present, at least 8MB of onboard
RAM is required.
o Even if offboard VMEbus RAM *is* present, at least 4MB of onboard
RAM is required. (Boards with 1 or 2MB onboard RAM *can* be
supported with offboard RAM, but not without some funky values in
the VMEbus Master mapping registers.)
There is no support for boards other than those in the -LX 200/300 series.
2000-09-06 23:51:42 +04:00
|
|
|
/* XXX: This is a gross hack. I need to bus-space zs.c ... */
|
|
|
|
zs.zs_chan_b.zc_csr = (volatile u_char *) bush;
|
|
|
|
zs.zs_chan_b.zc_data = (volatile u_char *) bush + 1;
|
|
|
|
zs.zs_chan_a.zc_csr = (volatile u_char *) bush + 2;
|
|
|
|
zs.zs_chan_a.zc_data = (volatile u_char *) bush + 3;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do common parts of SCC configuration.
|
|
|
|
* Note that the vector is not actually used by the ZS chip on
|
|
|
|
* MVME-147. We set up the PCC so that it provides the vector.
|
|
|
|
* This is just here so the real vector is printed at config time.
|
|
|
|
*/
|
|
|
|
zs_config(zsc, &zs, PCC_VECBASE + PCCV_ZS, PCLK_147);
|
1996-04-26 22:59:58 +04:00
|
|
|
|
2001-05-31 22:46:07 +04:00
|
|
|
evcnt_attach_dynamic(&zsc->zsc_evcnt, EVCNT_TYPE_INTR,
|
|
|
|
pccintr_evcnt(zs_level), "rs232", zsc->zsc_dev.dv_xname);
|
|
|
|
|
1996-04-26 22:59:58 +04:00
|
|
|
/*
|
|
|
|
* Now safe to install interrupt handlers. Note the arguments
|
|
|
|
* to the interrupt handlers aren't used. Note, we only do this
|
|
|
|
* once since both SCCs interrupt at the same level and vector.
|
|
|
|
*/
|
|
|
|
if (didintr == 0) {
|
|
|
|
didintr = 1;
|
2001-05-31 22:46:07 +04:00
|
|
|
pccintr_establish(PCCV_ZS, zshard_shared, zs_level, zsc, NULL);
|
1996-04-26 22:59:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sanity check the interrupt levels. */
|
2000-03-19 01:33:02 +03:00
|
|
|
ir = pcc_reg_read(sys_pcc, PCCREG_SERIAL_INTR_CTRL);
|
1996-04-26 22:59:58 +04:00
|
|
|
if (((ir & PCC_IMASK) != 0) &&
|
|
|
|
((ir & PCC_IMASK) != zs_level))
|
|
|
|
panic("zs_pcc_attach: zs configured at different IPLs");
|
|
|
|
|
|
|
|
/*
|
Add preliminary support for the MVME162-LX 200/300 series of boards.
Currently, the major onboard devices are supported (disk, network,
rs232 and VMEbus). However, work is still need to support the remaining
devices (eg. IndustryPack sites).
These boards are available with a dazzling array of build options. At
this time, the following options are *required*:
o Real floating point hardware (the 68LC040 model isn't tested),
o The VMEchip2 must be present,
o If offboard VMEbus RAM is not present, at least 8MB of onboard
RAM is required.
o Even if offboard VMEbus RAM *is* present, at least 4MB of onboard
RAM is required. (Boards with 1 or 2MB onboard RAM *can* be
supported with offboard RAM, but not without some funky values in
the VMEbus Master mapping registers.)
There is no support for boards other than those in the -LX 200/300 series.
2000-09-06 23:51:42 +04:00
|
|
|
* Set master interrupt enable. Vector is supplied by the PCC.
|
1996-04-26 22:59:58 +04:00
|
|
|
*/
|
2000-03-19 01:33:02 +03:00
|
|
|
pcc_reg_write(sys_pcc, PCCREG_SERIAL_INTR_CTRL,
|
|
|
|
zs_level | PCC_IENABLE | PCC_ZSEXTERN);
|
Add preliminary support for the MVME162-LX 200/300 series of boards.
Currently, the major onboard devices are supported (disk, network,
rs232 and VMEbus). However, work is still need to support the remaining
devices (eg. IndustryPack sites).
These boards are available with a dazzling array of build options. At
this time, the following options are *required*:
o Real floating point hardware (the 68LC040 model isn't tested),
o The VMEchip2 must be present,
o If offboard VMEbus RAM is not present, at least 8MB of onboard
RAM is required.
o Even if offboard VMEbus RAM *is* present, at least 4MB of onboard
RAM is required. (Boards with 1 or 2MB onboard RAM *can* be
supported with offboard RAM, but not without some funky values in
the VMEbus Master mapping registers.)
There is no support for boards other than those in the -LX 200/300 series.
2000-09-06 23:51:42 +04:00
|
|
|
zs_write_reg(zsc->zsc_cs[0], 2, PCC_VECBASE + PCCV_ZS);
|
1996-12-18 01:30:13 +03:00
|
|
|
zs_write_reg(zsc->zsc_cs[0], 9, zs_init_reg[9]);
|
1996-04-26 22:59:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
* Console support functions (MVME PCC specific!)
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for SCC console. The MVME-147 always uses unit 0 chan 0.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
zsc_pcccnprobe(cp)
|
|
|
|
struct consdev *cp;
|
|
|
|
{
|
2002-09-06 17:18:43 +04:00
|
|
|
extern const struct cdevsw zstty_cdevsw;
|
|
|
|
|
1999-02-14 20:54:27 +03:00
|
|
|
if (machineid != MVME_147) {
|
1996-04-26 22:59:58 +04:00
|
|
|
cp->cn_pri = CN_DEAD;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize required fields. */
|
2002-09-06 17:18:43 +04:00
|
|
|
cp->cn_dev = makedev(cdevsw_lookup_major(&zstty_cdevsw), 0);
|
1996-04-26 22:59:58 +04:00
|
|
|
cp->cn_pri = CN_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
zsc_pcccninit(cp)
|
|
|
|
struct consdev *cp;
|
|
|
|
{
|
2000-03-19 01:33:02 +03:00
|
|
|
bus_space_handle_t bush;
|
Add preliminary support for the MVME162-LX 200/300 series of boards.
Currently, the major onboard devices are supported (disk, network,
rs232 and VMEbus). However, work is still need to support the remaining
devices (eg. IndustryPack sites).
These boards are available with a dazzling array of build options. At
this time, the following options are *required*:
o Real floating point hardware (the 68LC040 model isn't tested),
o The VMEchip2 must be present,
o If offboard VMEbus RAM is not present, at least 8MB of onboard
RAM is required.
o Even if offboard VMEbus RAM *is* present, at least 4MB of onboard
RAM is required. (Boards with 1 or 2MB onboard RAM *can* be
supported with offboard RAM, but not without some funky values in
the VMEbus Master mapping registers.)
There is no support for boards other than those in the -LX 200/300 series.
2000-09-06 23:51:42 +04:00
|
|
|
struct zsdevice zs;
|
1996-04-26 22:59:58 +04:00
|
|
|
|
2000-11-24 12:36:40 +03:00
|
|
|
bus_space_map(&_mainbus_space_tag,
|
|
|
|
intiobase_phys + MAINBUS_PCC_OFFSET + PCC_ZS0_OFF, 4, 0, &bush);
|
1996-04-26 22:59:58 +04:00
|
|
|
|
Add preliminary support for the MVME162-LX 200/300 series of boards.
Currently, the major onboard devices are supported (disk, network,
rs232 and VMEbus). However, work is still need to support the remaining
devices (eg. IndustryPack sites).
These boards are available with a dazzling array of build options. At
this time, the following options are *required*:
o Real floating point hardware (the 68LC040 model isn't tested),
o The VMEchip2 must be present,
o If offboard VMEbus RAM is not present, at least 8MB of onboard
RAM is required.
o Even if offboard VMEbus RAM *is* present, at least 4MB of onboard
RAM is required. (Boards with 1 or 2MB onboard RAM *can* be
supported with offboard RAM, but not without some funky values in
the VMEbus Master mapping registers.)
There is no support for boards other than those in the -LX 200/300 series.
2000-09-06 23:51:42 +04:00
|
|
|
/* XXX: This is a gross hack. I need to bus-space zs.c ... */
|
|
|
|
zs.zs_chan_b.zc_csr = (volatile u_char *) bush;
|
|
|
|
zs.zs_chan_b.zc_data = (volatile u_char *) bush + 1;
|
|
|
|
zs.zs_chan_a.zc_csr = (volatile u_char *) bush + 2;
|
|
|
|
zs.zs_chan_a.zc_data = (volatile u_char *) bush + 3;
|
|
|
|
|
1996-04-26 22:59:58 +04:00
|
|
|
/* Do common parts of console init. */
|
Add preliminary support for the MVME162-LX 200/300 series of boards.
Currently, the major onboard devices are supported (disk, network,
rs232 and VMEbus). However, work is still need to support the remaining
devices (eg. IndustryPack sites).
These boards are available with a dazzling array of build options. At
this time, the following options are *required*:
o Real floating point hardware (the 68LC040 model isn't tested),
o The VMEchip2 must be present,
o If offboard VMEbus RAM is not present, at least 8MB of onboard
RAM is required.
o Even if offboard VMEbus RAM *is* present, at least 4MB of onboard
RAM is required. (Boards with 1 or 2MB onboard RAM *can* be
supported with offboard RAM, but not without some funky values in
the VMEbus Master mapping registers.)
There is no support for boards other than those in the -LX 200/300 series.
2000-09-06 23:51:42 +04:00
|
|
|
zs_cnconfig(0, 0, &zs, PCLK_147);
|
1996-04-26 22:59:58 +04:00
|
|
|
}
|