Skip to content

Commit 7516875

Browse files
committed
hw-mgmt: kernel 6.12: Fix DPU boot_progress read issue
On a smart switch, the boot_progress variable of the DPUs should indicate the module boot status. However, due to a driver issue, it is not being read correctly by hardware management. Even when all DPUs are powered, boot_progress remains 0 (it should be 1). Fix: Set the correct offset in the platform driver for this bit in the CPLD. Bug: 4683681 Signed-off-by: Oleksandr Shamray <[email protected]>
1 parent 9d6aa09 commit 7516875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes-kernel/linux/linux-6.12/0028-platform-mellanox-mlxreg-dpu-Add-initial-support-for.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ index 00000000..277e4b8
259259
+ {
260260
+ .label = "boot_progress",
261261
+ .reg = MLXREG_DPU_REG_GP1_OFFSET,
262-
+ .mask = GENMASK(3, 0),
262+
+ .bit = GENMASK(3, 0),
263263
+ .mode = 0444,
264264
+ },
265265
+ {

0 commit comments

Comments
 (0)