xref: /netbsd/sys/arch/arm/s3c2xx0/s3c2xx0reg.h (revision c4a72b64)
1 /* $NetBSD: s3c2xx0reg.h,v 1.1 2002/11/20 17:52:52 bsh Exp $ */
2 
3 /*
4  * Copyright (c) 2002 Fujitsu Component Limited
5  * Copyright (c) 2002 Genetec Corporation
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of The Fujitsu Component Limited nor the name of
17  *    Genetec corporation may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY FUJITSU COMPONENT LIMITED AND GENETEC
21  * CORPORATION ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
22  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24  * DISCLAIMED.  IN NO EVENT SHALL FUJITSU COMPONENT LIMITED OR GENETEC
25  * CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 
35 
36 /*
37  * Register definitions common to S3C2800 and S3C24[01]0
38  */
39 #ifndef _ARM_S3C2XX0_S3C2XX0REG_H_
40 #define _ARM_S3C2XX0_S3C2XX0REG_H_
41 
42 /* UART */
43 #define	SSCOM_ULCON	0x00	/* UART line control */
44 #define  ULCON_IR	(1<<7)	/* Infra-Red mode */
45 #define  ULCON_PARITY_SHIFT 4	/* parity mode */
46 #define  ULCON_PARITY_NONE  (0<<ULCON_PARITY_SHIFT)
47 #define  ULCON_PARITY_ODD   (4<<ULCON_PARITY_SHIFT)
48 #define  ULCON_PARITY_EVEN  (5<<ULCON_PARITY_SHIFT)
49 #define  ULCON_PARITY_ONE   (6<<ULCON_PARITY_SHIFT)
50 #define  ULCON_PARITY_ZERO  (7<<ULCON_PARITY_SHIFT)
51 #define  ULCON_STOP	(1<<2)
52 #define  ULCON_LENGTH_5 0
53 #define  ULCON_LENGTH_6 1
54 #define  ULCON_LENGTH_7 2
55 #define  ULCON_LENGTH_8 3
56 #define SSCOM_UCON	0x04	/* UART control */
57 #define  UCON_TXINT_TYPE	(1<<9)	/* Tx interrupt. 0=pulse,1=level */
58 #define	 UCON_TXINT_TYPE_LEVEL  UCON_TXINT_TYPE
59 #define	 UCON_TXINT_TYPE_PULSE  0
60 #define  UCON_RXINT_TYPE	(1<<8)	/* Rx interrupt */
61 #define	 UCON_RXINT_TYPE_LEVEL  UCON_RXINT_TYPE
62 #define	 UCON_RXINT_TYPE_PULSE  0
63 #define  UCON_TOINT	(1<<7)	/* Rx timeout interrupt */
64 #define  UCON_ERRINT	(1<<6)	/* receive error interrupt */
65 #define  UCON_LOOP	(1<<5)	/* loopback */
66 #define  UCON_SBREAK	(1<<4)	/* send break */
67 #define	 UCON_TXMODE_DISABLE (0<<2)
68 #define  UCON_TXMODE_INT     (1<<2)
69 #define  UCON_TXMODE_DMA     (2<<2)
70 #define  UCON_TXMODE_MASK    (3<<2)
71 #define	 UCON_RXMODE_DISABLE (0<<0)
72 #define  UCON_RXMODE_INT     (1<<0)
73 #define  UCON_RXMODE_DMA     (2<<0)
74 #define  UCON_RXMODE_MASK    (3<<0)
75 #define SSCOM_UFCON	0x08	/* FIFO control */
76 #define  UFCON_TXTRIGGER_0	(0<<6)
77 #define  UFCON_TXTRIGGER_4	(1<<6)
78 #define  UFCON_TXTRIGGER_8	(2<<6)
79 #define  UFCON_TXTRIGGER_16	(3<<6)
80 #define  UFCON_RXTRIGGER_0	(0<<4)
81 #define  UFCON_RXTRIGGER_4	(1<<4)
82 #define  UFCON_RXTRIGGER_8	(2<<4)
83 #define  UFCON_RXTRIGGER_16	(3<<4)
84 #define  UFCON_TXFIFO_RESET	(1<<2)
85 #define  UFCON_RXFIFO_RESET	(1<<1)
86 #define  UFCON_FIFO_ENABLE	(1<<0)
87 #define SSCOM_UMCON	0x0c	/* MODEM control */
88 /* #define UMCON_AFC  (1<<1) */
89 #define  UMCON_RTS	(1<<0)	/* Request to send */
90 #define SSCOM_UTRSTAT	0x10	/* Status register */
91 #define  UTRSTAT_TXSHIFTER_EMPTY   (1<<2)
92 #define  UTRSTAT_TXEMPTY           (1<<1) /* TX fifo or buffer empty */
93 #define  UTRSTAT_RXREADY	   (1<<0) /* RX fifo or buffer is not empty */
94 #define SSCOM_UERSTAT	0x14	/* Error status register */
95 #define  UERSTAT_BREAK	  (1<<3) /* Break signal */
96 #define  UERSTAT_FRAME	  (1<<2) /* Frame error */
97 #define  UERSTAT_PARITY	  (1<<1) /* Parity error */
98 #define  UERSTAT_OVERRUN  (1<<0) /* Overrun */
99 #define  UERSTAT_ALL_ERRORS (UERSTAT_OVERRUN|UERSTAT_BREAK|UERSTAT_FRAME|UERSTAT_PARITY)
100 #define SSCOM_UFSTAT	0x18	/* Fifo status register */
101 #define  UFSTAT_TXFULL	  (1<<9) /* Tx fifo full */
102 #define  UFSTAT_RXFULL	  (1<<8) /* Rx fifo full */
103 #define  UFSTAT_TXCOUNT_SHIFT 4		/* TX FIFO count */
104 #define  UFSTAT_TXCOUNT	  (0x0f<<UFSTAT_TXCOUNT_SHIFT)
105 #define  UFSTAT_RXCOUNT_SHIFT 0		/* RX FIFO count */
106 #define  UFSTAT_RXCOUNT	  (0x0f<<UFSTAT_RXCOUNT_SHIFT)
107 #define SSCOM_UMSTAT	0x1c	/* Modem status register */
108 #define  S3C2800_UMSTAT_DCTS	  (1<<1) /* Clear to send chage */
109 #define  S3C24X0_UMSTAT_DCTS	  (1<<2) /* Clear to send chage */
110 #define  UMSTAT_CTS	  (1<<0) /* Clear to send */
111 #if _BYTE_ORDER == _LITTLE_ENDIAN
112 #define SSCOM_UTXH	0x20	/* Transmit data register */
113 #define SSCOM_URXH	0x24	/* Receive data register */
114 #else
115 #define SSCOM_UTXH	0x23	/* Transmit data register */
116 #define SSCOM_URXH	0x27	/* Receive data register */
117 #endif
118 #define SSCOM_UBRDIV	0x28	/* baud-reate divisor */
119 #define SSCOM_SIZE  0x2c
120 
121 /* Interrupt controller (Common to S3c2800/2400X/2410X) */
122 #define INTCTL_SRCPND	0x00	/* Interrupt request status */
123 #define INTCTL_INTMOD	0x04	/* Interrupt mode (FIQ/IRQ) */
124 #define INTCTL_INTMSK	0x08	/* Interrupt mask */
125 
126 #endif /* _ARM_S3C2XX0_S3C2XX0REG_H_ */
127