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 790E7C433F5 for ; Sun, 24 Apr 2022 08:23:16 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id EF66583E5F; Sun, 24 Apr 2022 10:22:40 +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="HkwLNzs6"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id F09BF83E30; Sun, 24 Apr 2022 10:22:20 +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 3ABF583E5D for ; Sun, 24 Apr 2022 10:22:11 +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 5AE3352ECA; Sun, 24 Apr 2022 08:22:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lexina.in; s=dkim; t=1650788530; h=from:subject:date:message-id:to:mime-version: content-transfer-encoding:in-reply-to:references; bh=c9TDDL81pqutqfD5CmSuE8RTtZR60o7ccaoZlTd8nyQ=; b=HkwLNzs6Z98AWCgEAel2v8YJjY82Yk4fqOjUVbw+DtmxwFyXsw+6sZKaZpGx/juGpMCDrJ AAPgIOOhp1KusIys3V2JfAuJHF9JAd1Moqdb1HFpAKGSkohdheHjhu7LAsV7lUO2tQMrfh maZDI3f2rsSUlK/DNJlWzvfgEcDI/oDf3oejLimNze2ZBjSM/Q2HZwNYtgfeWc0PHdaotL sqZpYGyCdRF+TVLWq4tYutTCeHLLlCO2c8o9NclBJ5G9Npp/U8gr84Pi38f9AhB2IQS5IP s+3YFQvcwKCT0Lg6qlTzcihTJVMueOE2JE+cLXenKIgJN/R00mMtId0dQbskXw== From: Vyacheslav Bocharov To: Neil Armstrong , Lukasz Majewski , Sean Anderson , u-boot@lists.denx.de, u-boot-amlogic@groups.io Subject: [PATCH v3 6/6] board: amlogic: jethub j100: enable saradc in config Date: Sun, 24 Apr 2022 11:21:59 +0300 Message-Id: <20220424082159.757622-7-adeep@lexina.in> In-Reply-To: <20220424082159.757622-1-adeep@lexina.in> References: <20220424082159.757622-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 Enable ADC in board config file Signed-off-by: Vyacheslav Bocharov Reviewed-by: Neil Armstrong --- configs/jethub_j100_defconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/jethub_j100_defconfig b/configs/jethub_j100_defconfig index 1c6db9f6a0..a30940bf1c 100644 --- a/configs/jethub_j100_defconfig +++ b/configs/jethub_j100_defconfig @@ -17,6 +17,7 @@ CONFIG_REMAKE_ELF=y CONFIG_OF_BOARD_SETUP=y # CONFIG_DISPLAY_CPUINFO is not set CONFIG_MISC_INIT_R=y +CONFIG_CMD_ADC=y # CONFIG_CMD_BDI is not set # CONFIG_CMD_IMI is not set CONFIG_CMD_EEPROM=y @@ -34,6 +35,10 @@ CONFIG_OF_CONTROL=y CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_DM_I2C=y CONFIG_SYS_I2C_MESON=y +CONFIG_ADC=y +CONFIG_SARADC_MESON=y +CONFIG_CLK=y +CONFIG_CLK_MESON_AXG=y CONFIG_MMC_MESON_GX=y CONFIG_MTD_UBI=y CONFIG_PHY_REALTEK=y -- 2.30.2