summaryrefslogtreecommitdiff
path: root/drivers/cpu/Makefile
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-12-12 06:12:26 -0800
committerAndes <uboot@andestech.com>2018-12-18 09:56:26 +0800
commit833508c05c1309624cd397dbea2714b723d58c35 (patch)
treec1393f9b95f20d38e7c57dd7c14ab2aa7aaa55f9 /drivers/cpu/Makefile
parent27dc2c130e29093ba88630e8947d189641bda442 (diff)
cpu: Add a RISC-V CPU driver
This adds a driver for RISC-V CPU. Note the driver will bind a RISC-V timer driver if "timebase-frequency" property is present in the device tree. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de> Reviewed-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'drivers/cpu/Makefile')
-rw-r--r--drivers/cpu/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpu/Makefile b/drivers/cpu/Makefile
index 858b03755f..be0300cd4a 100644
--- a/drivers/cpu/Makefile
+++ b/drivers/cpu/Makefile
@@ -8,4 +8,5 @@ obj-$(CONFIG_CPU) += cpu-uclass.o
obj-$(CONFIG_ARCH_BMIPS) += bmips_cpu.o
obj-$(CONFIG_CPU_MPC83XX) += mpc83xx_cpu.o
+obj-$(CONFIG_CPU_RISCV) += riscv_cpu.o
obj-$(CONFIG_SANDBOX) += cpu_sandbox.o