NetBSD/sys/arch/mvme68k/dev/lpt_pcctwo.c
scw 7f3786d36a 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 19:51:42 +00:00

281 lines
7.0 KiB
C

/* $NetBSD: lpt_pcctwo.c,v 1.4 2000/09/06 19:51:43 scw Exp $ */
/*-
* 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.
*/
/*
* Device Driver back-end for the PCCChip2's parallel printer port
*/
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/syslog.h>
#include <machine/cpu.h>
#include <machine/bus.h>
#include <mvme68k/dev/lptvar.h>
#include <mvme68k/dev/pcctworeg.h>
#include <mvme68k/dev/pcctwovar.h>
/*
* Autoconfig stuff
*/
int lpt_pcctwo_match __P((struct device *, struct cfdata *, void *));
void lpt_pcctwo_attach __P((struct device *, struct device *, void *));
struct cfattach lpt_pcctwo_ca = {
sizeof(struct lpt_softc), lpt_pcctwo_match, lpt_pcctwo_attach
};
extern struct cfdriver lpt_cd;
int lpt_pcctwo_intr __P((void *));
void lpt_pcctwo_open __P((struct lpt_softc *, int));
void lpt_pcctwo_close __P((struct lpt_softc *));
void lpt_pcctwo_iprime __P((struct lpt_softc *));
void lpt_pcctwo_speed __P((struct lpt_softc *, int));
int lpt_pcctwo_notrdy __P((struct lpt_softc *, int));
void lpt_pcctwo_wr_data __P((struct lpt_softc *, u_char));
struct lpt_funcs lpt_pcctwo_funcs = {
lpt_pcctwo_open,
lpt_pcctwo_close,
lpt_pcctwo_iprime,
lpt_pcctwo_speed,
lpt_pcctwo_notrdy,
lpt_pcctwo_wr_data
};
/* ARGSUSED */
int
lpt_pcctwo_match(parent, cf, args)
struct device *parent;
struct cfdata *cf;
void *args;
{
struct pcctwo_attach_args *pa;
pa = args;
if (strcmp(pa->pa_name, lpt_cd.cd_name) ||
(machineid != MVME_167 && machineid != MVME_177))
return (0);
pa->pa_ipl = cf->pcctwocf_ipl;
return (1);
}
/* ARGSUSED */
void
lpt_pcctwo_attach(parent, self, args)
struct device *parent;
struct device *self;
void *args;
{
struct pcctwo_attach_args *pa;
struct lpt_softc *sc;
pa = (struct pcctwo_attach_args *) args;
sc = (struct lpt_softc *) self;
/* The printer registers are part of the PCCChip2's own registers. */
sc->sc_bust = pa->pa_bust;
bus_space_map(pa->pa_bust, pa->pa_offset, PCC2REG_SIZE, 0,
&sc->sc_bush);
sc->sc_ipl = pa->pa_ipl & PCCTWO_ICR_LEVEL_MASK;
sc->sc_laststatus = 0;
sc->sc_funcs = &lpt_pcctwo_funcs;
printf(": PCCchip2 Parallel Printer\n");
/*
* Disable interrupts until device is opened
*/
pcc2_reg_write(sc, PCC2REG_PRT_ACK_ICSR, 0);
pcc2_reg_write(sc, PCC2REG_PRT_FAULT_ICSR, 0);
pcc2_reg_write(sc, PCC2REG_PRT_SEL_ICSR, 0);
pcc2_reg_write(sc, PCC2REG_PRT_PE_ICSR, 0);
pcc2_reg_write(sc, PCC2REG_PRT_BUSY_ICSR, 0);
pcc2_reg_write(sc, PCC2REG_PRT_CONTROL, 0);
/*
* Main attachment code
*/
lpt_attach_subr(sc);
/*
* Hook into the printer interrupt
*/
pcctwointr_establish(PCCTWOV_PRT_ACK, lpt_pcctwo_intr, sc->sc_ipl, sc);
}
/*
* Handle printer interrupts
*/
int
lpt_pcctwo_intr(arg)
void *arg;
{
struct lpt_softc *sc;
int i;
sc = (struct lpt_softc *) arg;
/* is printer online and ready for output */
if (lpt_pcctwo_notrdy(sc, 0) || lpt_pcctwo_notrdy(sc, 1))
return (0);
i = lpt_intr(sc);
if (pcc2_reg_read(sc, PCC2REG_PRT_INPUT_STATUS) & PCCTWO_PRT_IN_SR_PINT)
pcc2_reg_write(sc, PCC2REG_PRT_ACK_ICSR,
sc->sc_icr | PCCTWO_ICR_ICLR);
return (i);
}
void
lpt_pcctwo_open(sc, int_ena)
struct lpt_softc *sc;
int int_ena;
{
int sps;
pcc2_reg_write(sc, PCC2REG_PRT_ACK_ICSR,
PCCTWO_ICR_ICLR | PCCTWO_ICR_EDGE);
pcc2_reg_write(sc, PCC2REG_PRT_CONTROL,
pcc2_reg_read(sc, PCC2REG_PRT_CONTROL) | PCCTWO_PRT_CTRL_DOEN);
if (int_ena == 0) {
sps = splhigh();
sc->sc_icr = sc->sc_ipl | PCCTWO_ICR_EDGE;
pcc2_reg_write(sc, PCC2REG_PRT_ACK_ICSR, sc->sc_icr);
splx(sps);
}
}
void
lpt_pcctwo_close(sc)
struct lpt_softc *sc;
{
pcc2_reg_write(sc, PCC2REG_PRT_ACK_ICSR,
PCCTWO_ICR_ICLR | PCCTWO_ICR_EDGE);
pcc2_reg_write(sc, PCC2REG_PRT_CONTROL, 0);
}
void
lpt_pcctwo_iprime(sc)
struct lpt_softc *sc;
{
pcc2_reg_write(sc, PCC2REG_PRT_CONTROL,
pcc2_reg_read(sc, PCC2REG_PRT_CONTROL) | PCCTWO_PRT_CTRL_INP);
delay(100);
pcc2_reg_write(sc, PCC2REG_PRT_CONTROL,
pcc2_reg_read(sc, PCC2REG_PRT_CONTROL) & ~PCCTWO_PRT_CTRL_INP);
delay(100);
}
void
lpt_pcctwo_speed(sc, speed)
struct lpt_softc *sc;
int speed;
{
u_int8_t reg;
reg = pcc2_reg_read(sc, PCC2REG_PRT_CONTROL);
if (speed == LPT_STROBE_FAST)
reg |= PCCTWO_PRT_CTRL_FAST;
else
reg &= ~PCCTWO_PRT_CTRL_FAST;
pcc2_reg_write(sc, PCC2REG_PRT_CONTROL, reg);
}
int
lpt_pcctwo_notrdy(sc, err)
struct lpt_softc *sc;
int err;
{
u_int8_t status;
u_int8_t new;
#define LPS_INVERT (PCCTWO_PRT_IN_SR_SEL)
#define LPS_MASK (PCCTWO_PRT_IN_SR_SEL | PCCTWO_PRT_IN_SR_FLT | \
PCCTWO_PRT_IN_SR_BSY | PCCTWO_PRT_IN_SR_PE)
status = pcc2_reg_read(sc, PCC2REG_PRT_INPUT_STATUS) ^ LPS_INVERT;
status &= LPS_MASK;
if (err) {
new = status & ~sc->sc_laststatus;
sc->sc_laststatus = status;
if (new & PCCTWO_PRT_IN_SR_SEL)
log(LOG_NOTICE, "%s: offline\n",
sc->sc_dev.dv_xname);
else if (new & PCCTWO_PRT_IN_SR_PE)
log(LOG_NOTICE, "%s: out of paper\n",
sc->sc_dev.dv_xname);
else if (new & PCCTWO_PRT_IN_SR_FLT)
log(LOG_NOTICE, "%s: output error\n",
sc->sc_dev.dv_xname);
}
return (status);
}
void
lpt_pcctwo_wr_data(sc, data)
struct lpt_softc *sc;
u_char data;
{
pcc2_reg_write16(sc, PCC2REG_PRT_DATA, (u_int16_t) data);
}