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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0886FC433F5 for ; Tue, 22 Mar 2022 15:10:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235605AbiCVPLm (ORCPT ); Tue, 22 Mar 2022 11:11:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38794 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233694AbiCVPLj (ORCPT ); Tue, 22 Mar 2022 11:11:39 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EC64C245B6; Tue, 22 Mar 2022 08:10:10 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: nfraprado) with ESMTPSA id 724ED1F42FC5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1647961809; bh=AfZObamYsAzgBjwGBzLZ0dMwyLg8Ugk6+Wn+Vyfh5fY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Ceo3dxSOv/deDhh5BPmr3PA2Tm03KXBlilTS+pYcFXk5wdjPCkC2cquG2U1uGelti A+EDtqQBJ3d3+QFRBdmpQvaxMR/JJ8V3Bt/9/POutBQxkVz9Vdcbyzaf0a0e8jRKYC t/bGUDtW9HpyU0KpvqvB8zwc18QhCY6eyMThMOBXuy0uNCxuUI0WhfNBI0ZkWTo/EF b5ANXVeGlmR5o5buMsLti2/E+LxnyOrMvb2onsbgNdaav0FxZVgI5VxjytyVIua6F2 f2HqFLuEdXrP8QUT0RfmPhuqdgsBF6WB+GvO3zyuZt1iSFzfj605gSHW7OAxsOaSV/ T4it3pd62qz1A== Date: Tue, 22 Mar 2022 11:10:05 -0400 From: =?utf-8?B?TsOtY29sYXMgRi4gUi4gQS4=?= Prado To: Allen-KH Cheng Cc: Matthias Brugger , Rob Herring , Krzysztof Kozlowski , Project_Global_Chrome_Upstream_Group@mediatek.com, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, Chen-Yu Tsai , Ryder Lee , Hui Liu Subject: Re: [PATCH v4 11/22] arm64: dts: mt8192: Add efuse node Message-ID: <20220322151005.vdds2i7qdi5mbcig@notapiano> References: <20220318144534.17996-1-allen-kh.cheng@mediatek.com> <20220318144534.17996-12-allen-kh.cheng@mediatek.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220318144534.17996-12-allen-kh.cheng@mediatek.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Mar 18, 2022 at 10:45:23PM +0800, Allen-KH Cheng wrote: > Add efuse node for mt8192 SoC > > Signed-off-by: Allen-KH Cheng Reviewed-by: Nícolas F. R. A. Prado > --- > arch/arm64/boot/dts/mediatek/mt8192.dtsi | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/arch/arm64/boot/dts/mediatek/mt8192.dtsi b/arch/arm64/boot/dts/mediatek/mt8192.dtsi > index 75c21edccf85..6220d6962f58 100644 > --- a/arch/arm64/boot/dts/mediatek/mt8192.dtsi > +++ b/arch/arm64/boot/dts/mediatek/mt8192.dtsi > @@ -937,6 +937,21 @@ > status = "disabled"; > }; > > + efuse: efuse@11c10000 { > + compatible = "mediatek,efuse"; > + reg = <0 0x11c10000 0 0x1000>; > + #address-cells = <1>; > + #size-cells = <1>; > + > + lvts_e_data1: data1@1c0 { > + reg = <0x1c0 0x58>; > + }; > + > + svs_calibration: calib@580 { > + reg = <0x580 0x68>; > + }; > + }; > + > i2c3: i2c@11cb0000 { > compatible = "mediatek,mt8192-i2c"; > reg = <0 0x11cb0000 0 0x1000>, > -- > 2.18.0 > >