Received: by 2002:a05:6a10:1d13:0:0:0:0 with SMTP id pp19csp211292pxb; Thu, 2 Sep 2021 02:23:10 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzNy1QNd+ZTUS8aWgKBWXNJoZCWikZr1+JSBfc6N3acjSz2PTjoIl/Blfw9J8pE7c5sxY9w X-Received: by 2002:a17:906:bc89:: with SMTP id lv9mr2789431ejb.110.1630574589633; Thu, 02 Sep 2021 02:23:09 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1630574589; cv=none; d=google.com; s=arc-20160816; b=TvWsT5ksvAQCbbT5PSnLkZ4n/CDK4tfho/hQF0KAZSz/29ff5h6RZpNvthdjtBpNaG lwLFt52gfKugvMgFjXoPCwepxsBJcUZJk+hSaOGrQ+tC/cFFJptGQ902IB0/mCeK5qCf TK0bB4OngX09WievuhGIANjqjCU/HQCP5K6nfecFsji/09MPJqqHkGoZOh+gn2Pu4s8g /74lsVGWBZwBV0h1aJLCXr1/vuG3XR8Fx3dvIpLhMuyPVv4JAxhmGW893g5gT++sSWnY MlVMpuI5bligfruC/MOq964w/pUyZrx1NwCow3tNNX+VOn6SyknYEQdyb32TnZ3pCpzb p9cA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:message-id:date:subject:cc:to:from; bh=WqU8mZ9udrfILHkj9gf39y5XCuIT10OKBHANaS8aih0=; b=qa7eiueP9tttKHOMpVUG4LI25+b6k+wW3rF9MPwrKlFiqq7sCdUoBWLCCUkxOg5zxj Vqs68PJhwRxl4qtK9eiPXqX3UQJfIQtot/GdZFinWj1zfTY1f+OxjgxuaFd4o/nmDtJ1 CCmZjSQbg89tbagZ93YLzQyVwmUD45uLgRK0N3s8uE9s94r/8dDlxmdFAr8HbcVc3oPH sbpoHHwnz01VNewxCbsemg999YJJNvjN268uvCW7fhLCYKlxiB0iygiEFsmGw16GXGiR oGBCv+HCJMl6rSb5pnowpjImrgWwncnVNjrJdCi8Q8/fnBFGxAveclC5IOPPRvw2nZb9 pV+w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id dp12si1424569ejc.300.2021.09.02.02.22.23; Thu, 02 Sep 2021 02:23:09 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245121AbhIBJUq (ORCPT + 99 others); Thu, 2 Sep 2021 05:20:46 -0400 Received: from lgeamrelo13.lge.com ([156.147.23.53]:38474 "EHLO lgeamrelo11.lge.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S245168AbhIBJUp (ORCPT ); Thu, 2 Sep 2021 05:20:45 -0400 Received: from unknown (HELO lgeamrelo04.lge.com) (156.147.1.127) by 156.147.23.53 with ESMTP; 2 Sep 2021 17:49:44 +0900 X-Original-SENDERIP: 156.147.1.127 X-Original-MAILFROM: kyeongdon.kim@lge.com Received: from unknown (HELO localhost.localdomain) (10.159.40.99) by 156.147.1.127 with ESMTP; 2 Sep 2021 17:49:44 +0900 X-Original-SENDERIP: 10.159.40.99 X-Original-MAILFROM: kyeongdon.kim@lge.com From: Kyeongdon Kim To: laurent.pinchart@ideasonboard.com Cc: mchehab@kernel.org, linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, Kyeongdon Kim Subject: [PATCH] media: uvcvideo: use dynamic allocation for uvc_copy_op Date: Thu, 2 Sep 2021 17:49:40 +0900 Message-Id: <20210902084940.15285-1-kyeongdon.kim@lge.com> X-Mailer: git-send-email 2.10.2 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There are some issues to handle frame throughput with camera devices Using devices: - Logitech Webcam - Intel(R) RealSense(TM) Depth Camera To improve efficiency, and maximise throughput, use dynamic allocation for uvc_copy_op. Change from struct uvc_copy_op copy_operations[UVC_MAX_PACKETS]; to struct uvc_copy_op *copy_operations; Now, only tested bulk video options. On test device & own debug log to check frame duration(us), refer to test result the below: Use copy_operations[UVC_MAX_PACKETS] [UVC] Check time duration(us) : 64732 / 66000 [UVC] Check time duration(us) : 67452 / 66000 [UVC] Check time duration(us) : 67413 / 66000 [UVC] Check time duration(us) : 66713 / 66000 [UVC] Check time duration(us) : 67967 / 66000 Use *copy_operations [UVC] Check time duration(us) : 30804 / 66000 [UVC] Check time duration(us) : 38642 / 66000 [UVC] Check time duration(us) : 26011 / 66000 [UVC] Check time duration(us) : 30116 / 66000 [UVC] Check time duration(us) : 29265 / 66000 Signed-off-by: Kyeongdon Kim --- drivers/media/usb/uvc/uvc_video.c | 52 ++++++++++++++++++++++++++++++++++++--- drivers/media/usb/uvc/uvcvideo.h | 3 ++- 2 files changed, 51 insertions(+), 4 deletions(-) diff --git a/drivers/media/usb/uvc/uvc_video.c b/drivers/media/usb/uvc/uvc_video.c index e164646..32bc98e 100644 --- a/drivers/media/usb/uvc/uvc_video.c +++ b/drivers/media/usb/uvc/uvc_video.c @@ -1614,6 +1614,33 @@ static void uvc_video_complete(struct urb *urb) queue_work(stream->async_wq, &uvc_urb->work); } +static void uvc_free_urb_cop(struct uvc_streaming *stream) +{ + for_each_uvc_urb(uvc_urb, stream) { + if (uvc_urb->copy_operations) { + kfree(uvc_urb->copy_operations); + uvc_urb->copy_operations = NULL; + } + } +} + +static int uvc_alloc_urb_cop(struct uvc_streaming *stream, gfp_t gfp_flags) +{ + int max_packet = stream->urb_max_packets; + + for_each_uvc_urb(uvc_urb, stream) { + uvc_urb->copy_operations + = kcalloc(max_packet, sizeof(struct uvc_copy_op), gfp_flags); + if (uvc_urb->copy_operations == NULL) + goto error; + } + return 0; +error: + uvc_free_urb_cop(stream); + + return -ENOMEM; +} + /* * Free transfer buffers. */ @@ -1687,8 +1714,8 @@ static int uvc_alloc_urb_buffers(struct uvc_streaming *stream, * payloads across multiple URBs. */ npackets = DIV_ROUND_UP(size, psize); - if (npackets > UVC_MAX_PACKETS) - npackets = UVC_MAX_PACKETS; + if (npackets > stream->urb_max_packets) + npackets = stream->urb_max_packets; /* Retry allocations until one succeed. */ for (; npackets > 1; npackets /= 2) { @@ -1744,8 +1771,10 @@ static void uvc_video_stop_transfer(struct uvc_streaming *stream, uvc_urb->urb = NULL; } - if (free_buffers) + if (free_buffers) { uvc_free_urb_buffers(stream); + uvc_free_urb_cop(stream); + } } /* @@ -1790,10 +1819,18 @@ static int uvc_init_video_isoc(struct uvc_streaming *stream, psize = uvc_endpoint_max_bpi(stream->dev->udev, ep); size = stream->ctrl.dwMaxVideoFrameSize; + stream->urb_max_packets = UVC_MAX_PACKETS; + npackets = uvc_alloc_urb_buffers(stream, size, psize, gfp_flags); if (npackets == 0) return -ENOMEM; + if (uvc_alloc_urb_cop(stream, gfp_flags) != 0) { + uvc_dbg(stream->dev, VIDEO, + "Failed to init URBs copy operations.\n"); + return -ENOMEM; + } + size = npackets * psize; for_each_uvc_urb(uvc_urb, stream) { @@ -1842,11 +1879,18 @@ static int uvc_init_video_bulk(struct uvc_streaming *stream, psize = usb_endpoint_maxp(&ep->desc); size = stream->ctrl.dwMaxPayloadTransferSize; stream->bulk.max_payload_size = size; + stream->urb_max_packets = DIV_ROUND_UP(size, psize); npackets = uvc_alloc_urb_buffers(stream, size, psize, gfp_flags); if (npackets == 0) return -ENOMEM; + if (uvc_alloc_urb_cop(stream, gfp_flags) != 0) { + uvc_dbg(stream->dev, VIDEO, + "Failed to init URBs copy operations.\n"); + return -ENOMEM; + } + size = npackets * psize; if (usb_endpoint_dir_in(&ep->desc)) @@ -2147,6 +2191,8 @@ int uvc_video_init(struct uvc_streaming *stream) } } + stream->urb_max_packets = UVC_MAX_PACKETS; + /* Prepare asynchronous work items. */ for_each_uvc_urb(uvc_urb, stream) INIT_WORK(&uvc_urb->work, uvc_video_copy_data_work); diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h index cce5e38..00cf6c9 100644 --- a/drivers/media/usb/uvc/uvcvideo.h +++ b/drivers/media/usb/uvc/uvcvideo.h @@ -561,7 +561,7 @@ struct uvc_urb { struct sg_table *sgt; unsigned int async_operations; - struct uvc_copy_op copy_operations[UVC_MAX_PACKETS]; + struct uvc_copy_op *copy_operations; struct work_struct work; }; @@ -616,6 +616,7 @@ struct uvc_streaming { struct uvc_urb uvc_urb[UVC_URBS]; unsigned int urb_size; + unsigned int urb_max_packets; u32 sequence; u8 last_fid; -- 2.10.2