From nobody Sat Apr 11 13:52:50 2026 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 EC0F5ECAAD1 for ; Thu, 1 Sep 2022 06:41:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233014AbiIAGlW (ORCPT ); Thu, 1 Sep 2022 02:41:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42840 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232983AbiIAGlO (ORCPT ); Thu, 1 Sep 2022 02:41:14 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A335222522; Wed, 31 Aug 2022 23:40:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1662014401; x=1693550401; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZvD58jkSgzo7AvCZoM1vmdGTmnCuWHlSrv++mzVZ6W0=; b=NA80S53i3ImJ4C0oiCaplnxIUtWzb9gduKOs1f94Sv4CTk8S6hrQ0g6a IIGjM5KW9xbQPPd+Ph3vD6YmhhINAA1wQh8c6QLAD7KeO47ORjypc4NDL Eyw2vQ6MIRh4dGMdllexVRApkSsQkl7omt0K4BKqi03mRF9OeXmtTiB0b oVYkeNrbjbIt2e9ImXGClJ6Gag7dTX25jMcV2dOZYlW/iy/0d6HrHgjx/ yR7uCoG6jI3bzLZ1AD9nJAXnXwLBfU0C6pge3CcZuY6DXpAxO6dfy/vq8 GlVF+h9AWIP3Wojxw5RxxjFIHZas1r8qToHPqpUAHncTRPB/1BQja1C7X w==; X-IronPort-AV: E=Sophos;i="5.93,280,1654585200"; d="scan'208";a="111691217" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa6.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 31 Aug 2022 23:40:01 -0700 Received: from chn-vm-ex03.mchp-main.com (10.10.85.151) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.12; Wed, 31 Aug 2022 23:40:00 -0700 Received: from soft-dev3-1.microsemi.net (10.10.115.15) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server id 15.1.2507.12 via Frontend Transport; Wed, 31 Aug 2022 23:39:58 -0700 From: Horatiu Vultur To: , CC: , , , , "Horatiu Vultur" Subject: [PATCH v4 1/2] dt-bindings: lan9662-otpc: document Lan9662 OTPC Date: Thu, 1 Sep 2022 08:44:04 +0200 Message-ID: <20220901064405.149611-2-horatiu.vultur@microchip.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20220901064405.149611-1-horatiu.vultur@microchip.com> References: <20220901064405.149611-1-horatiu.vultur@microchip.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Document Lan9662 OTP controller. Signed-off-by: Horatiu Vultur Reviewed-by: Krzysztof Kozlowski --- .../nvmem/microchip,lan9662-otpc.yaml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Documentation/devicetree/bindings/nvmem/microchip,lan96= 62-otpc.yaml diff --git a/Documentation/devicetree/bindings/nvmem/microchip,lan9662-otpc= .yaml b/Documentation/devicetree/bindings/nvmem/microchip,lan9662-otpc.yaml new file mode 100644 index 000000000000..f97c6beb4766 --- /dev/null +++ b/Documentation/devicetree/bindings/nvmem/microchip,lan9662-otpc.yaml @@ -0,0 +1,45 @@ +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/nvmem/microchip,lan9662-otpc.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Microchip LAN9662 OTP Controller (OTPC) + +maintainers: + - Horatiu Vultur + +description: | + OTP controller drives a NVMEM memory where system specific data + (e.g. hardware configuration settings, chip identifiers) or + user specific data could be stored. + +allOf: + - $ref: nvmem.yaml# + +properties: + compatible: + oneOf: + - items: + - const: microchip,lan9668-otpc + - const: microchip,lan9662-otpc + - enum: + - microchip,lan9662-otpc + + reg: + maxItems: 1 + +required: + - compatible + - reg + +unevaluatedProperties: false + +examples: + - | + otpc: otp@e0021000 { + compatible =3D "microchip,lan9662-otpc"; + reg =3D <0xe0021000 0x300>; + }; + +... --=20 2.33.0