/*-
* Copyright (c) 1999, 2002 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.
*
* 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
*/
/* 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);
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",
device_xname(sc->sc_dev));
else if (new & PCCTWO_PRT_IN_SR_PE)
log(LOG_NOTICE, "%s: out of paper\n",
device_xname(sc->sc_dev));
else if (new & PCCTWO_PRT_IN_SR_FLT)
log(LOG_NOTICE, "%s: output error\n",
device_xname(sc->sc_dev));
}