hw/arm/xlnx-zynqmp: Remove obsolete 'has_rpu' property
[qemu/ar7.git] / include / hw / misc / bcm2835_thermal.h
blobf90f9e487cecf56b6abc61cc5f9f914364a1ed95
1 /*
2 * BCM2835 dummy thermal sensor
4 * Copyright (C) 2019 Philippe Mathieu-Daudé <f4bug@amsat.org>
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
9 #ifndef HW_MISC_BCM2835_THERMAL_H
10 #define HW_MISC_BCM2835_THERMAL_H
12 #include "hw/sysbus.h"
13 #include "qom/object.h"
15 #define TYPE_BCM2835_THERMAL "bcm2835-thermal"
17 OBJECT_DECLARE_SIMPLE_TYPE(Bcm2835ThermalState, BCM2835_THERMAL)
19 struct Bcm2835ThermalState {
20 /*< private >*/
21 SysBusDevice parent_obj;
22 /*< public >*/
23 MemoryRegion iomem;
24 uint32_t ctl;
27 #endif