/hal_espressif-3.7.0/components/esp_hw_support/ |
D | sleep_retention.c | 111 …t sleep_retention_entries_config_t retent[], int num, regdma_link_priority_t priority, int module); 121 …uint32_t runtime_bitmap, uint32_t entries_bitmap, regdma_link_priority_t priority, uint32_t module) in sleep_retention_entries_check_and_create_default() argument 128 return sleep_retention_entries_create_impl(&dummy, 1, priority, module); in sleep_retention_entries_check_and_create_default() 146 …oid sleep_retention_entries_update(uint32_t owner, void *new_link, regdma_link_priority_t priority) in sleep_retention_entries_update() argument 150 (owner & BIT(0)) ? new_link : s_retention.lists[priority].entries[0], in sleep_retention_entries_update() 151 (owner & BIT(1)) ? new_link : s_retention.lists[priority].entries[1], in sleep_retention_entries_update() 152 (owner & BIT(2)) ? new_link : s_retention.lists[priority].entries[2], in sleep_retention_entries_update() 153 (owner & BIT(3)) ? new_link : s_retention.lists[priority].entries[3] in sleep_retention_entries_update() 155 if (s_retention.lists[priority].entries_bitmap == 0) { in sleep_retention_entries_update() 156 s_retention.lists[priority].entries_tail = new_link; in sleep_retention_entries_update() [all …]
|
D | cpu.c | 162 intr_desc_ret->priority = 1; //Todo: We should make this -1 in esp_cpu_intr_get_desc() 174 int priority; member 277 intr_desc_ret->priority = intr_desc_table[intr_num].priority; in esp_cpu_intr_get_desc()
|
D | intr_alloc.c | 254 if (!(flags & (1 << intr_desc.priority))) { in is_vect_desc_usable() 367 x, intr_desc.flags & ESP_CPU_INTR_DESC_FLAG_RESVD, intr_desc.priority, in get_available_int() 387 if (no<bestSharedCt || bestPriority > intr_desc.priority) { in get_available_int() 391 bestPriority = intr_desc.priority; in get_available_int() 401 if (bestPriority > intr_desc.priority) { in get_available_int() 403 bestPriority = intr_desc.priority; in get_available_int() 412 if (bestPriority > intr_desc.priority) { in get_available_int() 414 bestPriority = intr_desc.priority; in get_available_int()
|
/hal_espressif-3.7.0/components/esp_system/test_apps/esp_system_unity_tests/main/ |
D | test_ipc.c | 61 UBaseType_t priority = 18; variable 63 vTaskPrioritySet(NULL, priority); 68 xTaskCreatePinnedToCore(task1, "task1", 4096, NULL, priority + 2, NULL, 1); 81 TEST_ASSERT_EQUAL(priority, func_ipc_priority); 88 UBaseType_t priority = uxTaskPriorityGet(NULL); in test_func2_ipc() local 89 … [callers_priority = %d, priority = %d, cpu = %d]\n", callers_priority, priority, xPortGetCoreID()… in test_func2_ipc() 100 int priority = uxTaskPriorityGet(NULL); in task() local 101 ESP_LOGI("task", "start [priority = %d, cpu = %d]", priority, xPortGetCoreID()); in task() 103 esp_ipc_call_blocking(!xPortGetCoreID(), test_func2_ipc, &priority); in task() 104 ESP_LOGI("task", "finish [priority = %d, cpu = %d]", priority, xPortGetCoreID()); in task() [all …]
|
/hal_espressif-3.7.0/components/esp_coex/src/ |
D | coexist.c | 71 …|| gpio_pin.tx_line == gpio_pin.priority || gpio_pin.tx_line == gpio_pin.grant || gpio_pin.tx_line… in is_legal_external_coex_gpio() 78 …if(!GPIO_IS_VALID_GPIO(gpio_pin.priority) || gpio_pin.priority == gpio_pin.grant || gpio_pin.prior… in is_legal_external_coex_gpio() 104 …t_t *gpio_pin, external_coex_wire_t wire_type, uint32_t request, uint32_t priority, uint32_t grant) in esp_external_coex_set_gpio_pin() argument 108 gpio_pin->priority = priority; in esp_external_coex_set_gpio_pin() 121 gpio_pin->priority = priority; in esp_external_coex_set_gpio_pin() 141 …e_set_gpio_pin(external_coex_wire_t wire_type, uint32_t request, uint32_t priority, uint32_t grant) in esp_external_coex_leader_role_set_gpio_pin() argument 145 esp_external_coex_set_gpio_pin(&gpio_pin, wire_type, request, priority, grant); in esp_external_coex_leader_role_set_gpio_pin() 149 …e_set_gpio_pin(external_coex_wire_t wire_type, uint32_t request, uint32_t priority, uint32_t grant) in esp_external_coex_follower_role_set_gpio_pin() argument 153 esp_external_coex_set_gpio_pin(&gpio_pin, wire_type, request, priority, grant); in esp_external_coex_follower_role_set_gpio_pin() 186 gpio_hal_iomux_func_sel(GPIO_PIN_MUX_REG[gpio_pin.priority], PIN_FUNC_GPIO); in esp_enable_extern_coex_gpio_pin() [all …]
|
/hal_espressif-3.7.0/components/esp_system/ |
D | check_system_init_priorities.py | 26 def __init__(self, filename: str, func: str, affinity: str, priority: int) -> None: 30 self.priority = priority 69 priority=int(match[2]) 76 startup_entries = list(sorted(startup_entries, key=lambda e: e.priority))
|
D | system_init_fn.txt | 8 # Entries are ordered by the order of execution (i.e. from low priority values to high ones). 12 # prio: priority value (higher value means function is executed later)
|
/hal_espressif-3.7.0/components/esp_coex/include/ |
D | esp_coexist.h | 56 gpio_num_t priority; /**< request gpio signal priority from slave to master */ member 175 …_coex_leader_role_set_gpio_pin(external_coex_wire_t wire_type, uint32_t request, uint32_t priority, 187 …oex_follower_role_set_gpio_pin(external_coex_wire_t wire_type, uint32_t request, uint32_t priority,
|
/hal_espressif-3.7.0/components/esp_system/include/esp_private/ |
D | startup_internal.h | 68 #define ESP_SYSTEM_INIT_FN(f, c, priority, ...) \ argument 70 static __attribute__((used)) _SECTION_ATTR_IMPL(".esp_system_init_fn", priority) \
|
/hal_espressif-3.7.0/components/bt/common/osi/include/osi/ |
D | thread.h | 44 osi_thread_t *osi_thread_create(const char *name, size_t stack_size, int priority, osi_thread_core_… 69 bool osi_thread_set_priority(osi_thread_t *thread, int priority);
|
/hal_espressif-3.7.0/components/esp_system/test_apps/rtc_power_modes/ |
D | README.md | 8 …6 sub power modes, 3 for deepsleep and 3 for lightsleep. Show as below (priority from high to low). 13 … enable this mode, call `rtc_sleep_enable_ultra_low`. Note if mode 1 has higher priority than this.
|
/hal_espressif-3.7.0/components/bt/controller/esp32c2/ |
D | Kconfig.in | 234 This is the high priority HCI events' buffer size. High-priority 236 are no free high-priority event buffers then host will try to allocate a 237 low-priority buffer instead 243 This is the low priority HCI events' buffer size. Low-priority event 245 low-priority event buffers, then an incoming advertising report will 396 Set this option to use Esp Timer which has higher priority timer instead of FreeRTOS timer
|
/hal_espressif-3.7.0/components/bt/common/osi/ |
D | thread.c | 206 osi_thread_t *osi_thread_create(const char *name, size_t stack_size, int priority, osi_thread_core_… in osi_thread_create() argument 253 …if (xTaskCreatePinnedToCore(osi_thread_run, name, stack_size, &start_arg, priority, &thread->threa… in osi_thread_create() 353 bool osi_thread_set_priority(osi_thread_t *thread, int priority) in osi_thread_set_priority() argument 357 vTaskPrioritySet(thread->thread_handle, priority); in osi_thread_set_priority()
|
/hal_espressif-3.7.0/components/riscv/include/riscv/ |
D | interrupt.h | 100 void esprv_intc_int_set_priority(int rv_int_num, int priority);
|
/hal_espressif-3.7.0/components/esp_hw_support/include/esp_private/ |
D | sleep_retention.h | 73 …t sleep_retention_entries_config_t retent[], int num, regdma_link_priority_t priority, int module);
|
D | gdma.h | 200 esp_err_t gdma_set_priority(gdma_channel_handle_t dma_chan, uint32_t priority);
|
/hal_espressif-3.7.0/components/bt/controller/esp32c6/ |
D | Kconfig.in | 241 This is the high priority HCI events' buffer size. High-priority 243 are no free high-priority event buffers then host will try to allocate a 244 low-priority buffer instead 250 This is the low priority HCI events' buffer size. Low-priority event 252 low-priority event buffers, then an incoming advertising report will 436 Set this option to use Esp Timer which has higher priority timer
|
/hal_espressif-3.7.0/components/bt/controller/esp32h2/ |
D | Kconfig.in | 241 This is the high priority HCI events' buffer size. High-priority 243 are no free high-priority event buffers then host will try to allocate a 244 low-priority buffer instead 250 This is the low priority HCI events' buffer size. Low-priority event 252 low-priority event buffers, then an incoming advertising report will 436 Set this option to use Esp Timer which has higher priority timer
|
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/api/core/include/ |
D | esp_ble_mesh_ble_api.h | 105 uint8_t priority:2; /*!< Priority of BLE advertising packet */ member
|
/hal_espressif-3.7.0/components/bt/host/nimble/ |
D | Kconfig.in | 300 This is the high priority HCI events' buffer size. High-priority 302 are no free high-priority event buffers then host will try to allocate a 303 low-priority buffer instead 310 This is the low priority HCI events' buffer size. Low-priority event 312 low-priority event buffers, then an incoming advertising report will 650 Set this option to use Esp Timer which has higher priority timer instead of FreeRTOS timer
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/include/stack/ |
D | l2c_api.h | 732 extern BOOLEAN L2CA_SetAclPriority (BD_ADDR bd_addr, UINT8 priority); 768 extern BOOLEAN L2CA_SetTxPriority (UINT16 cid, tL2CAP_CHNL_PRIORITY priority); 1018 extern BOOLEAN L2CA_UCDSetTxPriority ( BD_ADDR rem_bda, tL2CAP_CHNL_PRIORITY priority );
|
/hal_espressif-3.7.0/components/esp_hw_support/include/hal/ |
D | interrupt_controller_hal.h | 68 return intr_desc.priority; in interrupt_controller_hal_desc_level()
|
/hal_espressif-3.7.0/components/esp_hw_support/include/ |
D | esp_cpu.h | 54 …int priority; /**< Priority of the interrupt if it has a fixed priority, (-1) if the… member
|
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_core/ |
D | adv.c | 817 front = (tx->param.priority == BLE_MESH_BLE_ADV_PRIO_HIGH) ? true : false; in ble_adv_resend() 873 if (param->priority > BLE_MESH_BLE_ADV_PRIO_HIGH) { in bt_mesh_start_ble_advertising() 874 BT_ERR("Invalid adv priority %d", param->priority); in bt_mesh_start_ble_advertising() 907 front = (tx->param.priority == BLE_MESH_BLE_ADV_PRIO_HIGH) ? true : false; in bt_mesh_start_ble_advertising()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/l2cap/ |
D | l2c_ucd.c | 486 BOOLEAN L2CA_UCDSetTxPriority ( BD_ADDR rem_bda, tL2CAP_CHNL_PRIORITY priority ) in L2CA_UCDSetTxPriority() argument 491 L2CAP_TRACE_API ("L2CA_UCDSetTxPriority() priority: 0x%02x BDA: %08x%04x", priority, in L2CA_UCDSetTxPriority() 507 l2cu_change_pri_ccb (p_ccb, priority); in L2CA_UCDSetTxPriority()
|