From patchwork Thu Jun 22 11:33:36 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabrizio Castro X-Patchwork-Id: 696034 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 AC3D7EB64DA for ; Thu, 22 Jun 2023 11:33:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229865AbjFVLdy (ORCPT ); Thu, 22 Jun 2023 07:33:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35358 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229437AbjFVLdx (ORCPT ); Thu, 22 Jun 2023 07:33:53 -0400 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 29CB51BE4; Thu, 22 Jun 2023 04:33:52 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.00,263,1681138800"; d="scan'208";a="168532768" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie6.idc.renesas.com with ESMTP; 22 Jun 2023 20:33:51 +0900 Received: from mulinux.example.org (unknown [10.226.93.117]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id DDA1141D4839; Thu, 22 Jun 2023 20:33:43 +0900 (JST) From: Fabrizio Castro To: Mark Brown , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Catalin Marinas , Will Deacon , Michael Turquette , Stephen Boyd , Philipp Zabel , Geert Uytterhoeven Cc: Fabrizio Castro , Magnus Damm , Bjorn Andersson , Arnd Bergmann , Konrad Dybcio , Neil Armstrong , =?utf-8?b?TsOtY29sYXMgRi4gUi4g?= =?utf-8?b?QS4gUHJhZG8=?= , =?utf-8?b?UmFmYcWCIE1p?= =?utf-8?b?xYJlY2tp?= , linux-spi@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org, Chris Paterson , Biju Das Subject: [PATCH v2 0/5] spi: Add CSI support for Renesas RZ/V2M Date: Thu, 22 Jun 2023 12:33:36 +0100 Message-Id: <20230622113341.657842-1-fabrizio.castro.jz@renesas.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Dear All, This series is to add support for the Clocked Serial Interface (CSI) IP found in the Renesas RZ/V2M SoC. Thanks, Fab v2: edited list of include files in drivers/spi/spi-rzv2m-csi.c Fabrizio Castro (5): spi: dt-bindings: Add bindings for RZ/V2M CSI clk: renesas: r9a09g011: Add CSI related clocks spi: Add support for Renesas CSI arm64: dts: renesas: r9a09g011: Add CSI nodes arm64: defconfig: Enable Renesas RZ/V2M CSI driver .../bindings/spi/renesas,rzv2m-csi.yaml | 70 ++ arch/arm64/boot/dts/renesas/r9a09g011.dtsi | 28 + arch/arm64/configs/defconfig | 1 + drivers/clk/renesas/r9a09g011-cpg.c | 15 + drivers/spi/Kconfig | 6 + drivers/spi/Makefile | 1 + drivers/spi/spi-rzv2m-csi.c | 667 ++++++++++++++++++ 7 files changed, 788 insertions(+) create mode 100644 Documentation/devicetree/bindings/spi/renesas,rzv2m-csi.yaml create mode 100644 drivers/spi/spi-rzv2m-csi.c