mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
hw/timer/cmsdk-apb-dualtimer: Add Clock input
As the first step in converting the CMSDK_APB_DUALTIMER device to the Clock framework, add a Clock input. For the moment we do nothing with this clock; we will change the behaviour from using the pclk-frq property to using the Clock once all the users of this device have been converted to wire up the Clock. We take the opportunity to correct the name of the clock input to match the hardware -- the dual timer names the clock which drives the timers TIMCLK. (It does also have a 'pclk' input, which is used only for the register and APB bus logic; on the SSE-200 these clocks are both connected together.) This is a migration compatibility break for machines mps2-an385, mps2-an386, mps2-an500, mps2-an511, mps2-an505, mps2-an521, musca-a, musca-b1. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Luc Michel <luc@lmichel.fr> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20210128114145.20536-9-peter.maydell@linaro.org Message-id: 20210121190622.22000-9-peter.maydell@linaro.org
This commit is contained in:
parent
7cc378edee
commit
55fd0f84a2
@ -25,6 +25,7 @@
|
|||||||
#include "hw/irq.h"
|
#include "hw/irq.h"
|
||||||
#include "hw/qdev-properties.h"
|
#include "hw/qdev-properties.h"
|
||||||
#include "hw/registerfields.h"
|
#include "hw/registerfields.h"
|
||||||
|
#include "hw/qdev-clock.h"
|
||||||
#include "hw/timer/cmsdk-apb-dualtimer.h"
|
#include "hw/timer/cmsdk-apb-dualtimer.h"
|
||||||
#include "migration/vmstate.h"
|
#include "migration/vmstate.h"
|
||||||
|
|
||||||
@ -445,6 +446,7 @@ static void cmsdk_apb_dualtimer_init(Object *obj)
|
|||||||
for (i = 0; i < ARRAY_SIZE(s->timermod); i++) {
|
for (i = 0; i < ARRAY_SIZE(s->timermod); i++) {
|
||||||
sysbus_init_irq(sbd, &s->timermod[i].timerint);
|
sysbus_init_irq(sbd, &s->timermod[i].timerint);
|
||||||
}
|
}
|
||||||
|
s->timclk = qdev_init_clock_in(DEVICE(s), "TIMCLK", NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cmsdk_apb_dualtimer_realize(DeviceState *dev, Error **errp)
|
static void cmsdk_apb_dualtimer_realize(DeviceState *dev, Error **errp)
|
||||||
@ -485,9 +487,10 @@ static const VMStateDescription cmsdk_dualtimermod_vmstate = {
|
|||||||
|
|
||||||
static const VMStateDescription cmsdk_apb_dualtimer_vmstate = {
|
static const VMStateDescription cmsdk_apb_dualtimer_vmstate = {
|
||||||
.name = "cmsdk-apb-dualtimer",
|
.name = "cmsdk-apb-dualtimer",
|
||||||
.version_id = 1,
|
.version_id = 2,
|
||||||
.minimum_version_id = 1,
|
.minimum_version_id = 2,
|
||||||
.fields = (VMStateField[]) {
|
.fields = (VMStateField[]) {
|
||||||
|
VMSTATE_CLOCK(timclk, CMSDKAPBDualTimer),
|
||||||
VMSTATE_STRUCT_ARRAY(timermod, CMSDKAPBDualTimer,
|
VMSTATE_STRUCT_ARRAY(timermod, CMSDKAPBDualTimer,
|
||||||
CMSDK_APB_DUALTIMER_NUM_MODULES,
|
CMSDK_APB_DUALTIMER_NUM_MODULES,
|
||||||
1, cmsdk_dualtimermod_vmstate,
|
1, cmsdk_dualtimermod_vmstate,
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
*
|
*
|
||||||
* QEMU interface:
|
* QEMU interface:
|
||||||
* + QOM property "pclk-frq": frequency at which the timer is clocked
|
* + QOM property "pclk-frq": frequency at which the timer is clocked
|
||||||
|
* + Clock input "TIMCLK": clock (for both timers)
|
||||||
* + sysbus MMIO region 0: the register bank
|
* + sysbus MMIO region 0: the register bank
|
||||||
* + sysbus IRQ 0: combined timer interrupt TIMINTC
|
* + sysbus IRQ 0: combined timer interrupt TIMINTC
|
||||||
* + sysbus IRO 1: timer block 1 interrupt TIMINT1
|
* + sysbus IRO 1: timer block 1 interrupt TIMINT1
|
||||||
@ -28,6 +29,7 @@
|
|||||||
|
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "hw/ptimer.h"
|
#include "hw/ptimer.h"
|
||||||
|
#include "hw/clock.h"
|
||||||
#include "qom/object.h"
|
#include "qom/object.h"
|
||||||
|
|
||||||
#define TYPE_CMSDK_APB_DUALTIMER "cmsdk-apb-dualtimer"
|
#define TYPE_CMSDK_APB_DUALTIMER "cmsdk-apb-dualtimer"
|
||||||
@ -62,6 +64,7 @@ struct CMSDKAPBDualTimer {
|
|||||||
MemoryRegion iomem;
|
MemoryRegion iomem;
|
||||||
qemu_irq timerintc;
|
qemu_irq timerintc;
|
||||||
uint32_t pclk_frq;
|
uint32_t pclk_frq;
|
||||||
|
Clock *timclk;
|
||||||
|
|
||||||
CMSDKAPBDualTimerModule timermod[CMSDK_APB_DUALTIMER_NUM_MODULES];
|
CMSDKAPBDualTimerModule timermod[CMSDK_APB_DUALTIMER_NUM_MODULES];
|
||||||
uint32_t timeritcr;
|
uint32_t timeritcr;
|
||||||
|
Loading…
Reference in New Issue
Block a user