Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932623AbcCJVqc (ORCPT ); Thu, 10 Mar 2016 16:46:32 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:57640 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932180AbcCJVqa (ORCPT ); Thu, 10 Mar 2016 16:46:30 -0500 From: "Andrew F. Davis" To: Philipp Zabel , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Suman Anna CC: , , "Andrew F. Davis" Subject: [PATCH v2 0/2] Add support for SYSCON reset Date: Thu, 10 Mar 2016 15:46:03 -0600 Message-ID: <1457646365-1723-1-git-send-email-afd@ti.com> X-Mailer: git-send-email 2.7.2 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 Content-Length: 1174 Lines: 27 Some SoCs contain reset controls for modules that are memory-mapped to areas shared with other module configuration settings. This requires synchronization across all drivers accessing this memory area. This series adds a generic SYSCON reset driver to allow resets toggled by bits in memory-mapped registers through SYSCON. Changes from v1: - Reset control information is now described in the reset node, this keeps the reset information centralized for easy verification - Other small fixups Andrew F. Davis (2): Documentation: dt: reset: Add syscon reset binding reset: add a SYSCON based reset driver .../devicetree/bindings/reset/syscon-reset.txt | 114 +++++++++ drivers/reset/Kconfig | 10 + drivers/reset/Makefile | 1 + drivers/reset/reset-syscon.c | 283 +++++++++++++++++++++ include/dt-bindings/reset/syscon.h | 23 ++ 5 files changed, 431 insertions(+) create mode 100644 Documentation/devicetree/bindings/reset/syscon-reset.txt create mode 100644 drivers/reset/reset-syscon.c create mode 100644 include/dt-bindings/reset/syscon.h -- 2.7.2