This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 223c5a3722 xtensa/esp32_esp32s2_esp32s3: enable syslog bufferring
new 0476e30a6d mm/kmm_map: Add support to dynamically map pages into
kernel virtual memory
new 783f3f4c92 arch/risc-v: Move ARCH_ADDRENV_VBASE to addrenv.h
new 376874d88b arch/risc-v: Add maximum user addrenv size and end boundary
new 1387c35213 arch/risc-v: Add method to extract PPN from SATP value
new f28ac98de0 arch/risc-v: Add riscv_addrenv_pgmap
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
arch/Kconfig | 19 +
arch/risc-v/src/common/Make.defs | 2 +-
arch/risc-v/src/common/addrenv.h | 16 +
arch/risc-v/src/common/pgalloc.h | 20 +
arch/risc-v/src/common/riscv_addrenv.c | 17 +-
arch/risc-v/src/common/riscv_addrenv_pgmap.c | 239 +++++++++++
arch/risc-v/src/common/riscv_mmu.h | 26 +-
include/nuttx/addrenv.h | 17 +
include/nuttx/arch.h | 102 +++++
.../nuttx/mm/kmap.h | 74 ++--
mm/Kconfig | 10 +
mm/Makefile | 1 +
mm/{shm => kmap}/Make.defs | 14 +-
mm/kmap/kmm_map.c | 466 +++++++++++++++++++++
sched/init/nx_start.c | 7 +
15 files changed, 964 insertions(+), 66 deletions(-)
create mode 100644 arch/risc-v/src/common/riscv_addrenv_pgmap.c
copy arch/risc-v/src/esp32c6/esp32c6_clockconfig.h => include/nuttx/mm/kmap.h
(57%)
copy mm/{shm => kmap}/Make.defs (86%)
create mode 100644 mm/kmap/kmm_map.c