From patchwork Wed Jun 21 14:09:38 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabrizio Castro X-Patchwork-Id: 13287373 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 D8014EB64D7 for ; Wed, 21 Jun 2023 14:10:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232704AbjFUOK2 (ORCPT ); Wed, 21 Jun 2023 10:10:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56978 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232709AbjFUOKP (ORCPT ); Wed, 21 Jun 2023 10:10:15 -0400 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 80BD218C; Wed, 21 Jun 2023 07:09:59 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.00,260,1681138800"; d="scan'208";a="164779177" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 21 Jun 2023 23:09:58 +0900 Received: from mulinux.example.org (unknown [10.226.93.96]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 1B92D4220BE7; Wed, 21 Jun 2023 23:09:50 +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 0/5] spi: Add CSI support for Renesas RZ/V2M Date: Wed, 21 Jun 2023 15:09:38 +0100 Message-Id: <20230621140944.257352-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: linux-renesas-soc@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 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