diff options
| author | Dmitry Osipenko <digetx@gmail.com> | 2016-09-22 18:13:06 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2016-09-22 18:13:06 +0100 |
| commit | e7ea81c37d6f8b4202f63abbac35267bba1c8260 (patch) | |
| tree | 0d2877f9fe156c7625c8534cd4de0869f9f873a4 /hw/timer/digic-timer.c | |
| parent | 780d23e54e4a62c1bc37641b72e0188b6d13e861 (diff) | |
| download | focaccia-qemu-e7ea81c37d6f8b4202f63abbac35267bba1c8260.tar.gz focaccia-qemu-e7ea81c37d6f8b4202f63abbac35267bba1c8260.zip | |
hw/ptimer: Introduce timer policy feature
Some of the timer devices may behave differently from what ptimer provides. Introduce ptimer policy feature that allows ptimer users to change default and wrong timer behaviour, for example to continuously trigger periodic timer when load value is equal to "0". Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Message-id: 994cd608ec392da6e58f0643800dda595edb9d97.1473252818.git.digetx@gmail.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/timer/digic-timer.c')
| -rw-r--r-- | hw/timer/digic-timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/timer/digic-timer.c b/hw/timer/digic-timer.c index 0f21faf876..e1fcf73c3e 100644 --- a/hw/timer/digic-timer.c +++ b/hw/timer/digic-timer.c @@ -127,7 +127,7 @@ static void digic_timer_init(Object *obj) { DigicTimerState *s = DIGIC_TIMER(obj); - s->ptimer = ptimer_init(NULL); + s->ptimer = ptimer_init(NULL, PTIMER_POLICY_DEFAULT); /* * FIXME: there is no documentation on Digic timer |