drivers/mtd/spi-nor/macronix.c | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-)
From: Cheng Ming Lin <chengminglin@mxic.com.tw> This is v3 of the patch series adding support for Macronix MX25L12833F and MX25L12845G, and restoring fallback parameters for MX25L12805D. I would like to sincerely apologize for the build errors in v2 reported by the kernel test robot. I had made further modifications and fixed the issues during my local testing, but I accidentally submitted an older, incorrect version of the patches. In this v3, I have corrected the mistake and changed the fixup hook to use `post_sfdp` instead of `post_bfpt`. Changes in v3: - Changed the fixup hook from `post_bfpt` to `post_sfdp` for MX25L12805D. - Fixed the build error caused by the incompatible pointer type in v2. Changes in v2: - Patch 1: Changed the fixup hook from late_init to post_bfpt. Since the legacy MX25L12805D lacks SFDP, it will not execute post_bfpt. This safely isolates the newer MX25L12833F/45G (which support SFDP) and enables 4PP for them without breaking the legacy part. - Patch 1: Added detailed comments inside the fixup function explaining the ID collision and the rationale behind the hook choice, as suggested by reviewers. - Patch 2 (New): Added a separate patch to restore the missing .size and .no_sfdp_flags fallback parameters for the legacy MX25L12805D. This fixes a probe failure caused by a previous commit and includes the appropriate Fixes and Cc: stable tags. Below are the test results after applying the patch provided by Michael: - mx25l12833f zynq> cat /sys/kernel/debug/spi-nor/spi0.0/capabilities Supported read modes by the flash 1S-1S-1S opcode 0x03 mode cycles 0 dummy cycles 0 1S-1S-2S opcode 0x3b mode cycles 0 dummy cycles 8 1S-2S-2S opcode 0xbb mode cycles 0 dummy cycles 4 1S-1S-4S opcode 0x6b mode cycles 0 dummy cycles 8 1S-4S-4S opcode 0xeb mode cycles 2 dummy cycles 4 4S-4S-4S opcode 0xeb mode cycles 2 dummy cycles 4 Supported page program modes by the flash 1S-1S-1S opcode 0x02 1S-4S-4S opcode 0x38 zynq> cat /sys/kernel/debug/spi-nor/spi0.0/params name (null) id c2 20 18 c2 20 18 size 16.0 MiB write size 1 page size 256 address nbytes 3 flags HAS_LOCK | HAS_4BIT_BP | SOFT_RESET opcodes read 0xeb dummy cycles 6 erase 0xd8 program 0x38 8D extension none protocols read 1S-4S-4S write 1S-4S-4S register 1S-1S-1S erase commands 20 (4.00 KiB) [1] 52 (32.0 KiB) [2] d8 (64.0 KiB) [3] c7 (16.0 MiB) sector map region (in hex) | erase mask | overlaid ------------------+------------+---------- 00000000-00ffffff | [ 3] | no zynq> dd if=/dev/urandom of=/tmp/spi_test bs=1M count=2 2+0 records in 2+0 records out 2097152 bytes (2.0MB) copied, 0.083756 seconds, 23.9MB/s zynq> mtd_debug erase /dev/mtd0 0 2097152 Erased 2097152 bytes from address 0x00000000 in flash zynq> mtd_debug read /dev/mtd0 0 2097152 /tmp/spi_read Copied 2097152 bytes from address 0x00000000 in flash to /tmp/spi_read zynq> hexdump /tmp/spi_read 0000000 ffff ffff ffff ffff ffff ffff ffff ffff * 0200000 zynq> sha256sum /tmp/spi_read 4bda3a28f4ffe603c0ec1258c0034d65a1a0d35ab7bd523a834608adabf03cc5 /tmp/spi_read zynq> mtd_debug write /dev/mtd0 0 2097152 /tmp/spi_test Copied 2097152 bytes from /tmp/spi_test to address 0x00000000 in flash zynq> mtd_debug read /dev/mtd0 0 2097152 /tmp/spi_read Copied 2097152 bytes from address 0x00000000 in flash to /tmp/spi_read zynq> sha256sum /tmp/spi* 07bc3ccaac03ebf2b46c78f0be620bb22ce431ed39044d89af9e57481dcdea82 /tmp/spi_read 07bc3ccaac03ebf2b46c78f0be620bb22ce431ed39044d89af9e57481dcdea82 /tmp/spi_test zynq> mtd_debug erase /dev/mtd0 0 2097152 Erased 2097152 bytes from address 0x00000000 in flash zynq> mtd_debug read /dev/mtd0 0 2097152 /tmp/spi_read Copied 2097152 bytes from address 0x00000000 in flash to /tmp/spi_read zynq> sha256sum /tmp/spi* 4bda3a28f4ffe603c0ec1258c0034d65a1a0d35ab7bd523a834608adabf03cc5 /tmp/spi_read 07bc3ccaac03ebf2b46c78f0be620bb22ce431ed39044d89af9e57481dcdea82 /tmp/spi_test zynq> mtd_debug info /dev/mtd0 mtd.type = MTD_NORFLASH mtd.flags = MTD_CAP_NORFLASH mtd.size = 16777216 (16M) mtd.erasesize = 65536 (64K) mtd.writesize = 1 mtd.oobsize = 0 regions = 0 -mx25l12845g zynq> cat /sys/kernel/debug/spi-nor/spi0.0/capabilities Supported read modes by the flash 1S-1S-1S opcode 0x03 mode cycles 0 dummy cycles 0 1S-1S-2S opcode 0x3b mode cycles 0 dummy cycles 8 1S-2S-2S opcode 0xbb mode cycles 0 dummy cycles 4 1S-1S-4S opcode 0x6b mode cycles 0 dummy cycles 8 1S-4S-4S opcode 0xeb mode cycles 2 dummy cycles 4 4S-4S-4S opcode 0xeb mode cycles 2 dummy cycles 4 Supported page program modes by the flash 1S-1S-1S opcode 0x02 1S-4S-4S opcode 0x38 zynq> cat /sys/kernel/debug/spi-nor/spi0.0/params name (null) id c2 20 18 c2 20 18 size 16.0 MiB write size 1 page size 256 address nbytes 3 flags HAS_LOCK | HAS_4BIT_BP | SOFT_RESET opcodes read 0xeb dummy cycles 6 erase 0xd8 program 0x38 8D extension none protocols read 1S-4S-4S write 1S-4S-4S register 1S-1S-1S erase commands 20 (4.00 KiB) [1] 52 (32.0 KiB) [2] d8 (64.0 KiB) [3] c7 (16.0 MiB) sector map region (in hex) | erase mask | overlaid ------------------+------------+---------- 00000000-00ffffff | [ 3] | no zynq> dd if=/dev/urandom of=/tmp/spi_test bs=1M count=2 2+0 records in 2+0 records out 2097152 bytes (2.0MB) copied, 0.084527 seconds, 23.7MB/s zynq> mtd_debug erase /dev/mtd0 0 2097152 Erased 2097152 bytes from address 0x00000000 in flash zynq> mtd_debug read /dev/mtd0 0 2097152 /tmp/spi_read Copied 2097152 bytes from address 0x00000000 in flash to /tmp/spi_read zynq> hexdump /tmp/spi_read 0000000 ffff ffff ffff ffff ffff ffff ffff ffff * 0200000 zynq> sha256sum /tmp/spi_read 4bda3a28f4ffe603c0ec1258c0034d65a1a0d35ab7bd523a834608adabf03cc5 /tmp/spi_read zynq> mtd_debug write /dev/mtd0 0 2097152 /tmp/spi_test Copied 2097152 bytes from /tmp/spi_test to address 0x00000000 in flash zynq> mtd_debug read /dev/mtd0 0 2097152 /tmp/spi_read Copied 2097152 bytes from address 0x00000000 in flash to /tmp/spi_read zynq> sha256sum /tmp/spi* 926c0e33670888d2c0d9d602a502ccc0aacb52afe58b9d430ebcb88137a8e3bf /tmp/spi_read 926c0e33670888d2c0d9d602a502ccc0aacb52afe58b9d430ebcb88137a8e3bf /tmp/spi_test zynq> mtd_debug erase /dev/mtd0 0 2097152 Erased 2097152 bytes from address 0x00000000 in flash zynq> mtd_debug read /dev/mtd0 0 2097152 /tmp/spi_read Copied 2097152 bytes from address 0x00000000 in flash to /tmp/spi_read zynq> sha256sum /tmp/spi* 4bda3a28f4ffe603c0ec1258c0034d65a1a0d35ab7bd523a834608adabf03cc5 /tmp/spi_read 926c0e33670888d2c0d9d602a502ccc0aacb52afe58b9d430ebcb88137a8e3bf /tmp/spi_test zynq> mtd_debug info /dev/mtd0 mtd.type = MTD_NORFLASH mtd.flags = MTD_CAP_NORFLASH mtd.size = 16777216 (16M) mtd.erasesize = 65536 (64K) mtd.writesize = 1 mtd.oobsize = 0 regions = 0 Cheng Ming Lin (2): mtd: spi-nor: Add support for MX25L12833F and MX25L12845G mtd: spi-nor: macronix: Restore fallback parameters for MX25L12805D drivers/mtd/spi-nor/macronix.c | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) -- 2.25.1
© 2016 - 2026 Red Hat, Inc.