OSDN Git Service

hw/timer/armv7m_systick: assert that board code set system_clock_scale
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 25 Aug 2020 16:08:47 +0000 (17:08 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 14 Sep 2020 13:23:19 +0000 (14:23 +0100)
commitc9ebc8c207e997c01d459529fd83ffd85c66cf9d
tree915f5e0d982c21f8f9e5e1706c9a0ce9834344ac
parentae689ad7a89eff2e6222bbe30710a30cc7625538
hw/timer/armv7m_systick: assert that board code set system_clock_scale

It is the responsibility of board code for an armv7m system to set
system_clock_scale appropriately for the CPU speed of the core.
If it forgets to do this, then QEMU will hang if the guest tries
to use the systick timer in the "tick at the CPU clock frequency" mode.

We forgot that in a couple of our boards (see commits ce4f70e81ed23c93f,
e7e5a9595ab1136). Add an assertion in the systick reset method so
we don't let any new boards in with the same bug.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20200825160847.18091-1-peter.maydell@linaro.org
hw/timer/armv7m_systick.c