100 lines
4.2 KiB
C
100 lines
4.2 KiB
C
|
/* $NetBSD: lptreg.h,v 1.1 1996/11/09 03:52:52 chuck Exp $ */
|
||
|
|
||
|
/*-
|
||
|
* Copyright (c) 1996 Steve 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 Steve Woodford
|
||
|
* 4. Neither the name of the University 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 AUTHOR ``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 AUTHOR 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.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* MVME147 Parallel Port Register Definitions
|
||
|
* Copyright (c) 1996 Steve Woodford
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* The mvme147's PCC chip has two status/control registers for the
|
||
|
* printer port:
|
||
|
*
|
||
|
* sys_pcc->pr_int Printer Interrupt Control Register
|
||
|
* 0 - 2 Interrupt Level
|
||
|
* 3 Interrupt Enable
|
||
|
* 4 ACK Polarity. If set, falling edge of ACK generates
|
||
|
* the interrupt. If clear, rising edge of ACK generates
|
||
|
* the interrupt.
|
||
|
* 5 Indicates an ACK interrupt in progress. Cleared by
|
||
|
* writing a one, or disabling lpt interrupts.
|
||
|
* 6 Indicates a FAULT interrupt. Set on falling edge
|
||
|
* of printer's fault signal. Cleared by writing a one.
|
||
|
* 7 Printer Interrupt in progress. Basically just the
|
||
|
* logical OR of bits 5 and 6.
|
||
|
*/
|
||
|
#define LPI_ENABLE (1 << 3)
|
||
|
#define LPI_ACKPOL (1 << 4)
|
||
|
#define LPI_ACKINT (1 << 5)
|
||
|
#define LPI_FAULTINT (1 << 6)
|
||
|
#define LPI_INTERRUPT (1 << 7)
|
||
|
|
||
|
/*
|
||
|
* sys_pcc->pr_cr Printer Control Register
|
||
|
* 0 Selects auto or manual strobe mode. When low, strobe
|
||
|
* is automatically generated by a write to the printer
|
||
|
* data register. When set, strobe must be generated
|
||
|
* manually using bit 2 of this register.
|
||
|
* 1 Controls strobe timing in auto mode. When low, strobe
|
||
|
* time is 6.4uS. When high, strobe time is 1.6uS.
|
||
|
* 2 Controls strobe in manual mode.
|
||
|
* 3 Control Input Prime signal. When set, Input Prime
|
||
|
* is activated.
|
||
|
*
|
||
|
* Two other registers which are not addressed via the global PCC structure,
|
||
|
* live at 0xfffe2800. This address is virtualised and passed to the driver
|
||
|
* in the pcc_attach_args structure:
|
||
|
*/
|
||
|
#define LPC_STROBE_MODE (1 << 0)
|
||
|
#define LPC_FAST_STROBE (1 << 1)
|
||
|
#define LPC_STROBE (1 << 2)
|
||
|
#define LPC_INPUT_PRIME (1 << 3)
|
||
|
|
||
|
/*
|
||
|
* Union of data and status registers. Write to access the data register.
|
||
|
* Read to access the status register.
|
||
|
*/
|
||
|
union lpt_regs {
|
||
|
volatile u_char pr_data; /* Write only data register */
|
||
|
volatile u_char pr_status; /* Read only status register */
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* Access macros for the status register
|
||
|
*/
|
||
|
#define LPS_BUSY (1 << 3)
|
||
|
#define LPS_PAPER_EMPTY (1 << 4)
|
||
|
#define LPS_SELECT (1 << 5)
|
||
|
#define LPS_FAULT (1 << 6)
|
||
|
#define LPS_ACK (1 << 7)
|
||
|
|