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 817ECC001B0 for ; Sat, 22 Jul 2023 19:32:07 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8ED09863E8; Sat, 22 Jul 2023 21:32:05 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="rG269o4x"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 938C5863E7; Sat, 22 Jul 2023 21:32:04 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 2121E860AC for ; Sat, 22 Jul 2023 21:32:02 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=rogerq@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 1553C609AD; Sat, 22 Jul 2023 19:32:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C4EC2C433CA; Sat, 22 Jul 2023 19:31:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690054319; bh=8D8nLbUW2sqy7yOxHFZjvqO0eL3kvvC4H02cT8XWLlQ=; h=From:To:Cc:Subject:Date:From; b=rG269o4xx9X/Aq488XRodRXmJQVJ2sB+wO6itdE8LhybzgDpTwGZcVzFZHZKBehyL SnN0YZC1uteBTwjsroYXaoLAfj2/vYvQfoKZ4uYip2SnDL4qJ1DKBeZzdDK/YO31KF hWkcnEOWpfXZte9tYp1VpYBG/4eZbsjBd3NhhP1WucH4AYXxdlB2PNOojygdIggA+7 eJ1Iz9NVs49Nv5nXkpXERx/OgeOa9/+Vj8v2eHPrxUFNr3ZttVhoh3dmuMdKnzhADu 61G+IXvDiVBADAxtLs3wj/e16ES3y7p0T9Y747oZrPF0nsbwUyPHmHNizOvyxhwYj1 m11wy6sZ2EtWw== From: Roger Quadros To: joe.hershberger@ni.com, nm@ti.com Cc: rfried.dev@gmail.com, r-gunasekaran@ti.com, s-vadapalli@ti.com, mripard@kernel.org, sjg@chromium.org, pbrobinson@gmail.com, srk@ti.com, u-boot@lists.denx.de, Roger Quadros Subject: [PATCH v2 0/4] net: ti: am65-cpsw-nuss: Drop custom properties Date: Sat, 22 Jul 2023 22:31:47 +0300 Message-Id: <20230722193151.117345-1-rogerq@kernel.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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.8 at phobos.denx.de X-Virus-Status: Clean Hi, This series gets rid of 2 custom properties (mac_efuse and cpsw-phy-sel) that were used in u-boot for the cpsw3g node. This makes it easier for us to have u-boot DT in sync with Linux. Last 2 patches are RFC so they can come separately. i.e. squashed with DT cleanup series from Nishanth. cheers, -roger Changelog: v2: - drop enabling CONFIG_SYSCON from defconfig. Use imply in Kconfig instead. - add patch to drop cpsw-phy-sel custom DT property. Roger Quadros (4): net: ti: am65-cpsw-nuss: Use approved property to get efuse address net: ti: am65-cpsw-nuss: Get port mode register from standard "phys" property arm: dts: k3-am625-sk-u-boot.dtsi: drop mac_efuse arm: dts: k3-am625-sk-u-boot.dtsi: drop cpsw-phy-sel property arch/arm/dts/k3-am625-sk-u-boot.dtsi | 10 --- drivers/net/ti/Kconfig | 1 + drivers/net/ti/am65-cpsw-nuss.c | 115 +++++++++++++++++---------- 3 files changed, 74 insertions(+), 52 deletions(-) -- 2.34.1