Skip to content
Snippets Groups Projects
Commit dbb39024 authored by Japheth Lim's avatar Japheth Lim
Browse files

exynos4, exynos5: add DTS overlay comments

This explains why the DTS overlays intentionally throw away part of
the kernel memory window.
parent 0a5499bd
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,11 @@
device_type = "memory";
};
/* HACK: 0xe0000000..0xff000000 is the largest contiguous region
* in the kernel window; we clamp to that and discard memory
* after the ASID PD hole (0xff200000..0xfff00000). This is a
* workaround for userspace tools (hardware_gen, elfloader, etc)
* which are not yet aware of the memory hole. */
memory@40000000 {
device_type = "memory";
reg = < 0x40000000 0x1f000000 >;
......
......@@ -16,6 +16,11 @@
stdout-path = "serial2:115200n8";
};
/* HACK: 0xe0000000..0xff000000 is the largest contiguous region
* in the kernel window; we clamp to that and discard memory
* after the ASID PD hole (0xff200000..0xfff00000). This is a
* workaround for userspace tools (hardware_gen, elfloader, etc)
* which are not yet aware of the memory hole. */
memory@40000000 {
reg = <0x60000000 0x1f000000>;
};
......
......@@ -38,6 +38,11 @@
reg = <0x12d40000 0x100>;
};
/* HACK: 0xe0000000..0xff000000 is the largest contiguous region
* in the kernel window; we clamp to that and discard memory
* after the ASID PD hole (0xff200000..0xfff00000). This is a
* workaround for userspace tools (hardware_gen, elfloader, etc)
* which are not yet aware of the memory hole. */
memory@40000000 {
reg = <0x60000000 0x1f000000>;
};
......
......@@ -29,6 +29,11 @@
clock-frequency = <0x16e3600>;
};
/* HACK: 0xe0000000..0xff000000 is the largest contiguous region
* in the kernel window; we clamp to that and discard memory
* after the ASID PD hole (0xff200000..0xfff00000). This is a
* workaround for userspace tools (hardware_gen, elfloader, etc)
* which are not yet aware of the memory hole. */
memory@40000000 {
reg = <0x60000000 0x1f000000>;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment