RISC-V: Fixmap support and MM cleanups
authorPalmer Dabbelt <palmer@sifive.com>
Mon, 4 Mar 2019 19:41:36 +0000 (11:41 -0800)
committerPalmer Dabbelt <palmer@sifive.com>
Mon, 4 Mar 2019 19:47:04 +0000 (11:47 -0800)
commit13fd5de06514458eb320188b7a815d65696efd99
treefaa6d1ce1c20eb3b909ccecf481b865869463083
parentf7ccc35aa3bd728ad8451f4d06e801cfe5c5498c
parent823900cd01301c4720b23afa9f3d08036e07245a
RISC-V: Fixmap support and MM cleanups

This patchset does:
1. Moves MM related code from kernel/setup.c to mm/init.c
2. Implements compile-time fixed mappings

Using fixed mappings, we get earlyprints even without SBI calls.

For example, we can now use kernel parameter
"earlycon=uart8250,mmio,0x10000000"
to get early prints on QEMU virt machine without using SBI calls.

The patchset is tested on QEMU virt machine.

Palmer: It looks like some of the code movement here conflicted with the
patches to move hartid handling around.  As far as I can tell the only
changed code was in smp_setup_processor_id(), and I've kept the one in
smp.c.
arch/riscv/kernel/setup.c
arch/riscv/kernel/smp.c