ARM: 8640/1: Add support for CONFIG_DEBUG_VIRTUAL
authorFlorian Fainelli <[email protected]>
Sun, 15 Jan 2017 02:59:00 +0000 (03:59 +0100)
committerRussell King <[email protected]>
Tue, 28 Feb 2017 11:06:09 +0000 (11:06 +0000)
commite377cd8221ebbe0b517861aa3d823bb42f9abbd4
tree009c0f27e450c6e40a9576dbce4e03a55a4dadae
parent399f157afd30ad942e08dfa0ab28734c50bc6b00
ARM: 8640/1: Add support for CONFIG_DEBUG_VIRTUAL

x86 has an option: CONFIG_DEBUG_VIRTUAL to do additional checks on
virt_to_phys calls. The goal is to catch users who are calling
virt_to_phys on non-linear addresses immediately. This includes caller
using __virt_to_phys() on image addresses instead of __pa_symbol(). This
is a generally useful debug feature to spot bad code (particulary in
drivers).

Acked-by: Russell King <[email protected]>
Acked-by: Laura Abbott <[email protected]>
Signed-off-by: Florian Fainelli <[email protected]>
Signed-off-by: Russell King <[email protected]>
arch/arm/Kconfig
arch/arm/include/asm/memory.h
arch/arm/mm/Makefile
arch/arm/mm/physaddr.c [new file with mode: 0644]