| /Linux-v5.4/include/sound/ |
| D | spear_dma.h | 16 u32 max_burst; member
|
| D | designware_i2s.h | 50 u32 max_burst; member
|
| /Linux-v5.4/drivers/staging/wusbcore/host/whci/ |
| D | qset.c | 56 qset->max_burst = epcd->bMaxBurst; in qset_fill_qh() 59 qset->max_burst = 1; in qset_fill_qh() 86 QH_INFO2_BURST(qset->max_burst) in qset_fill_qh() 101 qset->qh.cur_window = cpu_to_le32((1 << qset->max_burst) - 1); in qset_fill_qh() 138 qset->qh.cur_window = cpu_to_le32((1 << qset->max_burst) - 1); in qset_reset() 557 max_std_len = qset->max_burst * qset->max_packet; in qset_add_urb_sg_linearize()
|
| D | whci-hc.h | 251 uint8_t max_burst; member
|
| /Linux-v5.4/include/net/netns/ |
| D | sctp.h | 62 int max_burst; member
|
| /Linux-v5.4/drivers/dma/ |
| D | stm32-mdma.c | 416 static u32 stm32_mdma_get_best_burst(u32 buf_len, u32 tlen, u32 max_burst, in stm32_mdma_get_best_burst() argument 422 max_burst * width) / width; in stm32_mdma_get_best_burst() 920 u32 ccr, ctcr, ctbr, cbndtr, count, max_burst, mdma_burst; in stm32_mdma_prep_dma_memcpy() local 994 max_burst = tlen / max_width; in stm32_mdma_prep_dma_memcpy() 995 best_burst = stm32_mdma_get_best_burst(len, tlen, max_burst, in stm32_mdma_prep_dma_memcpy() 1007 max_burst = tlen / max_width; in stm32_mdma_prep_dma_memcpy() 1008 best_burst = stm32_mdma_get_best_burst(len, tlen, max_burst, in stm32_mdma_prep_dma_memcpy() 1048 max_burst = tlen / max_width; in stm32_mdma_prep_dma_memcpy() 1050 max_burst, in stm32_mdma_prep_dma_memcpy() 1062 max_burst = tlen / max_width; in stm32_mdma_prep_dma_memcpy() [all …]
|
| D | img-mdc-dma.c | 211 unsigned int max_burst, burst_size; in mdc_list_desc_config() local 231 max_burst = mdma->bus_width * mdma->max_burst_mult; in mdc_list_desc_config() 233 max_burst = mdma->bus_width * (mdma->max_burst_mult - 1); in mdc_list_desc_config() 240 burst_size = min(max_burst, mchan->config.dst_maxburst * in mdc_list_desc_config() 247 burst_size = min(max_burst, mchan->config.src_maxburst * in mdc_list_desc_config() 254 burst_size = max_burst; in mdc_list_desc_config()
|
| D | nbpfaxi.c | 430 int max_burst = nbpf->config->buffer_size * 8; in nbpf_xfer_ds() local 435 max_burst = min_not_zero(nbpf->max_burst_mem_read, in nbpf_xfer_ds() 440 max_burst = nbpf->max_burst_mem_read; in nbpf_xfer_ds() 444 max_burst = nbpf->max_burst_mem_write; in nbpf_xfer_ds() 453 return min_t(int, __ffs(size), ilog2(max_burst)); in nbpf_xfer_ds()
|
| D | stm32-dma.c | 313 static u32 stm32_dma_get_best_burst(u32 buf_len, u32 max_burst, u32 threshold, in stm32_dma_get_best_burst() argument 316 u32 best_burst = max_burst; in stm32_dma_get_best_burst() 1339 dd->max_burst = STM32_DMA_MAX_BURST; in stm32_dma_probe()
|
| /Linux-v5.4/drivers/usb/host/ |
| D | xhci-mtk-sch.c | 212 u32 max_burst; in setup_sch_info() local 221 max_burst = CTX_TO_MAX_BURST(le32_to_cpu(ep_ctx->ep_info2)); in setup_sch_info() 250 sch_ep->pkts = max_burst + 1; in setup_sch_info() 264 esit_pkts = (mult + 1) * (max_burst + 1); in setup_sch_info()
|
| D | xhci-dbgcap.c | 93 unsigned int max_burst; in xhci_dbc_init_contexts() local 110 max_burst = DBC_CTRL_MAXBURST(readl(&dbc->regs->control)); in xhci_dbc_init_contexts() 113 ep_ctx->ep_info2 = dbc_epctx_info2(BULK_OUT_EP, 1024, max_burst); in xhci_dbc_init_contexts() 120 ep_ctx->ep_info2 = dbc_epctx_info2(BULK_IN_EP, 1024, max_burst); in xhci_dbc_init_contexts()
|
| D | xhci-mem.c | 1396 int max_burst; in xhci_get_max_esit_payload() local 1413 max_burst = usb_endpoint_maxp_mult(&ep->desc); in xhci_get_max_esit_payload() 1415 return max_packet * max_burst; in xhci_get_max_esit_payload() 1434 unsigned int max_burst; in xhci_endpoint_init() local 1470 max_burst = xhci_get_endpoint_max_burst(udev, ep); in xhci_endpoint_init() 1503 MAX_BURST(max_burst) | in xhci_endpoint_init()
|
| D | xhci-ring.c | 3533 unsigned int max_burst; in xhci_get_burst_count() local 3538 max_burst = urb->ep->ss_ep_comp.bMaxBurst; in xhci_get_burst_count() 3539 return DIV_ROUND_UP(total_packet_count, max_burst + 1) - 1; in xhci_get_burst_count() 3553 unsigned int max_burst; in xhci_get_last_burst_packet_count() local 3561 max_burst = urb->ep->ss_ep_comp.bMaxBurst; in xhci_get_last_burst_packet_count() 3562 residue = total_packet_count % (max_burst + 1); in xhci_get_last_burst_packet_count() 3567 return max_burst; in xhci_get_last_burst_packet_count()
|
| /Linux-v5.4/drivers/usb/early/ |
| D | xhci-dbc.c | 232 unsigned int max_burst; in xdbc_mem_init() local 320 max_burst = DEBUG_MAX_BURST(readl(&xdbc.xdbc_reg->control)); in xdbc_mem_init() 324 ep_out->ep_info2 = cpu_to_le32(EP_TYPE(BULK_OUT_EP) | MAX_PACKET(1024) | MAX_BURST(max_burst)); in xdbc_mem_init() 331 ep_in->ep_info2 = cpu_to_le32(EP_TYPE(BULK_IN_EP) | MAX_PACKET(1024) | MAX_BURST(max_burst)); in xdbc_mem_init()
|
| /Linux-v5.4/net/sctp/ |
| D | transport.c | 603 if (t->burst_limited || asoc->max_burst == 0) in sctp_transport_burst_limited() 606 max_burst_bytes = t->flight_size + (asoc->max_burst * asoc->pathmtu); in sctp_transport_burst_limited()
|
| D | sysctl.c | 133 .data = &init_net.sctp.max_burst,
|
| /Linux-v5.4/sound/soc/spear/ |
| D | spdif_in.c | 239 host->dma_params.max_burst = 16; in spdif_in_probe()
|
| D | spdif_out.c | 301 host->dma_params.max_burst = 16; in spdif_out_probe()
|
| /Linux-v5.4/sound/soc/dwc/ |
| D | dwc-i2s.c | 561 dev->play_dma_data.pd.max_burst = 16; in dw_configure_dai_by_pd() 562 dev->capture_dma_data.pd.max_burst = 16; in dw_configure_dai_by_pd()
|
| /Linux-v5.4/drivers/scsi/be2iscsi/ |
| D | be_iscsi.c | 672 if (session->max_burst > 262144) in beiscsi_set_param() 673 session->max_burst = 262144; in beiscsi_set_param() 853 params, session->max_burst); in beiscsi_set_params_for_offld()
|
| /Linux-v5.4/include/scsi/ |
| D | libiscsi.h | 287 unsigned max_burst; member
|
| D | scsi_transport_iscsi.h | 350 unsigned max_burst; member
|
| /Linux-v5.4/include/linux/ |
| D | dmaengine.h | 418 u32 max_burst; member 744 u32 max_burst; member
|
| /Linux-v5.4/drivers/net/xen-netback/ |
| D | netback.c | 169 unsigned long max_burst, max_credit; in tx_add_credit() local 175 max_burst = max(131072UL, queue->credit_bytes); in tx_add_credit() 182 queue->remaining_credit = min(max_credit, max_burst); in tx_add_credit()
|
| /Linux-v5.4/drivers/scsi/ |
| D | libiscsi_tcp.c | 571 if (data_length > session->max_burst) in iscsi_tcp_r2t_rsp() 574 data_length, session->max_burst); in iscsi_tcp_r2t_rsp()
|