2017-07-17 14:36:08 +02:00
|
|
|
/*
|
|
|
|
* ARM CMSDK APB timer emulation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Linaro Limited
|
|
|
|
* Written by Peter Maydell
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CMSDK_APB_TIMER_H
|
|
|
|
#define CMSDK_APB_TIMER_H
|
|
|
|
|
2019-08-12 07:23:51 +02:00
|
|
|
#include "hw/qdev-properties.h"
|
2017-07-17 14:36:08 +02:00
|
|
|
#include "hw/sysbus.h"
|
|
|
|
#include "hw/ptimer.h"
|
2021-01-28 12:41:27 +01:00
|
|
|
#include "hw/clock.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2017-07-17 14:36:08 +02:00
|
|
|
|
|
|
|
#define TYPE_CMSDK_APB_TIMER "cmsdk-apb-timer"
|
2021-01-28 12:41:26 +01:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(CMSDKAPBTimer, CMSDK_APB_TIMER)
|
2017-07-17 14:36:08 +02:00
|
|
|
|
2021-01-28 12:41:27 +01:00
|
|
|
/*
|
|
|
|
* QEMU interface:
|
|
|
|
* + Clock input "pclk": clock for the timer
|
|
|
|
* + sysbus MMIO region 0: the register bank
|
|
|
|
* + sysbus IRQ 0: timer interrupt TIMERINT
|
|
|
|
*/
|
2021-01-28 12:41:26 +01:00
|
|
|
struct CMSDKAPBTimer {
|
2017-07-17 14:36:08 +02:00
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
MemoryRegion iomem;
|
|
|
|
qemu_irq timerint;
|
|
|
|
struct ptimer_state *timer;
|
2021-01-28 12:41:27 +01:00
|
|
|
Clock *pclk;
|
2017-07-17 14:36:08 +02:00
|
|
|
|
|
|
|
uint32_t ctrl;
|
|
|
|
uint32_t value;
|
|
|
|
uint32_t reload;
|
|
|
|
uint32_t intstatus;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2017-07-17 14:36:08 +02:00
|
|
|
|
|
|
|
#endif
|