[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 22/25] hw/arm/armsse: Use Clock to set system_clock_scale
From: |
Luc Michel |
Subject: |
Re: [PATCH v2 22/25] hw/arm/armsse: Use Clock to set system_clock_scale |
Date: |
Thu, 28 Jan 2021 19:57:41 +0100 |
On 11:41 Thu 28 Jan , Peter Maydell wrote:
> Use the MAINCLK Clock input to set the system_clock_scale variable
> rather than using the mainclk_frq property.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> Message-id: 20210121190622.22000-23-peter.maydell@linaro.org
Reviewed-by: Luc Michel <luc@lmichel.fr>
> ---
> v1->v2: wire armsse_mainclk_update() up as the Clock callback
> ---
> hw/arm/armsse.c | 24 +++++++++++++++++++-----
> 1 file changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/hw/arm/armsse.c b/hw/arm/armsse.c
> index 4349ce9bfdb..9a6b24c79aa 100644
> --- a/hw/arm/armsse.c
> +++ b/hw/arm/armsse.c
> @@ -232,6 +232,16 @@ static void armsse_forward_sec_resp_cfg(ARMSSE *s)
> qdev_connect_gpio_out(dev_splitter, 2, s->sec_resp_cfg_in);
> }
>
> +static void armsse_mainclk_update(void *opaque)
> +{
> + ARMSSE *s = ARM_SSE(opaque);
> + /*
> + * Set system_clock_scale from our Clock input; this is what
> + * controls the tick rate of the CPU SysTick timer.
> + */
> + system_clock_scale = clock_ticks_to_ns(s->mainclk, 1);
> +}
> +
> static void armsse_init(Object *obj)
> {
> ARMSSE *s = ARM_SSE(obj);
> @@ -242,7 +252,8 @@ static void armsse_init(Object *obj)
> assert(info->sram_banks <= MAX_SRAM_BANKS);
> assert(info->num_cpus <= SSE_MAX_CPUS);
>
> - s->mainclk = qdev_init_clock_in(DEVICE(s), "MAINCLK", NULL, NULL);
> + s->mainclk = qdev_init_clock_in(DEVICE(s), "MAINCLK",
> + armsse_mainclk_update, s);
> s->s32kclk = qdev_init_clock_in(DEVICE(s), "S32KCLK", NULL, NULL);
>
> memory_region_init(&s->container, obj, "armsse-container", UINT64_MAX);
> @@ -451,9 +462,11 @@ static void armsse_realize(DeviceState *dev, Error
> **errp)
> return;
> }
>
> - if (!s->mainclk_frq) {
> - error_setg(errp, "MAINCLK_FRQ property was not set");
> - return;
> + if (!clock_has_source(s->mainclk)) {
> + error_setg(errp, "MAINCLK clock was not connected");
> + }
> + if (!clock_has_source(s->s32kclk)) {
> + error_setg(errp, "S32KCLK clock was not connected");
> }
>
> assert(info->num_cpus <= SSE_MAX_CPUS);
> @@ -1115,7 +1128,8 @@ static void armsse_realize(DeviceState *dev, Error
> **errp)
> */
> sysbus_init_mmio(SYS_BUS_DEVICE(s), &s->container);
>
> - system_clock_scale = NANOSECONDS_PER_SECOND / s->mainclk_frq;
> + /* Set initial system_clock_scale from MAINCLK */
> + armsse_mainclk_update(s);
> }
>
> static void armsse_idau_check(IDAUInterface *ii, uint32_t address,
> --
> 2.20.1
>
--
- [PATCH v2 13/25] hw/arm/mps2: Create and connect SYSCLK Clock, (continued)
- [PATCH v2 13/25] hw/arm/mps2: Create and connect SYSCLK Clock, Peter Maydell, 2021/01/28
- [PATCH v2 12/25] hw/arm/mps2: Inline CMSDK_APB_TIMER creation, Peter Maydell, 2021/01/28
- [PATCH v2 16/25] hw/arm/stellaris: Convert SSYS to QOM device, Peter Maydell, 2021/01/28
- [PATCH v2 18/25] hw/timer/cmsdk-apb-timer: Convert to use Clock input, Peter Maydell, 2021/01/28
- [PATCH v2 19/25] hw/timer/cmsdk-apb-dualtimer: Convert to use Clock input, Peter Maydell, 2021/01/28
- [PATCH v2 15/25] hw/arm/musca: Create and connect ARMSSE Clocks, Peter Maydell, 2021/01/28
- [PATCH v2 14/25] hw/arm/mps2-tz: Create and connect ARMSSE Clocks, Peter Maydell, 2021/01/28
- [PATCH v2 17/25] hw/arm/stellaris: Create Clock input for watchdog, Peter Maydell, 2021/01/28
- [PATCH v2 20/25] hw/watchdog/cmsdk-apb-watchdog: Convert to use Clock input, Peter Maydell, 2021/01/28
- [PATCH v2 22/25] hw/arm/armsse: Use Clock to set system_clock_scale, Peter Maydell, 2021/01/28
- Re: [PATCH v2 22/25] hw/arm/armsse: Use Clock to set system_clock_scale,
Luc Michel <=
- [PATCH v2 21/25] tests/qtest/cmsdk-apb-watchdog-test: Test clock changes, Peter Maydell, 2021/01/28
- [PATCH v2 23/25] arm: Don't set freq properties on CMSDK timer, dualtimer, watchdog, ARMSSE, Peter Maydell, 2021/01/28
- [PATCH v2 24/25] arm: Remove frq properties on CMSDK timer, dualtimer, watchdog, ARMSSE, Peter Maydell, 2021/01/28
- [PATCH v2 25/25] hw/arm/stellaris: Remove board-creation reset of STELLARIS_SYS, Peter Maydell, 2021/01/28
- Re: [PATCH v2 00/25] Convert CMSDK timer, watchdog, dualtimer to Clock framework, Philippe Mathieu-Daudé, 2021/01/28