mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

This patch adds a helper API to explicitly refresh SBSA secure watchdog timer. Please refer section A.3 of the following spec: https://developer.arm.com/documentation/den0029/latest/ Change-Id: I2d0943792aea0092bee1e51d74b908348587e66b Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
30 lines
697 B
C
30 lines
697 B
C
/*
|
|
* Copyright (c) 2019-2023, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SBSA_H
|
|
#define SBSA_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* SBSA Secure Watchdog Register Offsets */
|
|
/* Refresh frame */
|
|
#define SBSA_WDOG_WRR_OFFSET UL(0x000)
|
|
#define SBSA_WDOG_WRR_REFRESH UL(0x1)
|
|
|
|
/* Control and status frame */
|
|
#define SBSA_WDOG_WCS_OFFSET UL(0x000)
|
|
#define SBSA_WDOG_WOR_LOW_OFFSET UL(0x008)
|
|
#define SBSA_WDOG_WOR_HIGH_OFFSET UL(0x00C)
|
|
|
|
#define SBSA_WDOG_WCS_EN U(0x1)
|
|
|
|
#define SBSA_WDOG_WOR_WIDTH UL(48)
|
|
|
|
void sbsa_wdog_start(uintptr_t base, uint64_t ms);
|
|
void sbsa_wdog_stop(uintptr_t base);
|
|
void sbsa_wdog_refresh(uintptr_t refresh_base);
|
|
|
|
#endif /* SBSA_H */
|