BACKPORT: arm64: vmlinux.ld: Add mmuoff data sections and move mmuoff text into idmap
authorJames Morse <james.morse@arm.com>
Wed, 24 Aug 2016 17:27:29 +0000 (18:27 +0100)
committerAmit Pundir <amit.pundir@linaro.org>
Thu, 25 May 2017 12:40:11 +0000 (18:10 +0530)
commit2637c3592353026b992abe225f0293d134024ee6
tree4074a7bf4c566abfb2f3e90eac70724989472804
parent126a24ed887c78dbecd358c87cab47f36d0c095c
BACKPORT: arm64: vmlinux.ld: Add mmuoff data sections and move mmuoff text into idmap

Resume from hibernate needs to clean any text executed by the kernel with
the MMU off to the PoC. Collect these functions together into the
.idmap.text section as all this code is tightly coupled and also needs
the same cleaning after resume.

Data is more complicated, secondary_holding_pen_release is written with
the MMU on, clean and invalidated, then read with the MMU off. In contrast
__boot_cpu_mode is written with the MMU off, the corresponding cache line
is invalidated, so when we read it with the MMU on we don't get stale data.
These cache maintenance operations conflict with each other if the values
are within a Cache Writeback Granule (CWG) of each other.
Collect the data into two sections .mmuoff.data.read and .mmuoff.data.write,
the linker script ensures mmuoff.data.write section is aligned to the
architectural maximum CWG of 2KB.

Signed-off-by: James Morse <james.morse@arm.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
(cherry picked from commit b61130381120398876b86282082ad9f24976dfcf)
Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
arch/arm64/include/asm/sections.h
arch/arm64/kernel/head.S
arch/arm64/kernel/sleep.S
arch/arm64/kernel/smp_spin_table.c
arch/arm64/kernel/vmlinux.lds.S
arch/arm64/mm/proc.S