target-xtensa: xtfpga: fix ml605 flash size

ML605 daughterboard has 16MB flash, not 32MB. Change board definition
accordingly.

Cc: qemu-stable@nongnu.org
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
Max Filippov 2015-02-16 22:30:21 +03:00
parent 4246e225c0
commit 12004c9eb4

View file

@ -408,7 +408,7 @@ static void xtensa_ml605_init(MachineState *machine)
{ {
static const LxBoardDesc ml605_board = { static const LxBoardDesc ml605_board = {
.flash_base = 0xf8000000, .flash_base = 0xf8000000,
.flash_size = 0x02000000, .flash_size = 0x01000000,
.flash_sector_size = 0x20000, .flash_sector_size = 0x20000,
.sram_size = 0x2000000, .sram_size = 0x2000000,
}; };