diff options
author | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-08-05 16:20:27 +0530 |
---|---|---|
committer | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-10-07 17:55:42 +0530 |
commit | 18500e26ce2c0fd0449ce66a66e35c237a8b717b (patch) | |
tree | c8b6daf06b26de342a05509540a4d9ebc306e6b1 /drivers | |
parent | 0d7663fe7d1713dea6e4259f279f543bfa2fb441 (diff) | |
download | u-boot-imx-18500e26ce2c0fd0449ce66a66e35c237a8b717b.zip u-boot-imx-18500e26ce2c0fd0449ce66a66e35c237a8b717b.tar.gz u-boot-imx-18500e26ce2c0fd0449ce66a66e35c237a8b717b.tar.bz2 |
sf: probe: Add support for GD25* flash parts
Added GD25* parts are which are avilable in spi_flash_probe_legacy.c.
Updated the sector_size attributes as per the flash parts.
Looks fine for with this sector_size for computing the size
of flash.
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/spi/spi_flash_probe.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mtd/spi/spi_flash_probe.c b/drivers/mtd/spi/spi_flash_probe.c index e64b010..a66bcf9 100644 --- a/drivers/mtd/spi/spi_flash_probe.c +++ b/drivers/mtd/spi/spi_flash_probe.c @@ -40,6 +40,10 @@ static const struct spi_flash_params spi_flash_params_table[] = { {"EN25Q32B", 0x1c3016, 0x0, 64 * 1024, 64}, {"EN25Q128B", 0x1c3018, 0x0, 64 * 1024, 256}, #endif +#ifdef CONFIG_SPI_FLASH_GIGADEVICE /* GIGADEVICE */ + {"GD25Q64B", 0xc84017, 0x0, 64 * 1024, 128}, + {"GD25LQ32", 0xc86016, 0x0, 64 * 1024, 64}, +#endif #ifdef CONFIG_SPI_FLASH_STMICRO /* STMICRO */ {"M25P10", 0x202011, 0x0, 32 * 1024, 4}, {"M25P20", 0x202012, 0x0, 64 * 1024, 4}, @@ -65,7 +69,6 @@ static const struct spi_flash_params spi_flash_params_table[] = { /* * TODO: * ATMEL - * GIGADEVICE * MACRONIX * RAMTRON * SPANSION |