Files
buildroot/package/qoriq-firmware-inphi/qoriq-firmware-inphi.mk
Vladimir Oltean d2f5f519ec package/qoriq-firmware-inphi: new package
The NXP BSPs have custom support for a 25G Ethernet retimer
(drivers/net/phy/in112525.c in U-Boot) for the LX2160A-RDB board.
That driver requires a text file to be located at a given offset in the
same storage device as U-Boot itself. The text file contains a list of
register addresses and values which are programmed into the retimer.

All in all, a pretty convoluted mechanism, but the driver is
non-upstreamable, and to support the board we need this "firmware" file
deployed.

Signed-off-by: Vladimir Oltean <olteanv@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2025-04-22 23:52:13 +02:00

19 lines
745 B
Makefile

################################################################################
#
# qoriq-firmware-inphi
#
################################################################################
# Unlikely to ever be updated, keep a fixed version instead of following BSP tags
QORIQ_FIRMWARE_INPHI_VERSION = f22e9ff3bfed8342da6efb699e473b11fbad5695
QORIQ_FIRMWARE_INPHI_SITE = $(call github,nxp,qoriq-firmware-inphi,$(QORIQ_FIRMWARE_INPHI_VERSION))
QORIQ_FIRMWARE_INPHI_LICENSE = NXP Binary EULA
QORIQ_FIRMWARE_INPHI_LICENSE_FILES = EULA.txt
QORIQ_FIRMWARE_INPHI_INSTALL_IMAGES = YES
define QORIQ_FIRMWARE_INPHI_INSTALL_IMAGES_CMDS
$(INSTALL) -D $(@D)/in112525-phy-ucode.txt $(BINARIES_DIR)/in112525-phy-ucode.txt
endef
$(eval $(generic-package))