mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
mtd: spi-nor-ids: Add Fujitsu MB85RS256TY FRAM
This part is an FRAM, but can be used through the spi-nor generic code. Signed-off-by: christoph.reiter@evk.biz
This commit is contained in:
committed by
Tom Rini
parent
cf6aa7cf73
commit
311f923761
@@ -292,4 +292,10 @@ config SPL_SPI_FLASH_MTD
|
||||
|
||||
If unsure, say N
|
||||
|
||||
config SPI_FRAM_FUJITSU
|
||||
bool "Fujitsu SPI FRAM support"
|
||||
help
|
||||
Add support for the Fujitsu MB85RS256TY FRAM chip. It's treated the same
|
||||
as SPI NOR flash at the moment.
|
||||
|
||||
endmenu # menu "SPI Flash Support"
|
||||
|
||||
@@ -86,6 +86,19 @@ const struct flash_info spi_nor_ids[] = {
|
||||
{ INFO("en25qh128", 0x1c7018, 0, 64 * 1024, 256, 0) },
|
||||
{ INFO("en25s64", 0x1c3817, 0, 64 * 1024, 128, SECT_4K) },
|
||||
#endif
|
||||
#ifdef CONFIG_SPI_FRAM_FUJITSU
|
||||
/* Fujitsu MB85RS256TY */
|
||||
{
|
||||
INFO_NAME("mb85rs256ty")
|
||||
.id = {0x04, 0x7f, 0x25, 0x00, 0x00},
|
||||
.id_len = 3,
|
||||
.sector_size = 32 * 1024,
|
||||
.n_sectors = 1,
|
||||
.page_size = 32 * 1024, /* Whole chip can be written at once */
|
||||
.flags = SPI_NOR_NO_ERASE,
|
||||
.addr_width = 2,
|
||||
},
|
||||
#endif
|
||||
#ifdef CONFIG_SPI_FLASH_GIGADEVICE /* GIGADEVICE */
|
||||
/* GigaDevice */
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user