Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753453AbcJDPh3 (ORCPT ); Tue, 4 Oct 2016 11:37:29 -0400 Received: from mail-wm0-f52.google.com ([74.125.82.52]:37635 "EHLO mail-wm0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752123AbcJDPh2 (ORCPT ); Tue, 4 Oct 2016 11:37:28 -0400 From: Neil Armstrong To: afaerber@suse.de, khilman@baylibre.com, carlo@caione.org Cc: Neil Armstrong , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org Subject: [RESEND PATCH v2 -next 0/3] ARM64: amlogic: Add support for GXL SoC Family Date: Tue, 4 Oct 2016 17:37:07 +0200 Message-Id: <1475595430-30075-1-git-send-email-narmstrong@baylibre.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2678 Lines: 57 This is a resend rebased on linux-next-20161004 tag. The new Amlogic GXL SoCs (S905X and S905D) are part of the Meson GX family and share some common features that can be described in a common GX dtsi file used by the Meson GXBB and Meson GXL Family dtsi. This patchset introduces the common GX dtsi and switches the GXBB to use the common GX dtsi. Then it introduces the GXL S905X SoC with the GXL common dtsi, then the S905D dtsi and the p212 board dts. Finally the GXL S905D SoC is introduced with a S905D dtsi using the GXL common and the p23x Board dtsi for the p231 and p230 development boards. Changes since v1 at http://lkml.kernel.org/r/20160903082227.30559-1-narmstrong@baylibre.com : - Add missing copyrigh in gx dtsi - Rename gxl SoCs compatibles to amlogic,s905x and amlogic,s905d Changes since RFC v1: - Merge GX common and GXBB changes in a single patch - Integrate GXL S905X patch - Add support for S905D and the p23x boards Note: This patchset integrates the patch "ARM64: dts: amlogic: Add basic support for Amlogic S905X" [1] from Carlo Caione. [1] http://lkml.kernel.org/r/1472382113-10754-1-git-send-email-carlo@caione.org Carlo Caione (1): ARM64: dts: amlogic: Add basic support for Amlogic S905X Neil Armstrong (2): ARM64: dts: amlogic: Add Meson GX dtsi from GXBB ARM64: dts: amlogic: Add basic support for Amlogic S905D Documentation/devicetree/bindings/arm/amlogic.txt | 11 + arch/arm64/boot/dts/amlogic/Makefile | 3 + arch/arm64/boot/dts/amlogic/meson-gx.dtsi | 200 +++++ arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 895 +++++++++------------ .../boot/dts/amlogic/meson-gxl-s905d-p230.dts | 51 ++ .../boot/dts/amlogic/meson-gxl-s905d-p231.dts | 51 ++ .../boot/dts/amlogic/meson-gxl-s905d-p23x.dtsi | 63 ++ arch/arm64/boot/dts/amlogic/meson-gxl-s905d.dtsi | 48 ++ .../boot/dts/amlogic/meson-gxl-s905x-p212.dts | 69 ++ arch/arm64/boot/dts/amlogic/meson-gxl-s905x.dtsi | 48 ++ arch/arm64/boot/dts/amlogic/meson-gxl.dtsi | 48 ++ 11 files changed, 971 insertions(+), 516 deletions(-) create mode 100644 arch/arm64/boot/dts/amlogic/meson-gx.dtsi create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p231.dts create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p23x.dtsi create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905d.dtsi create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905x-p212.dts create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905x.dtsi create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi -- 1.9.1