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 DC0C4C05027 for ; Fri, 3 Feb 2023 14:13:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232700AbjBCOM7 (ORCPT ); Fri, 3 Feb 2023 09:12:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55036 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233065AbjBCOMb (ORCPT ); Fri, 3 Feb 2023 09:12:31 -0500 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B7A631EBDB; Fri, 3 Feb 2023 06:10:52 -0800 (PST) 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=+WH7VJ9ND/1v/0aCLXgBANRi0NIzyJ1wTqtN9ZDhZj0=; b=fIup/wPpDa41mxDnPJ8ns94Rbb a0fBPiiaSoivpGrzzPyRj4l7XDxbmD577qMeTbQM/3yw0assltKmE8T8YjqrqKaZY2jUdsKUCYJMd hELsL527i/b2Dhgdnjs1Ibq17La59+1+USIBHspASs2TXsyt8xJJyRysKGP3c1pMEhas=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1pNwc1-0040Ke-IW; Fri, 03 Feb 2023 15:00:21 +0100 Date: Fri, 3 Feb 2023 15:00:21 +0100 From: Andrew Lunn To: Daniel Golle Cc: netdev@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Russell King , Heiner Kallweit , Lorenzo Bianconi , Mark Lee , John Crispin , Felix Fietkau , AngeloGioacchino Del Regno , Matthias Brugger , DENG Qingfang , Landen Chao , Sean Wang , Paolo Abeni , Jakub Kicinski , Eric Dumazet , "David S. Miller" , Vladimir Oltean , Florian Fainelli , Jianhui Zhao , =?iso-8859-1?Q?Bj=F8rn?= Mork Subject: Re: [PATCH 1/9] net: ethernet: mtk_eth_soc: add support for MT7981 SoC Message-ID: References: <301fa3e888d686283090d58a060579d8c2a5bebb.1675407169.git.daniel@makrotopia.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <301fa3e888d686283090d58a060579d8c2a5bebb.1675407169.git.daniel@makrotopia.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 03, 2023 at 07:00:21AM +0000, Daniel Golle wrote: > The MediaTek MT7981 SoC comes two 1G/2.5G SGMII, just like MT7986. > > In addition MT7981 comes with a built-in 1000Base-T PHY which can be > used with GMAC1. > > As many MT7981 boards make use of swapping SGMII phase and neutral, add > new device-tree attribute 'mediatek,pn_swap' to support them. Is this new property documented in the device tree binding? Andrew