From patchwork Wed Aug 21 10:59:35 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Dahl X-Patchwork-Id: 13771235 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A8BB4C52D6F for ; Wed, 21 Aug 2024 11:03:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=i/ckHEQYfw6TnDB+9CVHZLVZThux547JhXou9MWo738=; b=jWJV5P4CE63L28Pe2raUouAB4f ipE+qFoE3fqma/En8YhCKigTmPvDlsOQQ5a9ZUz3WCrmN6iGufHQI6UVLRB69zOBChScMwnpz0Vgy SVz6FRp63ajJtq2COLlbvxm4NMzq+BvEzN1an5GDPkOmfTJcWVMlTpshJ210F7OhC3TV8pfwuagYw P44a0k9NUqARqfDoWycdVrmIsmdBRFm0jv43lpgBXJQ+zy5KpXkxyXOOJQVkSBXqvJJeBpSlQNkur 7ttV/VnCj95nAYvkLcrLnPGiaWIB+Q82I58IS9We40EhrAtpGFyVN4xWti7dakmN2Qa61RrHhN7QS fxO4xBXg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sgj7x-00000008Ypu-06OG; Wed, 21 Aug 2024 11:03:45 +0000 Received: from mail.thorsis.com ([217.92.40.78]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sgj4E-00000008XSB-26tu for linux-arm-kernel@lists.infradead.org; Wed, 21 Aug 2024 10:59:57 +0000 Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id DAD6F1483DF5; Wed, 21 Aug 2024 12:59:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=dkim; t=1724237993; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding:in-reply-to:references; bh=i/ckHEQYfw6TnDB+9CVHZLVZThux547JhXou9MWo738=; b=rGG9LCDSm0fkhl56SGjODNpBKWm1V8D5PrYK2UCtQV43tq4Nrps/v/0kiT85fvlCWA/pVe vSZgNKWIF5+vU4Qi1W57x/BRaPRQt6M022rPdRX6PNFrMD8VbRiYGLHU9aeJc8Kl1DwRz4 mR9oQ+H3VpO5HxB2KVIgh4Ak2+yS+M7+xe3hh6d1W8GR22q7mNq48KBv8lFG+iKss4sn8O y3QbFqDKIgnIgUELUP1kBzwnd3Oy23gXGWXZKp3XDZArYqa8HB2NWqSfAu3y5SWTFoQp2K AMyITMJp+eSh+6cnAYMpbIHpsvtNGXoapzEFN4nGOCOczaZq+NaYyW0D3FDY1w== From: Alexander Dahl To: Claudiu Beznea Cc: Christian Melki , Srinivas Kandagatla , linux-arm-kernel@lists.infradead.org (moderated list:MICROCHIP OTPC DRIVER), linux-kernel@vger.kernel.org (open list) Subject: [PATCH v1 04/12] nvmem: microchip-otpc: Add SAM9X60 support Date: Wed, 21 Aug 2024 12:59:35 +0200 Message-Id: <20240821105943.230281-5-ada@thorsis.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240821105943.230281-1-ada@thorsis.com> References: <20240821105943.230281-1-ada@thorsis.com> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240821_035954_727415_FAFA9882 X-CRM114-Status: UNSURE ( 9.11 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Register layout is almost identical to sama7g5 OTPC. Signed-off-by: Alexander Dahl --- drivers/nvmem/microchip-otpc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/nvmem/microchip-otpc.c b/drivers/nvmem/microchip-otpc.c index bd3383eabdf6..b8ed7412dbca 100644 --- a/drivers/nvmem/microchip-otpc.c +++ b/drivers/nvmem/microchip-otpc.c @@ -271,6 +271,7 @@ static int mchp_otpc_probe(struct platform_device *pdev) static const struct of_device_id __maybe_unused mchp_otpc_ids[] = { { .compatible = "microchip,sama7g5-otpc", }, + { .compatible = "microchip,sam9x60-otpc", }, { }, }; MODULE_DEVICE_TABLE(of, mchp_otpc_ids);