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 E9159C433EF for ; Wed, 20 Apr 2022 17:56:02 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id D32F183E92; Wed, 20 Apr 2022 19:55:34 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=lexina.in 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=lexina.in header.i=@lexina.in header.b="Lzi0nbTj"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 3F94083E72; Wed, 20 Apr 2022 19:55:21 +0200 (CEST) Received: from mx.msync.work (mx.msync.work [185.250.0.168]) (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 2C47483E83 for ; Wed, 20 Apr 2022 19:55:13 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=lexina.in Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=adeep@lexina.in Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 48727454B0; Wed, 20 Apr 2022 17:55:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lexina.in; s=dkim; t=1650477312; h=from:subject:date:message-id:to:mime-version: content-transfer-encoding:in-reply-to:references; bh=bmnaoWXZLCIjUnMK61K8on4MKuYnakE+ZVh2wzJyGtQ=; b=Lzi0nbTjul/kfaGkaGXdJ017Yc3QUUoTNF6Ffp6nwZWUOBsXIvldkPdmPqcZKES66yc8XL 8aC6D2uu4W3LCm/ZansdXHBJT5lEg2RcG4AuTERRkFrGldlG0LKmcvdLCBv2SuvVor0qzA y2IJp0gWszocRbj/2VzaZ8v/I9p9Gqg3JsiBHwD0g2TomgAfa6LQxx/TB5diRARpeSBLvU ufvwWbxcUk14I1SFCWeJtaWAXMiyNdYTAYiGZWo5qrkCVDy2KWybE7i1N5NYDgK7094KLu exFCmiGwACX5njxuZO4oqqQZeOGmruCgl8Ei8TwYJuUoHOPvd1TrpGXU1ruPXw== From: Vyacheslav Bocharov To: Neil Armstrong , Lukasz Majewski , Sean Anderson , u-boot@lists.denx.de, u-boot-amlogic@groups.io Subject: [PATCH 4/5] board: amlogic: jethub j100: enable saradc in dts Date: Wed, 20 Apr 2022 20:55:01 +0300 Message-Id: <20220420175502.2449249-5-adeep@lexina.in> In-Reply-To: <20220420175502.2449249-1-adeep@lexina.in> References: <20220420175502.2449249-1-adeep@lexina.in> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 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 Prepare to use ADC channel 1 to check the hardware revision of the board. Signed-off-by: Vyacheslav Bocharov --- arch/arm/dts/meson-axg-jethome-jethub-j100.dts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/arm/dts/meson-axg-jethome-jethub-j100.dts b/arch/arm/dts/meson-axg-jethome-jethub-j100.dts index 5783732dc6..00a0b268af 100644 --- a/arch/arm/dts/meson-axg-jethome-jethub-j100.dts +++ b/arch/arm/dts/meson-axg-jethome-jethub-j100.dts @@ -359,3 +359,8 @@ &cpu3 { #cooling-cells = <2>; }; + +&saradc { + status = "okay"; + vref-supply = <&vddio_ao18>; +}; -- 2.30.2