Home
last modified time | relevance | path

Searched refs:tx_blocks (Results 1 – 7 of 7) sorted by relevance

/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/
Dwifi-sdio.c105 t_u32 tx_blocks = 0, buflen = 0; in wifi_send_fw_data() local
117 calculate_sdio_write_params(txlen, &tx_blocks, &buflen); in wifi_send_fw_data()
144 ret = sdio_drv_write(mlan_adap->ioport + txportno, 1, tx_blocks, buflen, data, &resp); in wifi_send_fw_data()
835 t_u32 tx_blocks = 4, buflen = MLAN_SDIO_BLOCK_SIZE; in _wlan_set_cal_data() local
852 sdio_drv_write(mlan_adap->ioport, 1, tx_blocks, buflen, (t_u8 *)outbuf, &resp); in _wlan_set_cal_data()
854 …(void)sdio_drv_write(mlan_adap->ioport | CMD_PORT_SLCT, 1, tx_blocks, buflen, (t_u8 *)outbuf, &res… in _wlan_set_cal_data()
866 t_u32 tx_blocks = 4, buflen = MLAN_SDIO_BLOCK_SIZE; in wlan_reconfigure_tx_buffers() local
882 sdio_drv_write(mlan_adap->ioport, 1, tx_blocks, buflen, (t_u8 *)outbuf, &resp); in wlan_reconfigure_tx_buffers()
884 …(void)sdio_drv_write(mlan_adap->ioport | CMD_PORT_SLCT, 1, tx_blocks, buflen, (t_u8 *)outbuf, &res… in wlan_reconfigure_tx_buffers()
901 uint32_t tx_blocks = 1, buflen = MLAN_SDIO_BLOCK_SIZE; in wlan_get_channel_region_cfg() local
[all …]
Dwifi-sdio.h101 int wlan_send_sdio_cmd(t_u8 *buf, t_u32 tx_blocks, t_u32 buflen);
108 int wifi_send_cmdbuffer(t_u32 tx_blocks, t_u32 len);
117 int wifi_send_vdllcmdbuffer(t_u32 tx_blocks, t_u32 len);
119 int wlan_send_sdio_vdllcmd(t_u8 *buf, t_u32 tx_blocks, t_u32 buflen);
Dsdio.c109 void calculate_sdio_write_params(t_u32 txlen, t_u32 *tx_blocks, t_u32 *buflen) in calculate_sdio_write_params() argument
111 *tx_blocks = (txlen + SDIO_BLOCK_SIZE - 1) / SDIO_BLOCK_SIZE; in calculate_sdio_write_params()
Dsdio.h58 void calculate_sdio_write_params(t_u32 txlen, t_u32 *tx_blocks, t_u32 *buflen);
Dwifi.c987 t_u32 tx_blocks; in wifi_wait_for_vdllcmdresp() local
1012 tx_blocks = ((t_u32)cmd->size + MLAN_SDIO_BLOCK_SIZE - 1U) / MLAN_SDIO_BLOCK_SIZE; in wifi_wait_for_vdllcmdresp()
1018 (void)wifi_send_vdllcmdbuffer(tx_blocks, buf_len); in wifi_wait_for_vdllcmdresp()
1117 t_u32 tx_blocks; in wifi_wait_for_cmdresp() local
1194 tx_blocks = ((t_u32)cmd->size + MLAN_SDIO_BLOCK_SIZE - 1U) / MLAN_SDIO_BLOCK_SIZE; in wifi_wait_for_cmdresp()
1233 (void)wifi_send_cmdbuffer(tx_blocks, buf_len); in wifi_wait_for_cmdresp()
/hal_nxp-latest/mcux/middleware/wifi_nxp/firmware_dnld/
Dfirmware_dnld.c61 t_u32 tx_blocks = 0, txlen = 0, buflen = 0; in conn_download_decomp_fw() local
150 calculate_sdio_write_params(txlen, &tx_blocks, &buflen); in conn_download_decomp_fw()
152 sdio_drv_write(ioport, 1, tx_blocks, buflen, (t_u8 *)loutbuf, &resp); in conn_download_decomp_fw()
/hal_nxp-latest/mcux/middleware/wifi_nxp/sdio_nxp_abs/
Dfwdnld_sdio.c267 uint32_t tx_blocks = 0, txlen = 0, buflen = 0, offset = 0; in sdio_interface_send() local
337 calculate_sdio_write_params(txlen, (unsigned int *)&tx_blocks, (unsigned int *)&buflen); in sdio_interface_send()
338 (void)sdio_drv_write(ioport, 1, tx_blocks, buflen, (uint8_t *)loutbuf, &resp); in sdio_interface_send()