36ac022862
Add support to show the manufacturer, the partname and JEDEC identifier as well as to dump the SFDP table. Not all flashes list their SFDP table contents in their datasheet. So having that is useful. It might also be helpful in bug reports from users. Signed-off-by: Michael Walle <michael@walle.cc> Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com> Acked-by: Pratyush Yadav <p.yadav@ti.com>
23 lines
604 B
Makefile
23 lines
604 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
spi-nor-objs := core.o sfdp.o swp.o otp.o sysfs.o
|
|
spi-nor-objs += atmel.o
|
|
spi-nor-objs += catalyst.o
|
|
spi-nor-objs += eon.o
|
|
spi-nor-objs += esmt.o
|
|
spi-nor-objs += everspin.o
|
|
spi-nor-objs += fujitsu.o
|
|
spi-nor-objs += gigadevice.o
|
|
spi-nor-objs += intel.o
|
|
spi-nor-objs += issi.o
|
|
spi-nor-objs += macronix.o
|
|
spi-nor-objs += micron-st.o
|
|
spi-nor-objs += spansion.o
|
|
spi-nor-objs += sst.o
|
|
spi-nor-objs += winbond.o
|
|
spi-nor-objs += xilinx.o
|
|
spi-nor-objs += xmc.o
|
|
obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o
|
|
|
|
obj-$(CONFIG_MTD_SPI_NOR) += controllers/
|