All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH u-boot 0/3] Add initial support for Amlogic P212 Reference board
@ 2017-10-12 13:50 ` Neil Armstrong
  0 siblings, 0 replies; 26+ messages in thread
From: Neil Armstrong @ 2017-10-12 13:50 UTC (permalink / raw)
  To: u-boot

This patchset aimed to add minimal support for the Amlogic P212 reference board
from Amlogic based on the Meson S905X SoC from the Meson GXL SoC Family.

The initial support is composed of :
- GXL pinctrl driver
- Minimal boot support with serial, MMC and SDCard
- Updated DTS from Linux 4.13.5

Commands to generate a valid binary are provided in the board README.

The following work will be pushed later on :
- Support for dynamic reading of DDR memory size from registers
- Support for the Internal Ethernet PHY is WiP
- USB DWC3 Host Support with PHY support

This patchset can boot Linux Mainline 4.14-rc4 with the Video Pipeline disables,
since it currently depends on Power Domains initialization from Vendor u-boot.
Dedicated reset and init code for the Video Pipeline for mainline Linux is in
the work.

Neil Armstrong (3):
  ARM: dts: Synchronize Amlogic from Linux Mainline 4.13.5
  pinctrl: meson: Add GXL Support
  arm: add initial support for Amlogic P212 based on Meson GXL family

 arch/arm/dts/Makefile                     |   3 +-
 arch/arm/dts/meson-gx.dtsi                |  13 +-
 arch/arm/dts/meson-gxbb-odroidc2.dts      | 108 ++---
 arch/arm/dts/meson-gxbb.dtsi              | 220 +++++----
 arch/arm/dts/meson-gxl-mali.dtsi          |  43 ++
 arch/arm/dts/meson-gxl-s905x-p212.dts     |  95 ++++
 arch/arm/dts/meson-gxl-s905x-p212.dtsi    | 173 +++++++
 arch/arm/dts/meson-gxl-s905x.dtsi         |  55 +++
 arch/arm/dts/meson-gxl.dtsi               | 628 +++++++++++++++++++++++++
 arch/arm/mach-meson/Kconfig               |  22 +
 board/amlogic/p212/Kconfig                |  12 +
 board/amlogic/p212/MAINTAINERS            |   6 +
 board/amlogic/p212/Makefile               |   8 +
 board/amlogic/p212/README                 |  96 ++++
 board/amlogic/p212/p212.c                 |  21 +
 configs/p212_defconfig                    |  31 ++
 drivers/pinctrl/meson/Kconfig             |   4 +
 drivers/pinctrl/meson/Makefile            |   1 +
 drivers/pinctrl/meson/pinctrl-meson-gxl.c | 736 ++++++++++++++++++++++++++++++
 include/configs/p212.h                    |  22 +
 include/dt-bindings/gpio/meson-gxl-gpio.h | 131 ++++++
 21 files changed, 2285 insertions(+), 143 deletions(-)
 create mode 100644 arch/arm/dts/meson-gxl-mali.dtsi
 create mode 100644 arch/arm/dts/meson-gxl-s905x-p212.dts
 create mode 100644 arch/arm/dts/meson-gxl-s905x-p212.dtsi
 create mode 100644 arch/arm/dts/meson-gxl-s905x.dtsi
 create mode 100644 arch/arm/dts/meson-gxl.dtsi
 create mode 100644 board/amlogic/p212/Kconfig
 create mode 100644 board/amlogic/p212/MAINTAINERS
 create mode 100644 board/amlogic/p212/Makefile
 create mode 100644 board/amlogic/p212/README
 create mode 100644 board/amlogic/p212/p212.c
 create mode 100644 configs/p212_defconfig
 create mode 100644 drivers/pinctrl/meson/pinctrl-meson-gxl.c
 create mode 100644 include/configs/p212.h
 create mode 100644 include/dt-bindings/gpio/meson-gxl-gpio.h

-- 
2.7.4

^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2017-11-17 15:43 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-12 13:50 [U-Boot] [PATCH u-boot 0/3] Add initial support for Amlogic P212 Reference board Neil Armstrong
2017-10-12 13:50 ` Neil Armstrong
2017-10-12 13:50 ` [U-Boot] [PATCH u-boot 1/3] ARM: dts: Synchronize Amlogic from Linux Mainline 4.13.5 Neil Armstrong
2017-10-12 13:50   ` Neil Armstrong
2017-10-12 22:29   ` [U-Boot] " Tom Rini
2017-10-12 22:29     ` Tom Rini
2017-10-17 20:49   ` [U-Boot] " Beniamino Galvani
2017-10-17 20:49     ` Beniamino Galvani
2017-11-17 15:42   ` [U-Boot] [U-Boot, u-boot, " Tom Rini
2017-11-17 15:42     ` Tom Rini
2017-10-12 13:50 ` [U-Boot] [PATCH u-boot 2/3] pinctrl: meson: Add GXL Support Neil Armstrong
2017-10-12 13:50   ` Neil Armstrong
2017-10-12 22:29   ` [U-Boot] " Tom Rini
2017-10-12 22:29     ` Tom Rini
2017-10-17 20:51   ` [U-Boot] " Beniamino Galvani
2017-10-17 20:51     ` Beniamino Galvani
2017-11-17 15:43   ` [U-Boot] [U-Boot,u-boot,2/3] " Tom Rini
2017-11-17 15:43     ` Tom Rini
2017-10-12 13:50 ` [U-Boot] [PATCH u-boot 3/3] arm: add initial support for Amlogic P212 based on Meson GXL family Neil Armstrong
2017-10-12 13:50   ` Neil Armstrong
2017-10-12 22:30   ` [U-Boot] " Tom Rini
2017-10-12 22:30     ` Tom Rini
2017-10-17 20:51   ` [U-Boot] " Beniamino Galvani
2017-10-17 20:51     ` Beniamino Galvani
2017-11-17 15:43   ` [U-Boot] [U-Boot, u-boot, " Tom Rini
2017-11-17 15:43     ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.