Page MenuHomeFreeBSD

RISC-V: use physmem to manage physical memory
ClosedPublic

Authored by mhorne on Mar 22 2020, 6:38 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 21 2024, 1:46 PM
Unknown Object (File)
Feb 10 2024, 12:53 AM
Unknown Object (File)
Feb 8 2024, 9:03 PM
Unknown Object (File)
Feb 4 2024, 12:13 PM
Unknown Object (File)
Jan 26 2024, 2:53 PM
Unknown Object (File)
Dec 20 2023, 8:42 AM
Unknown Object (File)
Dec 20 2023, 3:03 AM
Unknown Object (File)
Dec 16 2023, 2:08 PM
Subscribers

Details

Summary

Replace our hand-rolled functions with the generic ones provided by
kern/subr_physmem.c. This greatly simplifies the initialization of
physical memory regions and kernel globals.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 30045
Build 27856: arc lint + arc unit

Event Timeline

I've found this to fail to boot, because it didn't reserve memory for the DTB (supplied by BBL). I'm not entirely sure if that's a result of an issue with your patch, or if there's something wrong in our local tree.

How is the DTB memory supposed to be reserved?

The following fixes the immediate problem for me:

@@ -806,9 +808,11 @@ initriscv(struct riscv_bootparams *rvbp)
 #ifdef FDT
        try_load_dtb(kmdp, rvbp->dtbp_virt);
 #endif
+       /* Reserve memory for the DTB. */
+       physmem_exclude_region(rvbp->dtbp_phys, L2_SIZE, EXFLAG_NOALLOC);
In D24154#532404, @kp wrote:

I've found this to fail to boot, because it didn't reserve memory for the DTB (supplied by BBL). I'm not entirely sure if that's a result of an issue with your patch, or if there's something wrong in our local tree.

How is the DTB memory supposed to be reserved?

The following fixes the immediate problem for me:

@@ -806,9 +808,11 @@ initriscv(struct riscv_bootparams *rvbp)
 #ifdef FDT
        try_load_dtb(kmdp, rvbp->dtbp_virt);
 #endif
+       /* Reserve memory for the DTB. */
+       physmem_exclude_region(rvbp->dtbp_phys, L2_SIZE, EXFLAG_NOALLOC);

Looks like I missed linking one of the parents. This patch also depends on D24152.

Looks like I missed linking one of the parents. This patch also depends on D24152.

Thanks! I should have realised. I'd already seen the other patch, but somehow neglected to include it in my tests.

sys/riscv/riscv/machdep.c
856

Do you prefer to use square brackets for a single line statements?

Ping. Any opposition to this one? I would like to commit the set of patches soon.

These changes look good. I can confirm that this works.

Keep physmap globals in machdep.c.

This revision was not accepted when it landed; it landed in state Needs Review.Apr 19 2020, 12:18 AM
This revision was automatically updated to reflect the committed changes.