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
42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "compare_set.h"
|
|
#include "spinlock.h"
|
|
#include "soc/soc_caps.h"
|
|
|
|
#if __XTENSA__ && SOC_SPIRAM_SUPPORTED
|
|
|
|
static spinlock_t global_extram_lock = SPINLOCK_INITIALIZER;
|
|
|
|
void compare_and_set_extram(volatile uint32_t *addr, uint32_t compare, uint32_t *set)
|
|
{
|
|
uint32_t intlevel, old_value;
|
|
__asm__ __volatile__ ("rsil %0, " XTSTR(XCHAL_EXCM_LEVEL) "\n"
|
|
: "=r"(intlevel));
|
|
|
|
spinlock_acquire(&global_extram_lock, SPINLOCK_WAIT_FOREVER);
|
|
|
|
old_value = *addr;
|
|
if (old_value == compare) {
|
|
*addr = *set;
|
|
}
|
|
|
|
spinlock_release(&global_extram_lock);
|
|
|
|
__asm__ __volatile__ ("memw \n"
|
|
"wsr %0, ps\n"
|
|
:: "r"(intlevel));
|
|
|
|
*set = old_value;
|
|
}
|
|
#else // __XTENSA__ && SOC_SPIRAM_SUPPORTED
|
|
|
|
void compare_and_set_extram(volatile uint32_t *addr, uint32_t compare, uint32_t *set)
|
|
{
|
|
compare_and_set_native(addr, compare, set);
|
|
}
|
|
#endif // endif
|