2022-04-28 05:44:59 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2010-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <sdkconfig.h>
|
|
|
|
#include "soc/dport_access.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2023-10-30 02:23:23 -04:00
|
|
|
#if defined(BOOTLOADER_BUILD) || defined(CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE) || !SOC_DPORT_WORKAROUND
|
2022-04-28 05:44:59 -04:00
|
|
|
#define DPORT_STALL_OTHER_CPU_START()
|
|
|
|
#define DPORT_STALL_OTHER_CPU_END()
|
|
|
|
#else
|
|
|
|
#include "esp_ipc_isr.h"
|
|
|
|
#define DPORT_STALL_OTHER_CPU_START() esp_ipc_isr_stall_other_cpu()
|
|
|
|
#define DPORT_STALL_OTHER_CPU_END() esp_ipc_isr_release_other_cpu()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|