mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
333553caf2
fix(hal/include): fix header violations in hal component fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Add comment for a far away `#endif` fix(hal/include): change scope for cpp guard ci: Remove components/hal/ comment from public headers check exceptions Add missing include macro sdkconfig.h for header files Add missing include macro stdbool.h for header files Add missing include macro stdint.h for header files Add missing capability guard macro for header files Add missing cpp guard macro for header files Remove some useless include macros Add some missing `inline` attribute for functions defined in header files Remove components/hal/ from public headers check exceptions fix(hal/include): fix invalid licenses fix(hal/include): fix invalid licenses fix(hal/include): add missing soc_caps.h fix(hal): include soc_caps.h before cap macro is used fix(hal): Remove unnecessary target check fix(hal): fix header and macro problems Add missing include macro Remove loop dependency in hal Add comment for far-away endif fix(hal): Add missing soc_caps.h ci: update check_copyright_ignore.txt Change the sequence of `#include` macro, cpp guard macro Change the wrap scope of capacity macro fix(hal): Change position of C++ guard to pass test
68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// The LL layer for ESP32-H2 LP_Timer register operations
|
|
|
|
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
#include "soc/soc.h"
|
|
#include "soc/rtc.h"
|
|
#include "soc/lp_timer_struct.h"
|
|
#include "soc/lp_aon_reg.h"
|
|
#include "hal/lp_timer_types.h"
|
|
#include "esp_attr.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
FORCE_INLINE_ATTR void lp_timer_ll_set_alarm_target(lp_timer_dev_t *dev, uint8_t timer_id, uint64_t value)
|
|
{
|
|
dev->target[timer_id].hi.target_hi = (value >> 32) & 0xFFFF;
|
|
dev->target[timer_id].lo.target_lo = value & 0xFFFFFFFF;
|
|
}
|
|
|
|
FORCE_INLINE_ATTR void lp_timer_ll_set_target_enable(lp_timer_dev_t *dev, uint8_t timer_id, bool en)
|
|
{
|
|
dev->target[timer_id].hi.enable = en;
|
|
}
|
|
|
|
FORCE_INLINE_ATTR uint32_t lp_timer_ll_get_counter_value_low(lp_timer_dev_t *dev, uint8_t timer_id)
|
|
{
|
|
return dev->counter[timer_id].lo.counter_lo;
|
|
}
|
|
|
|
FORCE_INLINE_ATTR uint32_t lp_timer_ll_get_counter_value_high(lp_timer_dev_t *dev, uint8_t timer_id)
|
|
{
|
|
return dev->counter[timer_id].hi.counter_hi;
|
|
}
|
|
|
|
FORCE_INLINE_ATTR void lp_timer_ll_counter_snapshot(lp_timer_dev_t *dev)
|
|
{
|
|
dev->update.update = 1;
|
|
}
|
|
|
|
FORCE_INLINE_ATTR void lp_timer_ll_clear_alarm_intr_status(lp_timer_dev_t *dev)
|
|
{
|
|
dev->int_clr.alarm = 1;
|
|
}
|
|
|
|
FORCE_INLINE_ATTR void lp_timer_ll_clear_overflow_intr_status(lp_timer_dev_t *dev)
|
|
{
|
|
dev->int_clr.overflow = 1;
|
|
}
|
|
|
|
FORCE_INLINE_ATTR uint64_t lp_timer_ll_time_to_count(uint64_t time_in_us)
|
|
{
|
|
uint32_t slow_clk_value = REG_READ(LP_AON_STORE1_REG);
|
|
return ((time_in_us * (1 << RTC_CLK_CAL_FRACT)) / slow_clk_value);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|