Skip to content

[PW_SID:1087348] serial: 8250_dw: Add support for UltraRISC DP1000 UART#1838

Closed
linux-riscv-bot wants to merge 6 commits into
workflow__riscv__fixesfrom
pw1087348
Closed

[PW_SID:1087348] serial: 8250_dw: Add support for UltraRISC DP1000 UART#1838
linux-riscv-bot wants to merge 6 commits into
workflow__riscv__fixesfrom
pw1087348

Conversation

@linux-riscv-bot
Copy link
Copy Markdown

PR for series 1087348 applied to workflow__riscv__fixes

Name: serial: 8250_dw: Add support for UltraRISC DP1000 UART
URL: https://patchwork.kernel.org/project/linux-riscv/list/?series=1087348
Version: 7

nathanchance and others added 6 commits April 24, 2026 07:25
…_TYPED_FUNC_START

After commit 67bdd7b ("riscv: Split out measure_cycles() for
reuse") and commit c03ad15 ("riscv: Reuse measure_cycles() in
check_vector_unaligned_access()"), there are CFI failure when booting
kernels with CONFIG_CFI=y:

  CFI failure at measure_cycles+0x38/0xe0 (target: __riscv_copy_words_unaligned+0x0/0x50; expected type: ...)
  CFI failure at measure_cycles+0x38/0xe0 (target: __riscv_copy_vec_words_unaligned+0x0/0x24; expected type: ...)

The __riscv_copy_*_unaligned() functions are now called indirectly but
they are not defined with SYM_TYPED_FUNC_START, which is required for
assembly functions called indirectly from C to pass CFI checking. Switch
to SYM_TYPED_FUNC_START to clear up the CFI failures.

Fixes: 67bdd7b ("riscv: Split out measure_cycles() for reuse")
Fixes: c03ad15 ("riscv: Reuse measure_cycles() in check_vector_unaligned_access()")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Sami Tolvanen <samitolvanen@google.com>
Reviewed-by: Nam Cao <namcao@linutronix.de>
Link: https://patch.msgid.link/20260406-measure_cycles-cfi-failure-v1-1-03e0234ae02f@kernel.org
Signed-off-by: Paul Walmsley <pjw@kernel.org>
Move the DW_UART_* register offsets and CPR bit/field definitions from
8250_dwlib.c into 8250_dwlib.h so they can be shared by 8250_dw and
8250_dwlib users.

Add an include guard for 8250_dwlib.h.

Signed-off-by: Jia Wang <wangjia@ultrarisc.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
…nitions

Replace the magic CPR value for Renesas RZ/N1 with a composition using
DW_UART_CPR_* bit/field definitions and FIELD_PREP_CONST().

Introduce a helper macro to convert a FIFO size (bytes) into the CPR
FIFO_MODE field value, with BUILD_BUG_ON_ZERO() checks for alignment and
bounds. Use it to replace the literal FIFO_MODE values in the RZN1.

Signed-off-by: Jia Wang <wangjia@ultrarisc.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
UltraRISC DP1000 integrates a Synopsys DesignWare APB UART, but it does
not provide the standard CPR and UCV registers.

Signed-off-by: Jia Wang <wangjia@ultrarisc.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
The UltraRISC DP1000 UART does not provide the standard CPR register used
by 8250_dw to discover port capabilities.

Provide a fixed CPR value for the DP1000-specific compatible so the
driver can configure the port correctly.

Signed-off-by: Jia Wang <wangjia@ultrarisc.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 137.88 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 935.51 seconds
Result: ERROR
Output:

Redirect to /build/tmp.bgkNQjP78L and /build/tmp.kQyLWAiZea
Tree base:
01805bc4f902e ("Adding CI files")
Building the whole tree with the patch
error:
Warning: /build/tmpopvknyou/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_bytes_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_bytes_unaligned'; recompile with -fPIC



real	15m26.622s
user	577m44.875s
sys	108m36.370s

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1399.67 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 25.17 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 26.60 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
checkpatch
Desc: Runs checkpatch.pl on the patch
Duration: 1.19 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
dtb-warn-rv64
Desc: Checks for Device Tree warnings/errors
Duration: 83.59 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.24 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
kdoc
Desc: Detects for kdoc errors
Duration: 0.87 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
module-param
Desc: Detect module_param changes
Duration: 0.27 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.23 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 1: "[v7,1/4] serial: 8250_dwlib: move DesignWare register definitions to header"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.31 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 138.65 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 934.92 seconds
Result: ERROR
Output:

Redirect to /build/tmp.tDmr6FC5Jh and /build/tmp.Ci2oUijKUv
Tree base:
9f2f2f538934c ("serial: 8250_dwlib: move DesignWare register definitions to header")
Building the whole tree with the patch
error:
Warning: /build/tmpdwqecyw_/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_bytes_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_bytes_unaligned'; recompile with -fPIC



real	15m25.749s
user	578m3.143s
sys	108m58.150s

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1398.47 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 25.22 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 26.52 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
checkpatch
Desc: Runs checkpatch.pl on the patch
Duration: 1.04 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
dtb-warn-rv64
Desc: Checks for Device Tree warnings/errors
Duration: 83.53 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.25 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
kdoc
Desc: Detects for kdoc errors
Duration: 0.87 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
module-param
Desc: Detect module_param changes
Duration: 0.26 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.23 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 2: "[v7,2/4] serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.32 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 138.08 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 937.87 seconds
Result: ERROR
Output:

Redirect to /build/tmp.c2N97y4vy2 and /build/tmp.eY49hIcwvX
Tree base:
d680ad8951ec6 ("serial: 8250_dw: build Renesas RZN1 CPR value from DW_UART_CPR_* definitions")
Building the whole tree with the patch
error:
Warning: /build/tmpsmmz89bp/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_bytes_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_bytes_unaligned'; recompile with -fPIC



real	15m28.490s
user	578m0.885s
sys	108m52.955s

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1361.41 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 25.20 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 26.43 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
checkpatch
Desc: Runs checkpatch.pl on the patch
Duration: 0.69 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
dtb-warn-rv64
Desc: Checks for Device Tree warnings/errors
Duration: 84.02 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.24 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
kdoc
Desc: Detects for kdoc errors
Duration: 0.90 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
module-param
Desc: Detect module_param changes
Duration: 0.26 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.23 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 3: "[v7,3/4] dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.31 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 138.31 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 933.64 seconds
Result: ERROR
Output:

Redirect to /build/tmp.MeKc0gALKO and /build/tmp.BBUWnMh9av
Tree base:
1337e0ebb815f ("dt-bindings: serial: snps-dw-apb-uart: Add UltraRISC DP1000 UART")
Building the whole tree with the patch
error:
Warning: /build/tmpr73id495/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_vec_bytes_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_words_unaligned'; recompile with -fPIC
ld.lld: error: relocation R_RISCV_32 cannot be used against symbol '__kcfi_typeid___riscv_copy_bytes_unaligned'; recompile with -fPIC



real	15m24.509s
user	576m26.134s
sys	108m37.185s

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1399.22 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 25.32 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 26.58 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
checkpatch
Desc: Runs checkpatch.pl on the patch
Duration: 0.84 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
dtb-warn-rv64
Desc: Checks for Device Tree warnings/errors
Duration: 83.42 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.33 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
kdoc
Desc: Detects for kdoc errors
Duration: 0.88 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
module-param
Desc: Detect module_param changes
Duration: 0.25 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.23 seconds
Result: PASS

@linux-riscv-bot
Copy link
Copy Markdown
Author

Patch 4: "[v7,4/4] serial: 8250_dw: Use a fixed CPR value for UltraRISC DP1000 UART"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.32 seconds
Result: PASS

@linux-riscv-bot linux-riscv-bot force-pushed the workflow__riscv__fixes branch from 01805bc to 94a07a2 Compare April 30, 2026 05:50
@linux-riscv-bot linux-riscv-bot deleted the pw1087348 branch April 30, 2026 20:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants