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" 23*db1015e9SEduardo Habkost #include "qom/object.h" 24cd0bda20SJean-Christophe Dubois 25cd0bda20SJean-Christophe Dubois #define TYPE_IMX_SERIAL "imx.serial" 26*db1015e9SEduardo Habkost typedef struct IMXSerialState IMXSerialState; 27cd0bda20SJean-Christophe Dubois #define IMX_SERIAL(obj) OBJECT_CHECK(IMXSerialState, (obj), TYPE_IMX_SERIAL) 28cd0bda20SJean-Christophe Dubois 29cd0bda20SJean-Christophe Dubois #define URXD_CHARRDY (1<<15) /* character read is valid */ 30cd0bda20SJean-Christophe Dubois #define URXD_ERR (1<<14) /* Character has error */ 31478a573aSTrent Piepho #define URXD_FRMERR (1<<12) /* Character has frame error */ 32cd0bda20SJean-Christophe Dubois #define URXD_BRK (1<<11) /* Break received */ 33cd0bda20SJean-Christophe Dubois 34cd0bda20SJean-Christophe Dubois #define USR1_PARTYER (1<<15) /* Parity Error */ 35cd0bda20SJean-Christophe Dubois #define USR1_RTSS (1<<14) /* RTS pin status */ 36cd0bda20SJean-Christophe Dubois #define USR1_TRDY (1<<13) /* Tx ready */ 37cd0bda20SJean-Christophe Dubois #define USR1_RTSD (1<<12) /* RTS delta: pin changed state */ 38cd0bda20SJean-Christophe Dubois #define USR1_ESCF (1<<11) /* Escape sequence interrupt */ 39cd0bda20SJean-Christophe Dubois #define USR1_FRAMERR (1<<10) /* Framing error */ 40cd0bda20SJean-Christophe Dubois #define USR1_RRDY (1<<9) /* receiver ready */ 41cd0bda20SJean-Christophe Dubois #define USR1_AGTIM (1<<8) /* Aging timer interrupt */ 42cd0bda20SJean-Christophe Dubois #define USR1_DTRD (1<<7) /* DTR changed */ 43cd0bda20SJean-Christophe Dubois #define USR1_RXDS (1<<6) /* Receiver is idle */ 44cd0bda20SJean-Christophe Dubois #define USR1_AIRINT (1<<5) /* Aysnch IR interrupt */ 45cd0bda20SJean-Christophe Dubois #define USR1_AWAKE (1<<4) /* Falling edge detected on RXd pin */ 46cd0bda20SJean-Christophe Dubois 47cd0bda20SJean-Christophe Dubois #define USR2_ADET (1<<15) /* Autobaud complete */ 48cd0bda20SJean-Christophe Dubois #define USR2_TXFE (1<<14) /* Transmit FIFO empty */ 49cd0bda20SJean-Christophe Dubois #define USR2_DTRF (1<<13) /* DTR/DSR transition */ 50cd0bda20SJean-Christophe Dubois #define USR2_IDLE (1<<12) /* UART has been idle for too long */ 51cd0bda20SJean-Christophe Dubois #define USR2_ACST (1<<11) /* Autobaud counter stopped */ 52cd0bda20SJean-Christophe Dubois #define USR2_RIDELT (1<<10) /* Ring Indicator delta */ 53cd0bda20SJean-Christophe Dubois #define USR2_RIIN (1<<9) /* Ring Indicator Input */ 54cd0bda20SJean-Christophe Dubois #define USR2_IRINT (1<<8) /* Serial Infrared Interrupt */ 55cd0bda20SJean-Christophe Dubois #define USR2_WAKE (1<<7) /* Start bit detected */ 56cd0bda20SJean-Christophe Dubois #define USR2_DCDDELT (1<<6) /* Data Carrier Detect delta */ 57cd0bda20SJean-Christophe Dubois #define USR2_DCDIN (1<<5) /* Data Carrier Detect Input */ 58cd0bda20SJean-Christophe Dubois #define USR2_RTSF (1<<4) /* RTS transition */ 59cd0bda20SJean-Christophe Dubois #define USR2_TXDC (1<<3) /* Transmission complete */ 60cd0bda20SJean-Christophe Dubois #define USR2_BRCD (1<<2) /* Break condition detected */ 61cd0bda20SJean-Christophe Dubois #define USR2_ORE (1<<1) /* Overrun error */ 62cd0bda20SJean-Christophe Dubois #define USR2_RDR (1<<0) /* Receive data ready */ 63cd0bda20SJean-Christophe Dubois 64cd0bda20SJean-Christophe Dubois #define UCR1_TRDYEN (1<<13) /* Tx Ready Interrupt Enable */ 65cd0bda20SJean-Christophe Dubois #define UCR1_RRDYEN (1<<9) /* Rx Ready Interrupt Enable */ 66cd0bda20SJean-Christophe Dubois #define UCR1_TXMPTYEN (1<<6) /* Tx Empty Interrupt Enable */ 67cd0bda20SJean-Christophe Dubois #define UCR1_UARTEN (1<<0) /* UART Enable */ 68cd0bda20SJean-Christophe Dubois 69cd0bda20SJean-Christophe Dubois #define UCR2_TXEN (1<<2) /* Transmitter enable */ 70cd0bda20SJean-Christophe Dubois #define UCR2_RXEN (1<<1) /* Receiver enable */ 71cd0bda20SJean-Christophe Dubois #define UCR2_SRST (1<<0) /* Reset complete */ 72cd0bda20SJean-Christophe Dubois 733c54cf77SHans-Erik Floryd #define UCR4_DREN BIT(0) /* Receive Data Ready interrupt enable */ 7446d3fb63SAndrey Smirnov #define UCR4_TCEN BIT(3) /* TX complete interrupt enable */ 7546d3fb63SAndrey Smirnov 76cd0bda20SJean-Christophe Dubois #define UTS1_TXEMPTY (1<<6) 77cd0bda20SJean-Christophe Dubois #define UTS1_RXEMPTY (1<<5) 78cd0bda20SJean-Christophe Dubois #define UTS1_TXFULL (1<<4) 79cd0bda20SJean-Christophe Dubois #define UTS1_RXFULL (1<<3) 80cd0bda20SJean-Christophe Dubois 81*db1015e9SEduardo Habkost struct IMXSerialState { 82cd0bda20SJean-Christophe Dubois /*< private >*/ 83cd0bda20SJean-Christophe Dubois SysBusDevice parent_obj; 84cd0bda20SJean-Christophe Dubois 85cd0bda20SJean-Christophe Dubois /*< public >*/ 86cd0bda20SJean-Christophe Dubois MemoryRegion iomem; 87cd0bda20SJean-Christophe Dubois int32_t readbuff; 88cd0bda20SJean-Christophe Dubois 89cd0bda20SJean-Christophe Dubois uint32_t usr1; 90cd0bda20SJean-Christophe Dubois uint32_t usr2; 91cd0bda20SJean-Christophe Dubois uint32_t ucr1; 92cd0bda20SJean-Christophe Dubois uint32_t ucr2; 93cd0bda20SJean-Christophe Dubois uint32_t uts1; 94cd0bda20SJean-Christophe Dubois 95cd0bda20SJean-Christophe Dubois /* 96cd0bda20SJean-Christophe Dubois * The registers below are implemented just so that the 97cd0bda20SJean-Christophe Dubois * guest OS sees what it has written 98cd0bda20SJean-Christophe Dubois */ 99cd0bda20SJean-Christophe Dubois uint32_t onems; 100cd0bda20SJean-Christophe Dubois uint32_t ufcr; 101cd0bda20SJean-Christophe Dubois uint32_t ubmr; 102cd0bda20SJean-Christophe Dubois uint32_t ubrc; 103cd0bda20SJean-Christophe Dubois uint32_t ucr3; 10446d3fb63SAndrey Smirnov uint32_t ucr4; 105cd0bda20SJean-Christophe Dubois 106cd0bda20SJean-Christophe Dubois qemu_irq irq; 107becdfa00SMarc-André Lureau CharBackend chr; 108*db1015e9SEduardo Habkost }; 109cd0bda20SJean-Christophe Dubois 110cd0bda20SJean-Christophe Dubois #endif 111