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

To make software license auditing simpler, use SPDX[0] license identifiers instead of duplicating the license text in every file. NOTE: Files that have been imported by FreeBSD have not been modified. [0]: https://spdx.org/ Change-Id: I80a00e1f641b8cc075ca5a95b10607ed9ed8761a Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <mmio.h>
|
|
#include <sp805.h>
|
|
#include <stdint.h>
|
|
|
|
/* Inline register access functions */
|
|
|
|
static inline void sp805_write_wdog_load(uintptr_t base, unsigned long value)
|
|
{
|
|
mmio_write_32(base + SP805_WDOG_LOAD_OFF, value);
|
|
}
|
|
|
|
static inline void sp805_write_wdog_ctrl(uintptr_t base, unsigned long value)
|
|
{
|
|
mmio_write_32(base + SP805_WDOG_CTR_OFF, value);
|
|
}
|
|
|
|
static inline void sp805_write_wdog_lock(uintptr_t base, unsigned long value)
|
|
{
|
|
mmio_write_32(base + SP805_WDOG_LOCK_OFF, value);
|
|
}
|
|
|
|
|
|
/* Public API implementation */
|
|
|
|
void sp805_start(uintptr_t base, unsigned long ticks)
|
|
{
|
|
sp805_write_wdog_load(base, ticks);
|
|
sp805_write_wdog_ctrl(base, SP805_CTR_RESEN | SP805_CTR_INTEN);
|
|
/* Lock registers access */
|
|
sp805_write_wdog_lock(base, 0);
|
|
}
|
|
|
|
void sp805_stop(uintptr_t base)
|
|
{
|
|
sp805_write_wdog_lock(base, WDOG_UNLOCK_KEY);
|
|
sp805_write_wdog_ctrl(base, 0);
|
|
}
|
|
|
|
void sp805_refresh(uintptr_t base, unsigned long ticks)
|
|
{
|
|
sp805_write_wdog_lock(base, WDOG_UNLOCK_KEY);
|
|
sp805_write_wdog_load(base, ticks);
|
|
sp805_write_wdog_lock(base, 0);
|
|
}
|