flash: grow runtime limit to 512 kB

pull/319/head
Robert Jördens 2016-01-30 14:50:15 -07:00
parent 3df67526b9
commit 10d78a5d0b
3 changed files with 4 additions and 4 deletions

View File

@ -9,4 +9,4 @@ Release notes
(and not ``from artiq import *`` as previously)
* Core device flash storage has moved due to increased runtime size.
This requires reflashing the runtime and the flash storage filesystem image
or its data.
or erase and rewrite its entries.

View File

@ -58,7 +58,7 @@ def main():
"bitstream": 0x000000,
"bios": 0xaf0000,
"runtime": 0xb00000,
"storage": 0xb70000,
"storage": 0xb80000,
},
"pipistrello": {
"chip": "xc6slx45",
@ -66,7 +66,7 @@ def main():
"bitstream": 0x000000,
"bios": 0x170000,
"runtime": 0x180000,
"storage": 0x1f0000,
"storage": 0x200000,
},
}[opts.target]

View File

@ -14,7 +14,7 @@
#if (defined CSR_SPIFLASH_BASE && defined CONFIG_SPIFLASH_PAGE_SIZE)
#define STORAGE_ADDRESS ((char *)(FLASH_BOOT_ADDRESS + 0x70000))
#define STORAGE_ADDRESS ((char *)(FLASH_BOOT_ADDRESS + 0x80000 /* max runtime size */))
#define STORAGE_SIZE CONFIG_SPIFLASH_SECTOR_SIZE
#define END_MARKER (0xFFFFFFFF)