OSDN Git Service

RISC-V: Init and Halt Code
authorPalmer Dabbelt <palmer@dabbelt.com>
Tue, 11 Jul 2017 01:00:26 +0000 (18:00 -0700)
committerPalmer Dabbelt <palmer@dabbelt.com>
Tue, 26 Sep 2017 22:26:44 +0000 (15:26 -0700)
commit76d2a0493a17d4c8ecc781366850c3c4f8e1a446
tree5612f17472f4f3bd6fb49e217cb998f5c32836c4
parent8caea502367056881e5209ca55a7a01775c9a1cd
RISC-V: Init and Halt Code

This contains the various __init C functions, the initial assembly
kernel entry point, and the code to reset the system.  When a file was
init-related this patch contains the entire file.

Signed-off-by: Palmer Dabbelt <palmer@dabbelt.com>
15 files changed:
arch/riscv/include/asm/bug.h [new file with mode: 0644]
arch/riscv/include/asm/cache.h [new file with mode: 0644]
arch/riscv/include/asm/smp.h [new file with mode: 0644]
arch/riscv/kernel/cacheinfo.c [new file with mode: 0644]
arch/riscv/kernel/cpu.c [new file with mode: 0644]
arch/riscv/kernel/head.S [new file with mode: 0644]
arch/riscv/kernel/irq.c [new file with mode: 0644]
arch/riscv/kernel/reset.c [new file with mode: 0644]
arch/riscv/kernel/setup.c [new file with mode: 0644]
arch/riscv/kernel/smp.c [new file with mode: 0644]
arch/riscv/kernel/smpboot.c [new file with mode: 0644]
arch/riscv/kernel/time.c [new file with mode: 0644]
arch/riscv/kernel/traps.c [new file with mode: 0644]
arch/riscv/kernel/vdso.c [new file with mode: 0644]
arch/riscv/mm/init.c [new file with mode: 0644]