/hal_infineon-3.7.0/wifi-host-driver/WiFi_Host_Driver/src/bus_protocols/ |
D | whd_bus_protocol_interface.h | 77 extern whd_result_t whd_bus_write_reg_value(whd_driver_t whd_driver, uint32_t address, 79 extern whd_result_t whd_bus_read_reg_value(whd_driver_t whd_driver, uint32_t address, 81 extern whd_result_t whd_bus_mem_bytes(whd_driver_t whd_driver, uint8_t direct, 83 extern whd_driver_t whd_bt_get_whd_driver(void); 84 extern whd_result_t whd_bus_share_bt_init(whd_driver_t whd_driver); 85 extern whd_result_t whd_bus_bt_attach(whd_driver_t whd_driver, void *btdata, 87 extern void whd_bus_bt_detach(whd_driver_t whd_driver); 88 extern uint32_t whd_get_bt_info(whd_driver_t whd_drv, whd_bt_info_t bt_info); 90 extern whd_result_t whd_bus_init(whd_driver_t whd_driver); 91 extern whd_result_t whd_bus_deinit(whd_driver_t whd_driver); [all …]
|
D | whd_bus_m2m_protocol.c | 83 static whd_result_t whd_bus_m2m_init(whd_driver_t whd_driver); 84 static whd_result_t whd_bus_m2m_deinit(whd_driver_t whd_driver); 85 static whd_result_t whd_bus_m2m_ack_interrupt(whd_driver_t whd_driver, uint32_t intstatus); 86 static whd_result_t whd_bus_m2m_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer); 88 static whd_bool_t whd_bus_m2m_wake_interrupt_present(whd_driver_t whd_driver); 89 static uint32_t whd_bus_m2m_packet_available_to_read(whd_driver_t whd_driver); 90 static whd_result_t whd_bus_m2m_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer); 92 static whd_result_t whd_bus_m2m_write_backplane_value(whd_driver_t whd_driver, uint32_t address, 94 static whd_result_t whd_bus_m2m_read_backplane_value(whd_driver_t whd_driver, uint32_t address, uin… 96 static whd_result_t whd_bus_m2m_write_register_value(whd_driver_t whd_driver, whd_bus_function_t fu… [all …]
|
D | whd_bus_spi_protocol.h | 59 extern whd_result_t whd_bus_spi_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer); 60 extern whd_result_t whd_bus_spi_poke_wlan(whd_driver_t whd_driver); 61 extern whd_result_t whd_bus_spi_ack_interrupt(whd_driver_t whd_driver, uint32_t intstatus); 62 extern uint32_t whd_bus_spi_packet_available_to_read(whd_driver_t whd_driver); 63 extern whd_result_t whd_bus_spi_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer); 64 extern whd_result_t whd_bus_spi_init(whd_driver_t whd_driver); 65 extern whd_result_t whd_bus_spi_deinit(whd_driver_t whd_driver); 66 extern whd_bool_t whd_bus_spi_wake_interrupt_present(whd_driver_t whd_driver); 67 extern whd_result_t whd_bus_spi_wait_for_wlan_event(whd_driver_t whd_driver, 69 extern whd_result_t whd_bus_spi_write_register_value(whd_driver_t whd_driver, whd_bus_function_t fu… [all …]
|
D | whd_bus.h | 41 typedef whd_result_t (*whd_bus_init_t)(whd_driver_t whd_driver); 42 typedef whd_result_t (*whd_bus_deinit_t)(whd_driver_t whd_driver); 44 typedef whd_result_t (*whd_bus_ack_interrupt_t)(whd_driver_t whd_driver, uint32_t intstatus); 45 typedef whd_bool_t (*whd_bus_wake_interrupt_present_t)(whd_driver_t whd_driver); 46 typedef uint32_t (*whd_bus_packet_available_to_read_t)(whd_driver_t whd_driver); 47 typedef whd_result_t (*whd_bus_read_frame_t)(whd_driver_t whd_driver, whd_buffer_t *buffer); 49 typedef whd_result_t (*whd_bus_set_backplane_window_t)(whd_driver_t whd_driver, uint32_t addr, uint… 50 typedef whd_result_t (*whd_bus_write_backplane_value_t)(whd_driver_t whd_driver, uint32_t address, 52 typedef whd_result_t (*whd_bus_read_backplane_value_t)(whd_driver_t whd_driver, uint32_t address, 55 typedef whd_result_t (*whd_bus_write_register_value_t)(whd_driver_t whd_driver, whd_bus_function_t … [all …]
|
D | whd_bus.c | 27 whd_driver_t g_bt_whd_driver; 29 whd_result_t whd_bus_write_reg_value(whd_driver_t whd_driver, uint32_t address, in whd_bus_write_reg_value() 37 whd_result_t whd_bus_read_reg_value(whd_driver_t whd_driver, uint32_t address, in whd_bus_read_reg_value() 45 whd_result_t whd_bus_share_bt_init(whd_driver_t whd_driver) in whd_bus_share_bt_init() 53 whd_driver_t whd_bt_get_whd_driver(void) in whd_bt_get_whd_driver() 61 whd_result_t whd_bus_bt_attach(whd_driver_t whd_driver, void *btdata, in whd_bus_bt_attach() 88 void whd_bus_bt_detach(whd_driver_t whd_driver) in whd_bus_bt_detach() 105 whd_result_t whd_bus_init(whd_driver_t whd_driver) in whd_bus_init() 110 whd_result_t whd_bus_deinit(whd_driver_t whd_driver) in whd_bus_deinit() 115 whd_bool_t whd_bus_wake_interrupt_present(whd_driver_t whd_driver) in whd_bus_wake_interrupt_present() [all …]
|
D | whd_bus_sdio_protocol.h | 162 extern whd_result_t whd_bus_sdio_init(whd_driver_t whd_driver); 163 extern whd_result_t whd_bus_sdio_resume_after_deep_sleep(whd_driver_t whd_driver); 164 extern whd_result_t whd_bus_sdio_deinit(whd_driver_t whd_driver); 167 extern whd_result_t whd_bus_sdio_write_backplane_value(whd_driver_t whd_driver, uint32_t address, 169 extern whd_result_t whd_bus_sdio_read_backplane_value(whd_driver_t whd_driver, uint32_t address, 171 extern whd_result_t whd_bus_sdio_write_register_value(whd_driver_t whd_driver, whd_bus_function_t f… 173 extern whd_result_t whd_bus_sdio_read_register_value(whd_driver_t whd_driver, whd_bus_function_t fu… 177 extern whd_result_t whd_bus_sdio_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer); 178 extern whd_result_t whd_bus_sdio_transfer_bytes(whd_driver_t whd_driver, whd_bus_transfer_direction… 181 extern whd_result_t whd_bus_sdio_transfer_backplane_bytes(whd_driver_t whd_driver, [all …]
|
D | whd_bus_common.h | 33 void whd_bus_common_info_init(whd_driver_t whd_driver); 34 void whd_bus_common_info_deinit(whd_driver_t whd_driver); 40 extern void whd_bus_sdio_wlan_set_delayed_bus_powersave_milliseconds(whd_driver_t whd_drive… 41 extern whd_result_t whd_bus_resume_after_deep_sleep(whd_driver_t whd_driver); 43 extern whd_result_t whd_bus_write_wifi_firmware_image(whd_driver_t whd_driver); 44 extern whd_result_t whd_bus_write_wifi_nvram_image(whd_driver_t whd_driver); 45 extern void whd_bus_set_resource_download_halt(whd_driver_t whd_driver, whd_bool_t halt); 47 extern whd_result_t whd_bus_transfer_backplane_bytes(whd_driver_t whd_driver, whd_bus_transfer_dire… 49 extern void whd_bus_init_backplane_window(whd_driver_t whd_driver); 50 whd_result_t whd_bus_set_backplane_window(whd_driver_t whd_driver, uint32_t addr); [all …]
|
D | whd_bus_common.c | 79 whd_result_t whd_bus_common_write_wifi_nvram_image(whd_driver_t whd_driver); 85 whd_bool_t whd_bus_is_up(whd_driver_t whd_driver) in whd_bus_is_up() 90 void whd_bus_set_state(whd_driver_t whd_driver, whd_bool_t state) in whd_bus_set_state() 95 whd_result_t whd_bus_set_flow_control(whd_driver_t whd_driver, uint8_t value) in whd_bus_set_flow_control() 108 whd_bool_t whd_bus_is_flow_controlled(whd_driver_t whd_driver) in whd_bus_is_flow_controlled() 113 whd_result_t whd_bus_set_backplane_window(whd_driver_t whd_driver, uint32_t addr) in whd_bus_set_backplane_window() 120 void whd_bus_common_info_init(whd_driver_t whd_driver) in whd_bus_common_info_init() 145 void whd_bus_common_info_deinit(whd_driver_t whd_driver) in whd_bus_common_info_deinit() 154 void whd_delayed_bus_release_schedule_update(whd_driver_t whd_driver, whd_bool_t is_scheduled) in whd_delayed_bus_release_schedule_update() 160 uint32_t whd_bus_handle_delayed_release(whd_driver_t whd_driver) in whd_bus_handle_delayed_release() [all …]
|
D | whd_bus_sdio_protocol.c | 103 static whd_result_t whd_bus_sdio_transfer(whd_driver_t whd_driver, whd_bus_transfer_direction_t dir… 106 whd_result_t whd_bus_sdio_cmd52(whd_driver_t whd_driver, whd_bus_transfer_direction_t direction, 109 whd_result_t whd_bus_sdio_cmd53(whd_driver_t whd_driver, whd_bus_transfer_direction_t direction, 114 static whd_result_t whd_bus_sdio_abort_read(whd_driver_t whd_driver, whd_bool_t retry); 115 static whd_result_t whd_bus_sdio_download_firmware(whd_driver_t whd_driver); 117 static whd_result_t whd_bus_sdio_set_oob_interrupt(whd_driver_t whd_driver, uint8_t gpio_pin_number… 129 whd_result_t whd_bus_sdio_irq_enable(whd_driver_t whd_driver, whd_bool_t enable); 130 whd_result_t whd_bus_sdio_irq_register(whd_driver_t whd_driver); 131 whd_result_t whd_bus_sdio_enable_oob_intr(whd_driver_t whd_driver, whd_bool_t enable); 132 whd_result_t whd_bus_sdio_register_oob_intr(whd_driver_t whd_driver); [all …]
|
D | whd_bus_spi_protocol.c | 144 static whd_result_t whd_spi_download_firmware(whd_driver_t whd_driver); 145 static whd_result_t whd_bus_spi_transfer_buffer(whd_driver_t whd_driver, whd_bus_transfer_direction… 147 static whd_result_t whd_bus_spi_download_resource(whd_driver_t whd_driver, whd_resource_type_t reso… 149 static whd_result_t whd_bus_spi_write_wifi_nvram_image(whd_driver_t whd_driver); 150 static whd_result_t whd_bus_spi_set_backplane_window(whd_driver_t whd_driver, uint32_t addr, uint32… 152 whd_result_t whd_bus_spi_transfer(whd_driver_t whd_driver, const uint8_t *tx, size_t tx_length, uin… 158 uint32_t whd_bus_spi_bt_packet_available_to_read(whd_driver_t whd_driver); 160 uint32_t whd_bus_spi_attach(whd_driver_t whd_driver, whd_spi_config_t *whd_spi_config, whd_spi_t *s… in whd_bus_spi_attach() 240 void whd_bus_spi_detach(whd_driver_t whd_driver) in whd_bus_spi_detach() 255 whd_result_t whd_bus_spi_transfer(whd_driver_t whd_driver, const uint8_t *tx, size_t tx_length, uin… in whd_bus_spi_transfer() [all …]
|
/hal_infineon-3.7.0/wifi-host-driver/WiFi_Host_Driver/src/include/ |
D | whd_chip.h | 328 whd_result_t whd_ioctl_log_add(whd_driver_t whd_driver, uint32_t cmd, whd_buffer_t buffer); 329 whd_result_t whd_ioctl_log_add_event(whd_driver_t whd_driver, uint32_t cmd, uint16_t flag, uint32_t… 331 whd_result_t whd_ioctl_print(whd_driver_t whd_driver); 366 whd_result_t whd_internal_info_init(whd_driver_t whd_driver); 367 whd_result_t whd_internal_info_deinit(whd_driver_t whd_driver); 373 extern void whd_wifi_chip_info_init(whd_driver_t whd_driver); 374 extern whd_result_t whd_wlan_bus_complete_ds_wake(whd_driver_t whd_driver, whd_bool_t wake_from_fir… 380 extern whd_result_t whd_disable_device_core(whd_driver_t whd_driver, device_core_t core_id, wlan_co… 381 extern whd_result_t whd_reset_device_core(whd_driver_t whd_driver, device_core_t core_id, wlan_core… 382 extern whd_result_t whd_reset_core(whd_driver_t whd_driver, device_core_t core_id, uint32_t bits, u… [all …]
|
D | whd_sdpcm.h | 99 extern void whd_sdpcm_process_rx_packet(whd_driver_t whd_driver, whd_buffer_t buffer); 100 extern whd_result_t whd_sdpcm_init(whd_driver_t whd_driver); 101 extern void whd_sdpcm_quit(whd_driver_t whd_driver); 102 extern void whd_sdpcm_bus_vars_init(whd_driver_t whd_driver); 103 extern void whd_sdpcm_quit(whd_driver_t whd_driver); 104 extern whd_bool_t whd_sdpcm_has_tx_packet(whd_driver_t whd_driver); 106 extern whd_result_t whd_sdpcm_get_packet_to_send(whd_driver_t whd_driver, whd_buffer_t *buffer); 107 extern void whd_sdpcm_update_credit(whd_driver_t whd_driver, uint8_t *data); 108 extern uint8_t whd_sdpcm_get_available_credits(whd_driver_t whd_driver); 109 extern void whd_update_host_interface_to_bss_index_mapping(whd_driver_t whd_driver, whd_interface_t… [all …]
|
D | whd_buffer_api.h | 62 whd_result_t whd_host_buffer_get(whd_driver_t whd_driver, whd_buffer_t *buffer, whd_buffer_dir_t di… 80 whd_result_t whd_buffer_release(whd_driver_t whd_driver, whd_buffer_t buffer, whd_buffer_dir_t dire… 94 uint8_t *whd_buffer_get_current_piece_data_pointer(whd_driver_t whd_driver, whd_buffer_t buffer); 109 uint16_t whd_buffer_get_current_piece_size(whd_driver_t whd_driver, whd_buffer_t buffer); 123 whd_result_t whd_buffer_set_size(whd_driver_t whd_driver, whd_buffer_t buffer, uint16_t size); 145 whd_result_t whd_buffer_add_remove_at_front(whd_driver_t whd_driver, whd_buffer_t *buffer, int32_t …
|
D | whd_cdc_bdc.h | 148 whd_result_t whd_cdc_bdc_info_init(whd_driver_t whd_driver); 149 void whd_cdc_bdc_info_deinit(whd_driver_t whd_driver); 159 void *whd_cdc_get_iovar_buffer(whd_driver_t whd_driver, 165 void *whd_cdc_get_ioctl_buffer(whd_driver_t whd_driver, 169 void whd_process_cdc(whd_driver_t whd_driver, whd_buffer_t buffer); 171 void whd_process_bdc(whd_driver_t whd_driver, whd_buffer_t buffer); 173 void whd_process_bdc_event(whd_driver_t whd_driver, whd_buffer_t buffer, uint16_t size);
|
D | whd_thread.h | 65 void whd_thread_info_init(whd_driver_t whd_driver, whd_init_config_t *whd_init_config); 74 extern whd_result_t whd_thread_init(whd_driver_t whd_driver); 82 extern void whd_thread_quit(whd_driver_t whd_driver); 85 extern void whd_thread_notify(whd_driver_t whd_driver); 86 extern void whd_thread_notify_irq(whd_driver_t whd_driver);
|
D | whd_resource_if.h | 44 uint32_t whd_resource_size(whd_driver_t whd_driver, whd_resource_type_t resource, uint32_t *size_ou… 45 uint32_t whd_get_resource_block_size(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t *size… 46 uint32_t whd_get_resource_no_of_blocks(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t *bl… 47 uint32_t whd_get_resource_block(whd_driver_t whd_driver, whd_resource_type_t type, 50 uint32_t whd_resource_read(whd_driver_t whd_driver, whd_resource_type_t type, uint32_t offset,
|
/hal_infineon-3.7.0/wifi-host-driver/WiFi_Host_Driver/src/ |
D | whd_thread.c | 56 void whd_thread_info_init(whd_driver_t whd_driver, whd_init_config_t *whd_init_config) in whd_thread_info_init() 72 whd_result_t whd_thread_init(whd_driver_t whd_driver) in whd_thread_init() 123 int8_t whd_thread_send_one_packet(whd_driver_t whd_driver) in whd_thread_send_one_packet() 167 int8_t whd_thread_receive_one_packet(whd_driver_t whd_driver) in whd_thread_receive_one_packet() 201 int8_t whd_thread_poll_all(whd_driver_t whd_driver) in whd_thread_poll_all() 214 void whd_thread_quit(whd_driver_t whd_driver) in whd_thread_quit() 243 void whd_thread_notify_irq(whd_driver_t whd_driver) in whd_thread_notify_irq() 254 void whd_thread_notify(whd_driver_t whd_driver) in whd_thread_notify() 288 whd_driver_t whd_driver = ( whd_driver_t )thread_input; in whd_thread_func()
|
D | whd_buffer_api.c | 63 whd_result_t whd_host_buffer_get(whd_driver_t whd_driver, whd_buffer_t *buffer, whd_buffer_dir_t di… in whd_host_buffer_get() 93 whd_result_t whd_buffer_release(whd_driver_t whd_driver, whd_buffer_t buffer, whd_buffer_dir_t dire… in whd_buffer_release() 120 uint8_t *whd_buffer_get_current_piece_data_pointer(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_buffer_get_current_piece_data_pointer() 147 uint16_t whd_buffer_get_current_piece_size(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_buffer_get_current_piece_size() 173 whd_result_t whd_buffer_set_size(whd_driver_t whd_driver, whd_buffer_t buffer, uint16_t size) in whd_buffer_set_size() 207 whd_result_t whd_buffer_add_remove_at_front(whd_driver_t whd_driver, whd_buffer_t *buffer, int32_t … in whd_buffer_add_remove_at_front()
|
D | whd_management.c | 55 whd_result_t whd_management_wifi_platform_init(whd_driver_t whd_driver, whd_country_code_t country, 59 whd_interface_t whd_get_primary_interface(whd_driver_t whd_driver) in whd_get_primary_interface() 68 whd_result_t whd_add_interface(whd_driver_t whd_driver, uint8_t bsscfgidx, uint8_t ifidx, in whd_add_interface() 121 whd_result_t whd_add_primary_interface(whd_driver_t whd_driver, whd_interface_t *ifpp) in whd_add_primary_interface() 126 uint32_t whd_add_secondary_interface(whd_driver_t whd_driver, whd_mac_t *mac_addr, whd_interface_t … in whd_add_secondary_interface() 131 uint32_t whd_init(whd_driver_t *whd_driver_ptr, whd_init_config_t *whd_init_config, in whd_init() 135 whd_driver_t whd_drv; in whd_init() 149 if ( (whd_drv = (whd_driver_t)whd_mem_malloc(sizeof(struct whd_driver) ) ) != NULL ) in whd_init() 181 whd_driver_t whd_driver; in whd_deinit() 227 whd_result_t whd_management_wifi_platform_init(whd_driver_t whd_driver, whd_country_code_t country, in whd_management_wifi_platform_init() [all …]
|
D | whd_chip.c | 86 static whd_bool_t whd_is_fw_sr_capable(whd_driver_t whd_driver); 87 static whd_result_t whd_kso_enable(whd_driver_t whd_driver, whd_bool_t enable); 88 static uint32_t whd_get_core_address(whd_driver_t whd_driver, device_core_t core_id); 90 static whd_result_t whd_enable_save_restore(whd_driver_t whd_driver); 95 whd_result_t whd_internal_info_init(whd_driver_t whd_driver) in whd_internal_info_init() 124 whd_result_t whd_internal_info_deinit(whd_driver_t whd_driver) in whd_internal_info_deinit() 134 uint32_t whd_get_core_address(whd_driver_t whd_driver, device_core_t core_id) in whd_get_core_address() 160 whd_result_t whd_device_core_is_up(whd_driver_t whd_driver, device_core_t core_id) in whd_device_core_is_up() 200 whd_result_t whd_reset_core(whd_driver_t whd_driver, device_core_t core_id, uint32_t bits, uint32_t… in whd_reset_core() 260 whd_result_t whd_disable_device_core(whd_driver_t whd_driver, device_core_t core_id, wlan_core_flag… in whd_disable_device_core() [all …]
|
D | whd_sdpcm.c | 213 static whd_buffer_t whd_sdpcm_get_next_buffer_in_queue(whd_driver_t whd_driver, whd_buffer_t buffe… 214 static void whd_sdpcm_set_next_buffer_in_queue(whd_driver_t whd_driver, whd_buffer_t buf… 216 extern void whd_wifi_log_event(whd_driver_t whd_driver, const whd_event_header_t *event_header, 231 whd_result_t whd_sdpcm_init(whd_driver_t whd_driver) in whd_sdpcm_init() 262 void whd_sdpcm_bus_vars_init(whd_driver_t whd_driver) in whd_sdpcm_bus_vars_init() 276 void whd_sdpcm_quit(whd_driver_t whd_driver) in whd_sdpcm_quit() 301 void whd_sdpcm_update_credit(whd_driver_t whd_driver, uint8_t *data) in whd_sdpcm_update_credit() 333 void whd_sdpcm_process_rx_packet(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_sdpcm_process_rx_packet() 465 whd_bool_t whd_sdpcm_has_tx_packet(whd_driver_t whd_driver) in whd_sdpcm_has_tx_packet() 475 whd_result_t whd_sdpcm_get_packet_to_send(whd_driver_t whd_driver, whd_buffer_t *buffer) in whd_sdpcm_get_packet_to_send() [all …]
|
D | whd_resource_if.c | 45 uint32_t whd_resource_size(whd_driver_t whd_driver, whd_resource_type_t resource, uint32_t *size_ou… in whd_resource_size() 59 uint32_t whd_get_resource_block_size(whd_driver_t whd_driver, whd_resource_type_t type, uint32_t *s… in whd_get_resource_block_size() 74 uint32_t whd_get_resource_no_of_blocks(whd_driver_t whd_driver, whd_resource_type_t type, uint32_t … in whd_get_resource_no_of_blocks() 88 uint32_t whd_get_resource_block(whd_driver_t whd_driver, whd_resource_type_t type, in whd_get_resource_block() 104 uint32_t whd_resource_read(whd_driver_t whd_driver, whd_resource_type_t type, uint32_t offset, in whd_resource_read()
|
/hal_infineon-3.7.0/wifi-host-driver/WiFi_Host_Driver/resources/resource_imp/ |
D | whd_resources.c | 60 uint32_t host_platform_resource_size(whd_driver_t whd_drv, whd_resource_type_t resource, uint32_t *… 61 uint32_t host_get_resource_block(whd_driver_t whd_drv, whd_resource_type_t type, 63 uint32_t host_get_resource_no_of_blocks(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t *b… 64 uint32_t host_get_resource_block_size(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t *siz… 67 uint32_t host_resource_read(whd_driver_t whd_drv, whd_resource_type_t type, 166 uint32_t host_platform_resource_size(whd_driver_t whd_drv, whd_resource_type_t resource, uint32_t *… in host_platform_resource_size() 208 uint32_t host_get_resource_block(whd_driver_t whd_drv, whd_resource_type_t type, in host_get_resource_block() 295 uint32_t host_get_resource_block_size(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t *siz… in host_get_resource_block_size() 301 uint32_t host_get_resource_no_of_blocks(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t *b… in host_get_resource_no_of_blocks() 315 uint32_t host_resource_read(whd_driver_t whd_drv, whd_resource_type_t type, in host_resource_read()
|
/hal_infineon-3.7.0/wifi-host-driver/WiFi_Host_Driver/inc/ |
D | whd_resource_api.h | 88 …uint32_t (*whd_resource_size)(whd_driver_t whd_drv, whd_resource_type_t resource, uint32_t *size_o… 101 uint32_t (*whd_get_resource_block)(whd_driver_t whd_drv, whd_resource_type_t type, 113 …uint32_t (*whd_get_resource_no_of_blocks)(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t… 124 …uint32_t (*whd_get_resource_block_size)(whd_driver_t whd_drv, whd_resource_type_t type, uint32_t *… 138 uint32_t (*whd_resource_read)(whd_driver_t whd_drv, whd_resource_type_t type,
|
D | whd_wifi_api.h | 64 extern uint32_t whd_init(whd_driver_t *whd_driver_ptr, whd_init_config_t *whd_init_config, 84 extern uint32_t whd_bus_sdio_attach(whd_driver_t whd_driver, whd_sdio_config_t *whd_config, whd_sdi… 90 extern void whd_bus_sdio_detach(whd_driver_t whd_driver); 101 extern uint32_t whd_bus_spi_attach(whd_driver_t whd_driver, whd_spi_config_t *whd_config, whd_spi_t… 107 extern void whd_bus_spi_detach(whd_driver_t whd_driver); 118 extern uint32_t whd_bus_m2m_attach(whd_driver_t whd_driver, whd_m2m_config_t *whd_config, whd_m2m_t… 124 extern void whd_bus_m2m_detach(whd_driver_t whd_driver); 154 extern uint32_t whd_wifi_on(whd_driver_t whd_driver, whd_interface_t *ifpp); 206 extern uint32_t whd_add_secondary_interface(whd_driver_t whd_drv, whd_mac_t *mac_addr, whd_interfac… 1337 extern uint32_t whd_wifi_read_wlan_log(whd_driver_t whd_drv, char *buffer, uint32_t buffer_size); [all …]
|