riscv: add Kconfig entries for the C and A ISA extensions
authorLukas Auer <lukas.auer@aisec.fraunhofer.de>
Thu, 22 Nov 2018 10:26:14 +0000 (11:26 +0100)
committerAndes <uboot@andestech.com>
Mon, 26 Nov 2018 05:57:29 +0000 (13:57 +0800)
Add Kconfig entries for the C (compressed instructions) and A (atomic
instructions) ISA extensions. Only the C ISA extension is selectable.
This matches the configuration in Linux.

The Kconfig entries are not used yet. A follow-up patch will select the
appropriate compiler flags based on the Kconfig configuration.

Signed-off-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/riscv/Kconfig

index b81e0d990a169032b23077c2b85e0894ad3005b2..0de77a75d7b8f4ee222baf3b9c752d573d08ac49 100644 (file)
@@ -38,6 +38,17 @@ config ARCH_RV64I
 
 endchoice
 
+config RISCV_ISA_C
+       bool "Emit compressed instructions"
+       default y
+       help
+         Adds "C" to the ISA subsets that the toolchain is allowed to emit
+         when building U-Boot, which results in compressed instructions in the
+         U-Boot binary.
+
+config RISCV_ISA_A
+       def_bool y
+
 config 32BIT
        bool