summaryrefslogtreecommitdiff
path: root/hw/xtensa
diff options
context:
space:
mode:
authorMax Filippov <jcmvbkbc@gmail.com>2015-02-16 22:30:21 +0300
committerMax Filippov <jcmvbkbc@gmail.com>2015-03-07 15:27:55 +0300
commit12004c9eb4486a134b1f49b17890a364adca5f8c (patch)
treeb7de5583f5876f0ad0c48760d393d9a8385dd1a2 /hw/xtensa
parent4246e225c0e8fbcf17051aa83a4198293c007cc4 (diff)
downloadqemu-12004c9eb4486a134b1f49b17890a364adca5f8c.tar.gz
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>
Diffstat (limited to 'hw/xtensa')
-rw-r--r--hw/xtensa/xtfpga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xtensa/xtfpga.c b/hw/xtensa/xtfpga.c
index 2c2f9974a5..d441c024c2 100644
--- a/hw/xtensa/xtfpga.c
+++ b/hw/xtensa/xtfpga.c
@@ -408,7 +408,7 @@ static void xtensa_ml605_init(MachineState *machine)
{
static const LxBoardDesc ml605_board = {
.flash_base = 0xf8000000,
- .flash_size = 0x02000000,
+ .flash_size = 0x01000000,
.flash_sector_size = 0x20000,
.sram_size = 0x2000000,
};