public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Andes <uboot@andestech.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 05/12] riscv: Add Kconfig to support RISC-V
Date: Fri, 22 Dec 2017 15:44:22 +0800	[thread overview]
Message-ID: <1513928669-9210-5-git-send-email-uboot@andestech.com> (raw)
In-Reply-To: <1513928669-9210-1-git-send-email-uboot@andestech.com>

From: Rick Chen <rick@andestech.com>

Add Kconfig and makefile for RISC-V

Signed-off-by: Rick Chen <rick@andestech.com>
Signed-off-by: Rick Chen <rickchen36@gmail.com>
Signed-off-by: Greentime Hu <green.hu@gmail.com>
Cc: Padmarao Begari <Padmarao.Begari@microsemi.com>
---
 arch/riscv/Kconfig   |   42 ++++++++++++++++++++++++++++++++++++++++++
 arch/riscv/Makefile  |   11 +++++++++++
 arch/riscv/config.mk |   33 +++++++++++++++++++++++++++++++++
 3 files changed, 86 insertions(+), 0 deletions(-)
 create mode 100644 arch/riscv/Kconfig
 create mode 100644 arch/riscv/Makefile
 create mode 100644 arch/riscv/config.mk

diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
new file mode 100644
index 0000000..c50be37
--- /dev/null
+++ b/arch/riscv/Kconfig
@@ -0,0 +1,42 @@
+menu "RISCV architecture"
+	depends on RISCV
+
+config SYS_ARCH
+	default "riscv"
+
+choice
+	prompt "Target select"
+	optional
+
+config TARGET_NX25_AE250
+	bool "Support nx25-ae250"
+
+endchoice
+
+source "board/AndesTech/nx25-ae250/Kconfig"
+
+choice
+	prompt "CPU selection"
+	default CPU_RISCV_32
+
+config CPU_RISCV_32
+	bool "RISCV 32 bit"
+	select 32BIT
+	help
+	  Choose this option to build an U-Boot for RISCV32 architecture.
+
+config CPU_RISCV_64
+	bool "RISCV 64 bit"
+	select 64BIT
+	help
+	  Choose this option to build an U-Boot for RISCV64 architecture.
+
+endchoice
+
+config 32BIT
+	bool
+
+config 64BIT
+	bool
+
+endmenu
diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile
new file mode 100644
index 0000000..09d24db
--- /dev/null
+++ b/arch/riscv/Makefile
@@ -0,0 +1,11 @@
+#
+# Copyright (C) 2017 Andes Technology Corporation.
+# Rick Chen, Andes Technology Corporation <rick@andestech.com>
+#
+# SPDX-License-Identifier:	GPL-2.0+
+#
+
+head-y := arch/riscv/cpu/$(CPU)/start.o
+
+libs-y += arch/riscv/cpu/$(CPU)/
+libs-y += arch/riscv/lib/
diff --git a/arch/riscv/config.mk b/arch/riscv/config.mk
new file mode 100644
index 0000000..6b681c4
--- /dev/null
+++ b/arch/riscv/config.mk
@@ -0,0 +1,33 @@
+#
+# (C) Copyright 2000-2002
+# Wolfgang Denk, DENX Software Engineering, wd at denx.de.
+#
+# Copyright (c) 2017 Microsemi Corporation.
+# Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com>
+#
+# Copyright (C) 2017 Andes Technology Corporation
+# Rick Chen, Andes Technology Corporation <rick@andestech.com>
+#
+# SPDX-License-Identifier:	GPL-2.0+
+
+ifeq ($(CROSS_COMPILE),)
+CROSS_COMPILE := riscv32-unknown-linux-gnu-
+endif
+
+32bit-emul		:= elf32lriscv
+64bit-emul		:= elf64lriscv
+
+ifdef CONFIG_32BIT
+PLATFORM_LDFLAGS	+= -m $(32bit-emul)
+endif
+
+ifdef CONFIG_64BIT
+PLATFORM_LDFLAGS	+= -m $(64bit-emul)
+endif
+
+CONFIG_STANDALONE_LOAD_ADDR = 0x00000000 \
+			      -T $(srctree)/examples/standalone/riscv.lds
+
+PLATFORM_CPPFLAGS	+= -ffixed-gp -fpic
+PLATFORM_RELFLAGS += -fno-strict-aliasing -fno-common -gdwarf-2
+LDFLAGS_u-boot += --gc-sections -static -pie
-- 
1.7.1

  parent reply	other threads:[~2017-12-22  7:44 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-22  7:44 [U-Boot] [PATCH 01/12] riscv: cpu: Add nx25 to support RISC-V Andes
2017-12-22  7:44 ` [U-Boot] [PATCH 02/12] riscv: nx25: lib: Add relative lib funcs " Andes
2017-12-22  7:44 ` [U-Boot] [PATCH 03/12] riscv: nx25: dts: Add AE250 dts " Andes
2017-12-22  7:44 ` [U-Boot] [PATCH 04/12] riscv: nx25: include: Add header files " Andes
2017-12-22  7:44 ` Andes [this message]
2017-12-22 15:30   ` [U-Boot] [PATCH 05/12] riscv: Add Kconfig " Tom Rini
2017-12-25  2:31     ` 陳建志
2017-12-22  7:44 ` [U-Boot] [PATCH 06/12] riscv: board: Add nx25-ae250 " Andes
2017-12-22  7:44 ` [U-Boot] [PATCH 07/12] riscv: configs: Add nx25-ae250.h " Andes
2017-12-22  7:44 ` [U-Boot] [PATCH 08/12] riscv: defconfig: Add nx25-ae250 defconfig " Andes
2017-12-22  7:44 ` [U-Boot] [PATCH 09/12] risck: tools: Prelink u-boot Andes
2017-12-22 15:31   ` Tom Rini
2017-12-25  2:33     ` 陳建志
2017-12-22  7:44 ` [U-Boot] [PATCH 10/12] riscv: Support standalone Andes
2017-12-22  7:44 ` [U-Boot] [PATCH 11/12] riscv: Modify generic codes to support RISC-V Andes
2017-12-22 15:30   ` Tom Rini
2017-12-22  7:44 ` [U-Boot] [PATCH 12/12] riscv: doc: Add relative doc to describe RISC-V Andes

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1513928669-9210-5-git-send-email-uboot@andestech.com \
    --to=uboot@andestech.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox