Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp2569614ybt; Tue, 16 Jun 2020 09:14:46 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxp985hHkUD4FsjwPXyEbpJEr1OBtyFl8sHAfrLJJFRWEWtKUwL0ybVgwp+2fU+zTDnbOho X-Received: by 2002:aa7:c356:: with SMTP id j22mr3123081edr.59.1592324086672; Tue, 16 Jun 2020 09:14:46 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1592324086; cv=none; d=google.com; s=arc-20160816; b=enGuFRKiTps0D7OeIj+rrdFmRTa7jD/KIGOH5J5xZ92SHpHpww+Jz+upRz6FvmRx7W pfBELGORe0ri/opjIvHw+9S24k0x1YE5fGvhm4wS6cs8fnTH9O0Br/v32p2yAYCU8NsQ Wrwms2Fcw3hwdTmO1QiTt2w1omtOxDvP0ZSXjWlX45JoJNrq0KbjbInpym+KJkPbLccm dSsJkPGK3bEFMzcGKt45pAt3De/Z7oYK9ZXSBZoyUOYm0KQAI8oqTF2yk0M0wHg8ft/Z M31LQPKCejUO21mJdzkOVadbJIw5eI+WE80w3N9RJbbfYfLVXLIQVv+ul7nelfaNU9AJ gfPg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=O3eJ6m2XX+UfuQvUY64AzrpLZTnqkYc+a0B8CynSg54=; b=UMMe4SrNpFG3lc138YhdJVwqrL1V6ZBdIB0H8JBNPXjDIlwslDrEKzh+iMjkLL5FuP V9EgRGKxycDA4ROApU1M/NTv5BrLxrb1TX1x+le8xDxu7pV5yb35asb544ChbTOGU8pr wblDpN/wHwgmPRq+i39AdRyRJh39XiWJ2oaoA5TzprPQaoOLTglBVEui4SLnW0eEGbQ8 aNySnTeXhbGM8yTEL9A9qNZUYQ2/crcbinoveDXElwX6fo44DgTB0lHj0bQS2dxVXqip YQhKI/p1MPHVkcjyk2zyRiBc4LzIAJDJbu2C9m1kg5OFBKLEgYaO7QIeoIFNwm67iLyg Z6FA== 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 hb8si10851104ejb.207.2020.06.16.09.14.24; Tue, 16 Jun 2020 09:14:46 -0700 (PDT) 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 S1730204AbgFPQMm (ORCPT + 99 others); Tue, 16 Jun 2020 12:12:42 -0400 Received: from muru.com ([72.249.23.125]:58038 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732179AbgFPQMb (ORCPT ); Tue, 16 Jun 2020 12:12:31 -0400 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id CDDED8123; Tue, 16 Jun 2020 16:13:21 +0000 (UTC) Date: Tue, 16 Jun 2020 09:12:26 -0700 From: Tony Lindgren To: Drew Fustini Cc: Rob Herring , Linux-OMAP , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Grygorii Strashko , Jason Kridner , Robert Nelson , Vinod Koul Subject: Re: [PATCH V2] ARM: dts: am5729: beaglebone-ai: fix rgmii phy-mode Message-ID: <20200616161226.GD37466@atomide.com> References: <20200615155701.GA3845236@x1> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200615155701.GA3845236@x1> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Drew Fustini [200615 08:58]: > Since commit cd28d1d6e52e ("net: phy: at803x: Disable phy delay for > RGMII mode") the networking is broken on the BeagleBone AI which has > the AR8035 PHY for Gigabit Ethernet [0]. The fix is to switch from > phy-mode = "rgmii" to phy-mode = "rgmii-rxid". > > Note: Grygorii made a similar DT fix for other AM57xx boards with a > different phy in commit 820f8a870f65 ("ARM: dts: am57xx: fix networking > on boards with ksz9031 phy"). > > [0] https://git.io/Jf7PX > > Fixes: 520557d4854b ("ARM: dts: am5729: beaglebone-ai: adding device tree") > Cc: Vinod Koul > Reviewed-by: Grygorii Strashko > Signed-off-by: Robert Nelson > Signed-off-by: Drew Fustini > --- > V2: > - fix formatting of commit reference > - add Review-by: from Grygorii Thanks applying into fixes. Regards, Tony