Merge remote-tracking branch 'remotes/palmer/tags/riscv-for-master-4.1-sf1-v3' into...
[qemu/ar7.git] / include / hw / misc / bcm2835_rng.h
blob41a531bce776cb84d400eda198eae824831bc5fb
1 /*
2 * BCM2835 Random Number Generator emulation
4 * Copyright (C) 2017 Marcin Chojnacki <marcinch7@gmail.com>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
10 #ifndef BCM2835_RNG_H
11 #define BCM2835_RNG_H
13 #include "hw/sysbus.h"
15 #define TYPE_BCM2835_RNG "bcm2835-rng"
16 #define BCM2835_RNG(obj) \
17 OBJECT_CHECK(BCM2835RngState, (obj), TYPE_BCM2835_RNG)
19 typedef struct {
20 SysBusDevice busdev;
21 MemoryRegion iomem;
23 uint32_t rng_ctrl;
24 uint32_t rng_status;
25 } BCM2835RngState;
27 #endif