]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/arm/sa11x0/uart_dev_sa1110.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / arm / sa11x0 / uart_dev_sa1110.h
1 /*-
2  * Copyright (c) 2003 Marcel Moolenaar
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #ifndef _DEV_UART_DEV_SA1110_H_
30 #define _DEV_UART_DEV_SA1110_H_
31
32 #define SACOM_FREQ      (3686400 / 16)
33 #define SACOMSPEED(b)   (SACOM_FREQ / (b) - 1)
34
35 /* UART control register 0 */
36 #define SACOM_CR0       0x00
37 #define CR0_PE          0x01    /* Parity enable */
38 #define CR0_OES         0x02    /* Odd/even parity select */
39 #define CR0_SBS         0x04    /* Stop bit select */
40 #define CR0_DSS         0x08    /* Data size select */
41 #define CR0_SCE         0x10    /* Sample clock enable */
42 #define CR0_RCE         0x20    /* Receive clock edge enable */
43 #define CR0_TCE         0x40    /* Transmit clock edge enable */
44
45 /* UART control register 1 and 2 - baud rate divisor */
46 #define SACOM_CR1       0x04
47 #define SACOM_CR2       0x08
48
49 /* UART control register 3 */
50 #define SACOM_CR3       0x0C
51 #define CR3_RXE         0x01    /* Receiver enable */
52 #define CR3_TXE         0x02    /* Transmitter enable */
53 #define CR3_BRK         0x04    /* Break */
54 #define CR3_RIE         0x08    /* Receive FIFO interrupt enable */
55 #define CR3_TIE         0x10    /* Transmit FIFO interrupt enable */
56 #define CR3_LBM         0x20    /* Loopback mode */
57
58 /* UART data register */
59 #define SACOM_DR        0x14
60 #define DR_PRE          0x100   /* Parity error */
61 #define DR_FRE          0x200   /* Framing error */
62 #define DR_ROR          0x400   /* Receiver overrun */
63
64 /* UART status register 0 */
65 #define SACOM_SR0       0x1C
66 #define SR0_TFS         0x01    /* Transmit FIFO service request */
67 #define SR0_RFS         0x02    /* Receive FIFO service request */
68 #define SR0_RID         0x04    /* Receiver idle */
69 #define SR0_RBB         0x08    /* Receiver begin of break */
70 #define SR0_REB         0x10    /* Receiver end of break */
71 #define SR0_EIF         0x20    /* Error in FIFO */
72
73 /* UART status register 1 */
74 #define SACOM_SR1       0x20
75 #define SR1_TBY         0x01    /* Transmitter busy */
76 #define SR1_RNE         0x02    /* Receive FIFO not empty */
77 #define SR1_TNF         0x04    /* Transmit FIFO not full */
78 #define SR1_PRE         0x08    /* Parity error */
79 #define SR1_FRE         0x10    /* Framing error */
80 #define SR1_ROR         0x20    /* Receive FIFO overrun */
81
82 #define ISSET(a, b) ((a) & (b))
83 #endif