Page MenuHomeFreeBSD

amd64 acpi_wakeup: map 1:1 whole low 4G for initial page table
ClosedPublic

Authored by kib on Sep 11 2021, 6:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Oct 22, 12:01 AM
Unknown Object (File)
Oct 2 2024, 4:16 AM
Unknown Object (File)
Sep 30 2024, 11:45 PM
Unknown Object (File)
Sep 27 2024, 12:46 PM
Unknown Object (File)
Sep 26 2024, 11:45 PM
Unknown Object (File)
Sep 26 2024, 10:18 PM
Unknown Object (File)
Sep 24 2024, 9:45 AM
Unknown Object (File)
Sep 22 2024, 9:18 AM
Subscribers

Details

Summary

This is required since kernel text might be physically located anywhere below 4G.

Also avoid touching unowned low memory when booted from UEFI.

PR: 258432

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kib requested review of this revision.Sep 11 2021, 6:42 PM
kib created this revision.

Do not forget to install KVA mappings into the trampoline page table.

kib added a reviewer: markj.
markj added inline comments.
sys/x86/acpica/acpi_wakeup.c
507

Why do we set PG_U here?

This revision is now accepted and ready to land.Sep 13 2021, 12:41 PM
sys/x86/acpica/acpi_wakeup.c
507

I do not think there is a reason now. It might be there was some reason before, if e.g. vm86 mode was used on the wakeup path [Or any other trampoline from real mode to final protection mode, we are consistent to set PG_U on all trampoline ptes, I believe] So it probably was moved from i386 to amd64 and live there since.

I have another change to the acpi_wakeup.c in pipe, after that I might look into coalescing code that creates page table for low 4G 1:1.