1 /* 2 * Copyright (c) 2022 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __COUNTER_ACE_V1X_RTC_REGS__ 8 #define __COUNTER_ACE_V1X_RTC_REGS__ 9 10 #if CONFIG_ACE_V1X_RTC_COUNTER 11 12 #define ACE_RTC_COUNTER_ID DT_NODELABEL(ace_rtc_counter) 13 14 #define ACE_RTCWC (DT_REG_ADDR(ACE_RTC_COUNTER_ID)) 15 #define ACE_RTCWC_LO ACE_RTCWC 16 #define ACE_RTCWC_HI ACE_RTCWC + 0x04 17 18 #endif 19 20 #endif /*__COUNTER_ACE_V1X_RTC_REGS__*/ 21