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 7DA65C433EF for ; Fri, 22 Apr 2022 05:30:19 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id C2F1083D62; Fri, 22 Apr 2022 07:29:44 +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="bvSU2Qxx"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 5841983CAC; Fri, 22 Apr 2022 07:29:33 +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 49A5583D5B for ; Fri, 22 Apr 2022 07:29:25 +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 65F844B7FC; Fri, 22 Apr 2022 05:29:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lexina.in; s=dkim; t=1650605364; h=from:subject:date:message-id:to:mime-version: content-transfer-encoding:in-reply-to:references; bh=3HDYPTv2ZrEdESFqdHyi6VUpGcIr9xRdeG+VE+zgwhw=; b=bvSU2Qxx+OrVGcr0PJgfVCWSdqFJ4cRaLliPhlDMCG8rQPD7XJtMsc1kN85flpMkMFc979 y/0nEqF24cmzWHuBmFZdXol3FCey08m3joDpeaVA1/GkEFdj0I+5pka9Op8jQxJBUa3epF lJj1u4Qf3mIPnZ438OGbc62bCFBg0ma6nP2F2MlBmDv59zhbqkHpSmo3q9ndiW56zTXggx JuSXViRGWAlOCqB9Qd7VjLbT9I3rtv8Ptj/PqmYB5bVIoaMBNckkC2N1I1nqMdLQ1UtI6u wSHAotClWgMozCjS9cTlGJ/MuWzUaHYmRYtnsjtDzx6+S6FIMjAdrU8rvyqDUQ== From: Vyacheslav Bocharov To: Neil Armstrong , Lukasz Majewski , Sean Anderson , u-boot@lists.denx.de, u-boot-amlogic@groups.io Subject: [PATCH v2 4/6] adc: meson-saradc: add AXG variant Date: Fri, 22 Apr 2022 08:29:12 +0300 Message-Id: <20220422052914.1836694-5-adeep@lexina.in> In-Reply-To: <20220422052914.1836694-1-adeep@lexina.in> References: <20220422052914.1836694-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 Add support for the SARADC variant found on the AXG SoCs family. Signed-off-by: Vyacheslav Bocharov --- drivers/adc/meson-saradc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/adc/meson-saradc.c b/drivers/adc/meson-saradc.c index 1a45a3a265..37023512f0 100644 --- a/drivers/adc/meson-saradc.c +++ b/drivers/adc/meson-saradc.c @@ -737,6 +737,8 @@ static const struct udevice_id meson_saradc_ids[] = { .data = (ulong)&gxl_saradc_data }, { .compatible = "amlogic,meson-g12a-saradc", .data = (ulong)&gxl_saradc_data }, + { .compatible = "amlogic,meson-axg-saradc", + .data = (ulong)&gxl_saradc_data }, { } }; -- 2.30.2