872fe7e9f9
Some APIs have been changed. Porting them to the new kernel 6.6 version to fix the compile error. Removed upstreamed: 010-v6.4-gpio-ath79-Convert-to-immutable-irq_chip.patch[1] Manually rebased: 700-phy-add-ath79-usb-phys.patch 721-phy-mdio-bitbang-prevent-rescheduling-during-command.patch. ref:[2] [1] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-6.6.y&id=b11ce7e48121a02ceedec9f4dfcab4f2bee8f35f [2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-6.6.y&id=002dd3de097c778a74ae9e47e598bea6ad055af0 Signed-off-by: Shiji Yang <yangshiji66@qq.com>
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
From: Gabor Juhos <juhosg@openwrt.org>
|
|
Subject: ar71xx: ar934x_nfc: experimental NAND Flash Controller driver for AR934x
|
|
|
|
SVN-Revision: 33385
|
|
---
|
|
drivers/mtd/nand/raw/Kconfig | 8 ++++++++
|
|
drivers/mtd/nand/raw/Makefile | 1 +
|
|
2 files changed, 9 insertions(+)
|
|
|
|
--- a/drivers/mtd/nand/raw/Kconfig
|
|
+++ b/drivers/mtd/nand/raw/Kconfig
|
|
@@ -543,4 +543,12 @@ config MTD_NAND_DISKONCHIP_BBTWRITE
|
|
load time (assuming you build diskonchip as a module) with the module
|
|
parameter "inftl_bbt_write=1".
|
|
|
|
+config MTD_NAND_AR934X
|
|
+ tristate "Support for NAND controller on Qualcomm Atheros AR934x/QCA955x SoCs"
|
|
+ depends on ATH79 || COMPILE_TEST
|
|
+ depends on HAS_IOMEM
|
|
+ help
|
|
+ Enables support for NAND controller on Qualcomm Atheros SoCs.
|
|
+ This controller is found on AR934x and QCA955x SoCs.
|
|
+
|
|
endif # MTD_RAW_NAND
|
|
--- a/drivers/mtd/nand/raw/Makefile
|
|
+++ b/drivers/mtd/nand/raw/Makefile
|
|
@@ -57,6 +57,7 @@ obj-$(CONFIG_MTD_NAND_INTEL_LGM) += inte
|
|
obj-$(CONFIG_MTD_NAND_ROCKCHIP) += rockchip-nand-controller.o
|
|
obj-$(CONFIG_MTD_NAND_PL35X) += pl35x-nand-controller.o
|
|
obj-$(CONFIG_MTD_NAND_RENESAS) += renesas-nand-controller.o
|
|
+obj-$(CONFIG_MTD_NAND_AR934X) += ar934x_nand.o
|
|
|
|
nand-objs := nand_base.o nand_legacy.o nand_bbt.o nand_timings.o nand_ids.o
|
|
nand-objs += nand_onfi.o
|