at91lib: Add Spansion S25FL016A SPI flash support

This commit is contained in:
Harald Welte 2011-07-30 19:50:00 +02:00
parent f02248961e
commit 7053b9f5c7
1 changed files with 3 additions and 1 deletions

View File

@ -84,7 +84,9 @@ static const At26Desc at26Devices[] = {
{"MX25L6405" , 0x001720C2, 8 * 1024 * 1024, 256, 64 * 1024, AT26_BLOCK_ERASE_64K},
// Other
{"SST25VF040B", 0x008D25BF, 4 * 1024 * 1024, 256, 32 * 1024, AT26_BLOCK_ERASE_32K},
{"SST25VF512" , 0x000048BF, 64 * 1024, 256, 32 * 1024, AT26_BLOCK_ERASE_32K}
{"SST25VF512" , 0x000048BF, 64 * 1024, 256, 32 * 1024, AT26_BLOCK_ERASE_32K},
// Spansion
{"S25FL016A" , 0x00140201, 2 * 1024 * 1024, 256, 64 * 1024, AT26_BLOCK_ERASE_64K},
};
//------------------------------------------------------------------------------