2001-05-31 22:46:07 +04:00
|
|
|
/* $NetBSD: clmpcc_pcctwo.c,v 1.7 2001/05/31 18:46:07 scw Exp $ */
|
1999-02-14 20:54:27 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Steve C. Woodford.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cirrus Logic CD2401 4-channel serial chip. PCCchip2 Front-end.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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 <machine/cpu.h>
|
|
|
|
#include <machine/bus.h>
|
2000-07-21 00:40:34 +04:00
|
|
|
#include <machine/intr.h>
|
1999-02-14 20:54:27 +03:00
|
|
|
|
|
|
|
#include <dev/ic/clmpccvar.h>
|
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
#include <mvme68k/dev/mainbus.h>
|
|
|
|
#include <mvme68k/dev/pcctwovar.h>
|
1999-02-14 20:54:27 +03:00
|
|
|
#include <mvme68k/dev/pcctworeg.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* Definition of the driver for autoconfig. */
|
2000-03-19 01:33:02 +03:00
|
|
|
int clmpcc_pcctwo_match __P((struct device *, struct cfdata *, void *));
|
|
|
|
void clmpcc_pcctwo_attach __P((struct device *, struct device *, void *));
|
|
|
|
void clmpcc_pcctwo_iackhook __P((struct clmpcc_softc *, int));
|
|
|
|
void clmpcc_pcctwo_consiackhook __P((struct clmpcc_softc *, int));
|
1999-02-14 20:54:27 +03:00
|
|
|
|
|
|
|
struct cfattach clmpcc_pcctwo_ca = {
|
|
|
|
sizeof(struct clmpcc_softc), clmpcc_pcctwo_match, clmpcc_pcctwo_attach
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct cfdriver clmpcc_cd;
|
|
|
|
|
|
|
|
/*
|
2000-03-19 01:33:02 +03:00
|
|
|
* For clmpccopen() and clmpcccn*()
|
1999-02-14 20:54:27 +03:00
|
|
|
*/
|
|
|
|
cdev_decl(clmpcc);
|
2000-03-19 01:33:02 +03:00
|
|
|
cons_decl(clmpcc);
|
1999-02-14 20:54:27 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Is the CD2401 chip present?
|
|
|
|
*/
|
2000-03-19 01:33:02 +03:00
|
|
|
int
|
1999-02-14 20:54:27 +03:00
|
|
|
clmpcc_pcctwo_match(parent, cf, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *cf;
|
|
|
|
void *aux;
|
|
|
|
{
|
2000-03-19 01:33:02 +03:00
|
|
|
struct pcctwo_attach_args *pa;
|
|
|
|
|
|
|
|
pa = aux;
|
1999-02-14 20:54:27 +03: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
|
|
|
if (strcmp(pa->pa_name, clmpcc_cd.cd_name) ||
|
|
|
|
(machineid != MVME_167 && machineid != MVME_177))
|
1999-02-14 20:54:27 +03:00
|
|
|
return (0);
|
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
pa->pa_ipl = cf->pcctwocf_ipl;
|
1999-02-14 20:54:27 +03:00
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Attach a found CD2401.
|
|
|
|
*/
|
2000-03-19 01:33:02 +03:00
|
|
|
void
|
1999-02-14 20:54:27 +03:00
|
|
|
clmpcc_pcctwo_attach(parent, self, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct device *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
2000-03-19 01:33:02 +03:00
|
|
|
struct clmpcc_softc *sc;
|
|
|
|
struct pcctwo_attach_args *pa;
|
1999-02-14 20:54:27 +03:00
|
|
|
int level = pa->pa_ipl;
|
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
sc = (struct clmpcc_softc *)self;
|
|
|
|
pa = aux;
|
|
|
|
level = pa->pa_ipl;
|
|
|
|
sc->sc_iot = pa->pa_bust;
|
|
|
|
bus_space_map(pa->pa_bust, pa->pa_offset, 0x100, 0, &sc->sc_ioh);
|
|
|
|
|
1999-02-14 20:54:27 +03:00
|
|
|
sc->sc_clk = 20000000;
|
|
|
|
sc->sc_byteswap = CLMPCC_BYTESWAP_LOW;
|
|
|
|
sc->sc_swaprtsdtr = 1;
|
|
|
|
sc->sc_iackhook = clmpcc_pcctwo_iackhook;
|
|
|
|
sc->sc_vector_base = PCCTWO_SCC_VECBASE;
|
|
|
|
sc->sc_rpilr = 0x03;
|
|
|
|
sc->sc_tpilr = 0x02;
|
|
|
|
sc->sc_mpilr = 0x01;
|
2001-05-31 22:46:07 +04:00
|
|
|
sc->sc_evcnt = pcctwointr_evcnt(level);
|
1999-02-14 20:54:27 +03:00
|
|
|
|
|
|
|
/* Do common parts of CD2401 configuration. */
|
|
|
|
clmpcc_attach(sc);
|
|
|
|
|
|
|
|
/* Hook the interrupts */
|
2001-05-31 22:46:07 +04:00
|
|
|
pcctwointr_establish(PCCTWOV_SCC_RX, clmpcc_rxintr, level, sc, NULL);
|
|
|
|
pcctwointr_establish(PCCTWOV_SCC_RX_EXCEP, clmpcc_rxintr, level, sc,
|
|
|
|
NULL);
|
|
|
|
pcctwointr_establish(PCCTWOV_SCC_TX, clmpcc_txintr, level, sc, NULL);
|
|
|
|
pcctwointr_establish(PCCTWOV_SCC_MODEM, clmpcc_mdintr, level, sc, NULL);
|
1999-02-14 20:54:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clmpcc_pcctwo_iackhook(sc, which)
|
|
|
|
struct clmpcc_softc *sc;
|
|
|
|
int which;
|
|
|
|
{
|
2000-03-19 01:33:02 +03:00
|
|
|
bus_size_t offset;
|
|
|
|
volatile u_char foo;
|
|
|
|
|
|
|
|
switch (which) {
|
|
|
|
case CLMPCC_IACK_MODEM:
|
|
|
|
offset = PCC2REG_SCC_MODEM_PIACK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CLMPCC_IACK_RX:
|
|
|
|
offset = PCC2REG_SCC_RX_PIACK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CLMPCC_IACK_TX:
|
|
|
|
offset = PCC2REG_SCC_TX_PIACK;
|
|
|
|
break;
|
|
|
|
#ifdef DEBUG
|
|
|
|
default:
|
|
|
|
printf("%s: Invalid IACK number '%d'\n",
|
|
|
|
sc->sc_dev.dv_xname, which);
|
|
|
|
panic("clmpcc_pcctwo_iackhook");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
foo = pcc2_reg_read(sys_pcctwo, offset);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* This routine is only used prior to clmpcc_attach() being called
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clmpcc_pcctwo_consiackhook(sc, which)
|
|
|
|
struct clmpcc_softc *sc;
|
|
|
|
int which;
|
|
|
|
{
|
|
|
|
bus_space_handle_t bush;
|
|
|
|
bus_size_t offset;
|
1999-02-14 20:54:27 +03:00
|
|
|
volatile u_char foo;
|
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
switch (which) {
|
|
|
|
case CLMPCC_IACK_MODEM:
|
|
|
|
offset = PCC2REG_SCC_MODEM_PIACK;
|
1999-02-14 20:54:27 +03:00
|
|
|
break;
|
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
case CLMPCC_IACK_RX:
|
|
|
|
offset = PCC2REG_SCC_RX_PIACK;
|
1999-02-14 20:54:27 +03:00
|
|
|
break;
|
|
|
|
|
2000-03-19 01:33:02 +03:00
|
|
|
case CLMPCC_IACK_TX:
|
|
|
|
offset = PCC2REG_SCC_TX_PIACK;
|
1999-02-14 20:54:27 +03:00
|
|
|
break;
|
2000-03-19 01:33:02 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
default:
|
|
|
|
printf("%s: Invalid IACK number '%d'\n",
|
|
|
|
sc->sc_dev.dv_xname, which);
|
|
|
|
panic("clmpcc_pcctwo_consiackhook");
|
|
|
|
#endif
|
1999-02-14 20:54:27 +03:00
|
|
|
}
|
2000-03-19 01:33:02 +03:00
|
|
|
|
2000-11-24 12:36:40 +03:00
|
|
|
/*
|
|
|
|
* We need to fake the tag and handle since 'sys_pcctwo' will
|
|
|
|
* be NULL during early system startup...
|
|
|
|
*/
|
|
|
|
bush = (bus_space_handle_t) & (intiobase[MAINBUS_PCCTWO_OFFSET +
|
|
|
|
PCCTWO_REG_OFF]);
|
|
|
|
|
|
|
|
foo = bus_space_read_1(&_mainbus_space_tag, bush, offset);
|
1999-02-14 20:54:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
* Console support functions (MVME PCCchip2 specific!)
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for CD2401 console.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clmpcccnprobe(cp)
|
|
|
|
struct consdev *cp;
|
|
|
|
{
|
2000-03-19 01:33:02 +03:00
|
|
|
int maj;
|
1999-02-14 20:54:27 +03: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
|
|
|
if (machineid != MVME_167 && machineid != MVME_177) {
|
1999-02-14 20:54:27 +03:00
|
|
|
cp->cn_pri = CN_DEAD;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Locate the major number
|
|
|
|
*/
|
|
|
|
for (maj = 0; maj < nchrdev; maj++) {
|
2000-03-19 01:33:02 +03:00
|
|
|
if (cdevsw[maj].d_open == clmpccopen)
|
1999-02-14 20:54:27 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize required fields. */
|
|
|
|
cp->cn_dev = makedev(maj, 0);
|
|
|
|
cp->cn_pri = CN_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clmpcccninit(cp)
|
|
|
|
struct consdev *cp;
|
|
|
|
{
|
|
|
|
static struct clmpcc_softc cons_sc;
|
|
|
|
|
2000-11-24 12:36:40 +03:00
|
|
|
cons_sc.sc_iot = &_mainbus_space_tag;
|
|
|
|
bus_space_map(&_mainbus_space_tag,
|
|
|
|
intiobase_phys + MAINBUS_PCCTWO_OFFSET + PCCTWO_SCC_OFF,
|
2000-03-19 01:33:02 +03:00
|
|
|
PCC2REG_SIZE, 0, &cons_sc.sc_ioh);
|
1999-02-14 20:54:27 +03:00
|
|
|
cons_sc.sc_clk = 20000000;
|
|
|
|
cons_sc.sc_byteswap = CLMPCC_BYTESWAP_LOW;
|
|
|
|
cons_sc.sc_swaprtsdtr = 1;
|
2000-03-19 01:33:02 +03:00
|
|
|
cons_sc.sc_iackhook = clmpcc_pcctwo_consiackhook;
|
1999-02-14 20:54:27 +03:00
|
|
|
cons_sc.sc_vector_base = PCCTWO_SCC_VECBASE;
|
|
|
|
cons_sc.sc_rpilr = 0x03;
|
|
|
|
cons_sc.sc_tpilr = 0x02;
|
|
|
|
cons_sc.sc_mpilr = 0x01;
|
|
|
|
|
|
|
|
clmpcc_cnattach(&cons_sc, 0, 9600);
|
|
|
|
}
|