Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 1 | /* |
| 2 | * LatticeMico32 JTAG UART model. |
| 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 | |
Paolo Bonzini | 83c9f4c | 2013-02-04 15:40:22 +0100 | [diff] [blame] | 20 | #include "hw/hw.h" |
| 21 | #include "hw/sysbus.h" |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 22 | #include "trace.h" |
Paolo Bonzini | 927d487 | 2012-12-17 18:20:05 +0100 | [diff] [blame] | 23 | #include "char/char.h" |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 24 | |
Paolo Bonzini | 83c9f4c | 2013-02-04 15:40:22 +0100 | [diff] [blame] | 25 | #include "hw/lm32_juart.h" |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 26 | |
| 27 | enum { |
| 28 | LM32_JUART_MIN_SAVE_VERSION = 0, |
| 29 | LM32_JUART_CURRENT_SAVE_VERSION = 0, |
| 30 | LM32_JUART_MAX_SAVE_VERSION = 0, |
| 31 | }; |
| 32 | |
| 33 | enum { |
| 34 | JTX_FULL = (1<<8), |
| 35 | }; |
| 36 | |
| 37 | enum { |
| 38 | JRX_FULL = (1<<8), |
| 39 | }; |
| 40 | |
| 41 | struct LM32JuartState { |
| 42 | SysBusDevice busdev; |
| 43 | CharDriverState *chr; |
| 44 | |
| 45 | uint32_t jtx; |
| 46 | uint32_t jrx; |
| 47 | }; |
| 48 | typedef struct LM32JuartState LM32JuartState; |
| 49 | |
| 50 | uint32_t lm32_juart_get_jtx(DeviceState *d) |
| 51 | { |
| 52 | LM32JuartState *s = container_of(d, LM32JuartState, busdev.qdev); |
| 53 | |
| 54 | trace_lm32_juart_get_jtx(s->jtx); |
| 55 | return s->jtx; |
| 56 | } |
| 57 | |
| 58 | uint32_t lm32_juart_get_jrx(DeviceState *d) |
| 59 | { |
| 60 | LM32JuartState *s = container_of(d, LM32JuartState, busdev.qdev); |
| 61 | |
| 62 | trace_lm32_juart_get_jrx(s->jrx); |
| 63 | return s->jrx; |
| 64 | } |
| 65 | |
| 66 | void lm32_juart_set_jtx(DeviceState *d, uint32_t jtx) |
| 67 | { |
| 68 | LM32JuartState *s = container_of(d, LM32JuartState, busdev.qdev); |
| 69 | unsigned char ch = jtx & 0xff; |
| 70 | |
| 71 | trace_lm32_juart_set_jtx(s->jtx); |
| 72 | |
| 73 | s->jtx = jtx; |
| 74 | if (s->chr) { |
Anthony Liguori | 2cc6e0a | 2011-08-15 11:17:28 -0500 | [diff] [blame] | 75 | qemu_chr_fe_write(s->chr, &ch, 1); |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 76 | } |
| 77 | } |
| 78 | |
| 79 | void lm32_juart_set_jrx(DeviceState *d, uint32_t jtx) |
| 80 | { |
| 81 | LM32JuartState *s = container_of(d, LM32JuartState, busdev.qdev); |
| 82 | |
| 83 | trace_lm32_juart_set_jrx(s->jrx); |
| 84 | s->jrx &= ~JRX_FULL; |
| 85 | } |
| 86 | |
| 87 | static void juart_rx(void *opaque, const uint8_t *buf, int size) |
| 88 | { |
| 89 | LM32JuartState *s = opaque; |
| 90 | |
| 91 | s->jrx = *buf | JRX_FULL; |
| 92 | } |
| 93 | |
| 94 | static int juart_can_rx(void *opaque) |
| 95 | { |
| 96 | LM32JuartState *s = opaque; |
| 97 | |
| 98 | return !(s->jrx & JRX_FULL); |
| 99 | } |
| 100 | |
| 101 | static void juart_event(void *opaque, int event) |
| 102 | { |
| 103 | } |
| 104 | |
| 105 | static void juart_reset(DeviceState *d) |
| 106 | { |
| 107 | LM32JuartState *s = container_of(d, LM32JuartState, busdev.qdev); |
| 108 | |
| 109 | s->jtx = 0; |
| 110 | s->jrx = 0; |
| 111 | } |
| 112 | |
| 113 | static int lm32_juart_init(SysBusDevice *dev) |
| 114 | { |
| 115 | LM32JuartState *s = FROM_SYSBUS(typeof(*s), dev); |
| 116 | |
Anthony Liguori | 0beb494 | 2011-12-22 15:29:25 -0600 | [diff] [blame] | 117 | s->chr = qemu_char_get_next_serial(); |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 118 | if (s->chr) { |
| 119 | qemu_chr_add_handlers(s->chr, juart_can_rx, juart_rx, juart_event, s); |
| 120 | } |
| 121 | |
| 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | static const VMStateDescription vmstate_lm32_juart = { |
| 126 | .name = "lm32-juart", |
| 127 | .version_id = 1, |
| 128 | .minimum_version_id = 1, |
| 129 | .minimum_version_id_old = 1, |
| 130 | .fields = (VMStateField[]) { |
| 131 | VMSTATE_UINT32(jtx, LM32JuartState), |
| 132 | VMSTATE_UINT32(jrx, LM32JuartState), |
| 133 | VMSTATE_END_OF_LIST() |
| 134 | } |
| 135 | }; |
| 136 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 137 | static void lm32_juart_class_init(ObjectClass *klass, void *data) |
| 138 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 139 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 140 | SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); |
| 141 | |
| 142 | k->init = lm32_juart_init; |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 143 | dc->reset = juart_reset; |
| 144 | dc->vmsd = &vmstate_lm32_juart; |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 145 | } |
| 146 | |
Andreas Färber | 8c43a6f | 2013-01-10 16:19:07 +0100 | [diff] [blame] | 147 | static const TypeInfo lm32_juart_info = { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 148 | .name = "lm32-juart", |
| 149 | .parent = TYPE_SYS_BUS_DEVICE, |
| 150 | .instance_size = sizeof(LM32JuartState), |
| 151 | .class_init = lm32_juart_class_init, |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 152 | }; |
| 153 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 154 | static void lm32_juart_register_types(void) |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 155 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 156 | type_register_static(&lm32_juart_info); |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 157 | } |
| 158 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 159 | type_init(lm32_juart_register_types) |