Module Name: src
Committed By: matt
Date: Wed Dec 13 01:03:41 UTC 2017
Modified Files:
src/sys/arch/arm/cortex [matt-nb8-mediatek]: armperiph.c
Log Message:
Add Cortex-A35 devices
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.11.6.1 src/sys/arch/arm/cortex/armperiph.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/cortex/armperiph.c
diff -u src/sys/arch/arm/cortex/armperiph.c:1.11 src/sys/arch/arm/cortex/armperiph.c:1.11.6.1
--- src/sys/arch/arm/cortex/armperiph.c:1.11 Fri May 26 21:17:46 2017
+++ src/sys/arch/arm/cortex/armperiph.c Wed Dec 13 01:03:41 2017
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: armperiph.c,v 1.11 2017/05/26 21:17:46 jmcneill Exp $");
+__KERNEL_RCSID(1, "$NetBSD: armperiph.c,v 1.11.6.1 2017/12/13 01:03:41 matt Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -106,6 +106,14 @@ static const struct armperiph_info a17_d
};
#endif
+#ifdef CPU_CORTEXA35
+static const struct armperiph_info a35_devices[] = {
+ { "armgic", 0, 0x4000 },
+ { "armgtmr", 0, 0 },
+ { "", 0, 0 },
+};
+#endif
+
#ifdef CPU_CORTEXA57
static const struct armperiph_info a57_devices[] = {
{ "armgic", 0x1000, 0x2000 },
@@ -135,6 +143,9 @@ static const struct mpcore_config {
#ifdef CPU_CORTEXA17
{ a17_devices, 0x410fc0e0, 8*4096 },
#endif
+#ifdef CPU_CORTEXA35
+ { a35_devices, 0x410fd040, 8*4096 },
+#endif
#ifdef CPU_CORTEXA57
{ a57_devices, 0x410fd070, 8*4096 },
#endif