Searched refs:txlen (Results 1 – 6 of 6) sorted by relevance
/external/u-boot/drivers/usb/musb/ |
D | musb_hcd.c | 313 u32 txlen = 0; in ctrlreq_out_data_phase() local 319 while (txlen < len) { in ctrlreq_out_data_phase() 321 nextlen = ((len-txlen) > maxpktsize) ? maxpktsize : (len-txlen); in ctrlreq_out_data_phase() 324 write_fifo(MUSB_CONTROL_EP, txlen, &txbuff[txlen]); in ctrlreq_out_data_phase() 336 txlen += nextlen; in ctrlreq_out_data_phase() 337 dev->act_len = txlen; in ctrlreq_out_data_phase() 855 u32 txlen = 0; in submit_bulk_msg() local 905 while (txlen < len) { in submit_bulk_msg() 906 nextlen = ((len-txlen) < dev->epmaxpacketout[ep]) ? in submit_bulk_msg() 907 (len-txlen) : dev->epmaxpacketout[ep]; in submit_bulk_msg() [all …]
|
/external/u-boot/drivers/usb/host/ |
D | dwc2.c | 525 int txlen, struct devrequest *cmd) in dwc_otg_submit_rh_msg_in_status() argument 584 dev->act_len = min(len, txlen); in dwc_otg_submit_rh_msg_in_status() 592 void *buffer, int txlen, in dwc_otg_submit_rh_msg_in_descriptor() argument 606 len = min3(txlen, (int)sizeof(root_hub_dev_des), (int)wLength); in dwc_otg_submit_rh_msg_in_descriptor() 610 len = min3(txlen, (int)sizeof(root_hub_config_des), (int)wLength); in dwc_otg_submit_rh_msg_in_descriptor() 616 len = min3(txlen, (int)sizeof(root_hub_str_index0), in dwc_otg_submit_rh_msg_in_descriptor() 621 len = min3(txlen, (int)sizeof(root_hub_str_index1), in dwc_otg_submit_rh_msg_in_descriptor() 659 len = min3(txlen, (int)data[0], (int)wLength); in dwc_otg_submit_rh_msg_in_descriptor() 667 dev->act_len = min(len, txlen); in dwc_otg_submit_rh_msg_in_descriptor() 675 void *buffer, int txlen, in dwc_otg_submit_rh_msg_in_configuration() argument [all …]
|
/external/u-boot/drivers/spi/ |
D | cadence_qspi_apb.c | 479 const u8 *cmdbuf, unsigned int txlen, const u8 *txbuf) in cadence_qspi_apb_command_write() argument 486 if (!cmdlen || cmdlen > 5 || txlen > 8 || cmdbuf == NULL) { in cadence_qspi_apb_command_write() 488 cmdlen, txlen); in cadence_qspi_apb_command_write() 507 if (txlen) { in cadence_qspi_apb_command_write() 510 reg |= ((txlen - 1) & CQSPI_REG_CMDCTRL_WR_BYTES_MASK) in cadence_qspi_apb_command_write() 513 wr_len = txlen > 4 ? 4 : txlen; in cadence_qspi_apb_command_write() 518 if (txlen > 4) { in cadence_qspi_apb_command_write() 520 wr_len = txlen - wr_len; in cadence_qspi_apb_command_write()
|
D | cadence_qspi.h | 61 unsigned int txlen, const u8 *txbuf); 70 unsigned int txlen, const u8 *txbuf);
|
/external/u-boot/drivers/net/ |
D | cs8900.h | 46 CS8900_REG txlen; member
|
D | cs8900.c | 211 REG_WRITE(length, &priv->regs->txlen); in cs8900_send()
|