diff options
author | Icenowy Zheng <icenowy@aosc.xyz> | 2016-12-02 10:05:12 -0500 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2017-01-02 16:25:32 -0500 |
commit | 16fa9629c4eac40083899d904057df993a2eb06e (patch) | |
tree | 5e50edf89b01a0f1dd2408920e90d7eb8e9a3d24 | |
parent | 7ce7d89f48834cefece7804d38fc5d85382edf77 (diff) |
ARM: sunxi: add support for H2+ SoC
Allwinner H2+ is a quad-core Cortex-A7 SoC.
It is very like H3, that they share the same SoC ID (0x1680), and H3
memory maps as well as drivers works well on the SoC.
Signed-off-by: Icenowy Zheng <icenowy@aosc.xyz>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r-- | Documentation/arm/sunxi/README | 4 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/arm/sunxi.txt | 1 | ||||
-rw-r--r-- | arch/arm/mach-sunxi/sunxi.c | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/arm/sunxi/README b/Documentation/arm/sunxi/README index cd0243302bc1..1fe4d99cb43e 100644 --- a/Documentation/arm/sunxi/README +++ b/Documentation/arm/sunxi/README | |||
@@ -63,6 +63,10 @@ SunXi family | |||
63 | + User Manual | 63 | + User Manual |
64 | http://dl.linux-sunxi.org/A33/A33%20user%20manual%20release%201.1.pdf | 64 | http://dl.linux-sunxi.org/A33/A33%20user%20manual%20release%201.1.pdf |
65 | 65 | ||
66 | - Allwinner H2+ (sun8i) | ||
67 | + No document available now, but is known to be working properly with | ||
68 | H3 drivers and memory map. | ||
69 | |||
66 | - Allwinner H3 (sun8i) | 70 | - Allwinner H3 (sun8i) |
67 | + Datasheet | 71 | + Datasheet |
68 | http://dl.linux-sunxi.org/H3/Allwinner_H3_Datasheet_V1.0.pdf | 72 | http://dl.linux-sunxi.org/H3/Allwinner_H3_Datasheet_V1.0.pdf |
diff --git a/Documentation/devicetree/bindings/arm/sunxi.txt b/Documentation/devicetree/bindings/arm/sunxi.txt index 4d6467cc2aa2..d2c46449b4eb 100644 --- a/Documentation/devicetree/bindings/arm/sunxi.txt +++ b/Documentation/devicetree/bindings/arm/sunxi.txt | |||
@@ -12,6 +12,7 @@ using one of the following compatible strings: | |||
12 | allwinner,sun8i-a23 | 12 | allwinner,sun8i-a23 |
13 | allwinner,sun8i-a33 | 13 | allwinner,sun8i-a33 |
14 | allwinner,sun8i-a83t | 14 | allwinner,sun8i-a83t |
15 | allwinner,sun8i-h2-plus | ||
15 | allwinner,sun8i-h3 | 16 | allwinner,sun8i-h3 |
16 | allwinner,sun9i-a80 | 17 | allwinner,sun9i-a80 |
17 | allwinner,sun50i-a64 | 18 | allwinner,sun50i-a64 |
diff --git a/arch/arm/mach-sunxi/sunxi.c b/arch/arm/mach-sunxi/sunxi.c index 2e2bde271205..320d2afdbc78 100644 --- a/arch/arm/mach-sunxi/sunxi.c +++ b/arch/arm/mach-sunxi/sunxi.c | |||
@@ -63,6 +63,7 @@ static const char * const sun8i_board_dt_compat[] = { | |||
63 | "allwinner,sun8i-a23", | 63 | "allwinner,sun8i-a23", |
64 | "allwinner,sun8i-a33", | 64 | "allwinner,sun8i-a33", |
65 | "allwinner,sun8i-a83t", | 65 | "allwinner,sun8i-a83t", |
66 | "allwinner,sun8i-h2-plus", | ||
66 | "allwinner,sun8i-h3", | 67 | "allwinner,sun8i-h3", |
67 | NULL, | 68 | NULL, |
68 | }; | 69 | }; |