flash/nor/stm32f1: Add handling of stm32f09, nearly same as stm32f07.
Change-Id: I9cb2aa75decca0e8a065fe7f5353de44d6877274 Signed-off-by: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de> Reviewed-on: http://openocd.zylin.com/2394 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>__archive__
parent
1663a17d9d
commit
43aadbf5dc
|
@ -948,6 +948,14 @@ static int stm32x_probe(struct flash_bank *bank)
|
||||||
stm32x_info->option_offset = 6;
|
stm32x_info->option_offset = 6;
|
||||||
stm32x_info->default_rdp = 0x55AA;
|
stm32x_info->default_rdp = 0x55AA;
|
||||||
break;
|
break;
|
||||||
|
case 0x442: /* stm32f09x */
|
||||||
|
page_size = 2048;
|
||||||
|
stm32x_info->ppage_size = 4;
|
||||||
|
max_flash_size_in_kb = 256;
|
||||||
|
stm32x_info->user_data_offset = 16;
|
||||||
|
stm32x_info->option_offset = 6;
|
||||||
|
stm32x_info->default_rdp = 0x55AA;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
LOG_WARNING("Cannot identify target as a STM32 family.");
|
LOG_WARNING("Cannot identify target as a STM32 family.");
|
||||||
return ERROR_FAIL;
|
return ERROR_FAIL;
|
||||||
|
|
Loading…
Reference in New Issue