From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Kroah-Hartman Date: Fri, 20 May 2022 07:44:13 +0200 Subject: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver In-Reply-To: References: <20220518062043.1075360-1-neal_liu@aspeedtech.com> <20220518062043.1075360-2-neal_liu@aspeedtech.com> Message-ID: List-Id: To: linux-aspeed@lists.ozlabs.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Fri, May 20, 2022 at 02:29:36AM +0000, Neal Liu wrote: > > -----Original Message----- > > From: Greg Kroah-Hartman > > Sent: Thursday, May 19, 2022 11:56 PM > > To: Neal Liu > > Cc: Rob Herring ; Krzysztof Kozlowski > > ; Joel Stanley ; Andrew > > Jeffery ; Felipe Balbi ; Sumit Semwal > > ; Christian K?nig ; > > Geert Uytterhoeven ; Li Yang ; > > linux-aspeed at lists.ozlabs.org; linux-usb at vger.kernel.org; > > devicetree at vger.kernel.org; linux-arm-kernel at lists.infradead.org; > > linux-kernel at vger.kernel.org; linux-media at vger.kernel.org; > > dri-devel at lists.freedesktop.org; linaro-mm-sig at lists.linaro.org; kernel test > > robot > > Subject: Re: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver > > > > On Wed, May 18, 2022 at 02:20:41PM +0800, Neal Liu wrote: > > > Aspeed udc is compliant with USB2.0, supports USB High Speed and Full > > > Speed, backward compatible with USB1.1. > > > > > > Supports independent DMA channel for each generic endpoint. > > > Supports 32/256 stages descriptor mode for all generic endpoints. > > > > > > This driver supports full functionality including single/multiple > > > stages descriptor mode, and exposes 1 UDC gadget driver. > > > > > > Signed-off-by: Neal Liu > > > Reported-by: kernel test robot > > > > The kernel test robot did not report that you needed to add a new driver :( > > I had received auto build test WARNING on usb/usb-testing reported from kernel test robot. > It still mentioned that if the issue is fixed, I can kindly add this tag. > Would you prefer not to add this tag for the first coming driver? Please do not add tags that do not make sense to. thanks, greg k-h 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 C3F1CC433FE for ; Fri, 20 May 2022 05:44:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345601AbiETFoU (ORCPT ); Fri, 20 May 2022 01:44:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42102 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244615AbiETFoS (ORCPT ); Fri, 20 May 2022 01:44:18 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F183E13D0F; Thu, 19 May 2022 22:44:17 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 8A80461D6D; Fri, 20 May 2022 05:44:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 69DAAC385AA; Fri, 20 May 2022 05:44:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1653025457; bh=mseK8CCtepf2Ga20exHmxu8FEYO1RmDnTjp8MjgdFRo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xYQFxcBwfiillvnR2YKUZ8gbgnTwQyAJJxpaGGzJOukd56oPWr1Du+d1srmJCKtj2 7oZa6c45zqDAektaqNIUJ829XMqRGecoN4n0fKBIwco80slIt8P0OujNaPJtnVVBX3 bbERy5dCVloC9oE6+7fBd6lE38vBJsV2OXRulLcI= Date: Fri, 20 May 2022 07:44:13 +0200 From: Greg Kroah-Hartman To: Neal Liu Cc: Rob Herring , Krzysztof Kozlowski , Joel Stanley , Andrew Jeffery , Felipe Balbi , Sumit Semwal , Christian =?iso-8859-1?Q?K=F6nig?= , Geert Uytterhoeven , Li Yang , "linux-aspeed@lists.ozlabs.org" , "linux-usb@vger.kernel.org" , "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , "linux-media@vger.kernel.org" , "dri-devel@lists.freedesktop.org" , "linaro-mm-sig@lists.linaro.org" , kernel test robot Subject: Re: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver Message-ID: References: <20220518062043.1075360-1-neal_liu@aspeedtech.com> <20220518062043.1075360-2-neal_liu@aspeedtech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org On Fri, May 20, 2022 at 02:29:36AM +0000, Neal Liu wrote: > > -----Original Message----- > > From: Greg Kroah-Hartman > > Sent: Thursday, May 19, 2022 11:56 PM > > To: Neal Liu > > Cc: Rob Herring ; Krzysztof Kozlowski > > ; Joel Stanley ; Andrew > > Jeffery ; Felipe Balbi ; Sumit Semwal > > ; Christian König ; > > Geert Uytterhoeven ; Li Yang ; > > linux-aspeed@lists.ozlabs.org; linux-usb@vger.kernel.org; > > devicetree@vger.kernel.org; linux-arm-kernel@lists.infradead.org; > > linux-kernel@vger.kernel.org; linux-media@vger.kernel.org; > > dri-devel@lists.freedesktop.org; linaro-mm-sig@lists.linaro.org; kernel test > > robot > > Subject: Re: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver > > > > On Wed, May 18, 2022 at 02:20:41PM +0800, Neal Liu wrote: > > > Aspeed udc is compliant with USB2.0, supports USB High Speed and Full > > > Speed, backward compatible with USB1.1. > > > > > > Supports independent DMA channel for each generic endpoint. > > > Supports 32/256 stages descriptor mode for all generic endpoints. > > > > > > This driver supports full functionality including single/multiple > > > stages descriptor mode, and exposes 1 UDC gadget driver. > > > > > > Signed-off-by: Neal Liu > > > Reported-by: kernel test robot > > > > The kernel test robot did not report that you needed to add a new driver :( > > I had received auto build test WARNING on usb/usb-testing reported from kernel test robot. > It still mentioned that if the issue is fixed, I can kindly add this tag. > Would you prefer not to add this tag for the first coming driver? Please do not add tags that do not make sense to. thanks, greg k-h 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 16DD7C433EF for ; Fri, 20 May 2022 05:45:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=ZWvlFdCpEqxGbVgCfl8feFPWvFuM2qviG1miQzf0uOI=; b=R8XW6izaKb4GpB U0aBx9Ozf5tZ7Z0WtB2x2OYrm1S0HIxNvxOPpogJ389IDVyUB61OtCdiUu6VKAE6XeGB/3CsdG1/q WELHlLe7Zo6TeD0kpT9Z18kK7IofkJFdehV8ZEodTcUETPG9FFdjiIxSelQACaxCByiGZmM2zo0s0 xfKuG2X5SpVgjaMZKKto4si8/iX8YL+QYT/5St5T5Vc1+FI8vQGeXUTwrvWjHqyFlCRyRJT4E8y4Z EaMPHYVPCcRrjz+ma4HrAVgFTyRAwVemGa7Eet18DqAd2wzY5W2G06ZY1yUyA4cSzNlKkrkw9LFaw weRk4H8/Yk2t+29rp76g==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nrvR1-00Ae9n-0q; Fri, 20 May 2022 05:44:23 +0000 Received: from ams.source.kernel.org ([145.40.68.75]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nrvQx-00Ae8h-Vt for linux-arm-kernel@lists.infradead.org; Fri, 20 May 2022 05:44:21 +0000 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 ams.source.kernel.org (Postfix) with ESMTPS id 460CDB82A4F; Fri, 20 May 2022 05:44:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 69DAAC385AA; Fri, 20 May 2022 05:44:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1653025457; bh=mseK8CCtepf2Ga20exHmxu8FEYO1RmDnTjp8MjgdFRo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xYQFxcBwfiillvnR2YKUZ8gbgnTwQyAJJxpaGGzJOukd56oPWr1Du+d1srmJCKtj2 7oZa6c45zqDAektaqNIUJ829XMqRGecoN4n0fKBIwco80slIt8P0OujNaPJtnVVBX3 bbERy5dCVloC9oE6+7fBd6lE38vBJsV2OXRulLcI= Date: Fri, 20 May 2022 07:44:13 +0200 From: Greg Kroah-Hartman To: Neal Liu Cc: Rob Herring , Krzysztof Kozlowski , Joel Stanley , Andrew Jeffery , Felipe Balbi , Sumit Semwal , Christian =?iso-8859-1?Q?K=F6nig?= , Geert Uytterhoeven , Li Yang , "linux-aspeed@lists.ozlabs.org" , "linux-usb@vger.kernel.org" , "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , "linux-media@vger.kernel.org" , "dri-devel@lists.freedesktop.org" , "linaro-mm-sig@lists.linaro.org" , kernel test robot Subject: Re: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver Message-ID: References: <20220518062043.1075360-1-neal_liu@aspeedtech.com> <20220518062043.1075360-2-neal_liu@aspeedtech.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220519_224420_400806_AEEBC282 X-CRM114-Status: GOOD ( 20.10 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, May 20, 2022 at 02:29:36AM +0000, Neal Liu wrote: > > -----Original Message----- > > From: Greg Kroah-Hartman > > Sent: Thursday, May 19, 2022 11:56 PM > > To: Neal Liu > > Cc: Rob Herring ; Krzysztof Kozlowski > > ; Joel Stanley ; And= rew > > Jeffery ; Felipe Balbi ; Sumit Semwal > > ; Christian K=F6nig ; > > Geert Uytterhoeven ; Li Yang ; > > linux-aspeed@lists.ozlabs.org; linux-usb@vger.kernel.org; > > devicetree@vger.kernel.org; linux-arm-kernel@lists.infradead.org; > > linux-kernel@vger.kernel.org; linux-media@vger.kernel.org; > > dri-devel@lists.freedesktop.org; linaro-mm-sig@lists.linaro.org; kernel= test > > robot > > Subject: Re: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver > > = > > On Wed, May 18, 2022 at 02:20:41PM +0800, Neal Liu wrote: > > > Aspeed udc is compliant with USB2.0, supports USB High Speed and Full > > > Speed, backward compatible with USB1.1. > > > > > > Supports independent DMA channel for each generic endpoint. > > > Supports 32/256 stages descriptor mode for all generic endpoints. > > > > > > This driver supports full functionality including single/multiple > > > stages descriptor mode, and exposes 1 UDC gadget driver. > > > > > > Signed-off-by: Neal Liu > > > Reported-by: kernel test robot > > = > > The kernel test robot did not report that you needed to add a new drive= r :( > = > I had received auto build test WARNING on usb/usb-testing reported from k= ernel test robot. > It still mentioned that if the issue is fixed, I can kindly add this tag. > Would you prefer not to add this tag for the first coming driver? Please do not add tags that do not make sense to. thanks, greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id EA040C433EF for ; Fri, 20 May 2022 05:44:27 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 2670A11B259; Fri, 20 May 2022 05:44:27 +0000 (UTC) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7AA4F11B259 for ; Fri, 20 May 2022 05:44:23 +0000 (UTC) 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 ams.source.kernel.org (Postfix) with ESMTPS id 460CDB82A4F; Fri, 20 May 2022 05:44:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 69DAAC385AA; Fri, 20 May 2022 05:44:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1653025457; bh=mseK8CCtepf2Ga20exHmxu8FEYO1RmDnTjp8MjgdFRo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xYQFxcBwfiillvnR2YKUZ8gbgnTwQyAJJxpaGGzJOukd56oPWr1Du+d1srmJCKtj2 7oZa6c45zqDAektaqNIUJ829XMqRGecoN4n0fKBIwco80slIt8P0OujNaPJtnVVBX3 bbERy5dCVloC9oE6+7fBd6lE38vBJsV2OXRulLcI= Date: Fri, 20 May 2022 07:44:13 +0200 From: Greg Kroah-Hartman To: Neal Liu Subject: Re: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver Message-ID: References: <20220518062043.1075360-1-neal_liu@aspeedtech.com> <20220518062043.1075360-2-neal_liu@aspeedtech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Felipe Balbi , kernel test robot , "linux-aspeed@lists.ozlabs.org" , "devicetree@vger.kernel.org" , Andrew Jeffery , "linux-usb@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "dri-devel@lists.freedesktop.org" , Christian =?iso-8859-1?Q?K=F6nig?= , "linaro-mm-sig@lists.linaro.org" , Rob Herring , Geert Uytterhoeven , Joel Stanley , Krzysztof Kozlowski , Li Yang , Sumit Semwal , "linux-arm-kernel@lists.infradead.org" , "linux-media@vger.kernel.org" Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Fri, May 20, 2022 at 02:29:36AM +0000, Neal Liu wrote: > > -----Original Message----- > > From: Greg Kroah-Hartman > > Sent: Thursday, May 19, 2022 11:56 PM > > To: Neal Liu > > Cc: Rob Herring ; Krzysztof Kozlowski > > ; Joel Stanley ; Andrew > > Jeffery ; Felipe Balbi ; Sumit Semwal > > ; Christian König ; > > Geert Uytterhoeven ; Li Yang ; > > linux-aspeed@lists.ozlabs.org; linux-usb@vger.kernel.org; > > devicetree@vger.kernel.org; linux-arm-kernel@lists.infradead.org; > > linux-kernel@vger.kernel.org; linux-media@vger.kernel.org; > > dri-devel@lists.freedesktop.org; linaro-mm-sig@lists.linaro.org; kernel test > > robot > > Subject: Re: [PATCH v3 1/3] usb: gadget: add Aspeed ast2600 udc driver > > > > On Wed, May 18, 2022 at 02:20:41PM +0800, Neal Liu wrote: > > > Aspeed udc is compliant with USB2.0, supports USB High Speed and Full > > > Speed, backward compatible with USB1.1. > > > > > > Supports independent DMA channel for each generic endpoint. > > > Supports 32/256 stages descriptor mode for all generic endpoints. > > > > > > This driver supports full functionality including single/multiple > > > stages descriptor mode, and exposes 1 UDC gadget driver. > > > > > > Signed-off-by: Neal Liu > > > Reported-by: kernel test robot > > > > The kernel test robot did not report that you needed to add a new driver :( > > I had received auto build test WARNING on usb/usb-testing reported from kernel test robot. > It still mentioned that if the issue is fixed, I can kindly add this tag. > Would you prefer not to add this tag for the first coming driver? Please do not add tags that do not make sense to. thanks, greg k-h