diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-09-14 18:42:02 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2016-09-14 18:42:02 -0400 |
commit | 4a5c99462ab5cdc111007625b76e349076f18a29 (patch) | |
tree | 95bee3c310f4aedd6ccf05746c5ba7931d9cf801 | |
parent | be46f95b54e00922a506d9b3ecf588cc8255d310 (diff) | |
parent | c1efda1238be1efa8612e26ee98795298ffd6f95 (diff) |
Merge tag 'sunxi-core-for-4.9' of https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux into next/soc
Pull "Allwinner core changes for 4.9" from Maxime Ripard:
Add support for big endian on the Allwinner A20, and the Nextthing GR8 SoC
* tag 'sunxi-core-for-4.9' of https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux:
ARM: sunxi: Support the Nextthing GR8
ARM: sunxi: enable big-endian
-rw-r--r-- | Documentation/arm/sunxi/README | 2 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/arm/sunxi.txt | 1 | ||||
-rw-r--r-- | MAINTAINERS | 1 | ||||
-rw-r--r-- | arch/arm/mach-sunxi/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm/mach-sunxi/sunxi.c | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/arm/sunxi/README b/Documentation/arm/sunxi/README index e5a115f24471..77f57efbea83 100644 --- a/Documentation/arm/sunxi/README +++ b/Documentation/arm/sunxi/README | |||
@@ -31,6 +31,8 @@ SunXi family | |||
31 | + User Manual | 31 | + User Manual |
32 | http://dl.linux-sunxi.org/A13/A13%20User%20Manual%20-%20v1.2%20%282013-01-08%29.pdf | 32 | http://dl.linux-sunxi.org/A13/A13%20User%20Manual%20-%20v1.2%20%282013-01-08%29.pdf |
33 | 33 | ||
34 | - Next Thing Co GR8 (sun5i) | ||
35 | |||
34 | * Dual ARM Cortex-A7 based SoCs | 36 | * Dual ARM Cortex-A7 based SoCs |
35 | - Allwinner A20 (sun7i) | 37 | - Allwinner A20 (sun7i) |
36 | + User Manual | 38 | + User Manual |
diff --git a/Documentation/devicetree/bindings/arm/sunxi.txt b/Documentation/devicetree/bindings/arm/sunxi.txt index 7e79fcc36b0d..3975d0a0e4c2 100644 --- a/Documentation/devicetree/bindings/arm/sunxi.txt +++ b/Documentation/devicetree/bindings/arm/sunxi.txt | |||
@@ -14,3 +14,4 @@ using one of the following compatible strings: | |||
14 | allwinner,sun8i-a83t | 14 | allwinner,sun8i-a83t |
15 | allwinner,sun8i-h3 | 15 | allwinner,sun8i-h3 |
16 | allwinner,sun9i-a80 | 16 | allwinner,sun9i-a80 |
17 | nextthing,gr8 | ||
diff --git a/MAINTAINERS b/MAINTAINERS index 5689d6ea9149..a73e88768ec3 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -991,6 +991,7 @@ M: Chen-Yu Tsai <wens@csie.org> | |||
991 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | 991 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
992 | S: Maintained | 992 | S: Maintained |
993 | N: sun[x456789]i | 993 | N: sun[x456789]i |
994 | F: arch/arm/boot/dts/ntc-gr8* | ||
994 | 995 | ||
995 | ARM/Allwinner SoC Clock Support | 996 | ARM/Allwinner SoC Clock Support |
996 | M: Emilio López <emilio@elopez.com.ar> | 997 | M: Emilio López <emilio@elopez.com.ar> |
diff --git a/arch/arm/mach-sunxi/Kconfig b/arch/arm/mach-sunxi/Kconfig index 096ed216c6d5..b9863f9a35fa 100644 --- a/arch/arm/mach-sunxi/Kconfig +++ b/arch/arm/mach-sunxi/Kconfig | |||
@@ -32,6 +32,7 @@ config MACH_SUN7I | |||
32 | default ARCH_SUNXI | 32 | default ARCH_SUNXI |
33 | select ARM_GIC | 33 | select ARM_GIC |
34 | select ARM_PSCI | 34 | select ARM_PSCI |
35 | select ARCH_SUPPORTS_BIG_ENDIAN | ||
35 | select HAVE_ARM_ARCH_TIMER | 36 | select HAVE_ARM_ARCH_TIMER |
36 | select SUN5I_HSTIMER | 37 | select SUN5I_HSTIMER |
37 | 38 | ||
diff --git a/arch/arm/mach-sunxi/sunxi.c b/arch/arm/mach-sunxi/sunxi.c index 95dca8c2c9ed..2e2bde271205 100644 --- a/arch/arm/mach-sunxi/sunxi.c +++ b/arch/arm/mach-sunxi/sunxi.c | |||
@@ -22,6 +22,7 @@ static const char * const sunxi_board_dt_compat[] = { | |||
22 | "allwinner,sun5i-a10s", | 22 | "allwinner,sun5i-a10s", |
23 | "allwinner,sun5i-a13", | 23 | "allwinner,sun5i-a13", |
24 | "allwinner,sun5i-r8", | 24 | "allwinner,sun5i-r8", |
25 | "nextthing,gr8", | ||
25 | NULL, | 26 | NULL, |
26 | }; | 27 | }; |
27 | 28 | ||