mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add 16MB flash support for ar2315 (who knows...?)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6334 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -84,7 +84,8 @@ struct flashconfig {
|
||||
{ STM_1MB_BYTE_COUNT, STM_1MB_SECTOR_COUNT, STM_1MB_SECTOR_SIZE, 0x0},
|
||||
{ STM_2MB_BYTE_COUNT, STM_2MB_SECTOR_COUNT, STM_2MB_SECTOR_SIZE, 0x0},
|
||||
{ STM_4MB_BYTE_COUNT, STM_4MB_SECTOR_COUNT, STM_4MB_SECTOR_SIZE, 0x0},
|
||||
{ STM_8MB_BYTE_COUNT, STM_8MB_SECTOR_COUNT, STM_8MB_SECTOR_SIZE, 0x0}
|
||||
{ STM_8MB_BYTE_COUNT, STM_8MB_SECTOR_COUNT, STM_8MB_SECTOR_SIZE, 0x0},
|
||||
{ STM_16MB_BYTE_COUNT, STM_16MB_SECTOR_COUNT, STM_16MB_SECTOR_SIZE, 0x0}
|
||||
};
|
||||
|
||||
/* Mapping of generic opcodes to STM serial flash opcodes */
|
||||
@@ -215,6 +216,9 @@ spiflash_probe_chip (void)
|
||||
case STM_64MBIT_SIGNATURE:
|
||||
flash_size = FLASH_8MB;
|
||||
break;
|
||||
case STM_128MBIT_SIGNATURE:
|
||||
flash_size = FLASH_16MB;
|
||||
break;
|
||||
default:
|
||||
printk (KERN_WARNING "%s: Read of flash device signature failed!\n", module_name);
|
||||
return (0);
|
||||
|
||||
Reference in New Issue
Block a user