[GIT PULL] RISC-V Fixes for 5.6-rc5

From: Palmer Dabbelt
Date: Fri Mar 06 2020 - 17:24:22 EST


The following changes since commit 98d54f81e36ba3bf92172791eba5ca5bd813989b:

Linux 5.6-rc4 (2020-03-01 16:38:46 -0600)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-5.6-rc5

for you to fetch changes up to af33d2433b03d63ed31fcfda842f46676a5e1afc:

riscv: fix seccomp reject syscall code path (2020-03-05 13:58:15 -0800)

----------------------------------------------------------------
RISC-V Fixes for 5.6-rc5

This tag contains a handful of fixes that I would like to target for 5.6:

* A pair of fixes to module loading, which we hope solve the last of the issues
with module text being loaded too sparsely for our call relocations.
* A Kconfig fix that disallows selecting memory models not supported by NOMMU.
* A series of Kconfig updates to ease selecting the drivers necessary to run on
QEMU's virt platform.
* DTS updates for SiFive's HiFive Unleashed.
* A fix to our seccomp support that avoids mangling restartable syscalls.

----------------------------------------------------------------
Alexandre Ghiti (1):
riscv: Fix range looking for kernel image memblock

Anup Patel (4):
RISC-V: Add kconfig option for QEMU virt machine
RISC-V: Enable QEMU virt machine support in defconfigs
RISC-V: Select SYSCON Reboot and Poweroff for QEMU virt machine
RISC-V: Select Goldfish RTC driver for QEMU virt machine

Damien Le Moal (1):
riscv: Force flat memory model with no-mmu

Tycho Andersen (1):
riscv: fix seccomp reject syscall code path

Vincent Chen (2):
riscv: avoid the PIC offset of static percpu data in module beyond 2G limits
riscv: Change code model of module to medany to improve data accessing

Yash Shah (1):
riscv: dts: Add GPIO reboot method to HiFive Unleashed DTS file

arch/riscv/Kconfig | 1 +
arch/riscv/Kconfig.socs | 24 ++++++++++++++++++++++
arch/riscv/Makefile | 6 ++++--
.../riscv/boot/dts/sifive/hifive-unleashed-a00.dts | 5 +++++
arch/riscv/configs/defconfig | 17 +++------------
arch/riscv/configs/rv32_defconfig | 18 +++-------------
arch/riscv/include/asm/syscall.h | 7 -------
arch/riscv/kernel/entry.S | 11 +++-------
arch/riscv/kernel/module.c | 16 +++++++++++++++
arch/riscv/kernel/ptrace.c | 11 +++++-----
arch/riscv/mm/init.c | 2 +-
11 files changed, 65 insertions(+), 53 deletions(-)