99c641370b
We will soon implement the SYS_timer. This timer is used by Linux in the thermal subsystem, so once available, the subsystem will be enabled and poll the temperature sensors. We need to provide the minimum required to keep Linux booting. Add a dummy thermal sensor returning ~25°C based on: https://github.com/raspberrypi/linux/blob/rpi-5.3.y/drivers/thermal/broadcom/bcm2835_thermal.c Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 20191019234715.25750-2-f4bug@amsat.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
28 lines
553 B
C
28 lines
553 B
C
/*
|
|
* BCM2835 dummy thermal sensor
|
|
*
|
|
* Copyright (C) 2019 Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef HW_MISC_BCM2835_THERMAL_H
|
|
#define HW_MISC_BCM2835_THERMAL_H
|
|
|
|
#include "hw/sysbus.h"
|
|
|
|
#define TYPE_BCM2835_THERMAL "bcm2835-thermal"
|
|
|
|
#define BCM2835_THERMAL(obj) \
|
|
OBJECT_CHECK(Bcm2835ThermalState, (obj), TYPE_BCM2835_THERMAL)
|
|
|
|
typedef struct {
|
|
/*< private >*/
|
|
SysBusDevice parent_obj;
|
|
/*< public >*/
|
|
MemoryRegion iomem;
|
|
uint32_t ctl;
|
|
} Bcm2835ThermalState;
|
|
|
|
#endif
|