2021-07-17 04:46:21

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH] riscv: add rv32 and rv64 randconfig build targets

Add the ability to do randconfig build targets for both
rv32 and rv64.

Based on a similar patch by Michael Ellerman for PowerPC.

Usage:
make ARCH=riscv rv32_randconfig
or
make ARCH=riscv rv64_randconfig

Cc: Michael Ellerman <[email protected]>
Cc: Paul Walmsley <[email protected]>
Cc: Palmer Dabbelt <[email protected]>
Cc: Albert Ou <[email protected]>
Cc: [email protected]

arch/riscv/Makefile | 10 ++++++++++
arch/riscv/configs/32-bit.config | 2 ++
arch/riscv/configs/64-bit.config | 2 ++
3 files changed, 14 insertions(+)

--- linux-next-20210715.orig/arch/riscv/Makefile
+++ linux-next-20210715/arch/riscv/Makefile
@@ -132,3 +132,13 @@ zinstall install:

archclean:
$(Q)$(MAKE) $(clean)=$(boot)
+
+PHONY += rv32_randconfig
+rv32_randconfig:
+ $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/32-bit.config \
+ -f $(srctree)/Makefile randconfig
+
+PHONY += rv64_randconfig
+rv64_randconfig:
+ $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/64-bit.config \
+ -f $(srctree)/Makefile randconfig
--- /dev/null
+++ linux-next-20210715/arch/riscv/configs/32-bit.config
@@ -0,0 +1,2 @@
+CONFIG_ARCH_RV32I=y
+CONFIG_32BIT=y
--- /dev/null
+++ linux-next-20210715/arch/riscv/configs/64-bit.config
@@ -0,0 +1,2 @@
+CONFIG_ARCH_RV64I=y
+CONFIG_64BIT=y


2021-08-12 15:17:05

by Randy Dunlap

[permalink] [raw]
Subject: Re: [PATCH] riscv: add rv32 and rv64 randconfig build targets

Hi,
Any comments on this patch?
thanks.

On 7/16/21 9:44 PM, Randy Dunlap wrote:
> Add the ability to do randconfig build targets for both
> rv32 and rv64.
>
> Based on a similar patch by Michael Ellerman for PowerPC.
>
> Usage:
> make ARCH=riscv rv32_randconfig
> or
> make ARCH=riscv rv64_randconfig
>
> Cc: Michael Ellerman <[email protected]>
> Cc: Paul Walmsley <[email protected]>
> Cc: Palmer Dabbelt <[email protected]>
> Cc: Albert Ou <[email protected]>
> Cc: [email protected]
>
> arch/riscv/Makefile | 10 ++++++++++
> arch/riscv/configs/32-bit.config | 2 ++
> arch/riscv/configs/64-bit.config | 2 ++
> 3 files changed, 14 insertions(+)
>
> --- linux-next-20210715.orig/arch/riscv/Makefile
> +++ linux-next-20210715/arch/riscv/Makefile
> @@ -132,3 +132,13 @@ zinstall install:
>
> archclean:
> $(Q)$(MAKE) $(clean)=$(boot)
> +
> +PHONY += rv32_randconfig
> +rv32_randconfig:
> + $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/32-bit.config \
> + -f $(srctree)/Makefile randconfig
> +
> +PHONY += rv64_randconfig
> +rv64_randconfig:
> + $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/64-bit.config \
> + -f $(srctree)/Makefile randconfig
> --- /dev/null
> +++ linux-next-20210715/arch/riscv/configs/32-bit.config
> @@ -0,0 +1,2 @@
> +CONFIG_ARCH_RV32I=y
> +CONFIG_32BIT=y
> --- /dev/null
> +++ linux-next-20210715/arch/riscv/configs/64-bit.config
> @@ -0,0 +1,2 @@
> +CONFIG_ARCH_RV64I=y
> +CONFIG_64BIT=y
>


--
~Randy

2021-09-11 06:10:32

by Palmer Dabbelt

[permalink] [raw]
Subject: Re: [PATCH] riscv: add rv32 and rv64 randconfig build targets

On Thu, 12 Aug 2021 07:29:30 PDT (-0700), [email protected] wrote:
> Hi,
> Any comments on this patch?

Sorry, I must have missed this one. It looks great, it's just that I
don't see your Signed-off-by on the original patch.

> thanks.
>
> On 7/16/21 9:44 PM, Randy Dunlap wrote:
>> Add the ability to do randconfig build targets for both
>> rv32 and rv64.
>>
>> Based on a similar patch by Michael Ellerman for PowerPC.
>>
>> Usage:
>> make ARCH=riscv rv32_randconfig
>> or
>> make ARCH=riscv rv64_randconfig
>>
>> Cc: Michael Ellerman <[email protected]>
>> Cc: Paul Walmsley <[email protected]>
>> Cc: Palmer Dabbelt <[email protected]>
>> Cc: Albert Ou <[email protected]>
>> Cc: [email protected]
>>
>> arch/riscv/Makefile | 10 ++++++++++
>> arch/riscv/configs/32-bit.config | 2 ++
>> arch/riscv/configs/64-bit.config | 2 ++
>> 3 files changed, 14 insertions(+)
>>
>> --- linux-next-20210715.orig/arch/riscv/Makefile
>> +++ linux-next-20210715/arch/riscv/Makefile
>> @@ -132,3 +132,13 @@ zinstall install:
>>
>> archclean:
>> $(Q)$(MAKE) $(clean)=$(boot)
>> +
>> +PHONY += rv32_randconfig
>> +rv32_randconfig:
>> + $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/32-bit.config \
>> + -f $(srctree)/Makefile randconfig
>> +
>> +PHONY += rv64_randconfig
>> +rv64_randconfig:
>> + $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/64-bit.config \
>> + -f $(srctree)/Makefile randconfig
>> --- /dev/null
>> +++ linux-next-20210715/arch/riscv/configs/32-bit.config
>> @@ -0,0 +1,2 @@
>> +CONFIG_ARCH_RV32I=y
>> +CONFIG_32BIT=y
>> --- /dev/null
>> +++ linux-next-20210715/arch/riscv/configs/64-bit.config
>> @@ -0,0 +1,2 @@
>> +CONFIG_ARCH_RV64I=y
>> +CONFIG_64BIT=y
>>

2021-10-03 18:00:50

by Randy Dunlap

[permalink] [raw]
Subject: Re: [PATCH] riscv: add rv32 and rv64 randconfig build targets

On 9/10/21 11:06 PM, Palmer Dabbelt wrote:
> On Thu, 12 Aug 2021 07:29:30 PDT (-0700), [email protected] wrote:
>> Hi,
>> Any comments on this patch?
>
> Sorry, I must have missed this one.  It looks great, it's just that I don't see your Signed-off-by on the original patch.
>
>> thanks.

Hi Palmer,

I sent a v2 with the missing S-o-b:

https://lore.kernel.org/all/[email protected]/


--
~Randy