From 23ece85f33bb327ab50ce8573c2c46faa4ad1529 Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Mon, 16 Jan 2012 17:36:41 +0000 Subject: [PATCH] flash: add missing stellaris device classes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This adds missing classes to the stellaris flash driver. Change-Id: I90f2218479e5eb60950046fef04429b9529f7ddf Signed-off-by: Spencer Oliver Reviewed-on: http://openocd.zylin.com/382 Tested-by: jenkins Reviewed-by: Øyvind Harboe --- src/flash/nor/stellaris.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/flash/nor/stellaris.c b/src/flash/nor/stellaris.c index 10e4d559fc..9645c5fe5d 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 */ -- 2.30.2