Skip to content

Commit f3426ac

Browse files
iveceraPaolo Abeni
authored andcommitted
dpll: zl3073x: Increase maximum size of flash utility
Newer firmware bundles contain a flash utility whose size exceeds the currently allowed limit. Increase the maximum allowed size to accommodate the newer utility version. Without this patch: # devlink dev flash i2c/1-0070 file fw_nosplit_v3.hex Failed to load firmware Flashing failed Error: zl3073x: FW load failed: [utility] component is too big (11000 bytes) Fixes: ca01740 ("dpll: zl3073x: Add firmware loading functionality") Suggested-by: Prathosh Satish <Prathosh.Satish@microchip.com> Signed-off-by: Ivan Vecera <ivecera@redhat.com> Reviewed-by: Vadim Fedorenko <vadim.fedorenko@linux.dev> Link: https://patch.msgid.link/20251008141418.841053-1-ivecera@redhat.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
1 parent 18a7e21 commit f3426ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/dpll/zl3073x

drivers/dpll/zl3073x/fw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct zl3073x_fw_component_info {
3737
static const struct zl3073x_fw_component_info component_info[] = {
3838
[ZL_FW_COMPONENT_UTIL] = {
3939
.name = "utility",
40-
.max_size = 0x2300,
40+
.max_size = 0x4000,
4141
.load_addr = 0x20000000,
4242
.flash_type = ZL3073X_FLASH_TYPE_NONE,
4343
},

0 commit comments

Comments
 (0)