All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/6] mtd: spi-nor: spring cleaning
@ 2024-04-12 13:43 ` Michael Walle
  0 siblings, 0 replies; 62+ messages in thread
From: Michael Walle @ 2024-04-12 13:43 UTC (permalink / raw)
  To: Tudor Ambarus, Pratyush Yadav, Miquel Raynal, Richard Weinberger,
	Vignesh Raghavendra
  Cc: linux-kernel, linux-mtd, Michael Walle

It's time for some spring cleaning. Remove the oddball xilinx
flashes with non-power-of-2 page sizes.
Remove the .setup() callback, only the default callback is ever
used and it is unlikely there is need for a custom setup.

Finally, the last patch is a proposal how to deprecate flashes,
which are just detected by their id. We cannot really find out if
there are boards out there which are using a particular flash. Thus,
as a first step, we can print a warning during kernel startup. As a
second step we might introduce a kernel config option to actually
disable the flashes which has the deprecated flag.

Michael Walle (6):
  mtd: spi-nor: Remove support for Xilinx S3AN flashes
  mtd: spi-nor: get rid of non-power-of-2 page size handling
  mtd: spi-nor: get rid of SPI_NOR_NO_FR
  mtd: spi-nor: remove .setup() callback
  mtd: spi-nor: simplify spi_nor_get_flash_info()
  mtd: spi-nor: introduce support for displaying deprecation message

 drivers/mtd/spi-nor/Makefile   |   1 -
 drivers/mtd/spi-nor/core.c     | 202 +++++++++++++++------------------
 drivers/mtd/spi-nor/core.h     |   9 +-
 drivers/mtd/spi-nor/everspin.c |  19 +++-
 drivers/mtd/spi-nor/xilinx.c   | 169 ---------------------------
 5 files changed, 110 insertions(+), 290 deletions(-)
 delete mode 100644 drivers/mtd/spi-nor/xilinx.c

-- 
2.39.2


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 62+ messages in thread

end of thread, other threads:[~2024-04-18 11:20 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-12 13:43 [PATCH v1 0/6] mtd: spi-nor: spring cleaning Michael Walle
2024-04-12 13:43 ` Michael Walle
2024-04-12 13:44 ` [PATCH v1 1/6] mtd: spi-nor: Remove support for Xilinx S3AN flashes Michael Walle
2024-04-12 13:44   ` Michael Walle
2024-04-12 13:53   ` Tudor Ambarus
2024-04-12 13:53     ` Tudor Ambarus
2024-04-12 14:01     ` Michael Walle
2024-04-12 14:01       ` Michael Walle
2024-04-15 15:26       ` Pratyush Yadav
2024-04-15 15:26         ` Pratyush Yadav
2024-04-16  4:45         ` Tudor Ambarus
2024-04-16  4:45           ` Tudor Ambarus
2024-04-12 13:44 ` [PATCH v1 2/6] mtd: spi-nor: get rid of non-power-of-2 page size handling Michael Walle
2024-04-12 13:44   ` Michael Walle
2024-04-12 13:58   ` Tudor Ambarus
2024-04-12 13:58     ` Tudor Ambarus
2024-04-15 15:49   ` Pratyush Yadav
2024-04-15 15:49     ` Pratyush Yadav
2024-04-12 13:44 ` [PATCH v1 3/6] mtd: spi-nor: get rid of SPI_NOR_NO_FR Michael Walle
2024-04-12 13:44   ` Michael Walle
2024-04-12 14:00   ` Tudor Ambarus
2024-04-12 14:00     ` Tudor Ambarus
2024-04-12 14:03     ` Michael Walle
2024-04-12 14:03       ` Michael Walle
2024-04-16  4:47       ` Tudor Ambarus
2024-04-16  4:47         ` Tudor Ambarus
2024-04-17 13:39   ` Pratyush Yadav
2024-04-17 13:39     ` Pratyush Yadav
2024-04-17 14:43     ` Michael Walle
2024-04-17 14:43       ` Michael Walle
2024-04-17 15:37       ` Pratyush Yadav
2024-04-17 15:37         ` Pratyush Yadav
2024-04-17 15:45         ` Michael Walle
2024-04-17 15:45           ` Michael Walle
2024-04-17 15:54           ` Pratyush Yadav
2024-04-17 15:54             ` Pratyush Yadav
2024-04-12 13:44 ` [PATCH v1 4/6] mtd: spi-nor: remove .setup() callback Michael Walle
2024-04-12 13:44   ` Michael Walle
2024-04-12 14:02   ` Tudor Ambarus
2024-04-12 14:02     ` Tudor Ambarus
2024-04-12 13:44 ` [PATCH v1 5/6] mtd: spi-nor: simplify spi_nor_get_flash_info() Michael Walle
2024-04-12 13:44   ` Michael Walle
2024-04-17 14:18   ` Pratyush Yadav
2024-04-17 14:18     ` Pratyush Yadav
2024-04-12 13:44 ` [RFC PATCH v1 6/6] mtd: spi-nor: introduce support for displaying deprecation message Michael Walle
2024-04-12 13:44   ` Michael Walle
2024-04-12 14:10   ` Tudor Ambarus
2024-04-12 14:10     ` Tudor Ambarus
2024-04-17 14:36   ` Pratyush Yadav
2024-04-17 14:36     ` Pratyush Yadav
2024-04-17 14:52     ` Michael Walle
2024-04-17 14:52       ` Michael Walle
2024-04-17 15:52       ` Pratyush Yadav
2024-04-17 15:52         ` Pratyush Yadav
2024-04-18  9:57         ` Michael Walle
2024-04-18  9:57           ` Michael Walle
2024-04-18 11:20           ` Pratyush Yadav
2024-04-18 11:20             ` Pratyush Yadav
2024-04-16  4:57 ` [PATCH v1 0/6] mtd: spi-nor: spring cleaning Tudor Ambarus
2024-04-16  4:57   ` Tudor Ambarus
2024-04-17 15:02   ` Michael Walle
2024-04-17 15:02     ` Michael Walle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.