Home
last modified time | relevance | path

Searched refs:priority (Results 1 – 25 of 38) sorted by relevance

12

/hal_espressif-3.7.0/components/esp_hw_support/
Dsleep_retention.c111 …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 …]
Dcpu.c162 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()
Dintr_alloc.c254 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/
Dtest_ipc.c61 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/
Dcoexist.c71 …|| 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/
Dcheck_system_init_priorities.py26 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))
Dsystem_init_fn.txt8 # 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/
Desp_coexist.h56 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/
Dstartup_internal.h68 #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/
Dthread.h44 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/
DREADME.md8 …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/
DKconfig.in234 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/
Dthread.c206 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/
Dinterrupt.h100 void esprv_intc_int_set_priority(int rv_int_num, int priority);
/hal_espressif-3.7.0/components/esp_hw_support/include/esp_private/
Dsleep_retention.h73 …t sleep_retention_entries_config_t retent[], int num, regdma_link_priority_t priority, int module);
Dgdma.h200 esp_err_t gdma_set_priority(gdma_channel_handle_t dma_chan, uint32_t priority);
/hal_espressif-3.7.0/components/bt/controller/esp32c6/
DKconfig.in241 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/
DKconfig.in241 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/
Desp_ble_mesh_ble_api.h105 uint8_t priority:2; /*!< Priority of BLE advertising packet */ member
/hal_espressif-3.7.0/components/bt/host/nimble/
DKconfig.in300 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/
Dl2c_api.h732 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/
Dinterrupt_controller_hal.h68 return intr_desc.priority; in interrupt_controller_hal_desc_level()
/hal_espressif-3.7.0/components/esp_hw_support/include/
Desp_cpu.h54 …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/
Dadv.c817 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/
Dl2c_ucd.c486 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()

12