From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752474AbcFBHmR (ORCPT ); Thu, 2 Jun 2016 03:42:17 -0400 Received: from metis.ext.4.pengutronix.de ([92.198.50.35]:59604 "EHLO metis.ext.4.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750931AbcFBHmQ (ORCPT ); Thu, 2 Jun 2016 03:42:16 -0400 Message-ID: <1464853333.3307.1.camel@pengutronix.de> Subject: Re: [PATCH v3 0/4] Amlogic: Meson: Add reset controller From: Philipp Zabel To: Neil Armstrong Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org, xing.xu@amlogic.com, victor.wan@amlogic.com, jerry.cao@amlogic.com Date: Thu, 02 Jun 2016 09:42:13 +0200 In-Reply-To: <1464614838-28107-1-git-send-email-narmstrong@baylibre.com> References: <1464614838-28107-1-git-send-email-narmstrong@baylibre.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.9-1+b1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 2001:67c:670:100:96de:80ff:fec2:9969 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Neil, Am Montag, den 30.05.2016, 15:27 +0200 schrieb Neil Armstrong: > Patchset to add and enable the reset controller driver on Meson SoCs platforms. > > This reset controller has up to 256 reset lines with reset pulse generation only, > so the assert and deassert calls are not available. > > Depends on the patch : > - "reset: add devm_reset_controller_register API" [1] > > Changes since v2 at http://lkml.kernel.org/r/1464169758-26975-1-git-send-email-narmstrong@baylibre.com : > - Get back __iomem in _reset() callback > - Get rid of MODULE_ALIAS > > Changes since v1 at http://lkml.kernel.org/r/1463732875-23141-1-git-send-email-narmstrong@baylibre.com : > - Remove _gxbb_ in names > - Depends build on ARCH_MESON only > - Add meson8b compatible and bindings > - Re-indent dt-bindings headers > - Switch to devm_ reset controller register > - Remove platform "remove" callback > - Update Dual BSD/GPL file headers > > 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 > > [1] https://patchwork.kernel.org/patch/8988471/ > > Neil Armstrong (4): > reset: Add support for the Amlogic Meson SoC Reset Controller > dt-bindings: reset: Add bindings for the Meson SoC Reset Controller I've applied these two patches to the reset/next branch. regards Philipp > ARM64: dts: amlogic: Enable Reset Controller on GXBB-based platforms > ARM: dts: amlogic: Enable Reset Controller on Meson8b platforms > > .../bindings/reset/amlogic,meson-reset.txt | 18 ++ > arch/arm/boot/dts/meson8b.dtsi | 7 + > arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 7 + > drivers/reset/Makefile | 1 + > drivers/reset/reset-meson.c | 136 +++++++++++++ > .../dt-bindings/reset/amlogic,meson-gxbb-reset.h | 210 +++++++++++++++++++++ > include/dt-bindings/reset/amlogic,meson8b-reset.h | 175 +++++++++++++++++ > 7 files changed, 554 insertions(+) > create mode 100644 Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt > create mode 100644 drivers/reset/reset-meson.c > create mode 100644 include/dt-bindings/reset/amlogic,meson-gxbb-reset.h > create mode 100644 include/dt-bindings/reset/amlogic,meson8b-reset.h >