32bc37ac963844e3e21da6af05c8a017c432448d
[sdk/emulator/qemu.git] / hw / char / lm32_uart.c
1 /*
2  *  QEMU model of the LatticeMico32 UART block.
3  *
4  *  Copyright (c) 2010 Michael Walle <michael@walle.cc>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18  *
19  *
20  * Specification available at:
21  *   http://www.latticesemi.com/documents/mico32uart.pdf
22  */
23
24
25 #include "hw/hw.h"
26 #include "hw/sysbus.h"
27 #include "trace.h"
28 #include "char/char.h"
29 #include "qemu/error-report.h"
30
31 enum {
32     R_RXTX = 0,
33     R_IER,
34     R_IIR,
35     R_LCR,
36     R_MCR,
37     R_LSR,
38     R_MSR,
39     R_DIV,
40     R_MAX
41 };
42
43 enum {
44     IER_RBRI = (1<<0),
45     IER_THRI = (1<<1),
46     IER_RLSI = (1<<2),
47     IER_MSI  = (1<<3),
48 };
49
50 enum {
51     IIR_STAT = (1<<0),
52     IIR_ID0  = (1<<1),
53     IIR_ID1  = (1<<2),
54 };
55
56 enum {
57     LCR_WLS0 = (1<<0),
58     LCR_WLS1 = (1<<1),
59     LCR_STB  = (1<<2),
60     LCR_PEN  = (1<<3),
61     LCR_EPS  = (1<<4),
62     LCR_SP   = (1<<5),
63     LCR_SB   = (1<<6),
64 };
65
66 enum {
67     MCR_DTR  = (1<<0),
68     MCR_RTS  = (1<<1),
69 };
70
71 enum {
72     LSR_DR   = (1<<0),
73     LSR_OE   = (1<<1),
74     LSR_PE   = (1<<2),
75     LSR_FE   = (1<<3),
76     LSR_BI   = (1<<4),
77     LSR_THRE = (1<<5),
78     LSR_TEMT = (1<<6),
79 };
80
81 enum {
82     MSR_DCTS = (1<<0),
83     MSR_DDSR = (1<<1),
84     MSR_TERI = (1<<2),
85     MSR_DDCD = (1<<3),
86     MSR_CTS  = (1<<4),
87     MSR_DSR  = (1<<5),
88     MSR_RI   = (1<<6),
89     MSR_DCD  = (1<<7),
90 };
91
92 struct LM32UartState {
93     SysBusDevice busdev;
94     MemoryRegion iomem;
95     CharDriverState *chr;
96     qemu_irq irq;
97
98     uint32_t regs[R_MAX];
99 };
100 typedef struct LM32UartState LM32UartState;
101
102 static void uart_update_irq(LM32UartState *s)
103 {
104     unsigned int irq;
105
106     if ((s->regs[R_LSR] & (LSR_OE | LSR_PE | LSR_FE | LSR_BI))
107             && (s->regs[R_IER] & IER_RLSI)) {
108         irq = 1;
109         s->regs[R_IIR] = IIR_ID1 | IIR_ID0;
110     } else if ((s->regs[R_LSR] & LSR_DR) && (s->regs[R_IER] & IER_RBRI)) {
111         irq = 1;
112         s->regs[R_IIR] = IIR_ID1;
113     } else if ((s->regs[R_LSR] & LSR_THRE) && (s->regs[R_IER] & IER_THRI)) {
114         irq = 1;
115         s->regs[R_IIR] = IIR_ID0;
116     } else if ((s->regs[R_MSR] & 0x0f) && (s->regs[R_IER] & IER_MSI)) {
117         irq = 1;
118         s->regs[R_IIR] = 0;
119     } else {
120         irq = 0;
121         s->regs[R_IIR] = IIR_STAT;
122     }
123
124     trace_lm32_uart_irq_state(irq);
125     qemu_set_irq(s->irq, irq);
126 }
127
128 static uint64_t uart_read(void *opaque, hwaddr addr,
129                           unsigned size)
130 {
131     LM32UartState *s = opaque;
132     uint32_t r = 0;
133
134     addr >>= 2;
135     switch (addr) {
136     case R_RXTX:
137         r = s->regs[R_RXTX];
138         s->regs[R_LSR] &= ~LSR_DR;
139         uart_update_irq(s);
140         qemu_chr_accept_input(s->chr);
141         break;
142     case R_IIR:
143     case R_LSR:
144     case R_MSR:
145         r = s->regs[addr];
146         break;
147     case R_IER:
148     case R_LCR:
149     case R_MCR:
150     case R_DIV:
151         error_report("lm32_uart: read access to write only register 0x"
152                 TARGET_FMT_plx, addr << 2);
153         break;
154     default:
155         error_report("lm32_uart: read access to unknown register 0x"
156                 TARGET_FMT_plx, addr << 2);
157         break;
158     }
159
160     trace_lm32_uart_memory_read(addr << 2, r);
161     return r;
162 }
163
164 static void uart_write(void *opaque, hwaddr addr,
165                        uint64_t value, unsigned size)
166 {
167     LM32UartState *s = opaque;
168     unsigned char ch = value;
169
170     trace_lm32_uart_memory_write(addr, value);
171
172     addr >>= 2;
173     switch (addr) {
174     case R_RXTX:
175         if (s->chr) {
176             qemu_chr_fe_write(s->chr, &ch, 1);
177         }
178         break;
179     case R_IER:
180     case R_LCR:
181     case R_MCR:
182     case R_DIV:
183         s->regs[addr] = value;
184         break;
185     case R_IIR:
186     case R_LSR:
187     case R_MSR:
188         error_report("lm32_uart: write access to read only register 0x"
189                 TARGET_FMT_plx, addr << 2);
190         break;
191     default:
192         error_report("lm32_uart: write access to unknown register 0x"
193                 TARGET_FMT_plx, addr << 2);
194         break;
195     }
196     uart_update_irq(s);
197 }
198
199 static const MemoryRegionOps uart_ops = {
200     .read = uart_read,
201     .write = uart_write,
202     .endianness = DEVICE_NATIVE_ENDIAN,
203     .valid = {
204         .min_access_size = 4,
205         .max_access_size = 4,
206     },
207 };
208
209 static void uart_rx(void *opaque, const uint8_t *buf, int size)
210 {
211     LM32UartState *s = opaque;
212
213     if (s->regs[R_LSR] & LSR_DR) {
214         s->regs[R_LSR] |= LSR_OE;
215     }
216
217     s->regs[R_LSR] |= LSR_DR;
218     s->regs[R_RXTX] = *buf;
219
220     uart_update_irq(s);
221 }
222
223 static int uart_can_rx(void *opaque)
224 {
225     LM32UartState *s = opaque;
226
227     return !(s->regs[R_LSR] & LSR_DR);
228 }
229
230 static void uart_event(void *opaque, int event)
231 {
232 }
233
234 static void uart_reset(DeviceState *d)
235 {
236     LM32UartState *s = container_of(d, LM32UartState, busdev.qdev);
237     int i;
238
239     for (i = 0; i < R_MAX; i++) {
240         s->regs[i] = 0;
241     }
242
243     /* defaults */
244     s->regs[R_LSR] = LSR_THRE | LSR_TEMT;
245 }
246
247 static int lm32_uart_init(SysBusDevice *dev)
248 {
249     LM32UartState *s = FROM_SYSBUS(typeof(*s), dev);
250
251     sysbus_init_irq(dev, &s->irq);
252
253     memory_region_init_io(&s->iomem, &uart_ops, s, "uart", R_MAX * 4);
254     sysbus_init_mmio(dev, &s->iomem);
255
256     s->chr = qemu_char_get_next_serial();
257     if (s->chr) {
258         qemu_chr_add_handlers(s->chr, uart_can_rx, uart_rx, uart_event, s);
259     }
260
261     return 0;
262 }
263
264 static const VMStateDescription vmstate_lm32_uart = {
265     .name = "lm32-uart",
266     .version_id = 1,
267     .minimum_version_id = 1,
268     .minimum_version_id_old = 1,
269     .fields      = (VMStateField[]) {
270         VMSTATE_UINT32_ARRAY(regs, LM32UartState, R_MAX),
271         VMSTATE_END_OF_LIST()
272     }
273 };
274
275 static void lm32_uart_class_init(ObjectClass *klass, void *data)
276 {
277     DeviceClass *dc = DEVICE_CLASS(klass);
278     SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
279
280     k->init = lm32_uart_init;
281     dc->reset = uart_reset;
282     dc->vmsd = &vmstate_lm32_uart;
283 }
284
285 static const TypeInfo lm32_uart_info = {
286     .name          = "lm32-uart",
287     .parent        = TYPE_SYS_BUS_DEVICE,
288     .instance_size = sizeof(LM32UartState),
289     .class_init    = lm32_uart_class_init,
290 };
291
292 static void lm32_uart_register_types(void)
293 {
294     type_register_static(&lm32_uart_info);
295 }
296
297 type_init(lm32_uart_register_types)