mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove zs(4). Its functionality has been superseded by uart(4) for
a while now; including on PowerPC.
This commit is contained in:
parent
6098821ce7
commit
233c5a5d6d
4 changed files with 0 additions and 1719 deletions
|
|
@ -1,451 +0,0 @@
|
|||
/* $NetBSD: z8530reg.h,v 1.8 1996/12/13 21:02:39 gwr Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1992, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* This software was developed by the Computer Systems Engineering group
|
||||
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
||||
* contributed to Berkeley.
|
||||
*
|
||||
* All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Lawrence Berkeley Laboratory.
|
||||
*
|
||||
* 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.
|
||||
* 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 REGENTS 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 REGENTS 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.
|
||||
*
|
||||
* @(#)zsreg.h 8.1 (Berkeley) 6/11/93
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
/*
|
||||
* Zilog SCC registers, as implemented on the Sun-4c.
|
||||
*
|
||||
* Each Z8530 implements two channels (called `a' and `b').
|
||||
*
|
||||
* The damnable chip was designed to fit on Z80 I/O ports, and thus
|
||||
* has everything multiplexed out the wazoo. We have to select
|
||||
* a register, then read or write the register, and so on. Worse,
|
||||
* the parameter bits are scattered all over the register space.
|
||||
* This thing is full of `miscellaneous' control registers.
|
||||
*
|
||||
* Worse yet, the registers have incompatible functions on read
|
||||
* and write operations. We describe the registers below according
|
||||
* to whether they are `read registers' (RR) or `write registers' (WR).
|
||||
* As if this were not enough, some of the channel B status bits show
|
||||
* up in channel A, and vice versa. The blasted thing shares write
|
||||
* registers 2 and 9 across both channels, and reads registers 2 and 3
|
||||
* differently for the two channels. We can, however, ignore this much
|
||||
* of the time.
|
||||
*
|
||||
* This file also includes flags for the Z85C30 and Z85230 enhanced scc.
|
||||
* The CMOS 8530 includes extra SDLC functionality, and is used in a
|
||||
* number of Macs (often in the Z85C80, an 85C30 combined w/ a SCSI
|
||||
* controller). -wrs
|
||||
*
|
||||
* Some of the names in this files were chosen to make the hsis driver
|
||||
* work unchanged (which means that they will match some in SunOS).
|
||||
*
|
||||
* `S.C.' stands for Special Condition, which is any of these:
|
||||
* receiver overrun (aka silo overflow)
|
||||
* framing error (missing stop bit, etc)
|
||||
* end of frame (in synchronous modes)
|
||||
* parity error (when `parity error is S.C.' is set)
|
||||
*
|
||||
* Registers with only a single `numeric value' get a name.
|
||||
* Other registers hold bits and are only numbered; the bit
|
||||
* definitions imply the register number (see below).
|
||||
*
|
||||
* We never use the receive and transmit data registers as
|
||||
* indirects (choosing instead the zc_data register), so they
|
||||
* are not defined here.
|
||||
*/
|
||||
|
||||
#define ZS_NCHAN 2
|
||||
|
||||
#define ZSRR_IVEC 2 /* interrupt vector (channel 0) */
|
||||
#define ZSRR_IPEND 3 /* interrupt pending (ch. 0 only) */
|
||||
#define ZSRR_TXSYNC 6 /* sync transmit char (monosync mode) */
|
||||
#define ZSRR_RXSYNC 7 /* sync receive char (monosync mode) */
|
||||
#define ZSRR_SYNCLO 6 /* sync low byte (bisync mode) */
|
||||
#define ZSRR_SYNCHI 7 /* sync high byte (bisync mode) */
|
||||
#define ZSRR_SDLC_ADDR 6 /* SDLC address (SDLC mode) */
|
||||
#define ZSRR_SDLC_FLAG 7 /* SDLC flag 0x7E (SDLC mode) */
|
||||
#define ZSRR_BAUDLO 12 /* baud rate generator (low half) */
|
||||
#define ZSRR_BAUDHI 13 /* baud rate generator (high half) */
|
||||
#define ZSRR_ENHANCED 14 /* read address of WR7' - yes, it's not 7!*/
|
||||
|
||||
#define ZSWR_IVEC 2 /* interrupt vector (shared) */
|
||||
#define ZSWR_TXSYNC 6 /* sync transmit char (monosync mode) */
|
||||
#define ZSWR_RXSYNC 7 /* sync receive char (monosync mode) */
|
||||
#define ZSWR_SYNCLO 6 /* sync low byte (bisync mode) */
|
||||
#define ZSWR_SYNCHI 7 /* sync high byte (bisync mode) */
|
||||
#define ZSWR_SDLC_ADDR 6 /* SDLC address (SDLC mode) */
|
||||
#define ZSWR_SDLC_FLAG 7 /* SDLC flag 0x7E (SDLC mode) */
|
||||
#define ZSWR_BAUDLO 12 /* baud rate generator (low half) */
|
||||
#define ZSWR_BAUDHI 13 /* baud rate generator (high half) */
|
||||
#define ZSWR_ENHANCED 7 /* write address of WR7' */
|
||||
|
||||
/*
|
||||
* Registers 0 through 7 may be written with any one of the 8 command
|
||||
* modifiers, and/or any one of the 4 reset modifiers, defined below.
|
||||
* To write registers 8 through 15, however, the command modifier must
|
||||
* always be `point high'. Rather than track this bizzareness all over
|
||||
* the driver, we try to avoid using any modifiers, ever (but they are
|
||||
* defined here if you want them).
|
||||
*/
|
||||
#define ZSM_RESET_TXUEOM 0xc0 /* reset xmit underrun / eom latch */
|
||||
#define ZSM_RESET_TXCRC 0x80 /* reset xmit crc generator */
|
||||
#define ZSM_RESET_RXCRC 0x40 /* reset recv crc checker */
|
||||
#define ZSM_NULL 0x00 /* nothing special */
|
||||
|
||||
#define ZSM_RESET_IUS 0x38 /* reset interrupt under service */
|
||||
#define ZSM_RESET_ERR 0x30 /* reset error cond */
|
||||
#define ZSM_RESET_TXINT 0x28 /* reset xmit interrupt pending */
|
||||
#define ZSM_EI_NEXTRXC 0x20 /* enable int. on next rcvd char */
|
||||
#define ZSM_SEND_ABORT 0x18 /* send abort (SDLC) */
|
||||
#define ZSM_RESET_STINT 0x10 /* reset external/status interrupt */
|
||||
#define ZSM_POINTHIGH 0x08 /* `point high' (use r8-r15) */
|
||||
#define ZSM_NULL 0x00 /* nothing special */
|
||||
|
||||
/*
|
||||
* Commands for Write Register 0 (`Command Register').
|
||||
* These are just the command modifiers or'ed with register number 0
|
||||
* (which of course equals the command modifier).
|
||||
*/
|
||||
#define ZSWR0_RESET_EOM ZSM_RESET_TXUEOM
|
||||
#define ZSWR0_RESET_TXCRC ZSM_RESET_TXCRC
|
||||
#define ZSWR0_RESET_RXCRC ZSM_RESET_RXCRC
|
||||
#define ZSWR0_CLR_INTR ZSM_RESET_IUS
|
||||
#define ZSWR0_RESET_ERRORS ZSM_RESET_ERR
|
||||
#define ZSWR0_EI_NEXTRXC ZSM_EI_NEXTRXC
|
||||
#define ZSWR0_SEND_ABORT ZSM_SEND_ABORT
|
||||
#define ZSWR0_RESET_STATUS ZSM_RESET_STINT
|
||||
#define ZSWR0_RESET_TXINT ZSM_RESET_TXINT
|
||||
|
||||
/*
|
||||
* Bits in Write Register 1 (`Transmit/Receive Interrupt and Data
|
||||
* Transfer Mode Definition'). Note that bits 3 and 4 are taken together
|
||||
* as a single unit, and bits 5 and 6 are useful only if bit 7 is set.
|
||||
*/
|
||||
#define ZSWR1_REQ_WAIT 0x80 /* WAIT*-REQ* pin gives WAIT* */
|
||||
#define ZSWR1_REQ_REQ 0xc0 /* WAIT*-REQ* pin gives REQ* */
|
||||
#define ZSWR1_REQ_TX 0x00 /* WAIT*-REQ* pin follows xmit buf */
|
||||
#define ZSWR1_REQ_RX 0x20 /* WAIT*-REQ* pin follows recv buf */
|
||||
|
||||
#define ZSWR1_RIE_NONE 0x00 /* disable rxint entirely */
|
||||
#define ZSWR1_RIE_FIRST 0x08 /* rxint on first char & on S.C. */
|
||||
#define ZSWR1_RIE 0x10 /* rxint per char & on S.C. */
|
||||
#define ZSWR1_RIE_SPECIAL_ONLY 0x18 /* rxint on S.C. only */
|
||||
|
||||
#define ZSWR1_PE_SC 0x04 /* parity error is special condition */
|
||||
#define ZSWR1_TIE 0x02 /* transmit interrupt enable */
|
||||
#define ZSWR1_SIE 0x01 /* external/status interrupt enable */
|
||||
|
||||
#define ZSWR1_IMASK 0x1F /* mask of all itr. enable bits. */
|
||||
|
||||
/* HSIS compat */
|
||||
#define ZSWR1_REQ_ENABLE (ZSWR1_REQ_WAIT | ZSWR1_REQ_TX)
|
||||
|
||||
/*
|
||||
* Bits in Write Register 3 (`Receive Parameters and Control').
|
||||
* Bits 7 and 6 are taken as a unit. Note that the receive bits
|
||||
* per character ordering is insane.
|
||||
*
|
||||
* Here `hardware flow control' means CTS enables the transmitter
|
||||
* and DCD enables the receiver. The latter is neither interesting
|
||||
* nor useful, and gets in our way, making it almost unusable.
|
||||
*/
|
||||
#define ZSWR3_RX_5 0x00 /* receive 5 bits per char */
|
||||
#define ZSWR3_RX_7 0x40 /* receive 7 bits per char */
|
||||
#define ZSWR3_RX_6 0x80 /* receive 6 bits per char */
|
||||
#define ZSWR3_RX_8 0xc0 /* receive 8 bits per char */
|
||||
#define ZSWR3_RXSIZE 0xc0 /* receive char size mask */
|
||||
|
||||
#define ZSWR3_HFC 0x20 /* hardware flow control */
|
||||
#define ZSWR3_HUNT 0x10 /* enter hunt mode */
|
||||
#define ZSWR3_RXCRC_ENABLE 0x08 /* enable recv crc calculation */
|
||||
#define ZSWR3_ADDR_SEARCH_MODE 0x04 /* address search mode (SDLC only) */
|
||||
#define ZSWR3_SDLC_SHORT_ADDR 0x02 /* short address mode (SDLC only) */
|
||||
#define ZSWR3_SYNC_LOAD_INH 0x02 /* sync character load inhibit */
|
||||
#define ZSWR3_RX_ENABLE 0x01 /* receiver enable */
|
||||
|
||||
/*
|
||||
* Bits in Write Register 4 (`Transmit/Receive Miscellaneous Parameters
|
||||
* and Modes'). Bits 7&6, 5&4, and 3&2 are taken as units.
|
||||
*/
|
||||
#define ZSWR4_CLK_X1 0x00 /* clock divisor = 1 */
|
||||
#define ZSWR4_CLK_X16 0x40 /* clock divisor = 16 */
|
||||
#define ZSWR4_CLK_X32 0x80 /* clock divisor = 32 */
|
||||
#define ZSWR4_CLK_X64 0xc0 /* clock divisor = 64 */
|
||||
#define ZSWR4_CLK_MASK 0xc0 /* clock divisor mask */
|
||||
|
||||
#define ZSWR4_MONOSYNC 0x00 /* 8 bit sync char (sync only) */
|
||||
#define ZSWR4_BISYNC 0x10 /* 16 bit sync char (sync only) */
|
||||
#define ZSWR4_SDLC 0x20 /* SDLC mode */
|
||||
#define ZSWR4_EXTSYNC 0x30 /* external sync mode */
|
||||
#define ZSWR4_SYNC_MASK 0x30 /* sync mode bit mask */
|
||||
|
||||
#define ZSWR4_SYNCMODE 0x00 /* no stop bit (sync mode only) */
|
||||
#define ZSWR4_ONESB 0x04 /* 1 stop bit */
|
||||
#define ZSWR4_1P5SB 0x08 /* 1.5 stop bits (clk cannot be 1x) */
|
||||
#define ZSWR4_TWOSB 0x0c /* 2 stop bits */
|
||||
#define ZSWR4_SBMASK 0x0c /* mask of all stop bits */
|
||||
|
||||
#define ZSWR4_EVENP 0x02 /* check for even parity */
|
||||
#define ZSWR4_PARENB 0x01 /* enable parity checking */
|
||||
#define ZSWR4_PARMASK 0x03 /* mask of all parity bits */
|
||||
|
||||
/*
|
||||
* Bits in Write Register 5 (`Transmit Parameter and Controls').
|
||||
* Bits 6 and 5 are taken as a unit; the ordering is, as with RX
|
||||
* bits per char, not sensible.
|
||||
*/
|
||||
#define ZSWR5_DTR 0x80 /* assert (set to -12V) DTR */
|
||||
|
||||
#define ZSWR5_TX_5 0x00 /* transmit 5 or fewer bits */
|
||||
#define ZSWR5_TX_7 0x20 /* transmit 7 bits */
|
||||
#define ZSWR5_TX_6 0x40 /* transmit 6 bits */
|
||||
#define ZSWR5_TX_8 0x60 /* transmit 8 bits */
|
||||
#define ZSWR5_TXSIZE 0x60 /* transmit char size mask */
|
||||
|
||||
#define ZSWR5_BREAK 0x10 /* send break (continuous 0s) */
|
||||
#define ZSWR5_TX_ENABLE 0x08 /* enable transmitter */
|
||||
#define ZSWR5_CRC16 0x04 /* use CRC16 (off => use SDLC) */
|
||||
#define ZSWR5_RTS 0x02 /* assert RTS */
|
||||
#define ZSWR5_TXCRC_ENABLE 0x01 /* enable xmit crc calculation */
|
||||
|
||||
#ifdef not_done_here
|
||||
/*
|
||||
* Bits in Write Register 7 when the chip is in SDLC mode.
|
||||
*/
|
||||
#define ZSWR7_SDLCFLAG 0x7e /* this value makes SDLC mode work */
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Bits in Write Register 7' (ZSWR_ENHANCED above). This register is
|
||||
* only available on the 85230. Dispite the fact it contains flags
|
||||
* and not a single value, the register was named as it is read
|
||||
* via RR14. Weird.
|
||||
*/
|
||||
/* 0x80 unused */
|
||||
#define ZSWR7P_EXTEND_READ 0x40 /* modify read map; make most regs readable */
|
||||
#define ZSWR7P_TX_FIFO 0x20 /* change level for Tx FIFO empty int */
|
||||
#define ZSWR7P_DTR_TIME 0x10 /* modifies deact. speed of /DTR//REQ */
|
||||
#define ZSWR7P_RX_FIFO 0x08 /* Rx FIFO int on 1/2 full? */
|
||||
#define ZSWR7P_RTS_DEACT 0x04 /* automatically deassert RTS */
|
||||
#define ZSWR7P_AUTO_EOM_RESET 0x02 /* automatically reset EMO/Tx Underrun */
|
||||
#define ZSWR7P_AUTO_TX_FLAG 0x01 /* Auto send SDLC flag at transmit start */
|
||||
|
||||
/*
|
||||
* Bits in Write Register 9 (`Master Interrupt Control'). Bits 7 & 6
|
||||
* are taken as a unit and indicate the type of reset; 00 means no reset
|
||||
* (and is not defined here).
|
||||
*/
|
||||
#define ZSWR9_HARD_RESET 0xc0 /* force hardware reset */
|
||||
#define ZSWR9_A_RESET 0x80 /* reset channel A (0) */
|
||||
#define ZSWR9_B_RESET 0x40 /* reset channel B (1) */
|
||||
#define ZSWR9_SOFT_INTAC 0x20 /* Not in NMOS version */
|
||||
|
||||
#define ZSWR9_STATUS_HIGH 0x10 /* status in high bits of intr vec */
|
||||
#define ZSWR9_MASTER_IE 0x08 /* master interrupt enable */
|
||||
#define ZSWR9_DLC 0x04 /* disable lower chain */
|
||||
#define ZSWR9_NO_VECTOR 0x02 /* no vector */
|
||||
#define ZSWR9_VECTOR_INCL_STAT 0x01 /* vector includes status */
|
||||
|
||||
/*
|
||||
* Bits in Write Register 10 (`Miscellaneous Transmitter/Receiver Control
|
||||
* Bits'). Bits 6 & 5 are taken as a unit, and some of the bits are
|
||||
* meaningful only in certain modes. Bleah.
|
||||
*/
|
||||
#define ZSWR10_PRESET_ONES 0x80 /* preset CRC to all 1 (else all 0) */
|
||||
|
||||
#define ZSWR10_NRZ 0x00 /* NRZ encoding */
|
||||
#define ZSWR10_NRZI 0x20 /* NRZI encoding */
|
||||
#define ZSWR10_FM1 0x40 /* FM1 encoding */
|
||||
#define ZSWR10_FM0 0x60 /* FM0 encoding */
|
||||
|
||||
#define ZSWR10_GA_ON_POLL 0x10 /* go active on poll (loop mode) */
|
||||
#define ZSWR10_MARK_IDLE 0x08 /* all 1s (vs flag) when idle (SDLC) */
|
||||
#define ZSWR10_ABORT_ON_UNDERRUN 0x4 /* abort on xmit underrun (SDLC) */
|
||||
#define ZSWR10_LOOP_MODE 0x02 /* loop mode (SDLC) */
|
||||
#define ZSWR10_6_BIT_SYNC 0x01 /* 6 bits per sync char (sync modes) */
|
||||
|
||||
/*
|
||||
* Bits in Write Register 11 (`Clock Mode Control'). Bits 6&5, 4&3, and
|
||||
* 1&0 are taken as units. Various bits depend on other bits in complex
|
||||
* ways; see the Zilog manual.
|
||||
*/
|
||||
#define ZSWR11_XTAL 0x80 /* have xtal between RTxC* and SYNC* */
|
||||
/* (else have TTL oscil. on RTxC*) */
|
||||
#define ZSWR11_RXCLK_RTXC 0x00 /* recv clock taken from RTxC* pin */
|
||||
#define ZSWR11_RXCLK_TRXC 0x20 /* recv clock taken from TRxC* pin */
|
||||
#define ZSWR11_RXCLK_BAUD 0x40 /* recv clock taken from BRG */
|
||||
#define ZSWR11_RXCLK_DPLL 0x60 /* recv clock taken from DPLL */
|
||||
|
||||
#define ZSWR11_TXCLK_RTXC 0x00 /* xmit clock taken from RTxC* pin */
|
||||
#define ZSWR11_TXCLK_TRXC 0x08 /* xmit clock taken from TRxC* pin */
|
||||
#define ZSWR11_TXCLK_BAUD 0x10 /* xmit clock taken from BRG */
|
||||
#define ZSWR11_TXCLK_DPLL 0x18 /* xmit clock taken from DPLL */
|
||||
|
||||
#define ZSWR11_TRXC_OUT_ENA 0x04 /* TRxC* pin will be an output */
|
||||
/* (unless it is being used above) */
|
||||
#define ZSWR11_TRXC_XTAL 0x00 /* TRxC output from xtal oscillator */
|
||||
#define ZSWR11_TRXC_XMIT 0x01 /* TRxC output from xmit clock */
|
||||
#define ZSWR11_TRXC_BAUD 0x02 /* TRxC output from BRG */
|
||||
#define ZSWR11_TRXC_DPLL 0x03 /* TRxC output from DPLL */
|
||||
|
||||
/*
|
||||
* Formula for Write Registers 12 and 13 (`Lower Byte of Baud Rate
|
||||
* Generator Time Constant' and `Upper Byte of ...'). Inputs:
|
||||
*
|
||||
* f BRG input clock frequency (in Hz) AFTER division
|
||||
* by 1, 16, 32, or 64 (per clock divisor in WR4)
|
||||
* bps desired rate in bits per second (9600, etc)
|
||||
*
|
||||
* We want
|
||||
*
|
||||
* f
|
||||
* ----- + 0.5 - 2
|
||||
* 2 bps
|
||||
*
|
||||
* rounded down to an integer. This can be computed entirely
|
||||
* in integer arithemtic as:
|
||||
*
|
||||
* f + bps
|
||||
* ------- - 2
|
||||
* 2 bps
|
||||
*/
|
||||
#define BPS_TO_TCONST(f, bps) ((((f) + (bps)) / (2 * (bps))) - 2)
|
||||
|
||||
/* inverse of above: given a BRG Time Constant, return Bits Per Second */
|
||||
#define TCONST_TO_BPS(f, tc) ((f) / 2 / ((tc) + 2))
|
||||
|
||||
/*
|
||||
* Bits in Write Register 14 (`Miscellaneous Control Bits').
|
||||
* Bits 7 through 5 are taken as a unit and make up a `DPLL command'.
|
||||
*/
|
||||
#define ZSWR14_DPLL_NOOP 0x00 /* leave DPLL alone */
|
||||
#define ZSWR14_DPLL_SEARCH 0x20 /* enter search mode */
|
||||
#define ZSWR14_DPLL_RESET_CM 0x40 /* reset `clock missing' in RR10 */
|
||||
#define ZSWR14_DPLL_DISABLE 0x60 /* disable DPLL (continuous search) */
|
||||
#define ZSWR14_DPLL_SRC_BAUD 0x80 /* set DPLL src = BRG */
|
||||
#define ZSWR14_DPLL_SRC_RTXC 0xa0 /* set DPLL src = RTxC* or xtal osc */
|
||||
#define ZSWR14_DPLL_FM 0xc0 /* operate in FM mode */
|
||||
#define ZSWR14_DPLL_NRZI 0xe0 /* operate in NRZI mode */
|
||||
|
||||
#define ZSWR14_LOCAL_LOOPBACK 0x10 /* set local loopback mode */
|
||||
#define ZSWR14_AUTO_ECHO 0x08 /* set auto echo mode */
|
||||
#define ZSWR14_DTR_REQ 0x04 /* DTR* / REQ* pin gives REQ* */
|
||||
#define ZSWR14_BAUD_FROM_PCLK 0x02 /* BRG clock taken from PCLK */
|
||||
/* (else from RTxC* pin or xtal osc) */
|
||||
#define ZSWR14_BAUD_ENA 0x01 /* enable BRG countdown */
|
||||
|
||||
/*
|
||||
* Bits in Write Register 15 (`External/Status Interrupt Control').
|
||||
* Most of these cause status interrupts whenever the corresponding
|
||||
* bit or pin changes state (i.e., any rising or falling edge).
|
||||
*
|
||||
* NOTE: ZSWR15_SDLC_FIFO & ZSWR15_ENABLE_ENHANCED should not be
|
||||
* set on an NMOS 8530. Also, ZSWR15_ENABLE_ENHANCED is only
|
||||
* available on the 85230.
|
||||
*/
|
||||
#define ZSWR15_BREAK_IE 0x80 /* enable break/abort status int */
|
||||
#define ZSWR15_TXUEOM_IE 0x40 /* enable TX underrun/EOM status int */
|
||||
#define ZSWR15_CTS_IE 0x20 /* enable CTS* pin status int */
|
||||
#define ZSWR15_SYNCHUNT_IE 0x10 /* enable SYNC* pin/hunt status int */
|
||||
#define ZSWR15_DCD_IE 0x08 /* enable DCD* pin status int */
|
||||
#define ZSWR15_SDLC_FIFO 0x04 /* enable SDLC FIFO enhancements */
|
||||
#define ZSWR15_ZERO_COUNT_IE 0x02 /* enable BRG-counter = 0 status int */
|
||||
#define ZSWR15_ENABLE_ENHANCED 0x01 /* enable writing WR7' at reg 7 */
|
||||
|
||||
/*
|
||||
* Bits in Read Register 0 (`Transmit/Receive Buffer Status and External
|
||||
* Status').
|
||||
*/
|
||||
#define ZSRR0_BREAK 0x80 /* break/abort detected */
|
||||
#define ZSRR0_TXUNDER 0x40 /* transmit underrun/EOM (sync) */
|
||||
#define ZSRR0_CTS 0x20 /* clear to send */
|
||||
#define ZSRR0_SYNC_HUNT 0x10 /* sync/hunt (sync mode) */
|
||||
#define ZSRR0_DCD 0x08 /* data carrier detect */
|
||||
#define ZSRR0_TX_READY 0x04 /* transmit buffer empty */
|
||||
#define ZSRR0_ZERO_COUNT 0x02 /* zero count in baud clock */
|
||||
#define ZSRR0_RX_READY 0x01 /* received character ready */
|
||||
|
||||
/*
|
||||
* Bits in Read Register 1 (the Zilog book does not name this one).
|
||||
*/
|
||||
#define ZSRR1_EOF 0x80 /* end of frame (SDLC mode) */
|
||||
#define ZSRR1_FE 0x40 /* CRC/framing error */
|
||||
#define ZSRR1_DO 0x20 /* data (receiver) overrun */
|
||||
#define ZSRR1_PE 0x10 /* parity error */
|
||||
#define ZSRR1_RC0 0x08 /* residue code 0 (SDLC mode) */
|
||||
#define ZSRR1_RC1 0x04 /* residue code 1 (SDLC mode) */
|
||||
#define ZSRR1_RC2 0x02 /* residue code 2 (SDLC mode) */
|
||||
#define ZSRR1_ALL_SENT 0x01 /* all chars out of xmitter (async) */
|
||||
|
||||
/*
|
||||
* Read Register 2 in B channel contains status bits if VECTOR_INCL_STAT
|
||||
* is set.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Bits in Read Register 3 (`Interrupt Pending'). Only channel A
|
||||
* has an RR3.
|
||||
*/
|
||||
/* 0x80 unused, returned as 0 */
|
||||
/* 0x40 unused, returned as 0 */
|
||||
#define ZSRR3_IP_A_RX 0x20 /* channel A recv int pending */
|
||||
#define ZSRR3_IP_A_TX 0x10 /* channel A xmit int pending */
|
||||
#define ZSRR3_IP_A_STAT 0x08 /* channel A status int pending */
|
||||
#define ZSRR3_IP_B_RX 0x04 /* channel B recv int pending */
|
||||
#define ZSRR3_IP_B_TX 0x02 /* channel B xmit int pending */
|
||||
#define ZSRR3_IP_B_STAT 0x01 /* channel B status int pending */
|
||||
|
||||
/*
|
||||
* Bits in Read Register 10 (`contains some miscellaneous status bits').
|
||||
*/
|
||||
#define ZSRR10_1_CLOCK_MISSING 0x80 /* 1 clock edge missing (FM mode) */
|
||||
#define ZSRR10_2_CLOCKS_MISSING 0x40 /* 2 clock edges missing (FM mode) */
|
||||
/* 0x20 unused */
|
||||
#define ZSRR10_LOOP_SENDING 0x10 /* xmitter controls loop (SDLC loop) */
|
||||
/* 0x08 unused */
|
||||
/* 0x04 unused */
|
||||
#define ZSRR10_ON_LOOP 0x02 /* SCC is on loop (SDLC/X.21 modes) */
|
||||
|
||||
/*
|
||||
* Bits in Read Register 15. This register is one of the few that
|
||||
* simply reads back the corresponding Write Register.
|
||||
*/
|
||||
#define ZSRR15_BREAK_IE 0x80 /* break/abort status int enable */
|
||||
#define ZSRR15_TXUEOM_IE 0x40 /* TX underrun/EOM status int enable */
|
||||
#define ZSRR15_CTS_IE 0x20 /* CTS* pin status int enable */
|
||||
#define ZSRR15_SYNCHUNT_IE 0x10 /* SYNC* pin/hunt status int enable */
|
||||
#define ZSRR15_DCD_IE 0x08 /* DCD* pin status int enable */
|
||||
/* 0x04 unused, returned as zero */
|
||||
#define ZSRR15_ZERO_COUNT_IE 0x02 /* BRG-counter = 0 status int enable */
|
||||
/* 0x01 unused, returned as zero */
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
/*-
|
||||
* Copyright (c) 2003 Jake Burkholder.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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 AUTHOR 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 AUTHOR 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.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _DEV_ZS_ZSVAR_H_
|
||||
#define _DEV_ZS_ZSVAR_H_
|
||||
|
||||
struct zs_softc {
|
||||
device_t sc_dev;
|
||||
bus_space_tag_t sc_bt;
|
||||
bus_space_handle_t sc_bh;
|
||||
struct zstty_softc *sc_child[ZS_NCHAN];
|
||||
void *sc_softih;
|
||||
};
|
||||
|
||||
struct zstty_softc {
|
||||
device_t sc_dev;
|
||||
struct zs_softc *sc_parent;
|
||||
bus_space_tag_t sc_bt;
|
||||
bus_space_handle_t sc_csr;
|
||||
bus_space_handle_t sc_data;
|
||||
struct cdev *sc_si;
|
||||
struct tty *sc_tty;
|
||||
int sc_icnt;
|
||||
uint8_t *sc_iput;
|
||||
uint8_t *sc_iget;
|
||||
int sc_ocnt;
|
||||
uint8_t *sc_oget;
|
||||
int sc_brg_clk;
|
||||
int sc_alt_break_state;
|
||||
struct mtx sc_mtx;
|
||||
uint8_t sc_console;
|
||||
uint8_t sc_tx_busy;
|
||||
uint8_t sc_tx_done;
|
||||
uint8_t sc_preg_held;
|
||||
uint8_t sc_creg[16];
|
||||
uint8_t sc_preg[16];
|
||||
uint8_t sc_ibuf[CBLOCK];
|
||||
uint8_t sc_obuf[CBLOCK];
|
||||
};
|
||||
|
||||
int zs_attach(device_t dev);
|
||||
int zs_probe(device_t dev);
|
||||
int zs_intr(void *v);
|
||||
|
||||
int zstty_attach(device_t dev);
|
||||
int zstty_probe(device_t dev);
|
||||
|
||||
int zstty_console(device_t dev, char *mode, int len);
|
||||
|
||||
void zstty_set_speed(struct zstty_softc *sc, int ospeed);
|
||||
|
||||
#endif
|
||||
897
sys/dev/zs/zs.c
897
sys/dev/zs/zs.c
|
|
@ -1,897 +0,0 @@
|
|||
/*-
|
||||
* Copyright (c) 1994 Gordon W. Ross
|
||||
* Copyright (c) 1992, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* This software was developed by the Computer Systems Engineering group
|
||||
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
||||
* contributed to Berkeley.
|
||||
*
|
||||
* All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Lawrence Berkeley Laboratory.
|
||||
*
|
||||
* 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.
|
||||
* 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 REGENTS 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 REGENTS 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.
|
||||
*
|
||||
* @(#)zs.c 8.1 (Berkeley) 7/19/93
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
/*-
|
||||
* Copyright (c) 2003 Jake Burkholder.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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 AUTHOR 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 AUTHOR 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.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* Zilog Z8530 Dual UART driver.
|
||||
*/
|
||||
|
||||
#include "opt_comconsole.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/bus.h>
|
||||
#include <sys/conf.h>
|
||||
#include <sys/cons.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <sys/interrupt.h>
|
||||
#include <sys/kdb.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/ktr.h>
|
||||
#include <sys/mutex.h>
|
||||
#include <sys/proc.h>
|
||||
#include <machine/bus.h>
|
||||
#include <machine/resource.h>
|
||||
#include <sys/rman.h>
|
||||
#include <sys/serial.h>
|
||||
#include <sys/syslog.h>
|
||||
#include <sys/tty.h>
|
||||
|
||||
#include <dev/zs/z8530reg.h>
|
||||
#include <dev/zs/z8530var.h>
|
||||
|
||||
#define ZS_READ(sc, r) \
|
||||
bus_space_read_1((sc)->sc_bt, (r), 0)
|
||||
#define ZS_WRITE(sc, r, v) \
|
||||
bus_space_write_1((sc)->sc_bt, (r), 0, (v))
|
||||
|
||||
#define ZS_READ_REG(sc, r) ({ \
|
||||
ZS_WRITE((sc), (sc)->sc_csr, (r)); \
|
||||
ZS_READ((sc), (sc)->sc_csr); \
|
||||
})
|
||||
|
||||
#define ZS_WRITE_REG(sc, r, v) ({ \
|
||||
ZS_WRITE((sc), (sc)->sc_csr, (r)); \
|
||||
ZS_WRITE((sc), (sc)->sc_csr, (v)); \
|
||||
})
|
||||
|
||||
#define ZSTTY_LOCK(sz) mtx_lock_spin(&(sc)->sc_mtx)
|
||||
#define ZSTTY_UNLOCK(sz) mtx_unlock_spin(&(sc)->sc_mtx)
|
||||
|
||||
static void zs_softintr(void *v);
|
||||
static void zs_shutdown(void *v);
|
||||
|
||||
static int zstty_intr(struct zstty_softc *sc, uint8_t rr3);
|
||||
static void zstty_softintr(struct zstty_softc *sc) __unused;
|
||||
static int zstty_param(struct zstty_softc *sc, struct tty *tp,
|
||||
struct termios *t);
|
||||
static void zstty_flush(struct zstty_softc *sc) __unused;
|
||||
static int zstty_speed(struct zstty_softc *sc, int rate);
|
||||
static void zstty_load_regs(struct zstty_softc *sc);
|
||||
|
||||
static cn_probe_t zs_cnprobe;
|
||||
static cn_init_t zs_cninit;
|
||||
static cn_term_t zs_cnterm;
|
||||
static cn_getc_t zs_cngetc;
|
||||
static cn_putc_t zs_cnputc;
|
||||
|
||||
static int zstty_cngetc(struct zstty_softc *sc);
|
||||
static int zstty_cncheckc(struct zstty_softc *sc);
|
||||
static void zstty_cnputc(struct zstty_softc *sc, int c);
|
||||
|
||||
static d_open_t zsttyopen;
|
||||
static d_close_t zsttyclose;
|
||||
|
||||
static void zsttystart(struct tty *tp);
|
||||
static void zsttystop(struct tty *tp, int rw);
|
||||
static int zsttyparam(struct tty *tp, struct termios *t);
|
||||
static void zsttybreak(struct tty *tp, int brk);
|
||||
static int zsttymodem(struct tty *tp, int biton, int bitoff);
|
||||
|
||||
static struct cdevsw zstty_cdevsw = {
|
||||
.d_version = D_VERSION,
|
||||
.d_open = zsttyopen,
|
||||
.d_close = zsttyclose,
|
||||
.d_name = "zstty",
|
||||
.d_flags = D_TTY | D_NEEDGIANT,
|
||||
};
|
||||
|
||||
static struct zstty_softc *zstty_cons;
|
||||
|
||||
CONSOLE_DRIVER(zs);
|
||||
|
||||
int
|
||||
zs_probe(device_t dev)
|
||||
{
|
||||
|
||||
device_set_desc(dev, "Zilog Z8530");
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
zs_attach(device_t dev)
|
||||
{
|
||||
struct device *child[ZS_NCHAN];
|
||||
struct zs_softc *sc;
|
||||
int i;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
sc->sc_dev = dev;
|
||||
|
||||
for (i = 0; i < ZS_NCHAN; i++)
|
||||
child[i] = device_add_child(dev, "zstty", -1);
|
||||
bus_generic_attach(dev);
|
||||
for (i = 0; i < ZS_NCHAN; i++)
|
||||
sc->sc_child[i] = device_get_softc(child[i]);
|
||||
|
||||
swi_add(&tty_intr_event, "zs", zs_softintr, sc, SWI_TTY,
|
||||
INTR_TYPE_TTY, &sc->sc_softih);
|
||||
|
||||
ZS_WRITE_REG(sc->sc_child[0], 2, sc->sc_child[0]->sc_creg[2]);
|
||||
ZS_WRITE_REG(sc->sc_child[0], 9, sc->sc_child[0]->sc_creg[9]);
|
||||
|
||||
if (zstty_cons != NULL) {
|
||||
DELAY(50000);
|
||||
cninit();
|
||||
}
|
||||
|
||||
EVENTHANDLER_REGISTER(shutdown_final, zs_shutdown, sc,
|
||||
SHUTDOWN_PRI_DEFAULT);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
zs_intr(void *v)
|
||||
{
|
||||
struct zs_softc *sc = v;
|
||||
int needsoft;
|
||||
uint8_t rr3;
|
||||
|
||||
/*
|
||||
* There is only one status register, which is on channel a. In order
|
||||
* to avoid needing to know which channel we're on in the tty interrupt
|
||||
* handler we shift the channel a status bits into the channel b
|
||||
* bit positions and always test the channel b bits.
|
||||
*/
|
||||
needsoft = 0;
|
||||
rr3 = ZS_READ_REG(sc->sc_child[0], 3);
|
||||
if ((rr3 & (ZSRR3_IP_A_RX | ZSRR3_IP_A_TX | ZSRR3_IP_A_STAT)) != 0)
|
||||
needsoft |= zstty_intr(sc->sc_child[0], rr3 >> 3);
|
||||
if ((rr3 & (ZSRR3_IP_B_RX | ZSRR3_IP_B_TX | ZSRR3_IP_B_STAT)) != 0)
|
||||
needsoft |= zstty_intr(sc->sc_child[1], rr3);
|
||||
if (needsoft) {
|
||||
swi_sched(sc->sc_softih, 0);
|
||||
return (FILTER_HANDLED);
|
||||
}
|
||||
return (FILTER_STRAY);
|
||||
}
|
||||
|
||||
static void
|
||||
zs_softintr(void *v)
|
||||
{
|
||||
struct zs_softc *sc = v;
|
||||
|
||||
zstty_softintr(sc->sc_child[0]);
|
||||
zstty_softintr(sc->sc_child[1]);
|
||||
}
|
||||
|
||||
static void
|
||||
zs_shutdown(void *v)
|
||||
{
|
||||
}
|
||||
|
||||
int
|
||||
zstty_probe(device_t dev)
|
||||
{
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
zstty_attach(device_t dev)
|
||||
{
|
||||
struct zstty_softc *sc;
|
||||
struct tty *tp;
|
||||
char mode[32];
|
||||
int reset;
|
||||
int baud;
|
||||
int clen;
|
||||
char parity;
|
||||
int stop;
|
||||
char c;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
mtx_init(&sc->sc_mtx, "zstty", NULL, MTX_SPIN);
|
||||
sc->sc_dev = dev;
|
||||
sc->sc_iput = sc->sc_iget = sc->sc_ibuf;
|
||||
sc->sc_oget = sc->sc_obuf;
|
||||
|
||||
tp = ttyalloc();
|
||||
tp->t_sc = sc;
|
||||
sc->sc_si = make_dev(&zstty_cdevsw, device_get_unit(dev),
|
||||
UID_ROOT, GID_WHEEL, 0600, "%s", device_get_desc(dev));
|
||||
sc->sc_si->si_drv1 = sc;
|
||||
sc->sc_si->si_tty = tp;
|
||||
tp->t_dev = sc->sc_si;
|
||||
sc->sc_tty = tp;
|
||||
|
||||
tp->t_oproc = zsttystart;
|
||||
tp->t_param = zsttyparam;
|
||||
tp->t_modem = zsttymodem;
|
||||
tp->t_break = zsttybreak;
|
||||
tp->t_stop = zsttystop;
|
||||
ttyinitmode(tp, 0, 0);
|
||||
tp->t_cflag = CREAD | CLOCAL | CS8;
|
||||
|
||||
if (zstty_console(dev, mode, sizeof(mode))) {
|
||||
ttychars(tp);
|
||||
/* format: 9600,8,n,1,- */
|
||||
if (sscanf(mode, "%d,%d,%c,%d,%c", &baud, &clen, &parity,
|
||||
&stop, &c) == 5) {
|
||||
tp->t_ospeed = baud;
|
||||
tp->t_ispeed = baud;
|
||||
tp->t_cflag = CREAD | CLOCAL;
|
||||
switch (clen) {
|
||||
case 5:
|
||||
tp->t_cflag |= CS5;
|
||||
break;
|
||||
case 6:
|
||||
tp->t_cflag |= CS6;
|
||||
break;
|
||||
case 7:
|
||||
tp->t_cflag |= CS7;
|
||||
break;
|
||||
case 8:
|
||||
default:
|
||||
tp->t_cflag |= CS8;
|
||||
break;
|
||||
}
|
||||
|
||||
if (parity == 'e')
|
||||
tp->t_cflag |= PARENB;
|
||||
else if (parity == 'o')
|
||||
tp->t_cflag |= PARENB | PARODD;
|
||||
|
||||
if (stop == 2)
|
||||
tp->t_cflag |= CSTOPB;
|
||||
}
|
||||
device_printf(dev, "console %s\n", mode);
|
||||
sc->sc_console = 1;
|
||||
zstty_cons = sc;
|
||||
} else {
|
||||
if ((device_get_unit(dev) & 1) == 0)
|
||||
reset = ZSWR9_A_RESET;
|
||||
else
|
||||
reset = ZSWR9_B_RESET;
|
||||
ZS_WRITE_REG(sc, 9, reset);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Note that the rr3 value is shifted so the channel a status bits are in the
|
||||
* channel b bit positions, which makes the bit positions uniform for both
|
||||
* channels.
|
||||
*/
|
||||
static int
|
||||
zstty_intr(struct zstty_softc *sc, uint8_t rr3)
|
||||
{
|
||||
int needsoft;
|
||||
uint8_t rr0;
|
||||
uint8_t rr1;
|
||||
uint8_t c;
|
||||
int brk;
|
||||
|
||||
ZSTTY_LOCK(sc);
|
||||
|
||||
ZS_WRITE(sc, sc->sc_csr, ZSWR0_CLR_INTR);
|
||||
|
||||
brk = 0;
|
||||
needsoft = 0;
|
||||
if ((rr3 & ZSRR3_IP_B_RX) != 0) {
|
||||
needsoft = 1;
|
||||
do {
|
||||
/*
|
||||
* First read the status, because reading the received
|
||||
* char destroys the status of this char.
|
||||
*/
|
||||
rr1 = ZS_READ_REG(sc, 1);
|
||||
c = ZS_READ(sc, sc->sc_data);
|
||||
|
||||
if ((rr1 & (ZSRR1_FE | ZSRR1_DO | ZSRR1_PE)) != 0)
|
||||
ZS_WRITE(sc, sc->sc_csr, ZSWR0_RESET_ERRORS);
|
||||
#if defined(KDB) && defined(ALT_BREAK_TO_DEBUGGER)
|
||||
if (sc->sc_console != 0)
|
||||
brk = kdb_alt_break(c,
|
||||
&sc->sc_alt_break_state);
|
||||
#endif
|
||||
*sc->sc_iput++ = c;
|
||||
*sc->sc_iput++ = rr1;
|
||||
if (sc->sc_iput == sc->sc_ibuf + sizeof(sc->sc_ibuf))
|
||||
sc->sc_iput = sc->sc_ibuf;
|
||||
} while ((ZS_READ(sc, sc->sc_csr) & ZSRR0_RX_READY) != 0);
|
||||
}
|
||||
|
||||
if ((rr3 & ZSRR3_IP_B_STAT) != 0) {
|
||||
rr0 = ZS_READ(sc, sc->sc_csr);
|
||||
ZS_WRITE(sc, sc->sc_csr, ZSWR0_RESET_STATUS);
|
||||
#if defined(KDB) && defined(BREAK_TO_DEBUGGER)
|
||||
if (sc->sc_console != 0 && (rr0 & ZSRR0_BREAK) != 0)
|
||||
brk = 1;
|
||||
#endif
|
||||
/* XXX do something about flow control */
|
||||
}
|
||||
|
||||
if ((rr3 & ZSRR3_IP_B_TX) != 0) {
|
||||
/*
|
||||
* If we've delayed a paramter change, do it now.
|
||||
*/
|
||||
if (sc->sc_preg_held) {
|
||||
sc->sc_preg_held = 0;
|
||||
zstty_load_regs(sc);
|
||||
}
|
||||
if (sc->sc_ocnt > 0) {
|
||||
ZS_WRITE(sc, sc->sc_data, *sc->sc_oget++);
|
||||
sc->sc_ocnt--;
|
||||
} else {
|
||||
/*
|
||||
* Disable transmit completion interrupts if
|
||||
* necessary.
|
||||
*/
|
||||
if ((sc->sc_preg[1] & ZSWR1_TIE) != 0) {
|
||||
sc->sc_preg[1] &= ~ZSWR1_TIE;
|
||||
sc->sc_creg[1] = sc->sc_preg[1];
|
||||
ZS_WRITE_REG(sc, 1, sc->sc_creg[1]);
|
||||
}
|
||||
sc->sc_tx_done = 1;
|
||||
sc->sc_tx_busy = 0;
|
||||
needsoft = 1;
|
||||
}
|
||||
}
|
||||
|
||||
ZSTTY_UNLOCK(sc);
|
||||
|
||||
if (brk != 0)
|
||||
breakpoint();
|
||||
|
||||
return (needsoft);
|
||||
}
|
||||
|
||||
static void
|
||||
zstty_softintr(struct zstty_softc *sc)
|
||||
{
|
||||
struct tty *tp = sc->sc_tty;
|
||||
int data;
|
||||
int stat;
|
||||
|
||||
if ((tp->t_state & TS_ISOPEN) == 0)
|
||||
return;
|
||||
|
||||
while (sc->sc_iget != sc->sc_iput) {
|
||||
data = *sc->sc_iget++;
|
||||
stat = *sc->sc_iget++;
|
||||
if ((stat & ZSRR1_PE) != 0)
|
||||
data |= TTY_PE;
|
||||
if ((stat & ZSRR1_FE) != 0)
|
||||
data |= TTY_FE;
|
||||
if (sc->sc_iget == sc->sc_ibuf + sizeof(sc->sc_ibuf))
|
||||
sc->sc_iget = sc->sc_ibuf;
|
||||
|
||||
ttyld_rint(tp, data);
|
||||
}
|
||||
|
||||
if (sc->sc_tx_done != 0) {
|
||||
sc->sc_tx_done = 0;
|
||||
tp->t_state &= ~TS_BUSY;
|
||||
ttyld_start(tp);
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
zsttyopen(struct cdev *dev, int flags, int mode, struct thread *td)
|
||||
{
|
||||
struct zstty_softc *sc;
|
||||
struct tty *tp;
|
||||
int error;
|
||||
|
||||
sc = dev->si_drv1;
|
||||
tp = dev->si_tty;
|
||||
|
||||
if ((tp->t_state & TS_ISOPEN) != 0 &&
|
||||
(tp->t_state & TS_XCLUDE) != 0 &&
|
||||
priv_check(td, PRIV_TTY_EXCLUSIVE) != 0)
|
||||
return (EBUSY);
|
||||
|
||||
if ((tp->t_state & TS_ISOPEN) == 0) {
|
||||
struct termios t;
|
||||
|
||||
/*
|
||||
* Enable receive and status interrupts in zstty_param.
|
||||
*/
|
||||
sc->sc_preg[1] |= ZSWR1_RIE | ZSWR1_SIE;
|
||||
sc->sc_iput = sc->sc_iget = sc->sc_ibuf;
|
||||
|
||||
ttyconsolemode(tp, 0);
|
||||
/* Make sure zstty_param() will do something. */
|
||||
tp->t_ospeed = 0;
|
||||
(void)zstty_param(sc, tp, &t);
|
||||
ttychars(tp);
|
||||
|
||||
/* XXX turn on DTR */
|
||||
|
||||
/* XXX handle initial DCD */
|
||||
}
|
||||
|
||||
error = tty_open(dev, tp);
|
||||
if (error != 0)
|
||||
return (error);
|
||||
|
||||
error = ttyld_open(tp, dev);
|
||||
if (error != 0)
|
||||
return (error);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
zsttyclose(struct cdev *dev, int flags, int mode, struct thread *td)
|
||||
{
|
||||
struct tty *tp;
|
||||
|
||||
tp = dev->si_tty;
|
||||
|
||||
if ((tp->t_state & TS_ISOPEN) == 0)
|
||||
return (0);
|
||||
|
||||
ttyld_close(tp, flags);
|
||||
tty_close(tp);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void
|
||||
zsttystart(struct tty *tp)
|
||||
{
|
||||
struct zstty_softc *sc;
|
||||
uint8_t c;
|
||||
|
||||
sc = tp->t_sc;
|
||||
|
||||
if ((tp->t_state & TS_TBLOCK) != 0)
|
||||
/* XXX clear RTS */;
|
||||
else
|
||||
/* XXX set RTS */;
|
||||
|
||||
if ((tp->t_state & (TS_BUSY | TS_TIMEOUT | TS_TTSTOP)) != 0) {
|
||||
ttwwakeup(tp);
|
||||
return;
|
||||
}
|
||||
|
||||
if (tp->t_outq.c_cc <= tp->t_olowat) {
|
||||
if ((tp->t_state & TS_SO_OLOWAT) != 0) {
|
||||
tp->t_state &= ~TS_SO_OLOWAT;
|
||||
wakeup(TSA_OLOWAT(tp));
|
||||
}
|
||||
selwakeuppri(&tp->t_wsel, TTOPRI);
|
||||
if (tp->t_outq.c_cc == 0) {
|
||||
if ((tp->t_state & (TS_BUSY | TS_SO_OCOMPLETE)) ==
|
||||
TS_SO_OCOMPLETE && tp->t_outq.c_cc == 0) {
|
||||
tp->t_state &= ~TS_SO_OCOMPLETE;
|
||||
wakeup(TSA_OCOMPLETE(tp));
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
sc->sc_ocnt = q_to_b(&tp->t_outq, sc->sc_obuf, sizeof(sc->sc_obuf));
|
||||
if (sc->sc_ocnt == 0)
|
||||
return;
|
||||
c = sc->sc_obuf[0];
|
||||
sc->sc_oget = sc->sc_obuf + 1;
|
||||
sc->sc_ocnt--;
|
||||
|
||||
tp->t_state |= TS_BUSY;
|
||||
sc->sc_tx_busy = 1;
|
||||
|
||||
/*
|
||||
* Enable transmit interrupts if necessary and send the first
|
||||
* character to start up the transmitter.
|
||||
*/
|
||||
if ((sc->sc_preg[1] & ZSWR1_TIE) == 0) {
|
||||
sc->sc_preg[1] |= ZSWR1_TIE;
|
||||
sc->sc_creg[1] = sc->sc_preg[1];
|
||||
ZS_WRITE_REG(sc, 1, sc->sc_creg[1]);
|
||||
}
|
||||
ZS_WRITE(sc, sc->sc_data, c);
|
||||
|
||||
ttwwakeup(tp);
|
||||
}
|
||||
|
||||
static void
|
||||
zsttystop(struct tty *tp, int flag)
|
||||
{
|
||||
struct zstty_softc *sc;
|
||||
|
||||
sc = tp->t_sc;
|
||||
|
||||
if ((flag & FREAD) != 0) {
|
||||
/* XXX stop reading, anything to do? */;
|
||||
}
|
||||
|
||||
if ((flag & FWRITE) != 0) {
|
||||
if ((tp->t_state & TS_BUSY) != 0) {
|
||||
/* XXX do what? */
|
||||
if ((tp->t_state & TS_TTSTOP) == 0)
|
||||
tp->t_state |= TS_FLUSH;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
zsttyparam(struct tty *tp, struct termios *t)
|
||||
{
|
||||
struct zstty_softc *sc;
|
||||
|
||||
sc = tp->t_sc;
|
||||
return (zstty_param(sc, tp, t));
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
zsttybreak(struct tty *tp, int brk)
|
||||
{
|
||||
struct zstty_softc *sc;
|
||||
|
||||
sc = tp->t_sc;
|
||||
|
||||
if (brk)
|
||||
ZS_WRITE_REG(sc, 5, ZS_READ_REG(sc, 5) | ZSWR5_BREAK);
|
||||
else
|
||||
ZS_WRITE_REG(sc, 5, ZS_READ_REG(sc, 5) & ~ZSWR5_BREAK);
|
||||
}
|
||||
|
||||
static int
|
||||
zsttymodem(struct tty *tp, int biton, int bitoff)
|
||||
{
|
||||
/* XXX implement! */
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
zstty_param(struct zstty_softc *sc, struct tty *tp, struct termios *t)
|
||||
{
|
||||
tcflag_t cflag;
|
||||
uint8_t wr3;
|
||||
uint8_t wr4;
|
||||
uint8_t wr5;
|
||||
int ospeed;
|
||||
|
||||
ospeed = zstty_speed(sc, t->c_ospeed);
|
||||
if (ospeed < 0 || (t->c_ispeed && t->c_ispeed != t->c_ospeed))
|
||||
return (EINVAL);
|
||||
|
||||
/*
|
||||
* If there were no changes, don't do anything. This avoids dropping
|
||||
* input and improves performance when all we did was frob things like
|
||||
* VMIN and VTIME.
|
||||
*/
|
||||
if (tp->t_ospeed == t->c_ospeed &&
|
||||
tp->t_cflag == t->c_cflag)
|
||||
return (0);
|
||||
|
||||
if (t->c_ospeed != 0)
|
||||
zsttymodem(tp, SER_DTR, 0);
|
||||
else
|
||||
zsttymodem(tp, 0, SER_DTR);
|
||||
|
||||
cflag = t->c_cflag;
|
||||
|
||||
if (sc->sc_console != 0) {
|
||||
cflag |= CLOCAL;
|
||||
cflag &= ~HUPCL;
|
||||
}
|
||||
|
||||
wr3 = ZSWR3_RX_ENABLE;
|
||||
wr5 = ZSWR5_TX_ENABLE | ZSWR5_DTR | ZSWR5_RTS;
|
||||
|
||||
switch (cflag & CSIZE) {
|
||||
case CS5:
|
||||
wr3 |= ZSWR3_RX_5;
|
||||
wr5 |= ZSWR5_TX_5;
|
||||
break;
|
||||
case CS6:
|
||||
wr3 |= ZSWR3_RX_6;
|
||||
wr5 |= ZSWR5_TX_6;
|
||||
break;
|
||||
case CS7:
|
||||
wr3 |= ZSWR3_RX_7;
|
||||
wr5 |= ZSWR5_TX_7;
|
||||
break;
|
||||
case CS8:
|
||||
default:
|
||||
wr3 |= ZSWR3_RX_8;
|
||||
wr5 |= ZSWR5_TX_8;
|
||||
break;
|
||||
}
|
||||
|
||||
wr4 = ZSWR4_CLK_X16 | (cflag & CSTOPB ? ZSWR4_TWOSB : ZSWR4_ONESB);
|
||||
if ((cflag & PARODD) == 0)
|
||||
wr4 |= ZSWR4_EVENP;
|
||||
if (cflag & PARENB)
|
||||
wr4 |= ZSWR4_PARENB;
|
||||
|
||||
tp->t_ispeed = 0;
|
||||
tp->t_ospeed = t->c_ospeed;
|
||||
tp->t_cflag = cflag;
|
||||
|
||||
ttsetwater(tp);
|
||||
|
||||
ZSTTY_LOCK(sc);
|
||||
|
||||
sc->sc_preg[3] = wr3;
|
||||
sc->sc_preg[4] = wr4;
|
||||
sc->sc_preg[5] = wr5;
|
||||
|
||||
zstty_set_speed(sc, ospeed);
|
||||
|
||||
if (cflag & CRTSCTS)
|
||||
sc->sc_preg[15] |= ZSWR15_CTS_IE;
|
||||
else
|
||||
sc->sc_preg[15] &= ~ZSWR15_CTS_IE;
|
||||
|
||||
zstty_load_regs(sc);
|
||||
|
||||
ZSTTY_UNLOCK(sc);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void
|
||||
zstty_flush(struct zstty_softc *sc)
|
||||
{
|
||||
uint8_t rr0;
|
||||
uint8_t rr1;
|
||||
uint8_t c;
|
||||
|
||||
for (;;) {
|
||||
rr0 = ZS_READ(sc, sc->sc_csr);
|
||||
if ((rr0 & ZSRR0_RX_READY) == 0)
|
||||
break;
|
||||
|
||||
rr1 = ZS_READ_REG(sc, 1);
|
||||
c = ZS_READ(sc, sc->sc_data);
|
||||
|
||||
if (rr1 & (ZSRR1_FE | ZSRR1_DO | ZSRR1_PE))
|
||||
ZS_WRITE(sc, sc->sc_data, ZSWR0_RESET_ERRORS);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
zstty_load_regs(struct zstty_softc *sc)
|
||||
{
|
||||
|
||||
/*
|
||||
* If the transmitter may be active, just hold the change and do it
|
||||
* in the tx interrupt handler. Changing the registers while tx is
|
||||
* active may hang the chip.
|
||||
*/
|
||||
if (sc->sc_tx_busy != 0) {
|
||||
sc->sc_preg_held = 1;
|
||||
return;
|
||||
}
|
||||
|
||||
/* If the regs are the same do nothing. */
|
||||
if (bcmp(sc->sc_preg, sc->sc_creg, 16) == 0)
|
||||
return;
|
||||
|
||||
bcopy(sc->sc_preg, sc->sc_creg, 16);
|
||||
|
||||
/* XXX: reset error condition */
|
||||
ZS_WRITE(sc, sc->sc_csr, ZSM_RESET_ERR);
|
||||
|
||||
/* disable interrupts */
|
||||
ZS_WRITE_REG(sc, 1, sc->sc_creg[1] & ~ZSWR1_IMASK);
|
||||
|
||||
/* baud clock divisor, stop bits, parity */
|
||||
ZS_WRITE_REG(sc, 4, sc->sc_creg[4]);
|
||||
|
||||
/* misc. TX/RX control bits */
|
||||
ZS_WRITE_REG(sc, 10, sc->sc_creg[10]);
|
||||
|
||||
/* char size, enable (RX/TX) */
|
||||
ZS_WRITE_REG(sc, 3, sc->sc_creg[3] & ~ZSWR3_RX_ENABLE);
|
||||
ZS_WRITE_REG(sc, 5, sc->sc_creg[5] & ~ZSWR5_TX_ENABLE);
|
||||
|
||||
/* Shut down the BRG */
|
||||
ZS_WRITE_REG(sc, 14, sc->sc_creg[14] & ~ZSWR14_BAUD_ENA);
|
||||
|
||||
/* clock mode control */
|
||||
ZS_WRITE_REG(sc, 11, sc->sc_creg[11]);
|
||||
|
||||
/* baud rate (lo/hi) */
|
||||
ZS_WRITE_REG(sc, 12, sc->sc_creg[12]);
|
||||
ZS_WRITE_REG(sc, 13, sc->sc_creg[13]);
|
||||
|
||||
/* Misc. control bits */
|
||||
ZS_WRITE_REG(sc, 14, sc->sc_creg[14]);
|
||||
|
||||
/* which lines cause status interrupts */
|
||||
ZS_WRITE_REG(sc, 15, sc->sc_creg[15]);
|
||||
|
||||
/*
|
||||
* Zilog docs recommend resetting external status twice at this
|
||||
* point. Mainly as the status bits are latched, and the first
|
||||
* interrupt clear might unlatch them to new values, generating
|
||||
* a second interrupt request.
|
||||
*/
|
||||
ZS_WRITE(sc, sc->sc_csr, ZSM_RESET_STINT);
|
||||
ZS_WRITE(sc, sc->sc_csr, ZSM_RESET_STINT);
|
||||
|
||||
/* char size, enable (RX/TX)*/
|
||||
ZS_WRITE_REG(sc, 3, sc->sc_creg[3]);
|
||||
ZS_WRITE_REG(sc, 5, sc->sc_creg[5]);
|
||||
|
||||
/* interrupt enables: RX, TX, STATUS */
|
||||
ZS_WRITE_REG(sc, 1, sc->sc_creg[1]);
|
||||
}
|
||||
|
||||
static int
|
||||
zstty_speed(struct zstty_softc *sc, int rate)
|
||||
{
|
||||
int tconst;
|
||||
|
||||
if (rate == 0)
|
||||
return (0);
|
||||
tconst = BPS_TO_TCONST(sc->sc_brg_clk, rate);
|
||||
if (tconst < 0 || TCONST_TO_BPS(sc->sc_brg_clk, tconst) != rate)
|
||||
return (-1);
|
||||
return (tconst);
|
||||
}
|
||||
|
||||
static void
|
||||
zs_cnprobe(struct consdev *cn)
|
||||
{
|
||||
struct zstty_softc *sc = zstty_cons;
|
||||
|
||||
if (sc == NULL)
|
||||
cn->cn_pri = CN_DEAD;
|
||||
else {
|
||||
cn->cn_pri = CN_REMOTE;
|
||||
strcpy(cn->cn_name, devtoname(sc->sc_si));
|
||||
cn->cn_tp = sc->sc_tty;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
zs_cninit(struct consdev *cn)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
zs_cnterm(struct consdev *cn)
|
||||
{
|
||||
}
|
||||
|
||||
static int
|
||||
zs_cngetc(struct consdev *cn)
|
||||
{
|
||||
struct zstty_softc *sc = zstty_cons;
|
||||
|
||||
if (sc == NULL)
|
||||
return (-1);
|
||||
return (zstty_cncheckc(sc));
|
||||
}
|
||||
|
||||
static void
|
||||
zs_cnputc(struct consdev *cn, int c)
|
||||
{
|
||||
struct zstty_softc *sc = zstty_cons;
|
||||
|
||||
if (sc == NULL)
|
||||
return;
|
||||
zstty_cnputc(sc, c);
|
||||
}
|
||||
|
||||
static void
|
||||
zstty_cnopen(struct zstty_softc *sc)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
zstty_cnclose(struct zstty_softc *sc)
|
||||
{
|
||||
}
|
||||
|
||||
static int
|
||||
zstty_cngetc(struct zstty_softc *sc)
|
||||
{
|
||||
uint8_t c;
|
||||
|
||||
zstty_cnopen(sc);
|
||||
while ((ZS_READ(sc, sc->sc_csr) & ZSRR0_RX_READY) == 0)
|
||||
;
|
||||
c = ZS_READ(sc, sc->sc_data);
|
||||
zstty_cnclose(sc);
|
||||
return (c);
|
||||
}
|
||||
|
||||
static int
|
||||
zstty_cncheckc(struct zstty_softc *sc)
|
||||
{
|
||||
int c;
|
||||
|
||||
c = -1;
|
||||
zstty_cnopen(sc);
|
||||
if ((ZS_READ(sc, sc->sc_csr) & ZSRR0_RX_READY) != 0)
|
||||
c = ZS_READ(sc, sc->sc_data);
|
||||
zstty_cnclose(sc);
|
||||
return (c);
|
||||
}
|
||||
|
||||
static void
|
||||
zstty_cnputc(struct zstty_softc *sc, int c)
|
||||
{
|
||||
|
||||
zstty_cnopen(sc);
|
||||
while ((ZS_READ(sc, sc->sc_csr) & ZSRR0_TX_READY) == 0)
|
||||
;
|
||||
ZS_WRITE(sc, sc->sc_data, c);
|
||||
zstty_cnclose(sc);
|
||||
}
|
||||
|
|
@ -1,294 +0,0 @@
|
|||
/*-
|
||||
* Copyright (c) 2003 Jake Burkholder, Benno Rice.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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 AUTHOR 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 AUTHOR 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.
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/module.h>
|
||||
#include <sys/bus.h>
|
||||
#include <sys/interrupt.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <machine/bus.h>
|
||||
#include <machine/resource.h>
|
||||
#include <sys/rman.h>
|
||||
|
||||
#include <dev/ofw/ofw_bus.h>
|
||||
#include <dev/ofw/openfirm.h>
|
||||
|
||||
#include <dev/zs/z8530reg.h>
|
||||
#include <dev/zs/z8530var.h>
|
||||
|
||||
#define ZS_MACIO_CHAN_A 32
|
||||
#define ZS_MACIO_CHAN_B 0
|
||||
|
||||
#define ZS_MACIO_CSR 0
|
||||
#define ZS_MACIO_DATA 16
|
||||
|
||||
#define ZS_MACIO_DEF_SPEED (57600)
|
||||
|
||||
#define ZS_MACIO_CLOCK (9600 * 384)
|
||||
#define ZS_MACIO_CLOCK_DIV (16)
|
||||
|
||||
struct zs_macio_softc {
|
||||
struct zs_softc sc_zs;
|
||||
struct resource *sc_irqres1, *sc_irqres2;
|
||||
int sc_irqrid1, sc_irqrid2;
|
||||
void *sc_ih1, *sc_ih2;
|
||||
struct resource *sc_memres;
|
||||
int sc_memrid;
|
||||
};
|
||||
|
||||
static int zs_macio_attach(device_t dev);
|
||||
static int zs_macio_detach(device_t dev);
|
||||
static int zs_macio_probe(device_t dev);
|
||||
|
||||
static int zstty_macio_attach(device_t dev);
|
||||
static int zstty_macio_probe(device_t dev);
|
||||
|
||||
static device_method_t zs_macio_methods[] = {
|
||||
DEVMETHOD(device_probe, zs_macio_probe),
|
||||
DEVMETHOD(device_attach, zs_macio_attach),
|
||||
DEVMETHOD(device_detach, zs_macio_detach),
|
||||
|
||||
DEVMETHOD(bus_print_child, bus_generic_print_child),
|
||||
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
static device_method_t zstty_macio_methods[] = {
|
||||
DEVMETHOD(device_probe, zstty_macio_probe),
|
||||
DEVMETHOD(device_attach, zstty_macio_attach),
|
||||
DEVMETHOD(device_detach, bus_generic_detach),
|
||||
|
||||
{ 0, 0}
|
||||
};
|
||||
|
||||
static driver_t zs_macio_driver = {
|
||||
"zs",
|
||||
zs_macio_methods,
|
||||
sizeof(struct zs_macio_softc),
|
||||
};
|
||||
|
||||
static driver_t zstty_macio_driver = {
|
||||
"zstty",
|
||||
zstty_macio_methods,
|
||||
sizeof(struct zstty_softc),
|
||||
};
|
||||
|
||||
static devclass_t zs_macio_devclass;
|
||||
static devclass_t zstty_macio_devclass;
|
||||
|
||||
DRIVER_MODULE(zstty, zs, zstty_macio_driver, zstty_macio_devclass, 0, 0);
|
||||
DRIVER_MODULE(zs, macio, zs_macio_driver, zs_macio_devclass, 0, 0);
|
||||
|
||||
static u_char zs_macio_init_reg[16] = {
|
||||
0, /* 0: CMD (reset, etc.) */
|
||||
0, /* 1: No interrupts yet. */
|
||||
0, /* IVECT */
|
||||
ZSWR3_RX_8 | ZSWR3_RX_ENABLE,
|
||||
ZSWR4_CLK_X16 | ZSWR4_ONESB,
|
||||
ZSWR5_TX_8 | ZSWR5_TX_ENABLE,
|
||||
0, /* 6: TXSYNC/SYNCLO */
|
||||
0, /* 7: RXSYNC/SYNCHI */
|
||||
0, /* 8: alias for data port */
|
||||
ZSWR9_MASTER_IE | ZSWR9_NO_VECTOR,
|
||||
0, /*10: Misc. TX/RX control bits */
|
||||
ZSWR11_TXCLK_BAUD | ZSWR11_RXCLK_BAUD,
|
||||
#if 0
|
||||
((ZS_MACIO_CLOCK/32)/ZS_MACIO_DEF_SPEED)-2,
|
||||
#endif
|
||||
BPS_TO_TCONST((ZS_MACIO_CLOCK / ZS_MACIO_CLOCK_DIV), ZS_MACIO_DEF_SPEED),
|
||||
0,
|
||||
ZSWR14_BAUD_ENA,
|
||||
ZSWR15_BREAK_IE,
|
||||
};
|
||||
|
||||
static int
|
||||
zs_macio_probe(device_t dev)
|
||||
{
|
||||
|
||||
if (strcmp(ofw_bus_get_name(dev), "escc") != 0 ||
|
||||
device_get_unit(dev) != 0)
|
||||
return (ENXIO);
|
||||
return (zs_probe(dev));
|
||||
}
|
||||
|
||||
static int
|
||||
zs_macio_attach(device_t dev)
|
||||
{
|
||||
struct zs_macio_softc *sc;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
|
||||
sc->sc_memres = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
|
||||
&sc->sc_memrid, RF_ACTIVE);
|
||||
if (sc->sc_memres == NULL) {
|
||||
device_printf(dev, "could not allocate memory\n");
|
||||
goto error;
|
||||
}
|
||||
sc->sc_irqrid1 = 0;
|
||||
sc->sc_irqres1 = bus_alloc_resource_any(dev, SYS_RES_IRQ,
|
||||
&sc->sc_irqrid1, RF_ACTIVE);
|
||||
if (sc->sc_irqres1 == NULL) {
|
||||
device_printf(dev, "could not allocate interrupt 1\n");
|
||||
goto error;
|
||||
}
|
||||
if (bus_setup_intr(dev, sc->sc_irqres1, INTR_TYPE_TTY,
|
||||
zs_intr, NULL, sc, &sc->sc_ih1) != 0) {
|
||||
device_printf(dev, "could not setup interrupt 1\n");
|
||||
goto error;
|
||||
}
|
||||
sc->sc_irqrid2 = 1;
|
||||
sc->sc_irqres2 = bus_alloc_resource_any(dev, SYS_RES_IRQ,
|
||||
&sc->sc_irqrid2, RF_ACTIVE);
|
||||
if (sc->sc_irqres2 == NULL) {
|
||||
device_printf(dev, "could not allocate interrupt 2\n");
|
||||
goto error;
|
||||
}
|
||||
if (bus_setup_intr(dev, sc->sc_irqres2, INTR_TYPE_TTY,
|
||||
zs_intr, NULL, sc, &sc->sc_ih2) != 0) {
|
||||
device_printf(dev, "could not setup interrupt 2\n");
|
||||
goto error;
|
||||
}
|
||||
sc->sc_zs.sc_bt = rman_get_bustag(sc->sc_memres);
|
||||
sc->sc_zs.sc_bh = rman_get_bushandle(sc->sc_memres);
|
||||
return (zs_attach(dev));
|
||||
|
||||
error:
|
||||
zs_macio_detach(dev);
|
||||
return (ENXIO);
|
||||
}
|
||||
|
||||
static int
|
||||
zs_macio_detach(device_t dev)
|
||||
{
|
||||
struct zs_macio_softc *sc;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
if (sc->sc_irqres2 != NULL) {
|
||||
if (sc->sc_ih2 != NULL)
|
||||
bus_teardown_intr(dev, sc->sc_irqres2, sc->sc_ih2);
|
||||
bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irqrid2,
|
||||
sc->sc_irqres2);
|
||||
}
|
||||
if (sc->sc_irqres1 != NULL) {
|
||||
if (sc->sc_ih1 != NULL)
|
||||
bus_teardown_intr(dev, sc->sc_irqres1, sc->sc_ih1);
|
||||
bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irqrid1,
|
||||
sc->sc_irqres1);
|
||||
}
|
||||
if (sc->sc_memres != NULL)
|
||||
bus_release_resource(dev, SYS_RES_MEMORY, sc->sc_memrid,
|
||||
sc->sc_memres);
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
zstty_macio_probe(device_t dev)
|
||||
{
|
||||
|
||||
if ((device_get_unit(dev) & 1) == 0)
|
||||
device_set_desc(dev, "ttya");
|
||||
else
|
||||
device_set_desc(dev, "ttyb");
|
||||
|
||||
return (zstty_probe(dev));
|
||||
}
|
||||
|
||||
static int
|
||||
zstty_macio_attach(device_t dev)
|
||||
{
|
||||
struct zstty_softc *sc;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
sc->sc_parent = device_get_softc(device_get_parent(dev));
|
||||
sc->sc_bt = sc->sc_parent->sc_bt;
|
||||
sc->sc_brg_clk = ZS_MACIO_CLOCK / ZS_MACIO_CLOCK_DIV;
|
||||
|
||||
switch (device_get_unit(dev) & 1) {
|
||||
case 0:
|
||||
bus_space_subregion(sc->sc_bt, sc->sc_parent->sc_bh,
|
||||
ZS_MACIO_CHAN_A + ZS_MACIO_CSR, 1, &sc->sc_csr);
|
||||
bus_space_subregion(sc->sc_bt, sc->sc_parent->sc_bh,
|
||||
ZS_MACIO_CHAN_A + ZS_MACIO_DATA, 1, &sc->sc_data);
|
||||
break;
|
||||
|
||||
case 1:
|
||||
bus_space_subregion(sc->sc_bt, sc->sc_parent->sc_bh,
|
||||
ZS_MACIO_CHAN_B + ZS_MACIO_CSR, 1, &sc->sc_csr);
|
||||
bus_space_subregion(sc->sc_bt, sc->sc_parent->sc_bh,
|
||||
ZS_MACIO_CHAN_B + ZS_MACIO_DATA, 1, &sc->sc_data);
|
||||
break;
|
||||
}
|
||||
|
||||
bcopy(zs_macio_init_reg, sc->sc_creg, 16);
|
||||
bcopy(zs_macio_init_reg, sc->sc_preg, 16);
|
||||
|
||||
return (zstty_attach(dev));
|
||||
}
|
||||
|
||||
void
|
||||
zstty_set_speed(struct zstty_softc *sc, int ospeed)
|
||||
{
|
||||
|
||||
sc->sc_preg[12] = ospeed;
|
||||
sc->sc_preg[13] = ospeed >> 8;
|
||||
}
|
||||
|
||||
int
|
||||
zstty_console(device_t dev, char *mode, int len)
|
||||
{
|
||||
phandle_t chosen, options, parent;
|
||||
ihandle_t stdin, stdout;
|
||||
phandle_t stdinp, stdoutp;
|
||||
char input[32], output[32];
|
||||
const char *desc;
|
||||
|
||||
chosen = OF_finddevice("/chosen");
|
||||
options = OF_finddevice("/options");
|
||||
parent = ofw_bus_get_node(device_get_parent(dev));
|
||||
if (OF_getprop(chosen, "stdin", &stdin, sizeof(stdin)) == -1 ||
|
||||
OF_getprop(chosen, "stdout", &stdout, sizeof(stdout)) == -1 ||
|
||||
OF_getprop(options, "input-device", input, sizeof(input)) == -1 ||
|
||||
OF_getprop(options, "output-device", output,
|
||||
sizeof(output)) == -1) {
|
||||
return (0);
|
||||
}
|
||||
stdinp = OF_parent(OF_instance_to_package(stdin));
|
||||
stdoutp = OF_parent(OF_instance_to_package(stdout));
|
||||
desc = device_get_desc(dev);
|
||||
if (parent == stdinp && parent == stdoutp &&
|
||||
input[3] == desc[3] && output[3] == desc[3]) {
|
||||
if (mode != NULL)
|
||||
strlcpy(mode, "57600,8,n,1,-", len);
|
||||
|
||||
return (1);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
Loading…
Reference in a new issue