mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
a8a3756b38
This commit makes changes to cpu_ll.h, cpu_hal.h, and interrupt_controller_hal.h: - Moved to esp_hw_support in order to be deprecated in the future - HAL/LL API now route their calls to esp_cpu.h functions instead Also updated soc_hal.h as follows: - Removed __SOC_HAL_..._OTHER_CORES() macros as they dependend on cpu_hal.h - Made soc_hal.h and soc_ll.h interfaces always inline, and removed soc_hal.c. This commit also updates the XCHAL_ERRATUM_572 workaround by - Removing it's HAL function and invoking the workaround it directly the bootloader - Added missing workaround for the ESP32-S3
39 lines
641 B
C
39 lines
641 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/*
|
|
Note: This is a compatibility header. Call the interfaces in esp_cpu.h instead
|
|
[refactor-todo]: Mark all API in this header as deprecated
|
|
*/
|
|
|
|
#include "esp_attr.h"
|
|
#include "esp_cpu.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
FORCE_INLINE_ATTR void soc_ll_stall_core(int core)
|
|
{
|
|
esp_cpu_stall(core);
|
|
}
|
|
|
|
FORCE_INLINE_ATTR void soc_ll_unstall_core(int core)
|
|
{
|
|
esp_cpu_unstall(core);
|
|
}
|
|
|
|
FORCE_INLINE_ATTR void soc_ll_reset_core(int core)
|
|
{
|
|
esp_cpu_reset(core);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|