Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp2169799pxb; Mon, 8 Mar 2021 16:39:39 -0800 (PST) X-Google-Smtp-Source: ABdhPJyi5p202FtFys7RLtSkMg30VfUJEeP2Or6HFddD4lsKy7J5X88C8WFfonL/o6UwmMxLzxYn X-Received: by 2002:a17:907:3e8c:: with SMTP id hs12mr17633373ejc.105.1615250379333; Mon, 08 Mar 2021 16:39:39 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615250379; cv=none; d=google.com; s=arc-20160816; b=E5E70shp5ez//YXew8VV6L7luj4yKlanY4fb9ULL6m7xukckA6u0xq4BfOXAXgLQT/ 32H85uKCO4Y8HLj95+t1+I4xdlINl6go2Csc4hwdTJNhIDSGMmtRAJw48cogMIoLidRZ 4fDvrpMq8ItHF8xklm2pHKb18oGzWOO6TcwcjCLiB2fVf9pOdGms/MUnKeKdPBw656Kx dRPA4NlkRDgPFwoybhOK5yIXOqO3dLTfHV61eC+P+N2mihe3H3bzVKZloFl+pEquOKiQ NAr+zZcx+A/A0TtkSJ8n+1k041IAtBSptBme8bOenlxk4A8+EbchOGXymIFogsTlKmT3 N05Q== 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=7czqJtsWQbCjxR3ONWOBeK+KEgxxMgDGZFdageeujRg=; b=0iFFWhwqcZtcG31VGO/2Adk0q8bf532S6l5I1eABxdrBKI9HLDlCwh/jSD3A8pbtIO MK6MX1EtRRT3LqSyvEQmNInU7eU8hg0Z063T6iI64fnVRcu8FF7f0mCkkm7XC9LRJPe1 9OtAv3zpyEVsoLmv0mtT4jfgWhMBOTOQ8V/M4oxZeasASSUKLbRIAYarmWzKHaDKfIoK Oz6mBXRmjqlgzTXJtXhIFG6I4DgBM5Z5yI/qYUmfHYUz+QNFCeeSIxgJnm+5aSX7iaaW zuLM/W2L4y+KAq7khcXUihf7cev82JEmtwEr+4XOz25nG8J9vtHJk77SYMhNpDUYxuh+ lsJQ== 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 e1si7797346edr.103.2021.03.08.16.39.16; Mon, 08 Mar 2021 16:39:39 -0800 (PST) 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 S231857AbhCIAiE (ORCPT + 99 others); Mon, 8 Mar 2021 19:38:04 -0500 Received: from mx.socionext.com ([202.248.49.38]:24258 "EHLO mx.socionext.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230511AbhCIAhg (ORCPT ); Mon, 8 Mar 2021 19:37:36 -0500 Received: from unknown (HELO iyokan2-ex.css.socionext.com) ([172.31.9.54]) by mx.socionext.com with ESMTP; 09 Mar 2021 09:37:34 +0900 Received: from mail.mfilter.local (m-filter-1 [10.213.24.61]) by iyokan2-ex.css.socionext.com (Postfix) with ESMTP id 972062059035; Tue, 9 Mar 2021 09:37:34 +0900 (JST) Received: from 172.31.9.51 (172.31.9.51) by m-FILTER with ESMTP; Tue, 9 Mar 2021 09:37:34 +0900 Received: from plum.e01.socionext.com (unknown [10.213.132.32]) by kinkan2.css.socionext.com (Postfix) with ESMTP id 40D94B1D40; Tue, 9 Mar 2021 09:37:34 +0900 (JST) From: Kunihiko Hayashi To: Rob Herring , Arnd Bergmann Cc: Masami Hiramatsu , Jassi Brar , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Kunihiko Hayashi Subject: [PATCH 1/2] ARM: dts: uniphier: Change phy-mode to RGMII-ID to enable delay pins for RTL8211E Date: Tue, 9 Mar 2021 09:37:15 +0900 Message-Id: <1615250236-11349-1-git-send-email-hayashi.kunihiko@socionext.com> X-Mailer: git-send-email 2.7.4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org After applying the commit bbc4d71d6354 ("net: phy: realtek: fix rtl8211e rx/tx delay config"), the configuration register for TXDLY and RXDLY is set correctly. Although PXs2 boards have RTL8211E for gigabit network PHY, it turrned out that the phy-mode should be RGMII-ID mode. This changes 'phy-mode' property to 'rgmii-id' as default. Signed-off-by: Kunihiko Hayashi --- arch/arm/boot/dts/uniphier-pxs2.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/uniphier-pxs2.dtsi b/arch/arm/boot/dts/uniphier-pxs2.dtsi index 4d9f69a..5ba831e 100644 --- a/arch/arm/boot/dts/uniphier-pxs2.dtsi +++ b/arch/arm/boot/dts/uniphier-pxs2.dtsi @@ -583,7 +583,7 @@ clocks = <&sys_clk 6>; reset-names = "ether"; resets = <&sys_rst 6>; - phy-mode = "rgmii"; + phy-mode = "rgmii-id"; local-mac-address = [00 00 00 00 00 00]; socionext,syscon-phy-mode = <&soc_glue 0>; -- 2.7.4