Skip to content

Commit 603f3d2

Browse files
committed
dpll: zl3073x: Add firmware loading functionality
JIRA: https://issues.redhat.com/browse/RHEL-115367 commit ca01740 Author: Ivan Vecera <ivecera@redhat.com> Date: Tue Sep 9 11:15:30 2025 +0200 dpll: zl3073x: Add firmware loading functionality Add functionality for loading firmware files provided by the vendor to be flashed into the device's internal flash memory. The firmware consists of several components, such as the firmware executable itself, chip-specific customizations, and configuration files. The firmware file contains at least a flash utility, which is executed on the device side, and one or more flashable components. Each component has its own specific properties, such as the address where it should be loaded during flashing, one or more destination flash pages, and the flashing method that should be used. Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Signed-off-by: Ivan Vecera <ivecera@redhat.com> Link: https://patch.msgid.link/20250909091532.11790-4-ivecera@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Ivan Vecera <ivecera@redhat.com>
1 parent 2e6bec8 commit 603f3d2

File tree

3 files changed

+472
-1
lines changed

3 files changed

+472
-1
lines changed

drivers/dpll/zl3073x/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0
22

33
obj-$(CONFIG_ZL3073X) += zl3073x.o
4-
zl3073x-objs := core.o devlink.o dpll.o flash.o prop.o
4+
zl3073x-objs := core.o devlink.o dpll.o flash.o fw.o prop.o
55

66
obj-$(CONFIG_ZL3073X_I2C) += zl3073x_i2c.o
77
zl3073x_i2c-objs := i2c.o

0 commit comments

Comments
 (0)