xref: /qemu/include/hw/char/imx_serial.h (revision 8063396bf3459a810d24e3efd6110b8480f0de5b)
1cd0bda20SJean-Christophe Dubois /*
2cd0bda20SJean-Christophe Dubois  * Device model for i.MX UART
3cd0bda20SJean-Christophe Dubois  *
4cd0bda20SJean-Christophe Dubois  * Copyright (c) 2008 OKL
5cd0bda20SJean-Christophe Dubois  * Originally Written by Hans Jiang
6cd0bda20SJean-Christophe Dubois  * Copyright (c) 2011 NICTA Pty Ltd.
7cd0bda20SJean-Christophe Dubois  * Updated by Jean-Christophe Dubois <jcd@tribudubois.net>
8cd0bda20SJean-Christophe Dubois  *
9cd0bda20SJean-Christophe Dubois  * This program is free software; you can redistribute it and/or
10cd0bda20SJean-Christophe Dubois  * modify it under the terms of the GNU General Public License
11cd0bda20SJean-Christophe Dubois  * as published by the Free Software Foundation; either version
12cd0bda20SJean-Christophe Dubois  * 2 of the License, or (at your option) any later version.
13cd0bda20SJean-Christophe Dubois  *
14cd0bda20SJean-Christophe Dubois  * You should have received a copy of the GNU General Public License along
15cd0bda20SJean-Christophe Dubois  * with this program; if not, see <http://www.gnu.org/licenses/>.
16cd0bda20SJean-Christophe Dubois  */
17cd0bda20SJean-Christophe Dubois 
18cd0bda20SJean-Christophe Dubois #ifndef IMX_SERIAL_H
19cd0bda20SJean-Christophe Dubois #define IMX_SERIAL_H
20cd0bda20SJean-Christophe Dubois 
21cd0bda20SJean-Christophe Dubois #include "hw/sysbus.h"
224d43a603SMarc-André Lureau #include "chardev/char-fe.h"
23db1015e9SEduardo Habkost #include "qom/object.h"
24cd0bda20SJean-Christophe Dubois 
25cd0bda20SJean-Christophe Dubois #define TYPE_IMX_SERIAL "imx.serial"
26*8063396bSEduardo Habkost OBJECT_DECLARE_SIMPLE_TYPE(IMXSerialState, IMX_SERIAL)
27cd0bda20SJean-Christophe Dubois 
28cd0bda20SJean-Christophe Dubois #define URXD_CHARRDY    (1<<15)   /* character read is valid */
29cd0bda20SJean-Christophe Dubois #define URXD_ERR        (1<<14)   /* Character has error */
30478a573aSTrent Piepho #define URXD_FRMERR     (1<<12)   /* Character has frame error */
31cd0bda20SJean-Christophe Dubois #define URXD_BRK        (1<<11)   /* Break received */
32cd0bda20SJean-Christophe Dubois 
33cd0bda20SJean-Christophe Dubois #define USR1_PARTYER    (1<<15)   /* Parity Error */
34cd0bda20SJean-Christophe Dubois #define USR1_RTSS       (1<<14)   /* RTS pin status */
35cd0bda20SJean-Christophe Dubois #define USR1_TRDY       (1<<13)   /* Tx ready */
36cd0bda20SJean-Christophe Dubois #define USR1_RTSD       (1<<12)   /* RTS delta: pin changed state */
37cd0bda20SJean-Christophe Dubois #define USR1_ESCF       (1<<11)   /* Escape sequence interrupt */
38cd0bda20SJean-Christophe Dubois #define USR1_FRAMERR    (1<<10)   /* Framing error  */
39cd0bda20SJean-Christophe Dubois #define USR1_RRDY       (1<<9)    /* receiver ready */
40cd0bda20SJean-Christophe Dubois #define USR1_AGTIM      (1<<8)    /* Aging timer interrupt */
41cd0bda20SJean-Christophe Dubois #define USR1_DTRD       (1<<7)    /* DTR changed */
42cd0bda20SJean-Christophe Dubois #define USR1_RXDS       (1<<6)    /* Receiver is idle */
43cd0bda20SJean-Christophe Dubois #define USR1_AIRINT     (1<<5)    /* Aysnch IR interrupt */
44cd0bda20SJean-Christophe Dubois #define USR1_AWAKE      (1<<4)    /* Falling edge detected on RXd pin */
45cd0bda20SJean-Christophe Dubois 
46cd0bda20SJean-Christophe Dubois #define USR2_ADET       (1<<15)   /* Autobaud complete */
47cd0bda20SJean-Christophe Dubois #define USR2_TXFE       (1<<14)   /* Transmit FIFO empty */
48cd0bda20SJean-Christophe Dubois #define USR2_DTRF       (1<<13)   /* DTR/DSR transition */
49cd0bda20SJean-Christophe Dubois #define USR2_IDLE       (1<<12)   /* UART has been idle for too long */
50cd0bda20SJean-Christophe Dubois #define USR2_ACST       (1<<11)   /* Autobaud counter stopped */
51cd0bda20SJean-Christophe Dubois #define USR2_RIDELT     (1<<10)   /* Ring Indicator delta */
52cd0bda20SJean-Christophe Dubois #define USR2_RIIN       (1<<9)    /* Ring Indicator Input */
53cd0bda20SJean-Christophe Dubois #define USR2_IRINT      (1<<8)    /* Serial Infrared Interrupt */
54cd0bda20SJean-Christophe Dubois #define USR2_WAKE       (1<<7)    /* Start bit detected */
55cd0bda20SJean-Christophe Dubois #define USR2_DCDDELT    (1<<6)    /* Data Carrier Detect delta */
56cd0bda20SJean-Christophe Dubois #define USR2_DCDIN      (1<<5)    /* Data Carrier Detect Input */
57cd0bda20SJean-Christophe Dubois #define USR2_RTSF       (1<<4)    /* RTS transition */
58cd0bda20SJean-Christophe Dubois #define USR2_TXDC       (1<<3)    /* Transmission complete */
59cd0bda20SJean-Christophe Dubois #define USR2_BRCD       (1<<2)    /* Break condition detected */
60cd0bda20SJean-Christophe Dubois #define USR2_ORE        (1<<1)    /* Overrun error */
61cd0bda20SJean-Christophe Dubois #define USR2_RDR        (1<<0)    /* Receive data ready */
62cd0bda20SJean-Christophe Dubois 
63cd0bda20SJean-Christophe Dubois #define UCR1_TRDYEN     (1<<13)   /* Tx Ready Interrupt Enable */
64cd0bda20SJean-Christophe Dubois #define UCR1_RRDYEN     (1<<9)    /* Rx Ready Interrupt Enable */
65cd0bda20SJean-Christophe Dubois #define UCR1_TXMPTYEN   (1<<6)    /* Tx Empty Interrupt Enable */
66cd0bda20SJean-Christophe Dubois #define UCR1_UARTEN     (1<<0)    /* UART Enable */
67cd0bda20SJean-Christophe Dubois 
68cd0bda20SJean-Christophe Dubois #define UCR2_TXEN       (1<<2)    /* Transmitter enable */
69cd0bda20SJean-Christophe Dubois #define UCR2_RXEN       (1<<1)    /* Receiver enable */
70cd0bda20SJean-Christophe Dubois #define UCR2_SRST       (1<<0)    /* Reset complete */
71cd0bda20SJean-Christophe Dubois 
723c54cf77SHans-Erik Floryd #define UCR4_DREN       BIT(0)    /* Receive Data Ready interrupt enable */
7346d3fb63SAndrey Smirnov #define UCR4_TCEN       BIT(3)    /* TX complete interrupt enable */
7446d3fb63SAndrey Smirnov 
75cd0bda20SJean-Christophe Dubois #define UTS1_TXEMPTY    (1<<6)
76cd0bda20SJean-Christophe Dubois #define UTS1_RXEMPTY    (1<<5)
77cd0bda20SJean-Christophe Dubois #define UTS1_TXFULL     (1<<4)
78cd0bda20SJean-Christophe Dubois #define UTS1_RXFULL     (1<<3)
79cd0bda20SJean-Christophe Dubois 
80db1015e9SEduardo Habkost struct IMXSerialState {
81cd0bda20SJean-Christophe Dubois     /*< private >*/
82cd0bda20SJean-Christophe Dubois     SysBusDevice parent_obj;
83cd0bda20SJean-Christophe Dubois 
84cd0bda20SJean-Christophe Dubois     /*< public >*/
85cd0bda20SJean-Christophe Dubois     MemoryRegion iomem;
86cd0bda20SJean-Christophe Dubois     int32_t readbuff;
87cd0bda20SJean-Christophe Dubois 
88cd0bda20SJean-Christophe Dubois     uint32_t usr1;
89cd0bda20SJean-Christophe Dubois     uint32_t usr2;
90cd0bda20SJean-Christophe Dubois     uint32_t ucr1;
91cd0bda20SJean-Christophe Dubois     uint32_t ucr2;
92cd0bda20SJean-Christophe Dubois     uint32_t uts1;
93cd0bda20SJean-Christophe Dubois 
94cd0bda20SJean-Christophe Dubois     /*
95cd0bda20SJean-Christophe Dubois      * The registers below are implemented just so that the
96cd0bda20SJean-Christophe Dubois      * guest OS sees what it has written
97cd0bda20SJean-Christophe Dubois      */
98cd0bda20SJean-Christophe Dubois     uint32_t onems;
99cd0bda20SJean-Christophe Dubois     uint32_t ufcr;
100cd0bda20SJean-Christophe Dubois     uint32_t ubmr;
101cd0bda20SJean-Christophe Dubois     uint32_t ubrc;
102cd0bda20SJean-Christophe Dubois     uint32_t ucr3;
10346d3fb63SAndrey Smirnov     uint32_t ucr4;
104cd0bda20SJean-Christophe Dubois 
105cd0bda20SJean-Christophe Dubois     qemu_irq irq;
106becdfa00SMarc-André Lureau     CharBackend chr;
107db1015e9SEduardo Habkost };
108cd0bda20SJean-Christophe Dubois 
109cd0bda20SJean-Christophe Dubois #endif
110