We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 630c191 commit 04a0137Copy full SHA for 04a0137
arch/arm/mach-keystone/keystone.c
@@ -18,10 +18,18 @@
18
#include <asm/mach/time.h>
19
#include <asm/page.h>
20
21
-#include "memory.h"
22
-
23
#include "keystone.h"
24
+#define KEYSTONE_LOW_PHYS_START 0x80000000ULL
+#define KEYSTONE_LOW_PHYS_SIZE 0x80000000ULL /* 2G */
25
+#define KEYSTONE_LOW_PHYS_END (KEYSTONE_LOW_PHYS_START + \
26
+ KEYSTONE_LOW_PHYS_SIZE - 1)
27
+
28
+#define KEYSTONE_HIGH_PHYS_START 0x800000000ULL
29
+#define KEYSTONE_HIGH_PHYS_SIZE 0x400000000ULL /* 16G */
30
+#define KEYSTONE_HIGH_PHYS_END (KEYSTONE_HIGH_PHYS_START + \
31
+ KEYSTONE_HIGH_PHYS_SIZE - 1)
32
33
#ifdef CONFIG_ARM_LPAE
34
static int keystone_platform_notifier(struct notifier_block *nb,
35
unsigned long event, void *data)
arch/arm/mach-keystone/memory.h
0 commit comments