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 94E6AC25B0E for ; Thu, 18 Aug 2022 22:05:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242058AbiHRWFW (ORCPT ); Thu, 18 Aug 2022 18:05:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41696 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232990AbiHRWFU (ORCPT ); Thu, 18 Aug 2022 18:05:20 -0400 Received: from vps0.lunn.ch (vps0.lunn.ch [185.16.172.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D94DCD21CF; Thu, 18 Aug 2022 15:05:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=BdJqIucLbi9o3QaMa3B8sDzBNqkfA+bcJUq1V4s4ed4=; b=sBSENcEkCgJ5czCW1/gueEMnbY v1JC40nhA8Ok7AftpXLUtxGUd+1zyP8fxvjgbqMbpJxfwOmWMwBpZtU340GFvT4Iw22r/+2/R2Z/5 r2t/Ri+frehR2H/+BkM6N/EOo7WKFm0uI7kK3oaLsiiwjJPKDj+8bLShaAfwhF+qr1Aw=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1oOndb-00DqjU-Fv; Fri, 19 Aug 2022 00:05:15 +0200 Date: Fri, 19 Aug 2022 00:05:15 +0200 From: Andrew Lunn To: Maxime Chevallier Cc: davem@davemloft.net, Rob Herring , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, thomas.petazzoni@bootlin.com, Florian Fainelli , Heiner Kallweit , Russell King , linux-arm-kernel@lists.infradead.org, Richard Cochran , Horatiu.Vultur@microchip.com, Allan.Nielsen@microchip.com, UNGLinuxDriver@microchip.com Subject: Re: [PATCH net-next RESEND v4 4/4] net: lan966x: Add QUSGMII support for lan966x Message-ID: References: <20220817123255.111130-1-maxime.chevallier@bootlin.com> <20220817123255.111130-5-maxime.chevallier@bootlin.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220817123255.111130-5-maxime.chevallier@bootlin.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Aug 17, 2022 at 02:32:55PM +0200, Maxime Chevallier wrote: > The Lan996x controller supports the QUSGMII mode, which is very similar > to QSGMII in the way it's configured and the autonegociation > capababilities it provides. > > This commit adds support for that mode, treating it most of the time > like QSGMII, making sure that we do configure the PCS how we should. > > Signed-off-by: Maxime Chevallier Reviewed-by: Andrew Lunn Andrew