generic: groundwork for RISC-V
authorZoltan HERPAI <[email protected]>
Sun, 16 Dec 2018 09:45:53 +0000 (10:45 +0100)
committerZoltan HERPAI <[email protected]>
Mon, 13 May 2019 22:44:38 +0000 (00:44 +0200)
Signed-off-by: Zoltan HERPAI <[email protected]>
include/kernel.mk
include/site/riscv64 [new file with mode: 0644]
include/target.mk
target/Config.in

index 3195090a0a79795bd4f629fae963c251c6c18a4b..f06ddfc8d01dc16d272fa555d7806240acc4cbef 100644 (file)
@@ -93,6 +93,8 @@ else ifneq (,$(findstring $(ARCH) , mipsel mips64 mips64el ))
   LINUX_KARCH := mips
 else ifneq (,$(findstring $(ARCH) , powerpc64 ))
   LINUX_KARCH := powerpc
+else ifneq (,$(findstring $(ARCH) , riscv64 ))
+  LINUX_KARCH := riscv
 else ifneq (,$(findstring $(ARCH) , sh2 sh3 sh4 ))
   LINUX_KARCH := sh
 else ifneq (,$(findstring $(ARCH) , i386 x86_64 ))
diff --git a/include/site/riscv64 b/include/site/riscv64
new file mode 100644 (file)
index 0000000..c5aa9c5
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/sh
+. $TOPDIR/include/site/linux
+ac_cv_c_littleendian=${ac_cv_c_littleendian=yes}
+ac_cv_c_bigendian=${ac_cv_c_bigendian=no}
+
+ac_cv_sizeof___int64=8
+ac_cv_sizeof_char=1
+ac_cv_sizeof_int=4
+ac_cv_sizeof_int16_t=2
+ac_cv_sizeof_int32_t=4
+ac_cv_sizeof_int64_t=8
+ac_cv_sizeof_long_int=8
+ac_cv_sizeof_long_long=8
+ac_cv_sizeof_long=8
+ac_cv_sizeof_off_t=8
+ac_cv_sizeof_short_int=2
+ac_cv_sizeof_short=2
+ac_cv_sizeof_size_t=8
+ac_cv_sizeof_ssize_t=8
+ac_cv_sizeof_u_int16_t=2
+ac_cv_sizeof_u_int32_t=4
+ac_cv_sizeof_u_int64_t=8
+ac_cv_sizeof_uint16_t=2
+ac_cv_sizeof_uint32_t=4
+ac_cv_sizeof_uint64_t=8
+ac_cv_sizeof_unsigned_int=4
+ac_cv_sizeof_unsigned_long=8
+ac_cv_sizeof_unsigned_long_long=8
+ac_cv_sizeof_unsigned_short=2
+ac_cv_sizeof_void_p=8
index 4f3bd43e6cb662bc78904087f953e4d19b36ccc0..ec31d4e5d7fc1cadd188c08689c1eb1f62828ae2 100644 (file)
@@ -210,6 +210,10 @@ ifeq ($(DUMP),1)
     CPU_CFLAGS_arc700 = -mcpu=arc700
     CPU_CFLAGS_archs = -mcpu=archs
   endif
+  ifeq ($(ARCH),riscv64)
+    CPU_TYPE ?= riscv64
+    CPU_CFLAGS_riscv64:=-mabi=lp64d -march=rv64imafdc
+  endif
   ifneq ($(CPU_TYPE),)
     ifndef CPU_CFLAGS_$(CPU_TYPE)
       $(warning CPU_TYPE "$(CPU_TYPE)" doesn't correspond to a known type)
index 3ee23ebf7f06a9637a3adc770a8e79008f384437..f0d9d82c38332cd448bdc1511bafcc9f1247c28f 100644 (file)
@@ -170,6 +170,10 @@ config powerpc64
        select ARCH_64BIT
        bool
 
+config riscv64
+       select ARCH_64BIT
+       bool
+
 config sh3
        bool
 
@@ -209,6 +213,7 @@ config ARCH
        default "mips64el"  if mips64el
        default "powerpc"   if powerpc
        default "powerpc64" if powerpc64
+       default "riscv64"   if riscv64
        default "sh3"       if sh3
        default "sh3eb"     if sh3eb
        default "sh4"       if sh4