Home
last modified time | relevance | path

Searched refs:stream_info (Results 1 – 19 of 19) sorted by relevance

/drivers/usb/cdns3/
A Dcdnsp-mem.c521 pep->stream_info.ctx_array_dma); in cdnsp_free_stream_ctx()
529 pep->stream_info.num_stream_ctxs; in cdnsp_alloc_stream_ctx()
566 struct cdnsp_stream_info *stream_info; in cdnsp_alloc_stream_info() local
573 stream_info = &pep->stream_info; in cdnsp_alloc_stream_info()
574 stream_info->num_streams = num_streams; in cdnsp_alloc_stream_info()
581 if (!stream_info->stream_rings) in cdnsp_alloc_stream_info()
586 if (!stream_info->stream_ctx_array) in cdnsp_alloc_stream_info()
636 kfree(pep->stream_info.stream_rings); in cdnsp_alloc_stream_info()
645 struct cdnsp_stream_info *stream_info = &pep->stream_info; in cdnsp_free_stream_info() local
661 if (stream_info->stream_ctx_array) in cdnsp_free_stream_info()
[all …]
A Dcdnsp-ring.c293 if (pep->stream_info.drbls_count >= 2) in cdnsp_ring_ep_doorbell()
296 pep->stream_info.drbls_count++; in cdnsp_ring_ep_doorbell()
351 struct cdnsp_stream_info *stream_info; in cdnsp_ring_doorbell_for_active_rings() local
365 stream_info = &pep->stream_info; in cdnsp_ring_doorbell_for_active_rings()
371 if (stream_info->drbls_count >= 2) in cdnsp_ring_doorbell_for_active_rings()
735 pep->stream_info.td_count--; in cdnsp_remove_request()
915 preq->pep->stream_info.td_count--; in cdnsp_td_cleanup()
1173 ep->stream_info.drbls_count--; in cdnsp_process_bulk_intr_td()
1200 pep->stream_info.first_prime_det = 1; in cdnsp_handle_tx_nrdy()
1212 pep->stream_info.drbls_count--; in cdnsp_handle_tx_nrdy()
[all …]
A Dcdnsp-trace.h55 __entry->num_streams = pep->stream_info.num_streams;
56 __entry->td_count = pep->stream_info.td_count;
57 __entry->first_prime_det = pep->stream_info.first_prime_det;
58 __entry->drbls_count = pep->stream_info.drbls_count;
A Dcdnsp-gadget.c782 struct cdnsp_stream_info *stream_info) in cdnsp_setup_streams_ep_input_ctx() argument
790 max_primary_streams = fls(stream_info->num_stream_ctxs) - 2; in cdnsp_setup_streams_ep_input_ctx()
794 ep_ctx->deq = cpu_to_le64(stream_info->ctx_array_dma); in cdnsp_setup_streams_ep_input_ctx()
831 cdnsp_setup_streams_ep_input_ctx(pdev, pep->in_ctx, &pep->stream_info); in cdnsp_alloc_streams()
834 pep->stream_info.td_count = 0; in cdnsp_alloc_streams()
835 pep->stream_info.first_prime_det = 0; in cdnsp_alloc_streams()
A Dcdnsp-gadget.h837 struct cdnsp_stream_info stream_info; member
/drivers/usb/host/
A Dxhci-mem.c630 stream_info = kzalloc_node(sizeof(*stream_info), mem_flags, in xhci_alloc_stream_info()
632 if (!stream_info) in xhci_alloc_stream_info()
642 if (!stream_info->stream_rings) in xhci_alloc_stream_info()
697 return stream_info; in xhci_alloc_stream_info()
710 stream_info->num_stream_ctxs, in xhci_alloc_stream_info()
712 stream_info->ctx_array_dma); in xhci_alloc_stream_info()
716 kfree(stream_info); in xhci_alloc_stream_info()
768 if (!stream_info) in xhci_free_stream_info()
788 kfree(stream_info); in xhci_free_stream_info()
892 if (dev->eps[i].stream_info) in xhci_free_virt_device()
[all …]
A Dxhci-debugfs.c472 if (!epriv->stream_info) in xhci_stream_id_show()
494 if (!epriv->stream_info) in xhci_stream_id_write()
526 if (!epriv->stream_info) in xhci_stream_context_array_show()
530 epriv->stream_info->num_streams, in xhci_stream_context_array_show()
531 epriv->stream_info->num_stream_ctxs); in xhci_stream_context_array_show()
534 stream_ctx = epriv->stream_info->stream_ctx_array + id; in xhci_stream_context_array_show()
535 dma = epriv->stream_info->ctx_array_dma + id * 16; in xhci_stream_context_array_show()
536 if (id < epriv->stream_info->num_streams) in xhci_stream_context_array_show()
556 !dev->eps[ep_index].stream_info) in xhci_debugfs_create_stream_files()
560 epriv->stream_info = dev->eps[ep_index].stream_info; in xhci_debugfs_create_stream_files()
[all …]
A Dxhci-debugfs.h94 struct xhci_stream_info *stream_info; member
A Dxhci-ring.c591 for (stream_id = 1; stream_id < ep->stream_info->num_streams; in ring_doorbell_for_active_rings()
593 struct xhci_stream_info *stream_info = ep->stream_info; in ring_doorbell_for_active_rings() local
594 if (!list_empty(&stream_info->stream_rings[stream_id]->td_list)) in ring_doorbell_for_active_rings()
635 if (!ep->stream_info) in xhci_virt_ep_to_ring()
638 if (stream_id == 0 || stream_id >= ep->stream_info->num_streams) { in xhci_virt_ep_to_ring()
644 return ep->stream_info->stream_rings[stream_id]; in xhci_virt_ep_to_ring()
681 st_ctx = &ep->stream_info->stream_ctx_array[stream_id]; in xhci_get_hw_deq()
1337 for (stream_id = 1; stream_id < ep->stream_info->num_streams; in xhci_kill_endpoint_urbs()
1339 ring = ep->stream_info->stream_rings[stream_id]; in xhci_kill_endpoint_urbs()
1444 stream_ctx = &ep->stream_info->stream_ctx_array[stream_id]; in xhci_handle_cmd_set_deq()
[all …]
A Dxhci.c3032 xhci_free_stream_info(xhci, ep->stream_info); in xhci_check_bw_drop_ep_streams()
3033 ep->stream_info = NULL; in xhci_check_bw_drop_ep_streams()
3662 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci, in xhci_alloc_streams()
3666 if (!vdev->eps[ep_index].stream_info) in xhci_alloc_streams()
3683 vdev->eps[ep_index].stream_info); in xhci_alloc_streams()
3725 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info); in xhci_alloc_streams()
3726 vdev->eps[ep_index].stream_info = NULL; in xhci_alloc_streams()
3816 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info); in xhci_free_streams()
3817 vdev->eps[ep_index].stream_info = NULL; in xhci_free_streams()
4024 xhci_free_stream_info(xhci, ep->stream_info); in xhci_discover_or_reset_device()
[all …]
A Dxhci.h657 struct xhci_stream_info *stream_info; member
1834 struct xhci_stream_info *stream_info);
1837 struct xhci_stream_info *stream_info);
A Dxhci-hub.c540 for (s = 1; s < ep->stream_info->num_streams; s++) in xhci_ring_device()
/drivers/staging/media/atomisp/pci/
A Datomisp_cmd.c3505 stream_info->isys_info[i].input_format; in __atomisp_update_stream_env()
3507 stream_info->isys_info[i].width; in __atomisp_update_stream_env()
3509 stream_info->isys_info[i].height; in __atomisp_update_stream_env()
3518 stream_info->enable = 1; in __atomisp_init_stream_info()
3519 stream_info->stream = stream_index; in __atomisp_init_stream_info()
3520 stream_info->ch_id = 0; in __atomisp_init_stream_info()
3521 stream_info->isys_configs = 0; in __atomisp_init_stream_info()
3523 stream_info->isys_info[i].input_format = 0; in __atomisp_init_stream_info()
3524 stream_info->isys_info[i].width = 0; in __atomisp_init_stream_info()
3525 stream_info->isys_info[i].height = 0; in __atomisp_init_stream_info()
[all …]
A Datomisp_compat_css20.h56 struct ia_css_stream_info stream_info; member
A Dia_css_stream_public.h193 struct ia_css_stream_info *stream_info);
A Datomisp_fops.c314 if (asd->stream_env[ATOMISP_INPUT_STREAM_GENERAL].stream_info. in atomisp_q_video_buffers_to_css()
A Datomisp_compat_css20.c453 &stream_env->stream_info) != 0) { in __create_stream()
1129 if (asd->stream_env[stream_id].stream_info. in atomisp_css_allocate_stat_buffers()
1132 &asd->stream_env[stream_id].stream_info.metadata_info); in atomisp_css_allocate_stat_buffers()
1389 stream_info.metadata_info.size, GFP_KERNEL); in atomisp_alloc_metadata_output_buf()
A Dsh_css.c8318 struct ia_css_stream_info *stream_info) in ia_css_stream_get_info() argument
8322 assert(stream_info); in ia_css_stream_get_info()
8324 *stream_info = stream->info; in ia_css_stream_get_info()
/drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_pmo/
A Ddml2_pmo_dcn4_fams2.c1670 …const struct core_stream_support_info *stream_info = &display_config->mode_support_result.cfg_supp… in build_fams2_meta_per_stream() local
1767 stream_info->phantom_min_v_active; in build_fams2_meta_per_stream()
1772 stream_info->phantom_v_startup + in build_fams2_meta_per_stream()

Completed in 87 milliseconds