Searched hist:"8 c49b5d43d4c45ca0bb0d1faa23feef2e76e89fa" (Results 1 – 3 of 3) sorted by relevance
/linux/arch/arm64/kvm/hyp/nvhe/ |
H A D | .gitignore | diff 8c49b5d43d4c45ca0bb0d1faa23feef2e76e89fa Tue Jan 05 19:05:37 CET 2021 David Brazdil <dbrazdil@google.com> KVM: arm64: Generate hyp relocation data
Add a post-processing step to compilation of KVM nVHE hyp code which calls a custom host tool (gen-hyprel) on the partially linked object file (hyp sections' names prefixed).
The tool lists all R_AARCH64_ABS64 data relocations targeting hyp sections and generates an assembly file that will form a new section .hyp.reloc in the kernel binary. The new section contains an array of 32-bit offsets to the positions targeted by these relocations.
Since these addresses of those positions will not be determined until linking of `vmlinux`, each 32-bit entry carries a R_AARCH64_PREL32 relocation with addend <section_base_sym> + <r_offset>. The linker of `vmlinux` will therefore fill the slot accordingly.
This relocation data will be used at runtime to convert the kernel VAs at those positions to hyp VAs.
Signed-off-by: David Brazdil <dbrazdil@google.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20210105180541.65031-5-dbrazdil@google.com
|
H A D | gen-hyprel.c | 8c49b5d43d4c45ca0bb0d1faa23feef2e76e89fa Tue Jan 05 19:05:37 CET 2021 David Brazdil <dbrazdil@google.com> KVM: arm64: Generate hyp relocation data
Add a post-processing step to compilation of KVM nVHE hyp code which calls a custom host tool (gen-hyprel) on the partially linked object file (hyp sections' names prefixed).
The tool lists all R_AARCH64_ABS64 data relocations targeting hyp sections and generates an assembly file that will form a new section .hyp.reloc in the kernel binary. The new section contains an array of 32-bit offsets to the positions targeted by these relocations.
Since these addresses of those positions will not be determined until linking of `vmlinux`, each 32-bit entry carries a R_AARCH64_PREL32 relocation with addend <section_base_sym> + <r_offset>. The linker of `vmlinux` will therefore fill the slot accordingly.
This relocation data will be used at runtime to convert the kernel VAs at those positions to hyp VAs.
Signed-off-by: David Brazdil <dbrazdil@google.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20210105180541.65031-5-dbrazdil@google.com
|
H A D | Makefile | diff 8c49b5d43d4c45ca0bb0d1faa23feef2e76e89fa Tue Jan 05 19:05:37 CET 2021 David Brazdil <dbrazdil@google.com> KVM: arm64: Generate hyp relocation data
Add a post-processing step to compilation of KVM nVHE hyp code which calls a custom host tool (gen-hyprel) on the partially linked object file (hyp sections' names prefixed).
The tool lists all R_AARCH64_ABS64 data relocations targeting hyp sections and generates an assembly file that will form a new section .hyp.reloc in the kernel binary. The new section contains an array of 32-bit offsets to the positions targeted by these relocations.
Since these addresses of those positions will not be determined until linking of `vmlinux`, each 32-bit entry carries a R_AARCH64_PREL32 relocation with addend <section_base_sym> + <r_offset>. The linker of `vmlinux` will therefore fill the slot accordingly.
This relocation data will be used at runtime to convert the kernel VAs at those positions to hyp VAs.
Signed-off-by: David Brazdil <dbrazdil@google.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20210105180541.65031-5-dbrazdil@google.com
|