[U-Boot] [PATCH 0/5] Add spi-mem driver for MediaTek MT7629 SoC

Since u-boot has added the spi-mem framework and replaced the spi-nor framework, the mtk_qspi is no longer compatible with the new spi-nor driver.
This patch series add a new spi-mem driver to replace the mtk_qspi driver.
Weijie Gao (5): mtd: spi-nor: fix page program issue when using spi-mem driver spi: remove obsolete mtk_qspi driver spi: add spi-mem driver for MediaTek MT7629 SoC arm: dts: change MT7629 to use spi-mem rather than qspi MAINTAINERS: change spi driver entry
MAINTAINERS | 2 +- arch/arm/dts/mt7629-rfb.dts | 18 ++- arch/arm/dts/mt7629.dtsi | 14 +- drivers/mtd/spi/spi-nor-core.c | 27 +--- drivers/spi/Kconfig | 15 +- drivers/spi/Makefile | 2 +- drivers/spi/mtk_qspi.c | 359 ----------------------------------------- drivers/spi/mtk_spimem.c | 325 +++++++++++++++++++++++++++++++++++++ 8 files changed, 366 insertions(+), 396 deletions(-) delete mode 100644 drivers/spi/mtk_qspi.c create mode 100644 drivers/spi/mtk_spimem.c
participants (1)
-
Weijie Gao