mbox series

[v3,0/9] mesa: upgrade to 25.0.2

Message ID 20250329-mesa-25-v3-0-f4d0328eb867@oss.qualcomm.com
Headers show
Series mesa: upgrade to 25.0.2 | expand

Message

Dmitry Baryshkov March 29, 2025, 8:07 p.m. UTC
libclc is required in order to build Intel drivers in Mesa 24.1 and
later. Thus OE-Core is currently locked to the 24.0.x branch, which is
no longer maintained, having last release in June 2024.

A clean solution is to package Clang, then use it to build libclc and
SPIRV-LLVM-Translator (required for Mesa OpenCL support). However
creating proper recipes for Clang is a long process (ongoing by Khem
Raj).

This patchset attempts to solve the issue in a simpler way: by building
libclc and SPIRV-LLVM-Translator together with the LLVM. This way we
don't have to create target Clang recipes, there is no extra toolchain
to support, etc. Clang binaries are creted as a part of the build
process (in order to support building target packages), however it only
hits the LLVM sysroot-native and is only used by the LLVM target build.

Future work by Khem (once Clang is properly supported in OE-Core) should
allow us to create proper recipes for libclc and spirv-llvm-translator
and drop them from the llvm / clang recipe.

I think this approach provides a good balance between OE-Core being
stuck with the outdated Mesa release and being able to upgrade it,
bringing support for new hardware.

Last two patches of the series bring in RustiCL support, a new OpenCL
implementation within Mesa. They are optional for the sake of the
upgrade and can be dropped if there is any issue with those. RustiCL
support is mostly compile-tested at this point.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
Changes in v3:
- Dropped llvm/fix-native-compilation.patch and
  llvm/0001-cmake-modules-CrossCompile-pass-SPIR-V-headers-path-.patch
  in favour of installing prepare_builtins into the sysroot, dropped
  corresponding EXTRA_OECMAKE params
- Dropepd -DCLANG_TABLEGEN from llvm's EXTRA_OECMAKE
- Enabled llvm-config wrapper for nativesdk too, fixing QA errors for
  nativesdk-mesa
- Added --libdir handling to llvm-config, dropping the need for
  mesa/0001-meson-use-target-path-for-Clang-libdir.patch
- Dropped extra LIBCEXTENSION from BINDGEN_TARGET, it is already a part
  of TARGET_OS
- Expanded commit messages to explain the patches
- Link to v2: https://lore.kernel.org/r/20250327221807.2551544-1-dmitry.baryshkov@oss.qualcomm.com

Changes in v2:
- Dropped YOCTO_ALTERNATE_LIBDIR patch
- Reworked mesa / LLVM integration to always use get_option('libdir')
- Reenabled AMD Vulkan driver (got disabled because of c&p error)
- Moved mesa-clc options to the libclc PACKAGECONFIG to fix several
  build errors
- Link to v1: https://lore.kernel.org/r/20250327135520.3920189-1-dmitry.baryshkov@oss.qualcomm.com/

---
Dmitry Baryshkov (8):
      llvm: move libLLVM.so.N.M to llvm-libllvm package
      llvm: use OECMAKE_SOURCEPATH to specify cmake dir
      llvm: handle libdir in llvm-config
      llvm: also use llvm-config wrapper for nativesdk recipes
      llvm: support building libclc
      llvm: add SPIRV-LLVM-Translator support
      mesa: upgrade 24.0.7 -> 25.0.2
      bindgen-cli: a tool to generate Rust bindings

Zoltán Böszörményi (1):
      mesa: add support for RustiCL under PACKAGECONFIG "opencl"

 meta/conf/distro/include/maintainers.inc           |   1 +
 .../bindgen-cli/bindgen-cli-crates.inc             | 186 +++++++++++++++++++++
 .../bindgen-cli/bindgen-cli_0.71.1.bb              |  19 +++
 meta/recipes-devtools/llvm/llvm/llvm-config        |   3 +
 .../llvm/llvm/spirv-internal-build.patch           |  30 ++++
 meta/recipes-devtools/llvm/llvm_20.1.0.bb          |  76 ++++++++-
 ...evert-meson-do-not-pull-in-clc-for-clover.patch |  53 ------
 ...d-Include-missing-llvm-IR-header-Module.h.patch |  41 -----
 .../files/0001-drisw-fix-build-without-dri3.patch  |  58 -------
 ...eno-don-t-encode-build-path-into-binaries.patch |  46 ++++-
 ...vide-cross-compilation-arguments-to-LLVM-.patch |  66 ++++++++
 ...ext-don-t-try-zink-if-not-enabled-in-mesa.patch |  42 -----
 meta/recipes-graphics/mesa/mesa.inc                | 101 ++++++-----
 13 files changed, 468 insertions(+), 254 deletions(-)
---
base-commit: 8d4987cf652c9844d93000fb012dc09eebcf9fcc
change-id: 20250328-mesa-25-6b78a0ce2c90

Best regards,

Comments

Richard Purdie March 30, 2025, 10:40 p.m. UTC | #1
On Sat, 2025-03-29 at 22:07 +0200, Dmitry Baryshkov via
lists.openembedded.org wrote:
> libclc is required in order to build Intel drivers in Mesa 24.1 and
> later. Thus OE-Core is currently locked to the 24.0.x branch, which
> is
> no longer maintained, having last release in June 2024.
> 
> A clean solution is to package Clang, then use it to build libclc and
> SPIRV-LLVM-Translator (required for Mesa OpenCL support). However
> creating proper recipes for Clang is a long process (ongoing by Khem
> Raj).
> 
> This patchset attempts to solve the issue in a simpler way: by
> building
> libclc and SPIRV-LLVM-Translator together with the LLVM. This way we
> don't have to create target Clang recipes, there is no extra
> toolchain
> to support, etc. Clang binaries are creted as a part of the build
> process (in order to support building target packages), however it
> only
> hits the LLVM sysroot-native and is only used by the LLVM target
> build.
> 
> Future work by Khem (once Clang is properly supported in OE-Core)
> should
> allow us to create proper recipes for libclc and spirv-llvm-
> translator
> and drop them from the llvm / clang recipe.
> 
> I think this approach provides a good balance between OE-Core being
> stuck with the outdated Mesa release and being able to upgrade it,
> bringing support for new hardware.
> 
> Last two patches of the series bring in RustiCL support, a new OpenCL
> implementation within Mesa. They are optional for the sake of the
> upgrade and can be dropped if there is any issue with those. RustiCL
> support is mostly compile-tested at this point.
> 
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>

Thanks for the patches. I haven't looked in detail yet but I did try
running them through testing which revealed:

https://autobuilder.yoctoproject.org/valkyrie/#/builders/92/builds/1283

as well as some issues working with meta-clang:

https://autobuilder.yoctoproject.org/valkyrie/#/builders/18/builds/652

There are other patches causing issues in that build, I'll leave it
running in case it can spot any other issues with this patch series.

Cheers,

Richard
Dmitry Baryshkov March 31, 2025, 10:15 a.m. UTC | #2
On Sun, Mar 30, 2025 at 11:40:19PM +0100, Richard Purdie wrote:
> On Sat, 2025-03-29 at 22:07 +0200, Dmitry Baryshkov via
> lists.openembedded.org wrote:
> > libclc is required in order to build Intel drivers in Mesa 24.1 and
> > later. Thus OE-Core is currently locked to the 24.0.x branch, which
> > is
> > no longer maintained, having last release in June 2024.
> > 
> > A clean solution is to package Clang, then use it to build libclc and
> > SPIRV-LLVM-Translator (required for Mesa OpenCL support). However
> > creating proper recipes for Clang is a long process (ongoing by Khem
> > Raj).
> > 
> > This patchset attempts to solve the issue in a simpler way: by
> > building
> > libclc and SPIRV-LLVM-Translator together with the LLVM. This way we
> > don't have to create target Clang recipes, there is no extra
> > toolchain
> > to support, etc. Clang binaries are creted as a part of the build
> > process (in order to support building target packages), however it
> > only
> > hits the LLVM sysroot-native and is only used by the LLVM target
> > build.
> > 
> > Future work by Khem (once Clang is properly supported in OE-Core)
> > should
> > allow us to create proper recipes for libclc and spirv-llvm-
> > translator
> > and drop them from the llvm / clang recipe.
> > 
> > I think this approach provides a good balance between OE-Core being
> > stuck with the outdated Mesa release and being able to upgrade it,
> > bringing support for new hardware.
> > 
> > Last two patches of the series bring in RustiCL support, a new OpenCL
> > implementation within Mesa. They are optional for the sake of the
> > upgrade and can be dropped if there is any issue with those. RustiCL
> > support is mostly compile-tested at this point.
> > 
> > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
> 
> Thanks for the patches. I haven't looked in detail yet but I did try
> running them through testing which revealed:
> 
> https://autobuilder.yoctoproject.org/valkyrie/#/builders/92/builds/1283

Okay, that's easy to fix, I missed multilib support.

> 
> as well as some issues working with meta-clang:
> 
> https://autobuilder.yoctoproject.org/valkyrie/#/builders/18/builds/652

This one is more interesting. I will open a PR against meta-clang to
disable libclc and spirv-llvm bits in the llvm recipe, which should also
remove clang conflict.

> 
> There are other patches causing issues in that build, I'll leave it
> running in case it can spot any other issues with this patch series.
> 
> Cheers,
> 
> Richard
>