mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-21 03:54:34 +00:00

We plan to put some soc related drivers in common/drivers. To reduce confision, we move them to plat/mediatek. Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: I6b344e660f40a23b15151aab073d3045b28f52aa
64 lines
1.1 KiB
C
64 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2019-2022, MediaTek Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <common/debug.h>
|
|
#include <drivers/delay_timer.h>
|
|
|
|
#include <pmic_wrap_init.h>
|
|
#include <rtc.h>
|
|
|
|
/* RTC busy status polling interval and retry count */
|
|
enum {
|
|
RTC_WRTGR_POLLING_DELAY_MS = 10,
|
|
RTC_WRTGR_POLLING_CNT = 100
|
|
};
|
|
|
|
uint16_t RTC_Read(uint32_t addr)
|
|
{
|
|
uint32_t rdata = 0;
|
|
|
|
pwrap_read((uint32_t)addr, &rdata);
|
|
return (uint16_t)rdata;
|
|
}
|
|
|
|
void RTC_Write(uint32_t addr, uint16_t data)
|
|
{
|
|
pwrap_write((uint32_t)addr, (uint32_t)data);
|
|
}
|
|
|
|
int32_t rtc_busy_wait(void)
|
|
{
|
|
uint64_t retry = RTC_WRTGR_POLLING_CNT;
|
|
|
|
do {
|
|
mdelay(RTC_WRTGR_POLLING_DELAY_MS);
|
|
if (!(RTC_Read(RTC_BBPU) & RTC_BBPU_CBUSY))
|
|
return 1;
|
|
retry--;
|
|
} while (retry);
|
|
|
|
ERROR("[RTC] rtc cbusy time out!\n");
|
|
return 0;
|
|
}
|
|
|
|
int32_t RTC_Write_Trigger(void)
|
|
{
|
|
RTC_Write(RTC_WRTGR, 1);
|
|
return rtc_busy_wait();
|
|
}
|
|
|
|
int32_t Writeif_unlock(void)
|
|
{
|
|
RTC_Write(RTC_PROT, RTC_PROT_UNLOCK1);
|
|
if (!RTC_Write_Trigger())
|
|
return 0;
|
|
RTC_Write(RTC_PROT, RTC_PROT_UNLOCK2);
|
|
if (!RTC_Write_Trigger())
|
|
return 0;
|
|
|
|
return 1;
|
|
}
|
|
|