From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936095AbcKDRnA (ORCPT ); Fri, 4 Nov 2016 13:43:00 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:34899 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934869AbcKDRm5 (ORCPT ); Fri, 4 Nov 2016 13:42:57 -0400 From: "Andrew F. Davis" To: Nishanth Menon , Tero Kristo , Santosh Shilimkar , Philipp Zabel , Rob Herring , Mark Rutland , Suman Anna CC: , , , "Andrew F . Davis" Subject: [PATCH v3 0/2] Add TI SCI Reset Driver Date: Fri, 4 Nov 2016 12:42:38 -0500 Message-ID: <20161104174240.9688-1-afd@ti.com> X-Mailer: git-send-email 2.10.1 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello all, This series adds a reset controller driver that uses the TI SCI protocol to manage resets. The TI SCI protocol is used to communicate with power management controllers used by some SoCs. These controllers manage the various power domains, clocks, and resets available on a SoC. This series is based on drivers for TI SCI and the first two controlled elements above, these series can be found here: TI-SCI: http://www.spinics.net/lists/arm-kernel/msg536851.html PM Domains: http://www.spinics.net/lists/devicetree/msg146621.html Clocks: https://www.spinics.net/lists/linux-clk/msg12785.html Thanks, Andrew Changes from v2: - Merged DT binding patch and reset header patch - Added locking for reset bit mask Changes from v1: - Revised dt binding - CC Linux ARM list Andrew F. Davis (2): Documentation: dt: reset: Add TI SCI reset binding reset: Add the TI SCI reset driver .../devicetree/bindings/reset/ti,sci-reset.txt | 65 +++++ MAINTAINERS | 3 + drivers/reset/Kconfig | 9 + drivers/reset/Makefile | 1 + drivers/reset/reset-ti-sci.c | 272 +++++++++++++++++++++ include/dt-bindings/reset/k2g.h | 22 ++ 6 files changed, 372 insertions(+) create mode 100644 Documentation/devicetree/bindings/reset/ti,sci-reset.txt create mode 100644 drivers/reset/reset-ti-sci.c create mode 100644 include/dt-bindings/reset/k2g.h -- 2.10.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Andrew F. Davis" Subject: [PATCH v3 0/2] Add TI SCI Reset Driver Date: Fri, 4 Nov 2016 12:42:38 -0500 Message-ID: <20161104174240.9688-1-afd@ti.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Nishanth Menon , Tero Kristo , Santosh Shilimkar , Philipp Zabel , Rob Herring , Mark Rutland , Suman Anna Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, "Andrew F . Davis" List-Id: devicetree@vger.kernel.org Hello all, This series adds a reset controller driver that uses the TI SCI protocol to manage resets. The TI SCI protocol is used to communicate with power management controllers used by some SoCs. These controllers manage the various power domains, clocks, and resets available on a SoC. This series is based on drivers for TI SCI and the first two controlled elements above, these series can be found here: TI-SCI: http://www.spinics.net/lists/arm-kernel/msg536851.html PM Domains: http://www.spinics.net/lists/devicetree/msg146621.html Clocks: https://www.spinics.net/lists/linux-clk/msg12785.html Thanks, Andrew Changes from v2: - Merged DT binding patch and reset header patch - Added locking for reset bit mask Changes from v1: - Revised dt binding - CC Linux ARM list Andrew F. Davis (2): Documentation: dt: reset: Add TI SCI reset binding reset: Add the TI SCI reset driver .../devicetree/bindings/reset/ti,sci-reset.txt | 65 +++++ MAINTAINERS | 3 + drivers/reset/Kconfig | 9 + drivers/reset/Makefile | 1 + drivers/reset/reset-ti-sci.c | 272 +++++++++++++++++++++ include/dt-bindings/reset/k2g.h | 22 ++ 6 files changed, 372 insertions(+) create mode 100644 Documentation/devicetree/bindings/reset/ti,sci-reset.txt create mode 100644 drivers/reset/reset-ti-sci.c create mode 100644 include/dt-bindings/reset/k2g.h -- 2.10.1 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html