2 * nRF51 Random Number Generator
5 * + Property "period_unfiltered_us": Time between two biased values in
7 * + Property "period_filtered_us": Time between two unbiased values in
9 * + sysbus MMIO regions 0: Memory Region with tasks, events and registers
10 * to be mapped to the peripherals instance address by the SOC.
11 * + Named GPIO output "irq": Interrupt line of the peripheral. Must be
12 * connected to the associated peripheral interrupt line of the NVIC.
13 * + Named GPIO output "eep_valrdy": Event set when new random value is ready
15 * + Named GPIO input "tep_start": Task that triggers start of continuous
16 * generation of random values.
17 * + Named GPIO input "tep_stop": Task that ends continuous generation of
20 * Accuracy of the peripheral model:
21 * + Stochastic properties of different configurations of the random source
23 * + Generation of unfiltered and filtered random values take at least the
24 * average generation time stated in the production specification;
25 * non-deterministic generation times are not modeled.
27 * Copyright 2018 Steffen Görtz <contrib@steffen-goertz.de>
29 * This code is licensed under the GPL version 2 or later. See
30 * the COPYING file in the top-level directory.
37 #include "hw/sysbus.h"
38 #include "qemu/timer.h"
39 #include "qom/object.h"
40 #define TYPE_NRF51_RNG "nrf51_soc.rng"
41 OBJECT_DECLARE_SIMPLE_TYPE(NRF51RNGState
, NRF51_RNG
)
43 #define NRF51_RNG_SIZE 0x1000
45 #define NRF51_RNG_TASK_START 0x000
46 #define NRF51_RNG_TASK_STOP 0x004
47 #define NRF51_RNG_EVENT_VALRDY 0x100
48 #define NRF51_RNG_REG_SHORTS 0x200
49 #define NRF51_RNG_REG_SHORTS_VALRDY_STOP 0
50 #define NRF51_RNG_REG_INTEN 0x300
51 #define NRF51_RNG_REG_INTEN_VALRDY 0
52 #define NRF51_RNG_REG_INTENSET 0x304
53 #define NRF51_RNG_REG_INTENCLR 0x308
54 #define NRF51_RNG_REG_CONFIG 0x504
55 #define NRF51_RNG_REG_CONFIG_DECEN 0
56 #define NRF51_RNG_REG_VALUE 0x508
58 struct NRF51RNGState
{
59 SysBusDevice parent_obj
;
64 /* Event End Points */
69 /* Time between generation of successive unfiltered values in us */
70 uint16_t period_unfiltered_us
;
71 /* Time between generation of successive filtered values in us */
72 uint16_t period_filtered_us
;
77 uint32_t event_valrdy
;
78 uint32_t shortcut_stop_on_valrdy
;
79 uint32_t interrupt_enabled
;
80 uint32_t filter_enabled
;
85 #endif /* NRF51_RNG_H */