MIPS: Add support for CONFIG_DEBUG_VIRTUAL
authorFlorian Fainelli <f.fainelli@gmail.com>
Wed, 31 Mar 2021 03:22:07 +0000 (20:22 -0700)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Tue, 6 Apr 2021 12:34:02 +0000 (14:34 +0200)
commitdfad83cb7193effb6c853a5c7337ac2274a2e2fc
treef5fcff9ee261de7766baa886c075e957ea69e17a
parent666c1fc90cd82184624d4cc5d124c66025f89a47
MIPS: Add support for CONFIG_DEBUG_VIRTUAL

Provide hooks to intercept bad usages of virt_to_phys() and
__pa_symbol() throughout the kernel. To make this possible, we need to
rename the current implement of virt_to_phys() into
__virt_to_phys_nodebug() and wrap it around depending on
CONFIG_DEBUG_VIRTUAL.

A similar thing is needed for __pa_symbol() which is now aliased to
__phys_addr_symbol() whose implementation is either the direct return of
RELOC_HIDE or goes through the debug version.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/Kconfig
arch/mips/include/asm/io.h
arch/mips/include/asm/page.h
arch/mips/kernel/vdso.c
arch/mips/mm/Makefile
arch/mips/mm/physaddr.c [new file with mode: 0644]