Re: [PATCH] usb: xhci: add debugfs support for ep with stream

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, Jul 15, 2020 at 10:35:29PM +0800, Li Jun wrote:
> To show the trb ring of streams, use the exsiting ring files of bulk ep
> to show trb ring of one specific stream ID, which stream ID's trb ring
> will be shown, is controlled by a new debugfs file stream_id, this is to
> avoid to create a large number of dir for every allocate stream IDs,
> another debugfs file stream_context_array is created to show all the
> allocated stream context array entries.
> 
> Signed-off-by: Li Jun <jun.li@xxxxxxx>
> ---
>  drivers/usb/host/xhci-debugfs.c | 117 +++++++++++++++++++++++++++++++++++++++-
>  drivers/usb/host/xhci-debugfs.h |  19 +++++++
>  drivers/usb/host/xhci-mem.c     |   4 +-
>  drivers/usb/host/xhci.c         |   4 ++
>  4 files changed, 142 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/host/xhci-debugfs.c b/drivers/usb/host/xhci-debugfs.c
> index 65d8de4..0e17c4b 100644
> --- a/drivers/usb/host/xhci-debugfs.c
> +++ b/drivers/usb/host/xhci-debugfs.c
> @@ -450,9 +450,10 @@ void xhci_debugfs_create_endpoint(struct xhci_hcd *xhci,
>  	if (!epriv)
>  		return;
>  
> +	epriv->show_ring = dev->eps[ep_index].ring;
>  	snprintf(epriv->name, sizeof(epriv->name), "ep%02d", ep_index);
>  	epriv->root = xhci_debugfs_create_ring_dir(xhci,
> -						   &dev->eps[ep_index].ring,
> +						   &epriv->show_ring,
>  						   epriv->name,
>  						   spriv->root);
>  	spriv->eps[ep_index] = epriv;
> @@ -474,6 +475,120 @@ void xhci_debugfs_remove_endpoint(struct xhci_hcd *xhci,
>  	kfree(epriv);
>  }
>  
> +static int xhci_stream_id_show(struct seq_file *s, void *unused)
> +{
> +	struct xhci_ep_priv	*epriv = s->private;
> +
> +	seq_printf(s, "Supported stream IDs are 1 ~ %d, trb ring to be shown is for stream id %d\n",
> +		   epriv->stream_info->num_streams - 1, epriv->stream_id);
> +
> +	return 0;
> +}
> +
> +static int xhci_stream_id_open(struct inode *inode, struct file *file)
> +{
> +	return single_open(file, xhci_stream_id_show, inode->i_private);
> +}
> +
> +static ssize_t xhci_stream_id_write(struct file *file,  const char __user *ubuf,
> +			       size_t count, loff_t *ppos)
> +{
> +	struct seq_file         *s = file->private_data;
> +	struct xhci_ep_priv	*epriv = s->private;
> +	int			ret;
> +	u16			stream_id; /* MaxPStreams + 1 <= 16 */
> +
> +	/* Decimal number */
> +	ret = kstrtou16_from_user(ubuf, count, 10, &stream_id);
> +	if (ret)
> +		return ret;
> +
> +	if (stream_id == 0 || stream_id >= epriv->stream_info->num_streams)
> +		return -EINVAL;
> +
> +	epriv->stream_id = stream_id;
> +	epriv->show_ring = epriv->stream_info->stream_rings[stream_id];
> +
> +	return count;
> +}
> +
> +static const struct file_operations stream_id_fops = {
> +	.open			= xhci_stream_id_open,
> +	.write                  = xhci_stream_id_write,
> +	.read			= seq_read,
> +	.llseek			= seq_lseek,
> +	.release		= single_release,
> +};
> +
> +static int xhci_stream_context_array_show(struct seq_file *s, void *unused)
> +{
> +	struct xhci_ep_priv	*epriv = s->private;
> +	struct xhci_stream_ctx	*stream_ctx;
> +	dma_addr_t		dma;
> +	int			id;
> +
> +	seq_printf(s, "Allocated %d streams and %d stream context array entries\n",
> +			epriv->stream_info->num_streams,
> +			epriv->stream_info->num_stream_ctxs);
> +
> +	for (id = 0; id < epriv->stream_info->num_stream_ctxs; id++) {
> +		stream_ctx = epriv->stream_info->stream_ctx_array + id;
> +		dma = epriv->stream_info->ctx_array_dma + id * 16;
> +		if (id < epriv->stream_info->num_streams)
> +			seq_printf(s, "%pad stream id %d deq %016llx\n", &dma, id,
> +				   le64_to_cpu(stream_ctx->stream_ring));
> +		else
> +			seq_printf(s, "%pad stream context entry not used deq %016llx\n",
> +				   &dma, le64_to_cpu(stream_ctx->stream_ring));
> +	}
> +
> +	return 0;
> +}
> +DEFINE_SHOW_ATTRIBUTE(xhci_stream_context_array);
> +
> +void xhci_debugfs_create_stream_files(struct xhci_hcd *xhci,
> +				      struct xhci_virt_device *dev,
> +				      int ep_index)
> +{
> +	struct xhci_slot_priv	*spriv = dev->debugfs_private;
> +	struct xhci_ep_priv	*epriv;
> +
> +	if (!spriv || !spriv->eps[ep_index] ||
> +	    !dev->eps[ep_index].stream_info)
> +		return;
> +
> +	epriv = spriv->eps[ep_index];
> +	epriv->stream_info = dev->eps[ep_index].stream_info;
> +
> +	/* Show trb ring of stream ID 1 by default */
> +	epriv->stream_id = 1;
> +	epriv->show_ring = epriv->stream_info->stream_rings[1];
> +	epriv->stream_ctx_dentry = debugfs_create_file("stream_context_array",
> +					0444, epriv->root, epriv,
> +					&xhci_stream_context_array_fops);
> +
> +	epriv->stream_id_dentry = debugfs_create_file("stream_id", 0644,
> +					epriv->root, epriv,
> +					&stream_id_fops);

Do you really need to save these files off, or could you use
'debug_remove_recursive()' to remove them all when the device goes away?

> +}
> +
> +void xhci_debugfs_remove_stream_files(struct xhci_hcd *xhci,
> +				      struct xhci_virt_device *dev,
> +				      int ep_index)
> +{
> +	struct xhci_slot_priv	*spriv = dev->debugfs_private;
> +	struct xhci_ep_priv	*epriv;
> +
> +	if (!spriv || !spriv->eps[ep_index] ||
> +	    !dev->eps[ep_index].stream_info)
> +		return;
> +
> +	epriv = spriv->eps[ep_index];
> +	epriv->show_ring = dev->eps[ep_index].ring;
> +	debugfs_remove(epriv->stream_ctx_dentry);
> +	debugfs_remove(epriv->stream_id_dentry);
> +}
> +
>  void xhci_debugfs_create_slot(struct xhci_hcd *xhci, int slot_id)
>  {
>  	struct xhci_slot_priv	*priv;
> diff --git a/drivers/usb/host/xhci-debugfs.h b/drivers/usb/host/xhci-debugfs.h
> index f7a4e24..d4d0af0 100644
> --- a/drivers/usb/host/xhci-debugfs.h
> +++ b/drivers/usb/host/xhci-debugfs.h
> @@ -91,6 +91,11 @@ struct xhci_file_map {
>  struct xhci_ep_priv {
>  	char			name[DEBUGFS_NAMELEN];
>  	struct dentry		*root;
> +	struct dentry		*stream_ctx_dentry;
> +	struct dentry		*stream_id_dentry;

As I say above, are you sure you need to save these files?

thanks,

greg k-h



[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux