Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
32 lines
719 B
C
32 lines
719 B
C
/*
|
|
* BCM2835 Power Management emulation
|
|
*
|
|
* Copyright (C) 2017 Marcin Chojnacki <[email protected]>
|
|
* Copyright (C) 2021 Nolan Leake <[email protected]>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef BCM2835_POWERMGT_H
|
|
#define BCM2835_POWERMGT_H
|
|
|
|
#include "hw/core/sysbus.h"
|
|
#include "qemu/timer.h"
|
|
#include "qom/object.h"
|
|
|
|
#define TYPE_BCM2835_POWERMGT "bcm2835-powermgt"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(BCM2835PowerMgtState, BCM2835_POWERMGT)
|
|
|
|
struct BCM2835PowerMgtState {
|
|
SysBusDevice busdev;
|
|
MemoryRegion iomem;
|
|
|
|
uint32_t rstc;
|
|
uint32_t rsts;
|
|
uint32_t wdog;
|
|
QEMUTimer *wdog_timer;
|
|
};
|
|
|
|
#endif
|