Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758989AbaD3N7E (ORCPT ); Wed, 30 Apr 2014 09:59:04 -0400 Received: from mail-wi0-f172.google.com ([209.85.212.172]:56102 "EHLO mail-wi0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751651AbaD3N7D (ORCPT ); Wed, 30 Apr 2014 09:59:03 -0400 Date: Wed, 30 Apr 2014 14:58:55 +0100 From: Lee Jones To: Pawel Moll Cc: Grant Likely , Rob Herring , Samuel Ortiz , Arnd Bergmann , Greg Kroah-Hartman , Russell King , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, arm@kernel.org, Jean Delvare , Guenter Roeck , lm-sensors@lm-sensors.org, Mark Brown , Liam Girdwood , David Woodhouse , Dmitry Eremin-Solenikov , Mike Turquette Subject: Re: [PATCH 02/10] mfd: vexpress: Convert custom func API to regmap Message-ID: <20140430135855.GO29462@lee--X1> References: <1398707877-22596-1-git-send-email-pawel.moll@arm.com> <1398707877-22596-3-git-send-email-pawel.moll@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1398707877-22596-3-git-send-email-pawel.moll@arm.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > Components of the Versatile Express platform (configuration > microcontrollers on motherboard and daughterboards in particular) > talk to each other over a custom configuration bus. They > provide miscellaneous functions (from clock generator control > to energy sensors) which are represented as platform devices > (and Device Tree nodes). The transactions on the bus can > be generated by different "bridges" in the system, some > of which are universal for the whole platform (for the price > of high transfer latencies), others restricted to a subsystem > (but much faster). > > Until now drivers for such functions were using custom "func" > API, which is being replaced in this patch by regmap calls. > This required: > > * a rework (and move to drivers/bus directory, as suggested > by Samuel and Arnd) of the config bus core, which is much > simpler now and uses device model infrastructure (class) > to keep track of the bridges; non-DT case (soon to be > retired anyway) is simply covered by a special device > registration function > > * the new config-bus driver also takes over device population, > so there is no need for special matching table for > of_platform_populate nor "simple-bus" hack in the arm64 > model dtsi file (relevant bindings documentation has > been updated); this allows all the vexpress devices > fit into normal device model, making it possible > to remove plenty of early inits and other hacks in > the near future > > * adaptation of the syscfg bridge implementation in the > sysreg driver, again making it much simpler; there is > a special case of the "energy" function spanning two > registers, where they should be both defined in the tree > now, but backward compatibility is maintained in the code > > * modification of the relevant drivers: > > * hwmon - just a straight-forward API change > * power/reset driver - API change > * regulator - API change plus error handling > simplification > * osc clock driver - this one required larger rework > in order to turn in into a standard platform driver > > Cc: Jean Delvare > Cc: Guenter Roeck > Cc: lm-sensors@lm-sensors.org > Cc: Mark Brown > Cc: Liam Girdwood > Cc: David Woodhouse > Cc: Dmitry Eremin-Solenikov > Cc: Mike Turquette > Signed-off-by: Pawel Moll > --- > .../devicetree/bindings/arm/vexpress-sysreg.txt | 43 ++- > Documentation/devicetree/bindings/arm/vexpress.txt | 15 +- > arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts | 5 +- > arch/arm/mach-vexpress/ct-ca9x4.c | 10 +- > arch/arm/mach-vexpress/v2m.c | 18 +- > arch/arm64/boot/dts/rtsm_ve-motherboard.dtsi | 2 +- > drivers/bus/Kconfig | 9 + > drivers/bus/Makefile | 2 + > drivers/bus/vexpress-config.c | 202 +++++++++++ > drivers/clk/versatile/clk-vexpress-osc.c | 94 +++-- > drivers/hwmon/vexpress.c | 15 +- > drivers/mfd/Makefile | 2 +- > drivers/mfd/vexpress-config.c | 287 --------------- > drivers/mfd/vexpress-sysreg.c | 395 +++++++++++---------- > drivers/power/reset/vexpress-poweroff.c | 16 +- > drivers/regulator/vexpress.c | 50 +-- > include/linux/vexpress.h | 79 +---- > 17 files changed, 567 insertions(+), 677 deletions(-) > create mode 100644 drivers/bus/vexpress-config.c > delete mode 100644 drivers/mfd/vexpress-config.c Blimey! MFD diffstat looks great and the changes look sensible: Acked-by: Lee Jones I guess someone will need to create a branch for us all to pull from. I'm happy to do it if needs be. -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/