Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ bpp(4S) — SunOS 4.1.3B

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

read(2V)

write(2V)

ioctl(2)

BPP(4S)  —  DEVICES AND NETWORK INTERFACES

NAME

bpp − bidirectional parallel port driver for "SUN4M_50" Sun-4m/SPARCstation 10. 

CONFIGURATION

device-driver bpp

SYNOPSIS

#include <sys/types.h>
#include <fcntl.h>
#include <sbusdev/bpp_io.h>
fd = open("/dev/bppn", flags);

AVAILABILITY

Sun-4m/50 - SPARCstation 10. 

DESCRIPTION

The bpp driver provides a general-purpose bidirectional interface to parallel device, on Sun-4m/SPARCstation 10 systems.  It supports a variety of output (printer) and input (scanner) devices, using programmable timing relationships between the various handshake signals.  The bpp driver is an exclusive use device.  If the device has already been opened, subsequent opens will fail with EBUSY. 

Default Operation

Each time the bpp device is opened, the default configuration is BPP_ACK_BUSY_HS for read handshake, BPP_ACK_HS for write handshake, 1 microsecond for all setup times and strobe widths, and 60 seconds for both timeouts.  This configuration (in the write mode) will drive many common personal computer parallel printers with Centronics-type interfaces.  The application should use the BPPIOC_SETPARMS ioctl to configure the bpp for the particular device which is attached, if necessary. 

Write Operation

If a failure or error condition occurs during a write(), the number of bytes successfully written will be returned (short write).  Note that errno will not be set.  The contents of certain status bits will be captured at the time of the error, and can be retrieved by the application program, using the BPPIOC_GETERR ioctl call.  Subsequent write() calls may fail with the system error ENXIO if the error condition is not rectified.  The captured status information will be overwritten each time an attempted transfer or a BPPIOC_TESTIO ioctl occurs. 

Read/Write Operation

When the driver is opened for reading and writing, it is assumed that scanning will take place, as scanners are the only devices supported by this mode.  Most scanners require that the SLCT_IN or AFX pin be set to tell the scanner the direction of the transfer.  The AFX line is set when the read_handshake element of the bpp_transfer_parms structure is set to BPP_HSCAN_HS, otherwise the SLCT_IN pin is set.  Normally, scanning starts by writing a command to the scanner, at which time the pin will be set. When the scan data is read back, the pin will be reset. 

If a failure or error condition occurs during a read(), the number of bytes successfully read will be returned (short read).  Note that errno will not be set.  The contents of certain status bits will be captured at the time of the error, and can be retrieved by the application, using the BPPIOC_GETERR ioctl call.  Subsequent read() calls may fail with ENXIO if the error condition is not rectified.  The captured register information will be overwritten each time an attempted transfer or a BPPIOC_TESTIO ioctl occurs. 

Read Operation

If a failure or error condition occurs during a read(), the number of bytes successfully read will be returned (short read).  Note that errno will not be set.  If read_handshake is set to BPP_CLEAR_MEM or BPP_SET_MEM, zeroes or ones, respectively, will be written into the user buffer. 

IOCTLS

The following ioctl(2) calls are supported:

BPPIOC_SETPARMS
Set transfer parameters.
The argument is a pointer to a struct bpp_transfer_parms.  See below for a description of the elements of this structure.  If a parameter is out of range, EINVAL is returned. 

BPPIOC_GETPARMS
Get current transfer parameters.
The argument is a pointer to a struct bpp_transfer_parms.  See below for a description of the elements of this structure.  If no parameters have been configured since the device was opened, the contents of the struct will be the default conditions of the parameters (see Default Operation above). 

Transfer Parameters Structure

This structure is defined in <sbusdev/bpp_io.h>. 

struct bpp_transfer_parms {
enumhandshake_t
read_handshake;/∗ parallel port read handshake mode ∗/
intread_setup_time;/∗ DSS register - in nanoseconds ∗/
intread_strobe_width;/∗ DSW register - in nanoseconds ∗/
intread_timeout;/∗
∗ wait this many seconds
∗ before aborting a transfer
∗/
enumhandshake_t
write_handshake;/∗ parallel port write handshake mode ∗/
intwrite_setup_time;/∗ DSS register - in nanoseconds ∗/
intwrite_strobe_width;/∗ DSW register - in nanoseconds ∗/
intwrite_timeout;/∗
∗ wait this many seconds
∗ before aborting a transfer
∗/
 };
 /∗ Values for read_handshake and write_handshake fields ∗/
enumhandshake_t {
BPP_NO_HS,/∗ no handshake pins ∗/
BPP_ACK_HS,/∗ handshake controlled by ACK line ∗/
BPP_BUSY_HS,/∗ handshake controlled by BSY line ∗/
BPP_ACK_BUSY_HS,/∗
∗ handshake controlled by ACK and BSY lines
∗ read_handshake only!
∗/
BPP_XSCAN_HS,/∗ xerox scanner mode, read_handshake only! ∗/
BPP_HSCAN_HS,/∗
∗ HP scanjet scanner mode
∗ read_handshake only!
∗/
BPP_CLEAR_MEM,/∗ write 0’s to memory, read_handshake only! ∗/
BPP_SET_MEM,/∗ write 1’s to memory, read_handshake only! ∗/
/∗ The following handshakes are RESERVED. Do not use. ∗/
BPP_VPRINT_HS,/∗ valid only in read/write mode ∗/
BPP_VPLOT_HS/∗ valid only in read/write mode ∗/
};

The read_setup_time field controls the time between dstrb falling edge to bsy rising edge if the read_handshake field is set to BPP_NO_HS or BPP_ACK_HS.  It controls the time between dstrb falling edge to ack rising edge if the read_handshake field is set to BPP_ACK_HS or BPP_ACK_BUSY_HS.  It controls the time between ack falling edge to dstrb rising edge if the read_handshake field is set to BPP_XSCAN_HS. 

The read_strobe_width field controls the time between ack rising edge and ack falling edge if the read_handshake field is set to BPP_NO_HS or BPP_ACK_BUSY_HS.  It controls the time between dstrb rising edge to dstrb falling edge if the read_handshake field is set to BPP_XSCAN_HS. 

The values allowed for the write_handshake field are duplicates of the definitions for the read_handshake field. Note that some of these handshake definitions are only valid in one mode or the other. 

The write_setup_time field controls the time between data valid to dstrb rising edge for all values of the write_handshake field. 

The write_strobe_width field controls the time between dstrb rising edge and dstrb falling edge if the write_handshake field is not set to BPP_VPRINT_HS or BPP_VPLOT_HS.  It controls the minimum time between dstrb rising edge to dstrb falling edge if the write_handshake field is set to BPP_VPRINT_HS or BPP_VPLOT_HS. 

BPPIOC_SETOUTPINS
Set output pin values.
The argument is a pointer to a struct bpp_pins.  See below for a description of the elements of this structure.  If a parameter is out of range, EINVAL is returned. 

BPPIOC_GETOUTPINS
Read output pin values.
The argument is a pointer to a struct bpp_pins.  See below for a description of the elements of this structure. 

Transfer Pins Structure

This structure is defined in <sbusdev/bpp_io.h>. 

structbpp_pins {
u_charoutput_reg_pins;/∗ pins in P_OR register ∗/
u_charinput_reg_pins;/∗ pins in P_IR register ∗/
};
 /∗ Values for output_reg_pins field ∗/
#define BPP_SLCTIN_PIN0x01/∗ Select in pin∗/
#define BPP_AFX_PIN0x02/∗ Auto feed pin∗/
#define BPP_INIT_PIN0x04/∗ Initialize pin∗/
#define BPP_V1_PIN0x08/∗ reserved pin 1∗/
#define BPP_V2_PIN0x10/∗ reserved pin 2∗/
#define BPP_V3_PIN0x20/∗ reserved pin 3∗/
 #define BPP_ERR_PIN0x01/∗ Error pin∗/
#define BPP_SLCT_PIN0x02/∗ Select pin∗/
#define BPP_PE_PIN0x04/∗ Paper empty pin∗/

BPPIOC_GETERR
Get last error status.
The argument is a pointer to a struct bpp_error_status.  See below for a description of the elements of this structure.  This structure indicates the status of all the appropriate status bits at the time of the most recent error condition during a read() or write() call, or the status of the bits at the most recent BPPIOC_TESTIO ioctl() call.  Note that the bits in the pin_status element indicate whether the associated pin is active, not the actual polarity.  The application can check transfer readiness without attempting another transfer using the BPPIOC_TESTIO ioctl.  Note that the timeout_occurred and bus_error fields will never be set by the BPPIOC_TESTIO ioctl, only by an actual failed transfer. 

Error Pins Structure

This structure is defined in the include file <sbusdev/bpp_io.h>. 

 structbpp_error_status {
chartimeout_occurred;/∗ 1 if a timeout occurred ∗/
charbus_error;/∗ 1 if an SBus bus error∗/
u_charpin_status;/∗
∗ status of pins which could
∗ cause an error
∗/
};
 /∗ Values for pin_status field ∗/
#defineBPP_ERR_ERR0x01/∗ Error pin active∗/
#defineBPP_SLCT_ERR0x02/∗ Select pin active∗/
#defineBPP_PE_ERR0x04/∗ Paper empty pin active∗/
#defineBPP_SLCTIN_ERR0x10/∗ Select in pin active∗/
#defineBPP_BUSY_ERR0x40/∗ Busy pin active∗/

BPPIOC_TESTIO
Test transfer readiness.
This command checks to see if a read or write transfer would succeed based on pin status, opened mode, and handshake selected. If a transfer would succeed, zero is returned. If a transfer would fail, -1 is returned, and errno is set to EIO, and the error status information is captured.  The captured status can be retrieved using the BPPIOC_GETERR ioctl call.  Note that the timeout_occurred and bus_error fields will never be set by this ioctl. 

ERRORS

EBADF The device is opened for write-only access and a read is attempted, or the device is opened for read-only access and a write is attempted. 

EBUSY The device has been opened and another open is attempted. 
An attempt has been made to unload the driver while one of the units is open.

EINVAL A BPPIOC_SETPARMS ioctl is attempted with an out of range value in the bpp_transfer_parms structure. 
A BPPIOC_SETOUTPINS ioctl is attempted with an invalid value in the pins structure.
An ioctl is attempted with an invalid value in the command argument.
An invalid command argument is received from the vd driver (during modload, modunload or modstat). 

EIO The driver encountered an SBus bus error when attempting an access. 
A read or write does not complete properly, due to a peripheral error or a transfer timeout.
A BPPIOC_TESTIO ioctl() call is attempted while a condition exists which would prevent a transfer (such as a peripheral error).  .".br ."In read-only mode, ."with the read_handshake set to ."VPRINT or VPLOT, ."an INIT signal has been received, ."and another transfer has been attempted. 

ENXIO The driver has received an open request for a unit for which the attach failed. 
The driver has received a read or write request for a unit number greater than the number of units available.
The driver has received a write request for a unit which has an active peripheral error.

FILES

/dev/bpp?  bidirectional parallel port device(s)

SEE ALSO

read(2V), write(2V), ioctl(2)

Writing Device Drivers for SBus Systems; (in) SBus Developer’s Kit

BUGS

The message remintr: driver not installed on level 2 is normal when unloading a loaded driver in a system with more than one SPARCprinter card installed. 

Sun Release 4.1  —  Last change: 6 July 1992

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026