From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752142AbdF0A46 (ORCPT ); Mon, 26 Jun 2017 20:56:58 -0400 Received: from mx2.suse.de ([195.135.220.15]:50748 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751454AbdF0A4h (ORCPT ); Mon, 26 Jun 2017 20:56:37 -0400 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org, service@rdamicro.com, zhao_steven@263.net, =?UTF-8?q?Andreas=20F=C3=A4rber?= , Arnd Bergmann , Olof Johansson , devicetree@vger.kernel.org Subject: [PATCH 0/6] ARM: Initial RDA8810PL and Orange Pi 2G-IoT enablement Date: Tue, 27 Jun 2017 02:55:14 +0200 Message-Id: <20170627005520.23731-1-afaerber@suse.de> X-Mailer: git-send-email 2.12.3 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 Hello, This mini-series adds initial Device Trees for the RDA Micro RDA8810PL SoC and the Orange Pi 2G-IoT board. With the vendor U-Boot the .dtb needs to be appended to the zImage. It then boots with earlycon until it is lacking a timer driver. Cf. https://en.opensuse.org/HCL:Orange_Pi_2G-IoT Patches at: https://github.com/afaerber/linux/commits/opi2g-next Have a lot of fun! Cheers, Andreas Cc: service@rdamicro.com Cc: zhao_steven@263.net Cc: Arnd Bergmann Cc: Olof Johansson Cc: devicetree@vger.kernel.org Andreas Färber (6): dt-bindings: Add RDA Micro vendor prefix dt-bindings: arm: Document RDA8810PL and Orange Pi 2G-IoT ARM: Prepare RDA8810PL dt-bindings: serial: Document RDA Micro UART tty: serial: Add RDA Micro UART driver ARM: dts: Add RDA8810PL and Orange Pi 2G-IoT Documentation/admin-guide/kernel-parameters.txt | 6 ++ Documentation/devicetree/bindings/arm/rda.txt | 17 +++ .../devicetree/bindings/serial/rda-uart.txt | 13 +++ .../devicetree/bindings/vendor-prefixes.txt | 1 + arch/arm/Kconfig | 2 + arch/arm/Makefile | 1 + arch/arm/boot/dts/Makefile | 2 + arch/arm/boot/dts/rda8810pl-orangepi-2g-iot.dts | 27 +++++ arch/arm/boot/dts/rda8810pl.dtsi | 94 +++++++++++++++++ arch/arm/mach-rda/Kconfig | 7 ++ arch/arm/mach-rda/Makefile | 1 + drivers/tty/serial/Kconfig | 19 ++++ drivers/tty/serial/Makefile | 1 + drivers/tty/serial/rda-uart.c | 117 +++++++++++++++++++++ 14 files changed, 308 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/rda.txt create mode 100644 Documentation/devicetree/bindings/serial/rda-uart.txt create mode 100644 arch/arm/boot/dts/rda8810pl-orangepi-2g-iot.dts create mode 100644 arch/arm/boot/dts/rda8810pl.dtsi create mode 100644 arch/arm/mach-rda/Kconfig create mode 100644 arch/arm/mach-rda/Makefile create mode 100644 drivers/tty/serial/rda-uart.c -- 2.12.3