-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next/nommu' into for-next
Conflicts: arch/riscv/boot/Makefile arch/riscv/include/asm/sbi.h
- Loading branch information
Showing
54 changed files
with
947 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
|
||
.align 4 | ||
.section .payload, "ax", %progbits | ||
.globl _start | ||
_start: | ||
.incbin "arch/riscv/boot/Image" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
|
||
#include <asm/page.h> | ||
|
||
OUTPUT_ARCH(riscv) | ||
ENTRY(_start) | ||
|
||
SECTIONS | ||
{ | ||
. = PAGE_OFFSET; | ||
|
||
.payload : { | ||
*(.payload) | ||
. = ALIGN(8); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# CONFIG_CPU_ISOLATION is not set | ||
CONFIG_LOG_BUF_SHIFT=16 | ||
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=12 | ||
CONFIG_BLK_DEV_INITRD=y | ||
# CONFIG_RD_BZIP2 is not set | ||
# CONFIG_RD_LZMA is not set | ||
# CONFIG_RD_XZ is not set | ||
# CONFIG_RD_LZO is not set | ||
# CONFIG_RD_LZ4 is not set | ||
CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
CONFIG_EXPERT=y | ||
# CONFIG_SYSFS_SYSCALL is not set | ||
# CONFIG_FHANDLE is not set | ||
# CONFIG_BASE_FULL is not set | ||
# CONFIG_EPOLL is not set | ||
# CONFIG_SIGNALFD is not set | ||
# CONFIG_TIMERFD is not set | ||
# CONFIG_EVENTFD is not set | ||
# CONFIG_AIO is not set | ||
# CONFIG_IO_URING is not set | ||
# CONFIG_ADVISE_SYSCALLS is not set | ||
# CONFIG_MEMBARRIER is not set | ||
# CONFIG_KALLSYMS is not set | ||
# CONFIG_VM_EVENT_COUNTERS is not set | ||
# CONFIG_COMPAT_BRK is not set | ||
CONFIG_SLOB=y | ||
# CONFIG_SLAB_MERGE_DEFAULT is not set | ||
# CONFIG_MMU is not set | ||
CONFIG_MAXPHYSMEM_2GB=y | ||
CONFIG_SMP=y | ||
CONFIG_CMDLINE="root=/dev/vda rw earlycon=uart8250,mmio,0x10000000,115200n8 console=ttyS0" | ||
CONFIG_CMDLINE_FORCE=y | ||
# CONFIG_BLK_DEV_BSG is not set | ||
CONFIG_PARTITION_ADVANCED=y | ||
# CONFIG_MSDOS_PARTITION is not set | ||
# CONFIG_EFI_PARTITION is not set | ||
# CONFIG_MQ_IOSCHED_DEADLINE is not set | ||
# CONFIG_MQ_IOSCHED_KYBER is not set | ||
CONFIG_BINFMT_FLAT=y | ||
# CONFIG_COREDUMP is not set | ||
CONFIG_DEVTMPFS=y | ||
CONFIG_DEVTMPFS_MOUNT=y | ||
# CONFIG_FW_LOADER is not set | ||
# CONFIG_ALLOW_DEV_COREDUMP is not set | ||
CONFIG_VIRTIO_BLK=y | ||
# CONFIG_INPUT_KEYBOARD is not set | ||
# CONFIG_INPUT_MOUSE is not set | ||
# CONFIG_SERIO is not set | ||
# CONFIG_LEGACY_PTYS is not set | ||
# CONFIG_LDISC_AUTOLOAD is not set | ||
# CONFIG_DEVMEM is not set | ||
CONFIG_SERIAL_8250=y | ||
# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set | ||
CONFIG_SERIAL_8250_CONSOLE=y | ||
CONFIG_SERIAL_8250_NR_UARTS=1 | ||
CONFIG_SERIAL_8250_RUNTIME_UARTS=1 | ||
CONFIG_SERIAL_OF_PLATFORM=y | ||
# CONFIG_HW_RANDOM is not set | ||
# CONFIG_HWMON is not set | ||
# CONFIG_LCD_CLASS_DEVICE is not set | ||
# CONFIG_BACKLIGHT_CLASS_DEVICE is not set | ||
# CONFIG_VGA_CONSOLE is not set | ||
# CONFIG_HID is not set | ||
# CONFIG_USB_SUPPORT is not set | ||
CONFIG_VIRTIO_MMIO=y | ||
CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y | ||
CONFIG_SIFIVE_PLIC=y | ||
# CONFIG_VALIDATE_FS_PARSER is not set | ||
CONFIG_EXT2_FS=y | ||
# CONFIG_DNOTIFY is not set | ||
# CONFIG_INOTIFY_USER is not set | ||
# CONFIG_MISC_FILESYSTEMS is not set | ||
CONFIG_LSM="[]" | ||
CONFIG_PRINTK_TIME=y | ||
# CONFIG_SCHED_DEBUG is not set | ||
# CONFIG_RCU_TRACE is not set | ||
# CONFIG_FTRACE is not set | ||
# CONFIG_RUNTIME_TESTING_MENU is not set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
#ifndef _ASM_RISCV_CLINT_H | ||
#define _ASM_RISCV_CLINT_H 1 | ||
|
||
#include <linux/io.h> | ||
#include <linux/smp.h> | ||
|
||
#ifdef CONFIG_RISCV_M_MODE | ||
extern u32 __iomem *clint_ipi_base; | ||
|
||
void clint_init_boot_cpu(void); | ||
|
||
static inline void clint_send_ipi_single(unsigned long hartid) | ||
{ | ||
writel(1, clint_ipi_base + hartid); | ||
} | ||
|
||
static inline void clint_send_ipi_mask(const struct cpumask *hartid_mask) | ||
{ | ||
int hartid; | ||
|
||
for_each_cpu(hartid, hartid_mask) | ||
clint_send_ipi_single(hartid); | ||
} | ||
|
||
static inline void clint_clear_ipi(unsigned long hartid) | ||
{ | ||
writel(0, clint_ipi_base + hartid); | ||
} | ||
#else /* CONFIG_RISCV_M_MODE */ | ||
#define clint_init_boot_cpu() do { } while (0) | ||
|
||
/* stubs to for code is only reachable under IS_ENABLED(CONFIG_RISCV_M_MODE): */ | ||
void clint_send_ipi_single(unsigned long hartid); | ||
void clint_send_ipi_mask(const struct cpumask *hartid_mask); | ||
void clint_clear_ipi(unsigned long hartid); | ||
#endif /* CONFIG_RISCV_M_MODE */ | ||
|
||
#endif /* _ASM_RISCV_CLINT_H */ |
Oops, something went wrong.