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 9C445C433FE for ; Sun, 20 Nov 2022 23:42:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229735AbiKTXmy (ORCPT ); Sun, 20 Nov 2022 18:42:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47200 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229498AbiKTXmw (ORCPT ); Sun, 20 Nov 2022 18:42:52 -0500 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 09C2A13E35; Sun, 20 Nov 2022 15:42:51 -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=3TiYJwh6WLGjngXJXq9QOuYOjjjU6e7ZQDDyVdCxrBc=; b=TaX2Qp5iJY8V4EU+rHut+AlB7T MVzcV4ldtP1TlXSubk9wVTIpULARgYL8V1zRrA+CqWAscYYVwjamNJduUKZUpgzmRuzZSM6vi6SNW hFWWV4EaqXSRmdRHEmjawx2/zRymExa8e+d+aHZatov+FCyGL2vdEiPhnDlUXjFZB3/w=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1owtx0-002xBP-NF; Mon, 21 Nov 2022 00:42:14 +0100 Date: Mon, 21 Nov 2022 00:42:14 +0100 From: Andrew Lunn To: Renze Nicolai Cc: Rob Herring , Krzysztof Kozlowski , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Maxime Ripard , Andre Przywara , Conley Lee , krzysztof.kozlowski@linaro.org, linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org Subject: Re: [PATCH 2/2] arm64: allwinner: a64: add device tree for SOPINE on Pine64 Clusterboard Message-ID: References: <3351526.aeNJFYEL58@werkpc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3351526.aeNJFYEL58@werkpc> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > +&emac { > + allwinner,tx-delay-ps = <500>; > +}; Is this direct MAC to MAC without a PHY in the middle? And RGMII? 500ps seems odd. It is normally 1000ps. And you need to specify a delay for both Rx and Tx. I could understand &emac { allwinner,tx-delay-ps = <500>; allwinner,rx-delay-ps = <500>; }; then each end adds 1/2 the delay on both Rx and Tx. Andrew