Home
last modified time | relevance | path

Searched refs:slot (Results 1 – 12 of 12) sorted by relevance

/hal_espressif-3.7.0/components/driver/spi/sdspi/
Dsdspi_host.c68 static esp_err_t start_command_read_blocks(slot_info_t *slot, sdspi_hw_cmd_t *cmd,
71 static esp_err_t start_command_write_blocks(slot_info_t *slot, sdspi_hw_cmd_t *cmd,
74 static esp_err_t start_command_default(slot_info_t *slot, int flags, sdspi_hw_cmd_t *cmd);
78 static esp_err_t poll_busy(slot_info_t *slot, int timeout_ms, bool polling);
93 static sdspi_dev_handle_t store_slot_info(slot_info_t *slot) in store_slot_info() argument
100 if (s_slots[slot->host_id] == NULL) { in store_slot_info()
101 s_slots[slot->host_id] = slot; in store_slot_info()
102 return slot->host_id; in store_slot_info()
104 return (sdspi_dev_handle_t)slot; in store_slot_info()
112 slot_info_t* slot = s_slots[handle]; in remove_slot_info() local
[all …]
Dsdspi_transaction.c97 esp_err_t sdspi_host_do_transaction(int slot, sdmmc_command_t *cmdinfo) in sdspi_host_do_transaction() argument
150 esp_err_t ret = sdspi_host_start_command(slot, &hw_cmd, in sdspi_host_do_transaction()
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/spp/
Dbtc_spp.c128 spp_slot_t **slot = NULL; in spp_malloc_slot() local
133 slot = &spp_local_param.spp_slots[i]; in spp_malloc_slot()
134 if ((*slot) == NULL) { in spp_malloc_slot()
135 if (((*slot) = (spp_slot_t *)osi_malloc(sizeof(spp_slot_t))) == NULL) { in spp_malloc_slot()
138 (*slot)->id = spp_local_param.spp_slot_id; in spp_malloc_slot()
139 (*slot)->serial = i; in spp_malloc_slot()
140 (*slot)->sdp_handle = 0; in spp_malloc_slot()
141 (*slot)->rfc_handle = 0; in spp_malloc_slot()
142 (*slot)->rfc_port_handle = 0; in spp_malloc_slot()
143 (*slot)->fd = -1; in spp_malloc_slot()
[all …]
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/l2cap/
Dbtc_l2cap.c119 l2cap_slot_t *slot = NULL; in l2cap_find_slot_by_handle() local
122 slot = l2cap_local_param.l2cap_slots[i]; in l2cap_find_slot_by_handle()
123 if (slot != NULL && slot->handle == handle) { in l2cap_find_slot_by_handle()
124 return slot; in l2cap_find_slot_by_handle()
132 l2cap_slot_t *slot = NULL; in l2cap_find_slot_by_id() local
135 slot = l2cap_local_param.l2cap_slots[i]; in l2cap_find_slot_by_id()
136 if (slot != NULL && slot->id == id) { in l2cap_find_slot_by_id()
137 return slot; in l2cap_find_slot_by_id()
145 l2cap_slot_t *slot = NULL; in l2cap_find_slot_by_fd() local
148 slot = l2cap_local_param.l2cap_slots[i]; in l2cap_find_slot_by_fd()
[all …]
/hal_espressif-3.7.0/components/hal/esp32/include/hal/
Dsdmmc_ll.h158 static inline void sdmmc_ll_enable_card_clock(sdmmc_dev_t *hw, uint32_t slot, bool en) in sdmmc_ll_enable_card_clock() argument
161 hw->clkena.cclk_enable |= BIT(slot); in sdmmc_ll_enable_card_clock()
163 hw->clkena.cclk_enable &= ~BIT(slot); in sdmmc_ll_enable_card_clock()
174 static inline void sdmmc_ll_set_card_clock_div(sdmmc_dev_t *hw, uint32_t slot, uint32_t card_div) in sdmmc_ll_set_card_clock_div() argument
176 if (slot == 0) { in sdmmc_ll_set_card_clock_div()
179 } else if (slot == 1) { in sdmmc_ll_set_card_clock_div()
195 static inline uint32_t sdmmc_ll_get_card_clock_div(sdmmc_dev_t *hw, uint32_t slot) in sdmmc_ll_get_card_clock_div() argument
199 if (slot == 0) { in sdmmc_ll_get_card_clock_div()
202 } else if (slot == 1) { in sdmmc_ll_get_card_clock_div()
219 static inline void sdmmc_ll_enable_card_clock_low_power(sdmmc_dev_t *hw, uint32_t slot, bool en) in sdmmc_ll_enable_card_clock_low_power() argument
[all …]
/hal_espressif-3.7.0/zephyr/port/boot/
Desp_loader.c66 void esp_app_image_load(int image_index, int slot, in esp_app_image_load() argument
73 area_id = flash_area_id_from_multi_image_slot(image_index, slot); in esp_app_image_load()
80 image_index, slot, area_id); in esp_app_image_load()
130 void start_cpu0_image(int image_index, int slot, unsigned int hdr_offset) in start_cpu0_image() argument
133 esp_app_image_load(image_index, slot, hdr_offset, &entry_addr); in start_cpu0_image()
179 void start_cpu1_image(int image_index, int slot, unsigned int hdr_offset) in start_cpu1_image() argument
182 esp_app_image_load(image_index, slot, hdr_offset, &entry_addr); in start_cpu1_image()
/hal_espressif-3.7.0/zephyr/port/include/boot/
Desp_loader.h9 void start_cpu0_image(int image_index, int slot, unsigned int hdr_offset);
11 void start_cpu1_image(int image_index, int slot, unsigned int hdr_offset);
14 void esp_app_image_load(int image_index, int slot, unsigned int hdr_offset, unsigned int *entry_add…
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/sdp/
Dbtc_sdp.c97 sdp_slot_t *slot = NULL; in set_sdp_handle() local
107 slot = sdp_local_param.sdp_slots[id]; in set_sdp_handle()
108 if (slot == NULL) { in set_sdp_handle()
113 slot->sdp_handle = handle; in set_sdp_handle()
184 sdp_slot_t **slot = NULL; in alloc_sdp_slot() local
197 slot = &sdp_local_param.sdp_slots[i]; in alloc_sdp_slot()
198 if ((*slot) == NULL) { in alloc_sdp_slot()
199 if (((*slot) = (sdp_slot_t *)osi_malloc(sizeof(sdp_slot_t))) == NULL) { in alloc_sdp_slot()
205 (*slot)->state = SDP_RECORD_ALLOCED; in alloc_sdp_slot()
206 (*slot)->record_data = record; in alloc_sdp_slot()
[all …]
/hal_espressif-3.7.0/tools/esptool_py/espsecure/esp_hsm_sign/
D__init__.py57 for slot in lib.get_slots(token_present=True):
58 if slot.slot_id == int(config["slot"]):
61 token = slot.get_token()
/hal_espressif-3.7.0/tools/esptool_py/docs/en/espsecure/
Dindex.rst50 An HSM config file is required with the fields (``pkcs11_lib``, ``credentials``, ``slot``, ``label`…
53 To access an HSM token of a selected slot, you will also need to pass in the token User PIN and thu…
72 slot = 1108821954
/hal_espressif-3.7.0/components/driver/spi/include/driver/
Dsdspi_host.h40 .slot = SDSPI_DEFAULT_HOST, \
/hal_espressif-3.7.0/components/bootloader/
DKconfig.projbuild154 …The device will boot from "factory" partition (or OTA slot 0 if no factory partition is present) a…
734 NOTE: Once a digest slot is revoked, it can never be used again to verify an image
925 … To revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.