From patchwork Thu Aug 8 09:38:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: FUKAUMI Naoki X-Patchwork-Id: 13757145 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D948DC52D73 for ; Thu, 8 Aug 2024 09:38:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=WbwnUzj+fqt/+ftF046LV8y8uyktbfYHCBgnwfHN2aE=; b=yyJAIz1DzKfxNg PIdAlOcFafyQS5eWRH3b+nXCUjrN9xpsuAkjEOjCdHIf25n2RES0qCiMwDB2y9mfuowKtpPSfnWRs 1K7YO9qWmhCuH2YLlP+x7x1FO3dmZKdJhynzvrEHDm4Sssxp74oWq8LPNM2cBD8kq0ricNn1knr6E fBrHgQZTNMF3qmQGyIOcQggjtCuSQdQRYA6C25FgToKgHeF3wP0geGpEnOI0+KfPKSXQ/7Cm7t842 6O2vFvvGwCHFxNrXgU7xrwAe2FqdYb2PSxxj7wcjPNiivfD+iV3EoZUmZedIZ16KmA/npLoclS4qf IvzIJw88RYmt7zBpPGnw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sbzbX-00000007kHx-1qjp; Thu, 08 Aug 2024 09:38:43 +0000 Received: from sakura.naobsd.org ([160.16.200.221] helo=mail.naobsd.org) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sbzbR-00000007kEn-1S1U for linux-rockchip@lists.infradead.org; Thu, 08 Aug 2024 09:38:41 +0000 Received: from secure.fukaumi.org ([10.0.0.2]) by mail.naobsd.org (8.14.4/8.14.4/Debian-4.1ubuntu1.1) with ESMTP id 4789cSE4030905; Thu, 8 Aug 2024 18:38:30 +0900 From: FUKAUMI Naoki To: heiko@sntech.de Cc: robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org, devicetree@vger.kernel.org, linux-rockchip@lists.infradead.org, FUKAUMI Naoki Subject: [PATCH 03/10] arm64: dts: rockchip: standardize the definition of LEDs for Radxa ROCK 4C+ Date: Thu, 8 Aug 2024 18:38:01 +0900 Message-ID: <20240808093808.1740-4-naoki@radxa.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240808093808.1740-1-naoki@radxa.com> References: <20240808093808.1740-1-naoki@radxa.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240808_023837_618658_D8078C54 X-CRM114-Status: UNSURE ( 8.37 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-rockchip@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Upstream kernel work for Rockchip platforms List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "Linux-rockchip" Errors-To: linux-rockchip-bounces+linux-rockchip=archiver.kernel.org@lists.infradead.org - sort properties - add default-state - change function for led-1 from STATUS to HEARTBEAT Signed-off-by: FUKAUMI Naoki --- arch/arm64/boot/dts/rockchip/rk3399-rock-4c-plus.dts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3399-rock-4c-plus.dts b/arch/arm64/boot/dts/rockchip/rk3399-rock-4c-plus.dts index d4b4dced3e39..7454bfb76a7d 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399-rock-4c-plus.dts +++ b/arch/arm64/boot/dts/rockchip/rk3399-rock-4c-plus.dts @@ -37,16 +37,18 @@ leds { /* USER_LED1 */ led-0 { - function = LED_FUNCTION_POWER; color = ; + default-state = "on"; + function = LED_FUNCTION_POWER; gpios = <&gpio3 RK_PD4 GPIO_ACTIVE_LOW>; linux,default-trigger = "default-on"; }; /* USER_LED2 */ led-1 { - function = LED_FUNCTION_STATUS; color = ; + default-state = "on"; + function = LED_FUNCTION_HEARTBEAT; gpios = <&gpio3 RK_PD5 GPIO_ACTIVE_HIGH>; linux,default-trigger = "heartbeat"; };