Fix RP2040 memory sizes.

This commit is contained in:
Dag Ågren 2022-04-18 18:55:07 +03:00 committed by Rachel Mant
parent 039bf14761
commit f6edb54395
1 changed files with 2 additions and 2 deletions

View File

@ -211,7 +211,7 @@ static int rp_flash_erase(struct target_flash *f, target_addr addr,
struct rp_priv_s *ps = (struct rp_priv_s*)t->target_storage; struct rp_priv_s *ps = (struct rp_priv_s*)t->target_storage;
/* Register playground*/ /* Register playground*/
/* erase */ /* erase */
#define MAX_FLASH (2 * 1024 * 1024) #define MAX_FLASH (16 * 1024 * 1024)
#define FLASHCMD_SECTOR_ERASE 0x20 #define FLASHCMD_SECTOR_ERASE 0x20
#define FLASHCMD_BLOCK32K_ERASE 0x52 #define FLASHCMD_BLOCK32K_ERASE 0x52
#define FLASHCMD_BLOCK64K_ERASE 0xd8 #define FLASHCMD_BLOCK64K_ERASE 0xd8
@ -408,7 +408,7 @@ bool rp_probe(target *t)
} }
rp_add_flash(t, XIP_FLASH_START, size << 1); rp_add_flash(t, XIP_FLASH_START, size << 1);
t->driver = RP_ID; t->driver = RP_ID;
target_add_ram(t, SRAM_START, 0x40000); target_add_ram(t, SRAM_START, 0x42000);
target_add_ram(t, 0x51000000, 0x1000); target_add_ram(t, 0x51000000, 0x1000);
target_add_commands(t, rp_cmd_list, RP_ID); target_add_commands(t, rp_cmd_list, RP_ID);
return true; return true;