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