aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-01-16 17:36:41 +0000
committerSpencer Oliver <spen@spen-soft.co.uk>2012-01-18 21:46:48 +0000
commit23ece85f33bb327ab50ce8573c2c46faa4ad1529 (patch)
tree594ae8a2055dc2264df4ceb427821418d34cc0fe /src
parent28b1fbd5ee083732c67e5bf810ae01ad938471ac (diff)
downloadriscv-openocd-23ece85f33bb327ab50ce8573c2c46faa4ad1529.zip
riscv-openocd-23ece85f33bb327ab50ce8573c2c46faa4ad1529.tar.gz
riscv-openocd-23ece85f33bb327ab50ce8573c2c46faa4ad1529.tar.bz2
flash: add missing stellaris device classes
This adds missing classes to the stellaris flash driver. Change-Id: I90f2218479e5eb60950046fef04429b9529f7ddf Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/382 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/flash/nor/stellaris.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/flash/nor/stellaris.c b/src/flash/nor/stellaris.c
index 10e4d55..9645c5f 100644
--- a/src/flash/nor/stellaris.c
+++ b/src/flash/nor/stellaris.c
@@ -700,6 +700,8 @@ static int stellaris_read_part_info(struct flash_bank *bank)
* always approximate.
*
* For Tempest: IOSC is calibrated, 16 MHz
+ * For Blizzard: IOSC is calibrated, 16 MHz
+ * For Firestorm: IOSC is calibrated, 16 MHz
*/
stellaris_info->iosc_freq = 12000000;
stellaris_info->iosc_desc = " (±30%)";
@@ -722,6 +724,8 @@ static int stellaris_read_part_info(struct flash_bank *bank)
case 1: /* Fury */
break;
case 4: /* Tempest */
+ case 5: /* Blizzard */
+ case 6: /* Firestorm */
stellaris_info->iosc_freq = 16000000; /* +/- 1% */
stellaris_info->iosc_desc = " (±1%)";
/* FALL THROUGH */