From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4A451C433F5 for ; Tue, 26 Apr 2022 10:34:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1349151AbiDZKhN (ORCPT ); Tue, 26 Apr 2022 06:37:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33914 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241090AbiDZKgt (ORCPT ); Tue, 26 Apr 2022 06:36:49 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 717A91A83D; Tue, 26 Apr 2022 03:19:59 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 556D2CE1C0F; Tue, 26 Apr 2022 10:19:57 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 755B4C385A4; Tue, 26 Apr 2022 10:19:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1650968395; bh=W55oZtjkPnHmK771cWtrQXyrIgoUqcWYB7QpwB4zE9U=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=PapPCGXt7mVgligOICQGKzj7IMeeHb1lIKzq/Ap3eOXOLSCHXmQq7EyvtRjyj4IIp TIXK2zk0gO3/E2Rpfx5FQ3bhOUpzQqKog8yXHKq2kFGtmurd3ktJOo0L265PLw44B6 KaP37dhJ196zWAXCFlDeivKQ+IZq9BbOXB1BtphY= Date: Tue, 26 Apr 2022 12:19:51 +0200 From: Greg Kroah-Hartman To: Daehwan Jung Cc: Mathias Nyman , "open list:USB XHCI DRIVER" , open list , Howard Yen , Jack Pham , Puma Hsu , "J . Avila" , sc.suh@samsung.com, Krzysztof Kozlowski Subject: Re: [PATCH v4 0/5] add xhci-exynos driver Message-ID: References: <1650964728-175347-1-git-send-email-dh10.jung@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1650964728-175347-1-git-send-email-dh10.jung@samsung.com> Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org On Tue, Apr 26, 2022 at 06:18:43PM +0900, Daehwan Jung wrote: > This patchset is for Samsung Exynos xhci host conroller. It uses xhci-plat > driver mainly and extends some functions by xhci hooks and overrides. > > This driver supports USB offload which makes Co-processor to use > some memories of xhci. Especially it's useful for USB Audio scenario. > Audio stream would get shortcut because Co-processor directly write/read > data in xhci memories. It could get speed-up using faster memory like SRAM. > That's why this gives vendors flexibilty of memory management. This feature > is done with xhci hooks and overrides. > > Changes in v2 : > - Fix commit message by adding Signed-off-by in each patch. > - Fix conflict on latest. Thanks for reworking these and submitting them. I have some comments on the individual commits from a non-xhci-knowledge point of view. greg k-h