Searched refs:bus_if (Results 1 – 8 of 8) sorted by relevance
/hal_infineon-3.6.0/wifi-host-driver/WiFi_Host_Driver/src/bus_protocols/ |
D | whd_bus.c | 107 return whd_driver->bus_if->whd_bus_init_fptr(whd_driver); in whd_bus_init() 112 return whd_driver->bus_if->whd_bus_deinit_fptr(whd_driver); in whd_bus_deinit() 117 return whd_driver->bus_if->whd_bus_wake_interrupt_present_fptr(whd_driver); in whd_bus_wake_interrupt_present() 122 return whd_driver->bus_if->whd_bus_send_buffer_fptr(whd_driver, buffer); in whd_bus_send_buffer() 127 return whd_driver->bus_if->whd_bus_packet_available_to_read_fptr(whd_driver); in whd_bus_packet_available_to_read() 132 return whd_driver->bus_if->whd_bus_read_frame_fptr(whd_driver, buffer); in whd_bus_read_frame() 138 …return whd_driver->bus_if->whd_bus_write_backplane_value_fptr(whd_driver, address, register_length… in whd_bus_write_backplane_value() 144 …return whd_driver->bus_if->whd_bus_read_backplane_value_fptr(whd_driver, address, register_length,… in whd_bus_read_backplane_value() 150 …return whd_driver->bus_if->whd_bus_read_register_value_fptr(whd_driver, function, address, value_l… in whd_bus_read_register_value() 156 …return whd_driver->bus_if->whd_bus_write_register_value_fptr(whd_driver, function, address, value_… in whd_bus_write_register_value() [all …]
|
D | whd_bus_m2m_protocol.c | 136 whd_driver->bus_if = &whd_bus_m2m_info; in whd_bus_m2m_attach() 139 memset(whd_driver->bus_if, 0, sizeof(whd_bus_info_t) ); in whd_bus_m2m_attach() 145 whd_driver->bus_if->whd_bus_init_fptr = whd_bus_m2m_init; in whd_bus_m2m_attach() 146 whd_driver->bus_if->whd_bus_deinit_fptr = whd_bus_m2m_deinit; in whd_bus_m2m_attach() 148 whd_driver->bus_if->whd_bus_ack_interrupt_fptr = whd_bus_m2m_ack_interrupt; in whd_bus_m2m_attach() 149 whd_driver->bus_if->whd_bus_send_buffer_fptr = whd_bus_m2m_send_buffer; in whd_bus_m2m_attach() 151 whd_driver->bus_if->whd_bus_wake_interrupt_present_fptr = whd_bus_m2m_wake_interrupt_present; in whd_bus_m2m_attach() 152 … whd_driver->bus_if->whd_bus_packet_available_to_read_fptr = whd_bus_m2m_packet_available_to_read; in whd_bus_m2m_attach() 153 whd_driver->bus_if->whd_bus_read_frame_fptr = whd_bus_m2m_read_frame; in whd_bus_m2m_attach() 156 whd_driver->bus_if->whd_bus_write_backplane_value_fptr = whd_bus_m2m_write_backplane_value; in whd_bus_m2m_attach() [all …]
|
D | whd_bus_spi_protocol.c | 186 whd_driver->bus_if = whd_bus_info; in whd_bus_spi_attach() 242 if (whd_driver->bus_if != NULL) in whd_bus_spi_detach() 244 whd_mem_free(whd_driver->bus_if); in whd_bus_spi_detach() 245 whd_driver->bus_if = NULL; in whd_bus_spi_detach()
|
D | whd_bus.h | 36 typedef whd_result_t (*whd_bus_transfer_t)(whd_bus_if_t *bus_if, whd_bus_transfer_direction_t dir,
|
D | whd_bus_sdio_protocol.c | 164 whd_driver->bus_if = whd_bus_info; in whd_bus_sdio_attach() 218 if (whd_driver->bus_if != NULL) in whd_bus_sdio_detach() 220 whd_mem_free(whd_driver->bus_if); in whd_bus_sdio_detach() 221 whd_driver->bus_if = NULL; in whd_bus_sdio_detach()
|
D | whd_bus_common.c | 116 return whd_driver->bus_if->whd_bus_set_backplane_window_fptr(whd_driver, addr, curbase); in whd_bus_set_backplane_window()
|
/hal_infineon-3.6.0/wifi-host-driver/WiFi_Host_Driver/src/include/ |
D | whd_int.h | 93 struct whd_bus_info *bus_if; member
|
/hal_infineon-3.6.0/wifi-host-driver/WiFi_Host_Driver/src/ |
D | whd_management.c | 192 if ( (whd_driver->bus_priv != NULL) || (whd_driver->bus_if != NULL) ) in whd_deinit()
|