From patchwork Mon Oct 28 06:07:26 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 11214629 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 190137486 for ; Mon, 28 Oct 2019 06:07:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EA0152184C for ; Mon, 28 Oct 2019 06:07:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731791AbfJ1GHd (ORCPT ); Mon, 28 Oct 2019 02:07:33 -0400 Received: from relmlor1.renesas.com ([210.160.252.171]:6759 "EHLO relmlie5.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1731561AbfJ1GHc (ORCPT ); Mon, 28 Oct 2019 02:07:32 -0400 X-IronPort-AV: E=Sophos;i="5.68,238,1569250800"; d="scan'208";a="30181603" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 28 Oct 2019 15:07:30 +0900 Received: from localhost.localdomain (unknown [10.166.17.210]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id B4A6141715B9; Mon, 28 Oct 2019 15:07:30 +0900 (JST) From: Yoshihiro Shimoda To: mturquette@baylibre.com, sboyd@kernel.org, robh+dt@kernel.org, mark.rutland@arm.com, geert+renesas@glider.be Cc: linux-clk@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Yoshihiro Shimoda Subject: [PATCH v2 0/4] clk: renesas: rcar-usb2-clock-sel: Fix clks/resets handling Date: Mon, 28 Oct 2019 15:07:26 +0900 Message-Id: <1572242850-9073-1-git-send-email-yoshihiro.shimoda.uh@renesas.com> X-Mailer: git-send-email 2.7.4 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org This patch series is based on the latest renesas-drivers.git / clk-renesas-for-v5.5 branch. The hardware also needs multiple clocks/resets management like renesas_usbhs driver [1], so this patch series fixes it. [1] 3df0e24 usb: renesas_usbhs: Add multiple clocks management f181dbb usb: renesas_usbhs: Add reset_control Changes from v1: - Add Reviewed-by into this series' patch 1/4. - (new) Add resets and power-domains properties into the patch 2/4. - Use clk_bulk_* APIs (except clk_bulk_get() because this driver has 4 clocks and used only 2 clocks). - Add "select RESET_CONTROLLER" into Kconfig - Use devm_reset_control_array_get() instead of optional API. https://patchwork.kernel.org/project/linux-renesas-soc/list/?series=192869 Yoshihiro Shimoda (4): dt-bindings: clock: renesas: rcar-usb2-clock-sel: Fix clock[-name]s properties dt-bindings: clock: renesas: rcar-usb2-clock-sel: Add power-domains and resets properties clk: renesas: rcar-usb2-clock-sel: Add multiple clocks management clk: renesas: rcar-usb2-clock-sel: Add reset_control .../bindings/clock/renesas,rcar-usb2-clock-sel.txt | 13 +++++-- drivers/clk/renesas/Kconfig | 1 + drivers/clk/renesas/rcar-usb2-clock-sel.c | 43 +++++++++++++++++++++- 3 files changed, 52 insertions(+), 5 deletions(-)