[openwrt/openwrt] layerscape: kmod-ppfe: Use ppfe driver as module

LEDE Commits lede-commits at lists.infradead.org
Sun Nov 27 04:26:30 PST 2022


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/5b0e111789314c9ff0f351e3b5d54d43d4485813

commit 5b0e111789314c9ff0f351e3b5d54d43d4485813
Author: Pawel Dembicki <paweldembicki at gmail.com>
AuthorDate: Sat Oct 29 22:59:50 2022 +0200

    layerscape: kmod-ppfe: Use ppfe driver as module
    
    In 8274451cb86 kmod-ppfe was changed to built-in because CONFIG_FSL_PPFE
    was binary. In 5.10 and 5.15 kernel, PPFE driver can be build as module.
    
    This patch switch kmod-ppfe from build-in to loadable module.
    Loadable module helps to avoid hazard: driver is looking for firmware
    file before mount root.
    
    Signed-off-by: Pawel Dembicki <paweldembicki at gmail.com>
---
 target/linux/layerscape/armv8_64b/config-5.10 | 4 ++--
 target/linux/layerscape/armv8_64b/config-5.15 | 4 ++--
 target/linux/layerscape/modules.mk            | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/target/linux/layerscape/armv8_64b/config-5.10 b/target/linux/layerscape/armv8_64b/config-5.10
index 1f4253db89..36ca870618 100644
--- a/target/linux/layerscape/armv8_64b/config-5.10
+++ b/target/linux/layerscape/armv8_64b/config-5.10
@@ -292,8 +292,8 @@ CONFIG_FSL_GUTS=y
 CONFIG_FSL_IFC=y
 CONFIG_FSL_MC_BUS=y
 CONFIG_FSL_MC_DPIO=y
-CONFIG_FSL_PPFE=y
-CONFIG_FSL_PPFE_UTIL_DISABLED=y
+# CONFIG_FSL_PPFE is not set
+# CONFIG_FSL_PPFE_UTIL_DISABLED is not set
 # CONFIG_FSL_QMAN_TEST is not set
 CONFIG_FSL_RCPM=y
 CONFIG_FSL_XGMAC_MDIO=y
diff --git a/target/linux/layerscape/armv8_64b/config-5.15 b/target/linux/layerscape/armv8_64b/config-5.15
index ee807d29f6..e959d4393b 100644
--- a/target/linux/layerscape/armv8_64b/config-5.15
+++ b/target/linux/layerscape/armv8_64b/config-5.15
@@ -293,8 +293,8 @@ CONFIG_FSL_IFC=y
 CONFIG_FSL_MC_BUS=y
 CONFIG_FSL_MC_DPIO=y
 # CONFIG_FSL_MC_UAPI_SUPPORT is not set
-CONFIG_FSL_PPFE=y
-CONFIG_FSL_PPFE_UTIL_DISABLED=y
+# CONFIG_FSL_PPFE is not set
+# CONFIG_FSL_PPFE_UTIL_DISABLED is not set
 # CONFIG_FSL_QMAN_TEST is not set
 CONFIG_FSL_RCPM=y
 CONFIG_FSL_XGMAC_MDIO=y
diff --git a/target/linux/layerscape/modules.mk b/target/linux/layerscape/modules.mk
index 11e75ee749..9aa11e08fb 100644
--- a/target/linux/layerscape/modules.mk
+++ b/target/linux/layerscape/modules.mk
@@ -22,7 +22,7 @@ define KernelPackage/ppfe
   SUBMENU:=$(NETWORK_DEVICES_MENU)
   TITLE:=Freescale PPFE Driver support
   DEPENDS:=@TARGET_layerscape
-  KCONFIG:=CONFIG_FSL_PPFE=y \
+  KCONFIG:=CONFIG_FSL_PPFE \
   	CONFIG_FSL_PPFE_UTIL_DISABLED=y
   FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
   AUTOLOAD:=$(call AutoLoad,35,pfe)




More information about the lede-commits mailing list