migration/rdma: Drop rdma_add_block() error handling
[qemu/armbru.git] / hw / gpio / nrf51_gpio.c
blob08396c69a4bc99c6024e936c028f37db19606d12
1 /*
2 * nRF51 System-on-Chip general purpose input/output register definition
4 * Reference Manual: http://infocenter.nordicsemi.com/pdf/nRF51_RM_v3.0.pdf
5 * Product Spec: http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.1.pdf
7 * Copyright 2018 Steffen Görtz <contrib@steffen-goertz.de>
9 * This code is licensed under the GPL version 2 or later. See
10 * the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qemu/log.h"
15 #include "qemu/module.h"
16 #include "hw/gpio/nrf51_gpio.h"
17 #include "hw/irq.h"
18 #include "migration/vmstate.h"
19 #include "trace.h"
22 * Check if the output driver is connected to the direction switch
23 * given the current configuration and logic level.
24 * It is not differentiated between standard and "high"(-power) drive modes.
26 static bool is_connected(uint32_t config, uint32_t level)
28 bool state;
29 uint32_t drive_config = extract32(config, 8, 3);
31 switch (drive_config) {
32 case 0 ... 3:
33 state = true;
34 break;
35 case 4 ... 5:
36 state = level != 0;
37 break;
38 case 6 ... 7:
39 state = level == 0;
40 break;
41 default:
42 g_assert_not_reached();
43 break;
46 return state;
49 static int pull_value(uint32_t config)
51 int pull = extract32(config, 2, 2);
52 if (pull == NRF51_GPIO_PULLDOWN) {
53 return 0;
54 } else if (pull == NRF51_GPIO_PULLUP) {
55 return 1;
57 return -1;
60 static void update_output_irq(NRF51GPIOState *s, size_t i,
61 bool connected, bool level)
63 int64_t irq_level = connected ? level : -1;
64 bool old_connected = extract32(s->old_out_connected, i, 1);
65 bool old_level = extract32(s->old_out, i, 1);
67 if ((old_connected != connected) || (old_level != level)) {
68 qemu_set_irq(s->output[i], irq_level);
69 trace_nrf51_gpio_update_output_irq(i, irq_level);
72 s->old_out = deposit32(s->old_out, i, 1, level);
73 s->old_out_connected = deposit32(s->old_out_connected, i, 1, connected);
76 static void update_state(NRF51GPIOState *s)
78 int pull;
79 size_t i;
80 bool connected_out, dir, connected_in, out, in, input;
81 bool assert_detect = false;
83 for (i = 0; i < NRF51_GPIO_PINS; i++) {
84 pull = pull_value(s->cnf[i]);
85 dir = extract32(s->cnf[i], 0, 1);
86 connected_in = extract32(s->in_mask, i, 1);
87 out = extract32(s->out, i, 1);
88 in = extract32(s->in, i, 1);
89 input = !extract32(s->cnf[i], 1, 1);
90 connected_out = is_connected(s->cnf[i], out) && dir;
92 if (!input) {
93 if (pull >= 0) {
94 /* Input buffer disconnected from external drives */
95 s->in = deposit32(s->in, i, 1, pull);
97 } else {
98 if (connected_out && connected_in && out != in) {
99 /* Pin both driven externally and internally */
100 qemu_log_mask(LOG_GUEST_ERROR,
101 "GPIO pin %zu short circuited\n", i);
103 if (connected_in) {
104 uint32_t detect_config = extract32(s->cnf[i], 16, 2);
105 if ((detect_config == 2) && (in == 1)) {
106 assert_detect = true;
108 if ((detect_config == 3) && (in == 0)) {
109 assert_detect = true;
111 } else {
113 * Floating input: the output stimulates IN if connected,
114 * otherwise pull-up/pull-down resistors put a value on both
115 * IN and OUT.
117 if (pull >= 0 && !connected_out) {
118 connected_out = true;
119 out = pull;
121 if (connected_out) {
122 s->in = deposit32(s->in, i, 1, out);
126 update_output_irq(s, i, connected_out, out);
129 qemu_set_irq(s->detect, assert_detect);
133 * Direction is exposed in both the DIR register and the DIR bit
134 * of each PINs CNF configuration register. Reflect bits for pins in DIR
135 * to individual pin configuration registers.
137 static void reflect_dir_bit_in_cnf(NRF51GPIOState *s)
139 size_t i;
141 uint32_t value = s->dir;
143 for (i = 0; i < NRF51_GPIO_PINS; i++) {
144 s->cnf[i] = (s->cnf[i] & ~(1UL)) | ((value >> i) & 0x01);
148 static uint64_t nrf51_gpio_read(void *opaque, hwaddr offset, unsigned int size)
150 NRF51GPIOState *s = NRF51_GPIO(opaque);
151 uint64_t r = 0;
152 size_t idx;
154 switch (offset) {
155 case NRF51_GPIO_REG_OUT ... NRF51_GPIO_REG_OUTCLR:
156 r = s->out;
157 break;
159 case NRF51_GPIO_REG_IN:
160 r = s->in;
161 break;
163 case NRF51_GPIO_REG_DIR ... NRF51_GPIO_REG_DIRCLR:
164 r = s->dir;
165 break;
167 case NRF51_GPIO_REG_CNF_START ... NRF51_GPIO_REG_CNF_END:
168 idx = (offset - NRF51_GPIO_REG_CNF_START) / 4;
169 r = s->cnf[idx];
170 break;
172 default:
173 qemu_log_mask(LOG_GUEST_ERROR,
174 "%s: bad read offset 0x%" HWADDR_PRIx "\n",
175 __func__, offset);
178 trace_nrf51_gpio_read(offset, r);
180 return r;
183 static void nrf51_gpio_write(void *opaque, hwaddr offset,
184 uint64_t value, unsigned int size)
186 NRF51GPIOState *s = NRF51_GPIO(opaque);
187 size_t idx;
189 trace_nrf51_gpio_write(offset, value);
191 switch (offset) {
192 case NRF51_GPIO_REG_OUT:
193 s->out = value;
194 break;
196 case NRF51_GPIO_REG_OUTSET:
197 s->out |= value;
198 break;
200 case NRF51_GPIO_REG_OUTCLR:
201 s->out &= ~value;
202 break;
204 case NRF51_GPIO_REG_DIR:
205 s->dir = value;
206 reflect_dir_bit_in_cnf(s);
207 break;
209 case NRF51_GPIO_REG_DIRSET:
210 s->dir |= value;
211 reflect_dir_bit_in_cnf(s);
212 break;
214 case NRF51_GPIO_REG_DIRCLR:
215 s->dir &= ~value;
216 reflect_dir_bit_in_cnf(s);
217 break;
219 case NRF51_GPIO_REG_CNF_START ... NRF51_GPIO_REG_CNF_END:
220 idx = (offset - NRF51_GPIO_REG_CNF_START) / 4;
221 s->cnf[idx] = value;
223 * direction is exposed in both the DIR register and the DIR bit
224 * of each PINs CNF configuration register.
226 s->dir = (s->dir & ~(1UL << idx)) | ((value & 0x01) << idx);
227 break;
229 default:
230 qemu_log_mask(LOG_GUEST_ERROR,
231 "%s: bad write offset 0x%" HWADDR_PRIx "\n",
232 __func__, offset);
235 update_state(s);
238 static const MemoryRegionOps gpio_ops = {
239 .read = nrf51_gpio_read,
240 .write = nrf51_gpio_write,
241 .endianness = DEVICE_LITTLE_ENDIAN,
242 .impl.min_access_size = 4,
243 .impl.max_access_size = 4,
246 static void nrf51_gpio_set(void *opaque, int line, int value)
248 NRF51GPIOState *s = NRF51_GPIO(opaque);
250 trace_nrf51_gpio_set(line, value);
252 assert(line >= 0 && line < NRF51_GPIO_PINS);
254 s->in_mask = deposit32(s->in_mask, line, 1, value >= 0);
255 if (value >= 0) {
256 s->in = deposit32(s->in, line, 1, value != 0);
259 update_state(s);
262 static void nrf51_gpio_reset(DeviceState *dev)
264 NRF51GPIOState *s = NRF51_GPIO(dev);
265 size_t i;
267 s->out = 0;
268 s->old_out = 0;
269 s->old_out_connected = 0;
270 s->in = 0;
271 s->in_mask = 0;
272 s->dir = 0;
274 for (i = 0; i < NRF51_GPIO_PINS; i++) {
275 s->cnf[i] = 0x00000002;
279 static const VMStateDescription vmstate_nrf51_gpio = {
280 .name = TYPE_NRF51_GPIO,
281 .version_id = 1,
282 .minimum_version_id = 1,
283 .fields = (VMStateField[]) {
284 VMSTATE_UINT32(out, NRF51GPIOState),
285 VMSTATE_UINT32(in, NRF51GPIOState),
286 VMSTATE_UINT32(in_mask, NRF51GPIOState),
287 VMSTATE_UINT32(dir, NRF51GPIOState),
288 VMSTATE_UINT32_ARRAY(cnf, NRF51GPIOState, NRF51_GPIO_PINS),
289 VMSTATE_UINT32(old_out, NRF51GPIOState),
290 VMSTATE_UINT32(old_out_connected, NRF51GPIOState),
291 VMSTATE_END_OF_LIST()
295 static void nrf51_gpio_init(Object *obj)
297 NRF51GPIOState *s = NRF51_GPIO(obj);
299 memory_region_init_io(&s->mmio, obj, &gpio_ops, s,
300 TYPE_NRF51_GPIO, NRF51_GPIO_SIZE);
301 sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);
303 qdev_init_gpio_in(DEVICE(s), nrf51_gpio_set, NRF51_GPIO_PINS);
304 qdev_init_gpio_out(DEVICE(s), s->output, NRF51_GPIO_PINS);
305 qdev_init_gpio_out_named(DEVICE(s), &s->detect, "detect", 1);
308 static void nrf51_gpio_class_init(ObjectClass *klass, void *data)
310 DeviceClass *dc = DEVICE_CLASS(klass);
312 dc->vmsd = &vmstate_nrf51_gpio;
313 dc->reset = nrf51_gpio_reset;
314 dc->desc = "nRF51 GPIO";
317 static const TypeInfo nrf51_gpio_info = {
318 .name = TYPE_NRF51_GPIO,
319 .parent = TYPE_SYS_BUS_DEVICE,
320 .instance_size = sizeof(NRF51GPIOState),
321 .instance_init = nrf51_gpio_init,
322 .class_init = nrf51_gpio_class_init
325 static void nrf51_gpio_register_types(void)
327 type_register_static(&nrf51_gpio_info);
330 type_init(nrf51_gpio_register_types)