]> git.baikalelectronics.ru Git - kernel.git/commit
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)
committerWill Deacon <will.deacon@arm.com>
Thu, 25 Aug 2016 17:00:30 +0000 (18:00 +0100)
commit841ac47038988e3603a2b164c932e55e026d2e73
tree379bb3853cf04f2dd503fc12ef0293ab8327780d
parent3a3e0f2c87fcdb6a9dc9e038a142b56fba651eb8
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>
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