Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751455AbcLEC13 (ORCPT ); Sun, 4 Dec 2016 21:27:29 -0500 Received: from mail-pf0-f194.google.com ([209.85.192.194]:32885 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751075AbcLEC11 (ORCPT ); Sun, 4 Dec 2016 21:27:27 -0500 Subject: Re: [PATCH v3 -next 1/2] ARM: sunxi: add support for H2+ SoC To: Icenowy Zheng , Maxime Ripard , Chen-Yu Tsai , Rob Herring , Russell King , Andre Przywara , Hans de Goede , Arnd Bergmann , Vishnu Patekar References: <20161202150513.34691-1-icenowy@aosc.xyz> Cc: devicetree@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-sunxi@googlegroups.com, linux-arm-kernel@lists.infradead.org From: Alexey Kardashevskiy Message-ID: <4a4fe484-27c0-73cb-ffb6-13192182d748@ozlabs.ru> Date: Mon, 5 Dec 2016 13:27:17 +1100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <20161202150513.34691-1-icenowy@aosc.xyz> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2181 Lines: 64 On 03/12/16 02:05, Icenowy Zheng wrote: > Allwinner H2+ is a quad-core Cortex-A7 SoC. > > It is very like H3, that they share the same SoC ID (0x1680), and H3 > memory maps as well as drivers works well on the SoC. What git tree is this made against of? Thanks. > > Signed-off-by: Icenowy Zheng > --- > Changes since v2: > - Changed compatible from allwinner,sun8i-h2plus to allwinner,sun8i-h2-plus. > Documentation/arm/sunxi/README | 4 ++++ > Documentation/devicetree/bindings/arm/sunxi.txt | 1 + > arch/arm/mach-sunxi/sunxi.c | 1 + > 3 files changed, 6 insertions(+) > > diff --git a/Documentation/arm/sunxi/README b/Documentation/arm/sunxi/README > index cd02433..1fe4d99c 100644 > --- a/Documentation/arm/sunxi/README > +++ b/Documentation/arm/sunxi/README > @@ -63,6 +63,10 @@ SunXi family > + User Manual > http://dl.linux-sunxi.org/A33/A33%20user%20manual%20release%201.1.pdf > > + - Allwinner H2+ (sun8i) > + + No document available now, but is known to be working properly with > + H3 drivers and memory map. > + > - Allwinner H3 (sun8i) > + Datasheet > http://dl.linux-sunxi.org/H3/Allwinner_H3_Datasheet_V1.0.pdf > diff --git a/Documentation/devicetree/bindings/arm/sunxi.txt b/Documentation/devicetree/bindings/arm/sunxi.txt > index 4d6467c..59b143f 100644 > --- a/Documentation/devicetree/bindings/arm/sunxi.txt > +++ b/Documentation/devicetree/bindings/arm/sunxi.txt > @@ -13,6 +13,7 @@ using one of the following compatible strings: > allwinner,sun8i-a33 > allwinner,sun8i-a83t > allwinner,sun8i-h3 > + allwinner,sun8i-h2-plus > allwinner,sun9i-a80 > allwinner,sun50i-a64 > nextthing,gr8 > diff --git a/arch/arm/mach-sunxi/sunxi.c b/arch/arm/mach-sunxi/sunxi.c > index 2e2bde2..320d2af 100644 > --- a/arch/arm/mach-sunxi/sunxi.c > +++ b/arch/arm/mach-sunxi/sunxi.c > @@ -63,6 +63,7 @@ static const char * const sun8i_board_dt_compat[] = { > "allwinner,sun8i-a23", > "allwinner,sun8i-a33", > "allwinner,sun8i-a83t", > + "allwinner,sun8i-h2-plus", > "allwinner,sun8i-h3", > NULL, > }; > -- Alexey