2 * ARM CMSDK APB timer emulation
4 * Copyright (c) 2017 Linaro Limited
5 * Written by Peter Maydell
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 or
9 * (at your option) any later version.
12 #ifndef CMSDK_APB_TIMER_H
13 #define CMSDK_APB_TIMER_H
15 #include "hw/sysbus.h"
16 #include "hw/ptimer.h"
18 #define TYPE_CMSDK_APB_TIMER "cmsdk-apb-timer"
19 #define CMSDK_APB_TIMER(obj) OBJECT_CHECK(CMSDKAPBTIMER, (obj), \
24 SysBusDevice parent_obj
;
30 struct ptimer_state
*timer
;
39 * cmsdk_apb_timer_create - convenience function to create TYPE_CMSDK_APB_TIMER
40 * @addr: location in system memory to map registers
41 * @pclk_frq: frequency in Hz of the PCLK clock (used for calculating baud rate)
43 static inline DeviceState
*cmsdk_apb_timer_create(hwaddr addr
,
50 dev
= qdev_create(NULL
, TYPE_CMSDK_APB_TIMER
);
51 s
= SYS_BUS_DEVICE(dev
);
52 qdev_prop_set_uint32(dev
, "pclk-frq", pclk_frq
);
53 qdev_init_nofail(dev
);
54 sysbus_mmio_map(s
, 0, addr
);
55 sysbus_connect_irq(s
, 0, timerint
);