From: Qianyu Gong Date: Thu, 18 Feb 2016 05:02:02 +0000 (+0800) Subject: armv8/fsl-layerscape: fdt: add fixup for Fman ucode X-Git-Tag: v2016.03-rc3~21^2~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0e52b6fea15641d01ce130efdde251b072fcd221;p=u-boot armv8/fsl-layerscape: fdt: add fixup for Fman ucode Add fdt fixup to insert Fman firmware into the device tree. Signed-off-by: Gong Qianyu Reviewed-by: York Sun --- diff --git a/arch/arm/cpu/armv8/fsl-layerscape/fdt.c b/arch/arm/cpu/armv8/fsl-layerscape/fdt.c index 4e4861d107..9c18fd7a16 100644 --- a/arch/arm/cpu/armv8/fsl-layerscape/fdt.c +++ b/arch/arm/cpu/armv8/fsl-layerscape/fdt.c @@ -14,6 +14,9 @@ #ifdef CONFIG_FSL_ESDHC #include #endif +#ifdef CONFIG_SYS_DPAA_FMAN +#include +#endif #ifdef CONFIG_MP #include #endif @@ -204,4 +207,8 @@ void ft_cpu_setup(void *blob, bd_t *bd) #ifdef CONFIG_FSL_LSCH3 fdt_fixup_smmu(blob); #endif + +#ifdef CONFIG_SYS_DPAA_FMAN + fdt_fixup_fman_firmware(blob); +#endif }