All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] u-boot: Add support for building for qemuriscv32
@ 2021-03-11 14:37 Alistair Francis
  2021-03-11 23:04 ` [OE-core] " Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Alistair Francis @ 2021-03-11 14:37 UTC (permalink / raw)
  To: openembedded-core; +Cc: alistair23, Alistair Francis

Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
---
 meta/conf/machine/qemuriscv32.conf            |  7 ++--
 ...iscv32-Use-double-float-ABI-for-rv32.patch | 42 +++++++++++++++++++
 meta/recipes-bsp/u-boot/u-boot_2021.01.bb     |  2 +
 3 files changed, 47 insertions(+), 4 deletions(-)
 create mode 100644 meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch

diff --git a/meta/conf/machine/qemuriscv32.conf b/meta/conf/machine/qemuriscv32.conf
index 1413775ad6..d3858dc051 100644
--- a/meta/conf/machine/qemuriscv32.conf
+++ b/meta/conf/machine/qemuriscv32.conf
@@ -11,7 +11,6 @@ PREFERRED_VERSION_openocd = "riscv"
 
 XVISOR_PLAT = "riscv/virt32"
 
-# u-boot doesn't compile, error: "can't link hard-float modules with soft-float modules"
-# EXTRA_IMAGEDEPENDS += "u-boot"
-# UBOOT_MACHINE = "qemu-riscv32_smode_defconfig"
-# UBOOT_ELF = "u-boot"
+EXTRA_IMAGEDEPENDS += "u-boot"
+UBOOT_MACHINE = "qemu-riscv32_smode_defconfig"
+UBOOT_ELF = "u-boot"
diff --git a/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch b/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
new file mode 100644
index 0000000000..55b649db50
--- /dev/null
+++ b/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
@@ -0,0 +1,42 @@
+From 66dfe0fa886f6289add06d1af8642ce2b5302852 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 9 Feb 2021 16:40:12 -0800
+Subject: [PATCH] riscv32: Use double-float ABI for rv32
+
+So it can use libgcc built with OE toolchain
+Fixes
+error: "can't link hard-float modules with soft-float modules"
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+Upstream-Status: Inappropriate [configuration]
+---
+ arch/riscv/Makefile | 6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile
+index 0b80eb8d86..7324946f48 100644
+--- a/arch/riscv/Makefile
++++ b/arch/riscv/Makefile
+@@ -9,7 +9,9 @@ ifeq ($(CONFIG_ARCH_RV64I),y)
+ endif
+ ifeq ($(CONFIG_ARCH_RV32I),y)
+ 	ARCH_BASE = rv32im
+-	ABI = ilp32
++	ABI = ilp32d
++	ARCH_D = d
++	ARCH_F = f
+ endif
+ ifeq ($(CONFIG_RISCV_ISA_A),y)
+ 	ARCH_A = a
+@@ -24,7 +26,7 @@ ifeq ($(CONFIG_CMODEL_MEDANY),y)
+ 	CMODEL = medany
+ endif
+ 
+-ARCH_FLAGS = -march=$(ARCH_BASE)$(ARCH_A)$(ARCH_C) -mabi=$(ABI) \
++ARCH_FLAGS = -march=$(ARCH_BASE)$(ARCH_A)$(ARCH_F)$(ARCH_D)$(ARCH_C) -mabi=$(ABI) \
+ 	     -mcmodel=$(CMODEL)
+ 
+ PLATFORM_CPPFLAGS	+= $(ARCH_FLAGS)
+-- 
+2.30.0
+
diff --git a/meta/recipes-bsp/u-boot/u-boot_2021.01.bb b/meta/recipes-bsp/u-boot/u-boot_2021.01.bb
index 2eef1e900e..2b7aeb78f4 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2021.01.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2021.01.bb
@@ -1,4 +1,6 @@
 require u-boot-common.inc
 require u-boot.inc
 
+SRC_URI_append_qemuriscv32 = " file://0001-riscv32-Use-double-float-ABI-for-rv32.patch"
+
 DEPENDS += "bc-native dtc-native python3-setuptools-native"
-- 
2.30.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [OE-core] [PATCH] u-boot: Add support for building for qemuriscv32
  2021-03-11 14:37 [PATCH] u-boot: Add support for building for qemuriscv32 Alistair Francis
@ 2021-03-11 23:04 ` Richard Purdie
  2021-03-12  0:04   ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2021-03-11 23:04 UTC (permalink / raw)
  To: Alistair Francis, openembedded-core; +Cc: alistair23

On Thu, 2021-03-11 at 06:37 -0800, Alistair Francis wrote:
> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
> ---
>  meta/conf/machine/qemuriscv32.conf            |  7 ++--
>  ...iscv32-Use-double-float-ABI-for-rv32.patch | 42 +++++++++++++++++++
>  meta/recipes-bsp/u-boot/u-boot_2021.01.bb     |  2 +
>  3 files changed, 47 insertions(+), 4 deletions(-)
>  create mode 100644 meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
> 
> diff --git a/meta/conf/machine/qemuriscv32.conf b/meta/conf/machine/qemuriscv32.conf
> index 1413775ad6..d3858dc051 100644
> --- a/meta/conf/machine/qemuriscv32.conf
> +++ b/meta/conf/machine/qemuriscv32.conf
> @@ -11,7 +11,6 @@ PREFERRED_VERSION_openocd = "riscv"
>  
> 
> 
> 
>  XVISOR_PLAT = "riscv/virt32"
>  
> 
> 
> 
> -# u-boot doesn't compile, error: "can't link hard-float modules with soft-float modules"
> -# EXTRA_IMAGEDEPENDS += "u-boot"
> -# UBOOT_MACHINE = "qemu-riscv32_smode_defconfig"
> -# UBOOT_ELF = "u-boot"
> +EXTRA_IMAGEDEPENDS += "u-boot"
> +UBOOT_MACHINE = "qemu-riscv32_smode_defconfig"
> +UBOOT_ELF = "u-boot"
> diff --git a/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch b/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
> new file mode 100644
> index 0000000000..55b649db50
> --- /dev/null
> +++ b/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
> @@ -0,0 +1,42 @@
> +From 66dfe0fa886f6289add06d1af8642ce2b5302852 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 9 Feb 2021 16:40:12 -0800
> +Subject: [PATCH] riscv32: Use double-float ABI for rv32
> +
> +So it can use libgcc built with OE toolchain
> +Fixes
> +error: "can't link hard-float modules with soft-float modules"
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +Upstream-Status: Inappropriate [configuration]

Is that status really correct? The patch doesn't look very configuration like to me...

Cheers,

Richard



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [OE-core] [PATCH] u-boot: Add support for building for qemuriscv32
  2021-03-11 23:04 ` [OE-core] " Richard Purdie
@ 2021-03-12  0:04   ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2021-03-12  0:04 UTC (permalink / raw)
  To: Richard Purdie
  Cc: Alistair Francis,
	Patches and discussions about the oe-core layer,
	Alistair Francis

On Thu, Mar 11, 2021 at 3:04 PM Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> On Thu, 2021-03-11 at 06:37 -0800, Alistair Francis wrote:
> > Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
> > ---
> >  meta/conf/machine/qemuriscv32.conf            |  7 ++--
> >  ...iscv32-Use-double-float-ABI-for-rv32.patch | 42 +++++++++++++++++++
> >  meta/recipes-bsp/u-boot/u-boot_2021.01.bb     |  2 +
> >  3 files changed, 47 insertions(+), 4 deletions(-)
> >  create mode 100644 meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
> >
> > diff --git a/meta/conf/machine/qemuriscv32.conf b/meta/conf/machine/qemuriscv32.conf
> > index 1413775ad6..d3858dc051 100644
> > --- a/meta/conf/machine/qemuriscv32.conf
> > +++ b/meta/conf/machine/qemuriscv32.conf
> > @@ -11,7 +11,6 @@ PREFERRED_VERSION_openocd = "riscv"
> >
> >
> >
> >
> >  XVISOR_PLAT = "riscv/virt32"
> >
> >
> >
> >
> > -# u-boot doesn't compile, error: "can't link hard-float modules with soft-float modules"
> > -# EXTRA_IMAGEDEPENDS += "u-boot"
> > -# UBOOT_MACHINE = "qemu-riscv32_smode_defconfig"
> > -# UBOOT_ELF = "u-boot"
> > +EXTRA_IMAGEDEPENDS += "u-boot"
> > +UBOOT_MACHINE = "qemu-riscv32_smode_defconfig"
> > +UBOOT_ELF = "u-boot"
> > diff --git a/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch b/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
> > new file mode 100644
> > index 0000000000..55b649db50
> > --- /dev/null
> > +++ b/meta/recipes-bsp/u-boot/files/0001-riscv32-Use-double-float-ABI-for-rv32.patch
> > @@ -0,0 +1,42 @@
> > +From 66dfe0fa886f6289add06d1af8642ce2b5302852 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Tue, 9 Feb 2021 16:40:12 -0800
> > +Subject: [PATCH] riscv32: Use double-float ABI for rv32
> > +
> > +So it can use libgcc built with OE toolchain
> > +Fixes
> > +error: "can't link hard-float modules with soft-float modules"
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +Upstream-Status: Inappropriate [configuration]
>
> Is that status really correct? The patch doesn't look very configuration like to me...

I think OE-Specific status is better suited here. Since other
toolchains generate mutlilib toolchains unlike OE
secondly, there is no need to apply it conditionally. Its touching
rv32 only bits anyway.

>
> Cheers,
>
> Richard
>
>
>
> 
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-12  0:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-11 14:37 [PATCH] u-boot: Add support for building for qemuriscv32 Alistair Francis
2021-03-11 23:04 ` [OE-core] " Richard Purdie
2021-03-12  0:04   ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.