Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1675221 > unrolled thread

[PATCH 0/6] ARM: Initial RDA8810PL and Orange Pi 2G-IoT enablement

Started byAndreas Färber <afaerber@suse.de>
First post2017-06-27 03:00 +0200
Last post2017-06-29 22:10 +0200
Articles 5 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/6] ARM: Initial RDA8810PL and Orange Pi 2G-IoT enablement Andreas Färber <afaerber@suse.de> - 2017-06-27 03:00 +0200
    [PATCH 2/6] dt-bindings: arm: Document RDA8810PL and Orange Pi 2G-IoT Andreas Färber <afaerber@suse.de> - 2017-06-27 03:00 +0200
      Re: [PATCH 2/6] dt-bindings: arm: Document RDA8810PL and Orange Pi  2G-IoT Rob Herring <robh@kernel.org> - 2017-06-29 22:20 +0200
    [PATCH 1/6] dt-bindings: Add RDA Micro vendor prefix Andreas Färber <afaerber@suse.de> - 2017-06-27 03:00 +0200
      Re: [PATCH 1/6] dt-bindings: Add RDA Micro vendor prefix Rob Herring <robh@kernel.org> - 2017-06-29 22:10 +0200

#1675221 — [PATCH 0/6] ARM: Initial RDA8810PL and Orange Pi 2G-IoT enablement

FromAndreas Färber <afaerber@suse.de>
Date2017-06-27 03:00 +0200
Subject[PATCH 0/6] ARM: Initial RDA8810PL and Orange Pi 2G-IoT enablement
Message-ID<tWN1g-1h7-7@gated-at.bofh.it>
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 <arnd@arndb.de>
Cc: Olof Johansson <olof@lixom.net>
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

[toc] | [next] | [standalone]


#1675222 — [PATCH 2/6] dt-bindings: arm: Document RDA8810PL and Orange Pi 2G-IoT

FromAndreas Färber <afaerber@suse.de>
Date2017-06-27 03:00 +0200
Subject[PATCH 2/6] dt-bindings: arm: Document RDA8810PL and Orange Pi 2G-IoT
Message-ID<tWN1g-1h7-19@gated-at.bofh.it>
In reply to#1675221
Add bindings for RDA Micro RDA8810PL SoC and Orange Pi 2G-IoT board.

Cc: service@rdamicro.com
Cc: zhao_steven@263.net
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
 Documentation/devicetree/bindings/arm/rda.txt | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/rda.txt

diff --git a/Documentation/devicetree/bindings/arm/rda.txt b/Documentation/devicetree/bindings/arm/rda.txt
new file mode 100644
index 000000000000..bcb4e0dd1ee5
--- /dev/null
+++ b/Documentation/devicetree/bindings/arm/rda.txt
@@ -0,0 +1,17 @@
+RDA Micro platforms device tree bindings
+----------------------------------------
+
+
+RDA8810PL SoC
+=============
+
+Required root node properties:
+
+ - compatible :  must contain "rda,8810pl"
+
+
+Boards:
+
+Root node property compatible must contain, depending on board:
+
+ - Orange Pi 2G-IoT: "xunlong,orangepi-2g-iot"
-- 
2.12.3

[toc] | [prev] | [next] | [standalone]


#1678157 — Re: [PATCH 2/6] dt-bindings: arm: Document RDA8810PL and Orange Pi 2G-IoT

FromRob Herring <robh@kernel.org>
Date2017-06-29 22:20 +0200
SubjectRe: [PATCH 2/6] dt-bindings: arm: Document RDA8810PL and Orange Pi 2G-IoT
Message-ID<tXO4V-3Qo-1@gated-at.bofh.it>
In reply to#1675222
On Tue, Jun 27, 2017 at 02:55:16AM +0200, Andreas Färber wrote:
> Add bindings for RDA Micro RDA8810PL SoC and Orange Pi 2G-IoT board.
> 
> Cc: service@rdamicro.com
> Cc: zhao_steven@263.net
> Signed-off-by: Andreas Färber <afaerber@suse.de>
> ---
>  Documentation/devicetree/bindings/arm/rda.txt | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/arm/rda.txt

Acked-by: Rob Herring <robh@kernel.org>

[toc] | [prev] | [next] | [standalone]


#1675223 — [PATCH 1/6] dt-bindings: Add RDA Micro vendor prefix

FromAndreas Färber <afaerber@suse.de>
Date2017-06-27 03:00 +0200
Subject[PATCH 1/6] dt-bindings: Add RDA Micro vendor prefix
Message-ID<tWN1g-1h7-21@gated-at.bofh.it>
In reply to#1675221
RDA Microelectronics is a Chinese SoC manufacturer.

Cc: service@rdamicro.com
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
 Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index afbb47ce50dd..c54c1e069516 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -270,6 +270,7 @@ ralink	Mediatek/Ralink Technology Corp.
 ramtron	Ramtron International
 raspberrypi	Raspberry Pi Foundation
 raydium	Raydium Semiconductor Corp.
+rda	RDA Microelectronics, Inc.
 realtek Realtek Semiconductor Corp.
 renesas	Renesas Electronics Corporation
 richtek	Richtek Technology Corporation
-- 
2.12.3

[toc] | [prev] | [next] | [standalone]


#1678153 — Re: [PATCH 1/6] dt-bindings: Add RDA Micro vendor prefix

FromRob Herring <robh@kernel.org>
Date2017-06-29 22:10 +0200
SubjectRe: [PATCH 1/6] dt-bindings: Add RDA Micro vendor prefix
Message-ID<tXNVg-3KB-17@gated-at.bofh.it>
In reply to#1675223
On Tue, Jun 27, 2017 at 02:55:15AM +0200, Andreas Färber wrote:
> RDA Microelectronics is a Chinese SoC manufacturer.
> 
> Cc: service@rdamicro.com
> Signed-off-by: Andreas Färber <afaerber@suse.de>
> ---
>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>  1 file changed, 1 insertion(+)

Acked-by: Rob Herring <robh@kernel.org>

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web