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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 1045AC433EF for ; Wed, 30 Mar 2022 13:48:20 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 36E11840D8; Wed, 30 Mar 2022 15:48:18 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=nic.cz Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; secure) header.d=nic.cz header.i=@nic.cz header.b="jhC9lxZC"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id CD48F840F1; Wed, 30 Mar 2022 15:48:10 +0200 (CEST) Received: from mail.nic.cz (mail.nic.cz [IPv6:2001:1488:800:400::400]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id E44CA84092 for ; Wed, 30 Mar 2022 15:48:05 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=nic.cz Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=marek.behun@nic.cz Received: from thinkpad (unknown [172.20.6.87]) by mail.nic.cz (Postfix) with ESMTPS id 8B8CC13FA9A; Wed, 30 Mar 2022 15:48:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=nic.cz; s=default; t=1648648085; bh=fdJfdXJCy96Vyb6VDlHR9+8c/FYtCOmpZBrgw2HCj88=; h=Date:From:To; b=jhC9lxZCorsFOM/xNkcLwSYox4FtGEPvSIoK//13P6SN1VihuLWY12VWWyc1mZfw4 WHaeRcI++XZgTBjOcx2QAHoCGMsK12VMB74n2RTfvvtp5DBHdykjz7HRrcuKxjiAgX V0Sz36/issalEX98ErMK5gULXZURdEAMntRVr5P8= Date: Wed, 30 Mar 2022 15:48:04 +0200 From: Marek =?UTF-8?B?QmVow7pu?= To: Stefan Roese Cc: u-boot@lists.denx.de, Ramon Fried , Joe Hershberger , Aaron Williams , Chandrakala Chavva Subject: Re: [PATCH 1/2] net: phy: marvell: Support reg config via "marvell, reg-init" DT property Message-ID: <20220330154804.45cfb42a@thinkpad> In-Reply-To: <60e09a5a-60b4-9450-9f60-5be1f32880af@denx.de> References: <20220330083826.829473-1-sr@denx.de> <20220330141601.3225c713@thinkpad> <60e09a5a-60b4-9450-9f60-5be1f32880af@denx.de> X-Mailer: Claws Mail 3.18.0 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean On Wed, 30 Mar 2022 15:33:34 +0200 Stefan Roese wrote: > So how to continue? Add this "reg-init" "feature" for now? And perhaps > drop it once this LED configuration is possible via the way you describe > above? Or drop it once it's also dropped in the Kernel? My personal > feeling is, that supporting "reg-init" does not "hurt" and might even be > handy for some testing / debugging of network PHY setups. Add it now, maybe we will drop it sometime in future if no dts uses it anymore. Kernel will need to support it forever because of backwards compatibility with older DTBs. Marek