xref: /freebsd/sys/dev/ic/cd1400.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
194ec1fbaSBruce Evans /*-
2*718cf2ccSPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*718cf2ccSPedro F. Giffuni  *
4cfc9f621SJordan K. Hubbard  * cyclades cyclom-y serial driver
5cfc9f621SJordan K. Hubbard  *	Andrew Herbert <andrew@werple.apana.org.au>, 17 August 1993
6cfc9f621SJordan K. Hubbard  *
7cfc9f621SJordan K. Hubbard  * Copyright (c) 1993 Andrew Herbert.
8cfc9f621SJordan K. Hubbard  * All rights reserved.
9cfc9f621SJordan K. Hubbard  *
10cfc9f621SJordan K. Hubbard  * Redistribution and use in source and binary forms, with or without
11cfc9f621SJordan K. Hubbard  * modification, are permitted provided that the following conditions
12cfc9f621SJordan K. Hubbard  * are met:
13cfc9f621SJordan K. Hubbard  * 1. Redistributions of source code must retain the above copyright
14cfc9f621SJordan K. Hubbard  *    notice, this list of conditions and the following disclaimer.
15cfc9f621SJordan K. Hubbard  * 2. Redistributions in binary form must reproduce the above copyright
16cfc9f621SJordan K. Hubbard  *    notice, this list of conditions and the following disclaimer in the
17cfc9f621SJordan K. Hubbard  *    documentation and/or other materials provided with the distribution.
18cfc9f621SJordan K. Hubbard  * 3. The name Andrew Herbert may not be used to endorse or promote products
19cfc9f621SJordan K. Hubbard  *    derived from this software without specific prior written permission.
20cfc9f621SJordan K. Hubbard  *
21cfc9f621SJordan K. Hubbard  * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
22cfc9f621SJordan K. Hubbard  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23cfc9f621SJordan K. Hubbard  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
24cfc9f621SJordan K. Hubbard  * NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25cfc9f621SJordan K. Hubbard  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26cfc9f621SJordan K. Hubbard  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27cfc9f621SJordan K. Hubbard  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28cfc9f621SJordan K. Hubbard  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29cfc9f621SJordan K. Hubbard  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30cfc9f621SJordan K. Hubbard  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31cfc9f621SJordan K. Hubbard  */
32cfc9f621SJordan K. Hubbard 
3394ec1fbaSBruce Evans /*
3494ec1fbaSBruce Evans  * Definitions for Cirrus Logic CD1400 serial/parallel chips.
3594ec1fbaSBruce Evans  */
36cfc9f621SJordan K. Hubbard 
3794ec1fbaSBruce Evans #define	CD1400_NO_OF_CHANNELS	4	/* 4 serial channels per chip */
3894ec1fbaSBruce Evans #define	CD1400_RX_FIFO_SIZE	12
3994ec1fbaSBruce Evans #define	CD1400_TX_FIFO_SIZE	12
40cfc9f621SJordan K. Hubbard 
4194ec1fbaSBruce Evans /*
4294ec1fbaSBruce Evans  * Global registers.
4394ec1fbaSBruce Evans  */
4494ec1fbaSBruce Evans #define	CD1400_GFRCR		0x40	/* global firmware revision code */
4594ec1fbaSBruce Evans #define	CD1400_CAR		0x68	/* channel access */
4694ec1fbaSBruce Evans #define	CD1400_CAR_CHAN			(3<<0)	/* channel select */
4794ec1fbaSBruce Evans #define	CD1400_GCR		0x4B	/* global configuration */
4894ec1fbaSBruce Evans #define	CD1400_GCR_PARALLEL		(1<<7)	/* channel 0 is parallel */
4994ec1fbaSBruce Evans #define	CD1400_SVRR		0x67	/* service request */
5094ec1fbaSBruce Evans #define	CD1400_SVRR_MDMCH		(1<<2)
5194ec1fbaSBruce Evans #define	CD1400_SVRR_TXRDY		(1<<1)
5294ec1fbaSBruce Evans #define	CD1400_SVRR_RXRDY		(1<<0)
5394ec1fbaSBruce Evans #define	CD1400_RICR		0x44	/* receive interrupting channel */
5494ec1fbaSBruce Evans #define	CD1400_TICR		0x45	/* transmit interrupting channel */
5594ec1fbaSBruce Evans #define	CD1400_MICR		0x46	/* modem interrupting channel */
5694ec1fbaSBruce Evans #define	CD1400_RIR		0x6B	/* receive interrupt status */
5794ec1fbaSBruce Evans #define	CD1400_RIR_RDIREQ		(1<<7)	/* rx service required */
5894ec1fbaSBruce Evans #define	CD1400_RIR_RBUSY		(1<<6)	/* rx service in progress */
5994ec1fbaSBruce Evans #define	CD1400_RIR_CHAN			(3<<0)	/* channel select */
6094ec1fbaSBruce Evans #define	CD1400_TIR		0x6A	/* transmit interrupt status */
6194ec1fbaSBruce Evans #define	CD1400_TIR_RDIREQ		(1<<7)	/* tx service required */
6294ec1fbaSBruce Evans #define	CD1400_TIR_RBUSY		(1<<6)	/* tx service in progress */
6394ec1fbaSBruce Evans #define	CD1400_TIR_CHAN			(3<<0)	/* channel select */
6494ec1fbaSBruce Evans #define	CD1400_MIR		0x69	/* modem interrupt status */
6594ec1fbaSBruce Evans #define	CD1400_MIR_RDIREQ		(1<<7)	/* modem service required */
6694ec1fbaSBruce Evans #define	CD1400_MIR_RBUSY		(1<<6)	/* modem service in progress */
6794ec1fbaSBruce Evans #define	CD1400_MIR_CHAN			(3<<0)	/* channel select */
6894ec1fbaSBruce Evans #define	CD1400_PPR		0x7E	/* prescaler period */
6994ec1fbaSBruce Evans #define	CD1400_PPR_PRESCALER		512
70cfc9f621SJordan K. Hubbard 
7194ec1fbaSBruce Evans /*
7294ec1fbaSBruce Evans  * Virtual registers.
7394ec1fbaSBruce Evans  */
7494ec1fbaSBruce Evans #define	CD1400_RIVR		0x43	/* receive interrupt vector */
75cfc9f621SJordan K. Hubbard #define	CD1400_RIVR_EXCEPTION		(1<<2)	/* receive exception bit */
7694ec1fbaSBruce Evans #define	CD1400_TIVR		0x42	/* transmit interrupt vector */
7794ec1fbaSBruce Evans #define	CD1400_MIVR		0x41	/* modem interrupt vector */
7894ec1fbaSBruce Evans #define	CD1400_TDR		0x63	/* transmit data */
7994ec1fbaSBruce Evans #define	CD1400_RDSR		0x62	/* receive data/status */
80cfc9f621SJordan K. Hubbard #define	CD1400_RDSR_TIMEOUT		(1<<7)	/* rx timeout */
8194ec1fbaSBruce Evans #define	CD1400_RDSR_SPECIAL_SHIFT	4	/* rx special char shift */
8294ec1fbaSBruce Evans #define	CD1400_RDSR_SPECIAL		(7<<4)	/* rx special char */
8394ec1fbaSBruce Evans #define	CD1400_RDSR_BREAK		(1<<3)	/* rx break */
8494ec1fbaSBruce Evans #define	CD1400_RDSR_PE			(1<<2)	/* rx parity error */
8594ec1fbaSBruce Evans #define	CD1400_RDSR_FE			(1<<1)	/* rx framing error */
8694ec1fbaSBruce Evans #define	CD1400_RDSR_OE			(1<<0)	/* rx overrun error */
8794ec1fbaSBruce Evans #define	CD1400_MISR		0x4C	/* modem interrupt status */
88cfc9f621SJordan K. Hubbard #define	CD1400_MISR_DSRd		(1<<7)	/* DSR delta */
89cfc9f621SJordan K. Hubbard #define	CD1400_MISR_CTSd		(1<<6)	/* CTS delta */
90cfc9f621SJordan K. Hubbard #define	CD1400_MISR_RId			(1<<5)	/* RI delta */
91cfc9f621SJordan K. Hubbard #define	CD1400_MISR_CDd			(1<<4)	/* CD delta */
9294ec1fbaSBruce Evans #define	CD1400_EOSRR		0x60	/* end of service request */
93cfc9f621SJordan K. Hubbard 
9494ec1fbaSBruce Evans /*
9594ec1fbaSBruce Evans  * Channel registers.
9694ec1fbaSBruce Evans  */
9794ec1fbaSBruce Evans #define	CD1400_LIVR		0x18	/* local interrupt vector */
9894ec1fbaSBruce Evans #define	CD1400_CCR		0x05	/* channel control */
9994ec1fbaSBruce Evans #define	CD1400_CCR_CMDRESET		(1<<7)	/* enables following: */
10094ec1fbaSBruce Evans #define	CD1400_CCR_FTF				(1<<1)	/* flush tx fifo */
10194ec1fbaSBruce Evans #define	CD1400_CCR_FULLRESET			(1<<0)	/* full reset */
102657365cdSBruce Evans #define	CD1400_CCR_CHANRESET			0	/*  current channel */
10394ec1fbaSBruce Evans #define	CD1400_CCR_CMDCORCHG		(1<<6)	/* enables following: */
10494ec1fbaSBruce Evans #define	CD1400_CCR_COR3				(1<<3)	/* COR3 changed */
10594ec1fbaSBruce Evans #define	CD1400_CCR_COR2				(1<<2)	/* COR2 changed */
10694ec1fbaSBruce Evans #define	CD1400_CCR_COR1				(1<<1)	/* COR1 changed */
10794ec1fbaSBruce Evans #define	CD1400_CCR_CMDSENDSC		(1<<5)	/* enables following: */
10894ec1fbaSBruce Evans #define	CD1400_CCR_SC				(7<<0)	/* special char 1-4 */
10994ec1fbaSBruce Evans #define	CD1400_CCR_CMDCHANCTL		(1<<4)	/* enables following: */
11094ec1fbaSBruce Evans #define	CD1400_CCR_XMTEN			(1<<3)	/* tx enable */
11194ec1fbaSBruce Evans #define	CD1400_CCR_XMTDIS			(1<<2)	/* tx disable */
11294ec1fbaSBruce Evans #define	CD1400_CCR_RCVEN			(1<<1)	/* rx enable */
11394ec1fbaSBruce Evans #define	CD1400_CCR_RCVDIS			(1<<0)	/* rx disable */
11494ec1fbaSBruce Evans #define	CD1400_SRER		0x06	/* service request enable */
11594ec1fbaSBruce Evans #define	CD1400_SRER_MDMCH		(1<<7)	/* modem change */
11694ec1fbaSBruce Evans #define	CD1400_SRER_RXDATA		(1<<4)	/* rx data */
11794ec1fbaSBruce Evans #define	CD1400_SRER_TXRDY		(1<<2)	/* tx fifo empty */
11894ec1fbaSBruce Evans #define	CD1400_SRER_TXMPTY		(1<<1)	/* tx shift reg empty */
11994ec1fbaSBruce Evans #define	CD1400_SRER_NNDT		(1<<0)	/* no new data */
12094ec1fbaSBruce Evans #define	CD1400_COR1		0x08	/* channel option 1 */
12194ec1fbaSBruce Evans #define	CD1400_COR1_PARODD		(1<<7)
12294ec1fbaSBruce Evans #define	CD1400_COR1_PARNORMAL		(2<<5)
12394ec1fbaSBruce Evans #define	CD1400_COR1_PARFORCE		(1<<5)	/* odd/even = force 1/0 */
12494ec1fbaSBruce Evans #define	CD1400_COR1_PARNONE		(0<<5)
12594ec1fbaSBruce Evans #define	CD1400_COR1_NOINPCK		(1<<4)
12694ec1fbaSBruce Evans #define	CD1400_COR1_STOP2		(2<<2)
12794ec1fbaSBruce Evans #define	CD1400_COR1_STOP15		(1<<2)	/* 1.5 stop bits */
12894ec1fbaSBruce Evans #define	CD1400_COR1_STOP1		(0<<2)
12994ec1fbaSBruce Evans #define	CD1400_COR1_CS8			(3<<0)
13094ec1fbaSBruce Evans #define	CD1400_COR1_CS7			(2<<0)
13194ec1fbaSBruce Evans #define	CD1400_COR1_CS6			(1<<0)
13294ec1fbaSBruce Evans #define	CD1400_COR1_CS5			(0<<0)
13394ec1fbaSBruce Evans #define	CD1400_COR2		0x09	/* channel option 2 */
13494ec1fbaSBruce Evans #define	CD1400_COR2_IXANY		(1<<7)	/* implied XON mode */
13594ec1fbaSBruce Evans #define	CD1400_COR2_IXOFF		(1<<6)	/* in-band tx flow control */
13694ec1fbaSBruce Evans #define	CD1400_COR2_ETC			(1<<5)	/* embedded tx command */
137657365cdSBruce Evans #define	CD1400_ETC_CMD				0x00	/* start an ETC */
138657365cdSBruce Evans #define	CD1400_ETC_SENDBREAK			0x81
139657365cdSBruce Evans #define	CD1400_ETC_INSERTDELAY			0x82
140657365cdSBruce Evans #define	CD1400_ETC_STOPBREAK			0x83
14194ec1fbaSBruce Evans #define	CD1400_COR2_LLM			(1<<4)	/* local loopback mode */
14294ec1fbaSBruce Evans #define	CD1400_COR2_RLM			(1<<3)	/* remote loopback mode */
14394ec1fbaSBruce Evans #define	CD1400_COR2_RTSAO		(1<<2)	/* RTS auto output */
14494ec1fbaSBruce Evans #define	CD1400_COR2_CCTS_OFLOW		(1<<1)	/* CTS auto enable */
14594ec1fbaSBruce Evans #define	CD1400_COR2_CDSR_OFLOW		(1<<0)	/* DSR auto enable */
14694ec1fbaSBruce Evans #define	CD1400_COR3		0x0A	/* channel option 3 */
14794ec1fbaSBruce Evans #define	CD1400_COR3_SCDRNG		(1<<7)	/* special char detect range */
14894ec1fbaSBruce Evans #define	CD1400_COR3_SCD34		(1<<6)	/* special char detect 3-4 */
14994ec1fbaSBruce Evans #define	CD1400_COR3_FTC			(1<<5)	/* flow control transparency */
15094ec1fbaSBruce Evans #define	CD1400_COR3_SCD12		(1<<4)	/* special char detect 1-2 */
15194ec1fbaSBruce Evans #define	CD1400_COR3_RXTH		(15<<0)	/* rx fifo threshold */
15294ec1fbaSBruce Evans #define	CD1400_COR4		0x1E	/* channel option 4 */
15394ec1fbaSBruce Evans #define	CD1400_COR4_IGNCR		(1<<7)
15494ec1fbaSBruce Evans #define	CD1400_COR4_ICRNL		(1<<6)
15594ec1fbaSBruce Evans #define	CD1400_COR4_INLCR		(1<<5)
15694ec1fbaSBruce Evans #define	CD1400_COR4_IGNBRK		(1<<4)
15794ec1fbaSBruce Evans #define	CD1400_COR4_NOBRKINT		(1<<3)
15894ec1fbaSBruce Evans #define	CD1400_COR4_PFO_ESC		(4<<0)	/* parity/framing/overrun... */
15994ec1fbaSBruce Evans #define	CD1400_COR4_PFO_NUL		(3<<0)
16094ec1fbaSBruce Evans #define	CD1400_COR4_PFO_DISCARD		(2<<0)
16194ec1fbaSBruce Evans #define	CD1400_COR4_PFO_GOOD		(1<<0)
16294ec1fbaSBruce Evans #define	CD1400_COR4_PFO_EXCEPTION	(0<<0)
16394ec1fbaSBruce Evans #define	CD1400_COR5		0x1F	/* channel option 5 */
16494ec1fbaSBruce Evans #define	CD1400_COR5_ISTRIP		(1<<7)
16594ec1fbaSBruce Evans #define	CD1400_COR5_LNEXT		(1<<6)
16694ec1fbaSBruce Evans #define	CD1400_COR5_CMOE		(1<<5)	/* char matching on error */
16794ec1fbaSBruce Evans #define	CD1400_COR5_EBD			(1<<2)	/* end of break detected */
16894ec1fbaSBruce Evans #define	CD1400_COR5_ONLCR		(1<<1)
16994ec1fbaSBruce Evans #define	CD1400_COR5_OCRNL		(1<<0)
17094ec1fbaSBruce Evans #define	CD1400_CCSR		0x0B	/* channel control status */
17194ec1fbaSBruce Evans #define	CD1400_RDCR		0x0E	/* received data count */
17294ec1fbaSBruce Evans #define	CD1400_SCHR1		0x1A	/* special character 1 */
17394ec1fbaSBruce Evans #define	CD1400_SCHR2		0x1B	/* special character 2 */
17494ec1fbaSBruce Evans #define	CD1400_SCHR3		0x1C	/* special character 3 */
17594ec1fbaSBruce Evans #define	CD1400_SCHR4		0x1D	/* special character 4 */
17694ec1fbaSBruce Evans #define	CD1400_SCRL		0x22	/* special character range, low */
17794ec1fbaSBruce Evans #define	CD1400_SCRH		0x23	/* special character range, high */
17894ec1fbaSBruce Evans #define	CD1400_LNC		0x24	/* lnext character */
17994ec1fbaSBruce Evans #define	CD1400_MCOR1		0x15	/* modem change option 1 */
18094ec1fbaSBruce Evans #define	CD1400_MCOR1_DSRzd		(1<<7)	/* DSR one-to-zero delta */
18194ec1fbaSBruce Evans #define	CD1400_MCOR1_CTSzd		(1<<6)
18294ec1fbaSBruce Evans #define	CD1400_MCOR1_RIzd		(1<<5)
18394ec1fbaSBruce Evans #define	CD1400_MCOR1_CDzd		(1<<4)
18494ec1fbaSBruce Evans #define	CD1400_MCOR1_DTRth		(15<<0)	/* dtrflow threshold */
18594ec1fbaSBruce Evans #define	CD1400_MCOR2		0x16	/* modem change option 2 */
18694ec1fbaSBruce Evans #define	CD1400_MCOR2_DSRod		(1<<7)	/* DSR zero-to-one delta */
18794ec1fbaSBruce Evans #define	CD1400_MCOR2_CTSod		(1<<6)
18894ec1fbaSBruce Evans #define	CD1400_MCOR2_RIod		(1<<5)
18994ec1fbaSBruce Evans #define	CD1400_MCOR2_CDod		(1<<4)
19094ec1fbaSBruce Evans #define	CD1400_RTPR		0x21	/* receive timeout period */
19194ec1fbaSBruce Evans #define	CD1400_MSVR1		0x6C	/* modem signal value 1 */
19294ec1fbaSBruce Evans #define	CD1400_MSVR1_RTS		(1<<0)	/* RTS line (r/w) */
19394ec1fbaSBruce Evans #define	CD1400_MSVR2		0x6D	/* modem signal value 2 */
19494ec1fbaSBruce Evans #define	CD1400_MSVR2_DSR		(1<<7)	/* !DSR line (r) */
19594ec1fbaSBruce Evans #define	CD1400_MSVR2_CTS		(1<<6)	/* !CTS line (r) */
19694ec1fbaSBruce Evans #define	CD1400_MSVR2_RI			(1<<5)	/* !RI line (r) */
19794ec1fbaSBruce Evans #define	CD1400_MSVR2_CD			(1<<4)	/* !CD line (r) */
19894ec1fbaSBruce Evans #define	CD1400_MSVR2_DTR		(1<<1)	/* DTR line (r/w) */
19994ec1fbaSBruce Evans #define	CD1400_PSVR		0x6F	/* printer signal value */
20094ec1fbaSBruce Evans #define	CD1400_RBPR		0x78	/* receive baud rate period */
20194ec1fbaSBruce Evans #define	CD1400_RCOR		0x7C	/* receive clock option */
20294ec1fbaSBruce Evans #define	CD1400_TBPR		0x72	/* transmit baud rate period */
20394ec1fbaSBruce Evans #define	CD1400_TCOR		0x76	/* transmit clock option */
204