Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f5b93c2 authored by Olof Johansson's avatar Olof Johansson
Browse files

Merge tag 'v3.20-next-arm64' of https://github.com/mbgg/linux-mediatek into next/arm64

Merge "ARM: mediatek: arm64 changes for v3.20" from Matthias Brugger:

Add support for mt8173 SoC from Mediatek.

- add DT bindings documentation
- add dts files for SoC and evaluation board
- add to Kconfig and defconfig

* tag 'v3.20-next-arm64' of https://github.com/mbgg/linux-mediatek

:
  arm64: mediatek: Add MT8173 SoC Kconfig and defconfig
  arm64: dts: Add mediatek MT8173 SoC and evaluation board dts and Makefile
  Document: DT: Add bindings for mediatek MT8173 SoC Platform

Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents b288ca40 4727a6f6
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ compatible: Must contain one of
   "mediatek,mt6592"
   "mediatek,mt8127"
   "mediatek,mt8135"
   "mediatek,mt8173"


Supported boards:
@@ -25,3 +26,6 @@ Supported boards:
- MTK mt8135 tablet EVB:
    Required root node properties:
      - compatible = "mediatek,mt8135-evbp1", "mediatek,mt8135";
- MTK mt8173 tablet EVB:
    Required root node properties:
      - compatible = "mediatek,mt8173-evb", "mediatek,mt8173";
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ interrupt.

Required properties:
- compatible: should be one of:
	"mediatek,mt8173-sysirq"
	"mediatek,mt8135-sysirq"
	"mediatek,mt8127-sysirq"
	"mediatek,mt6589-sysirq"
+3 −1
Original line number Diff line number Diff line
@@ -2,9 +2,11 @@

Required properties:
- compatible should contain:
  * "mediatek,mt8173-uart" for MT8173 compatible UARTS
  * "mediatek,mt6589-uart" for MT6589 compatible UARTS
  * "mediatek,mt6582-uart" for MT6582 compatible UARTS
  * "mediatek,mt6577-uart" for all compatible UARTS (MT6589, MT6582, MT6577)
  * "mediatek,mt6577-uart" for all compatible UARTS (MT8173, MT6589, MT6582, 
	MT6577)

- reg: The base address of the UART register bank.

+6 −0
Original line number Diff line number Diff line
@@ -165,6 +165,12 @@ config ARCH_EXYNOS7
	help
	  This enables support for Samsung Exynos7 SoC family

config ARCH_MEDIATEK
	bool "Mediatek MT65xx & MT81xx ARMv8 SoC"
	select ARM_GIC
	help
	  Support for Mediatek MT65xx & MT81xx ARMv8 SoCs

config ARCH_SEATTLE
	bool "AMD Seattle SoC Family"
	help
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ dts-dirs += arm
dts-dirs += cavium
dts-dirs += exynos
dts-dirs += freescale
dts-dirs += mediatek

always		:= $(dtb-y)
subdir-y	:= $(dts-dirs)
Loading