From patchwork Wed Apr 27 12:36:59 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 568494 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 1DB48C433FE for ; Wed, 27 Apr 2022 12:37:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234382AbiD0Mk2 (ORCPT ); Wed, 27 Apr 2022 08:40:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47890 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234274AbiD0Mk0 (ORCPT ); Wed, 27 Apr 2022 08:40:26 -0400 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 2B96B53A4B; Wed, 27 Apr 2022 05:37:15 -0700 (PDT) X-IronPort-AV: E=Sophos;i="5.90,292,1643641200"; d="scan'208";a="118193610" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 27 Apr 2022 21:37:14 +0900 Received: from localhost.localdomain (unknown [10.166.15.32]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 7B326435BBF9; Wed, 27 Apr 2022 21:37:14 +0900 (JST) From: Yoshihiro Shimoda To: alim.akhtar@samsung.com, avri.altman@wdc.com, robh+dt@kernel.org, krzk+dt@kernel.org Cc: jejb@linux.ibm.com, martin.petersen@oracle.com, linux-scsi@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Yoshihiro Shimoda Subject: [PATCH v5 0/7] treewide: scsi: ufs: Add support for Renesas R-Car UFS controller Date: Wed, 27 Apr 2022 21:36:59 +0900 Message-Id: <20220427123706.555166-1-yoshihiro.shimoda.uh@renesas.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org This patch series adds support Renesas R-Car S4-8 UFS controller. This controller has some restrictions so adds some quirks for it. Before using this driver, we have to initialize a clock generator on the environment board (named "Spider") by using the commands of U-Boot like below: => i2c dev 0 => i2c mw 0x6c 0x26 0x05 => i2c olen 0x6c 2 => i2c mw 0x6c 0x26c 0x2e To use the UFS controller, we need the following patch too: https://lore.kernel.org/all/20220411124932.3765571-1-yoshihiro.shimoda.uh@renesas.com/ Changes from v4: - Fix ufs_renesas_of_match was not terminated in patch [4/7]. (from kernel test robot, thanks!) https://lore.kernel.org/all/20220420025450.289578-1-yoshihiro.shimoda.uh@renesas.com/ Changes from v3: - Fix build warning by clang in patch [4/7]. https://lore.kernel.org/all/20220419120316.209151-1-yoshihiro.shimoda.uh@renesas.com/ Changes from v2: - Add Reviewed-by in patch [1/7]. (Krzysztof, thanks!) - Use WARN_ON() instead of BUG_ON in patch [4/7]. https://lore.kernel.org/all/20220414023115.4190736-1-yoshihiro.shimoda.uh@renesas.com/ Changes from v1: - Fix dt-binding doc in patch [1/7]. - Add __maybe_unused for compile test on other platforms in patch [4/7]. - Fix node names in patch [5/7]. https://lore.kernel.org/all/20220412073647.3808493-1-yoshihiro.shimoda.uh@renesas.com/ *** BLURB HERE *** Yoshihiro Shimoda (7): dt-bindings: ufs: Document Renesas R-Car UFS host controller ufs: add UFSHCD_QUIRK_BROKEN_64BIT_ADDRESS ufs: add UFSHCD_QUIRK_HIBERN_FASTAUTO scsi: ufs-renesas: Add support for Renesas R-Car UFS controller scsi: MAINTAINERS: Add maintainer for Renesas UFS driver arm64: dts: renesas: r8a779f0: Add UFS node arm64: dts: renesas: r8a779f0: spider-cpu: Enable UFS device .../devicetree/bindings/ufs/renesas,ufs.yaml | 61 +++ MAINTAINERS | 7 + .../boot/dts/renesas/r8a779f0-spider-cpu.dtsi | 8 + arch/arm64/boot/dts/renesas/r8a779f0.dtsi | 19 + drivers/scsi/ufs/Kconfig | 12 + drivers/scsi/ufs/Makefile | 1 + drivers/scsi/ufs/ufs-renesas.c | 419 ++++++++++++++++++ drivers/scsi/ufs/ufshcd.c | 12 +- drivers/scsi/ufs/ufshcd.h | 12 + 9 files changed, 548 insertions(+), 3 deletions(-) create mode 100644 Documentation/devicetree/bindings/ufs/renesas,ufs.yaml create mode 100644 drivers/scsi/ufs/ufs-renesas.c