From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933078AbcETI2R (ORCPT ); Fri, 20 May 2016 04:28:17 -0400 Received: from mail-wm0-f43.google.com ([74.125.82.43]:36594 "EHLO mail-wm0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932354AbcETI2O (ORCPT ); Fri, 20 May 2016 04:28:14 -0400 From: Neil Armstrong To: linux-kernel@vger.kernel.org, p.zabel@pengutronix.de, linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org Cc: Neil Armstrong , xing.xu@amlogic.com, victor.wan@amlogic.com, jerry.cao@amlogic.com Subject: [PATCH 0/3] Amlogic: GXBB: Add reset controller Date: Fri, 20 May 2016 10:27:52 +0200 Message-Id: <1463732875-23141-1-git-send-email-narmstrong@baylibre.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Patchset to add and enable the reset controller driver on GXBB platforms. This reset controller has up to 256 reset lines with reset pulse generation only, so the assert and deassert calls are not available. Changes since the RFC at http://lkml.kernel.org/r/1463148012-25988-1-git-send-email-narmstrong@baylibre.com : - Fix register mapping and bit defines in bindings header - Remove assert and unassert calls - Fix missing __iomem Neil Armstrong (3): reset: Add support for the Amlogic Meson GXBB Reset Controller dt-bindings: reset: Add bindings for the Meson GXBB Reset Controller ARM64: dts: amlogic: Enable Reset Controller on GXBB-based platforms .../bindings/reset/amlogic,meson-gxbb-reset.txt | 18 ++ arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 6 + drivers/reset/Kconfig | 6 + drivers/reset/Makefile | 1 + drivers/reset/reset-meson-gxbb.c | 129 +++++++++++++ .../dt-bindings/reset/amlogic,meson-gxbb-reset.h | 199 +++++++++++++++++++++ 6 files changed, 359 insertions(+) create mode 100644 Documentation/devicetree/bindings/reset/amlogic,meson-gxbb-reset.txt create mode 100644 drivers/reset/reset-meson-gxbb.c create mode 100644 include/dt-bindings/reset/amlogic,meson-gxbb-reset.h -- 2.7.0