mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
21 lines
836 B
C
21 lines
836 B
C
|
/*
|
||
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include "esp_cpu.h"
|
||
|
#include "esp_riscv_intr.h"
|
||
|
|
||
|
void esp_cpu_intr_get_desc(int core_id, int intr_num, esp_cpu_intr_desc_t *intr_desc_ret)
|
||
|
{
|
||
|
/* On targets that uses CLIC as the interrupt controller, the first 16 lines (0..15) are reserved for software
|
||
|
* interrupts, all the other lines starting from 16 and above can be used by external peripheral.
|
||
|
*
|
||
|
* Only interrupt line 6 is reserved at the moment since it is used for disabling interrupts */
|
||
|
/* TODO: IDF-8655, we may need to reserve more interrupts once we have Wifi and BT */
|
||
|
intr_desc_ret->priority = 1;
|
||
|
intr_desc_ret->type = ESP_CPU_INTR_TYPE_NA;
|
||
|
intr_desc_ret->flags = (intr_num == 6) ? ESP_CPU_INTR_DESC_FLAG_RESVD : 0;
|
||
|
}
|