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)
Mon, Apr 8, 1:57 PM
Unknown Object (File)
Mon, Mar 25, 10:30 PM
Unknown Object (File)
Dec 20 2023, 4:01 AM
Unknown Object (File)
Dec 14 2023, 8:32 PM
Unknown Object (File)
Dec 1 2023, 10:10 PM
Unknown Object (File)
Nov 26 2023, 11:13 PM
Unknown Object (File)
Nov 23 2023, 4:49 AM
Unknown Object (File)
Nov 22 2023, 9:43 PM
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 Skipped
Unit
Tests Skipped

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
517

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
517

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.