diff options
author | Christopher Hoover <ch@murgatroid.com> | 2018-07-10 02:35:02 -0700 |
---|---|---|
committer | Tomas Vanek <vanekt@fbl.cz> | 2018-07-18 21:06:20 +0100 |
commit | 84b571f667f376ed4e5c948acd4a0fb35adf8e98 (patch) | |
tree | 8d708e13c41fb21bed642bbb2688c3a2577b643a /src/flash | |
parent | 336477c2b8686ab2d73aa26647f7189da4fe0627 (diff) | |
download | riscv-openocd-84b571f667f376ed4e5c948acd4a0fb35adf8e98.zip riscv-openocd-84b571f667f376ed4e5c948acd4a0fb35adf8e98.tar.gz riscv-openocd-84b571f667f376ed4e5c948acd4a0fb35adf8e98.tar.bz2 |
Adds SAMD11D14AU flash support.
Corrects names of SAMD11D14AM and SAMD11D14ASS per datasheet.
Change-Id: I8beb15d5376966a4f8d7de76bfb2cbda2db440dc
Signed-off-by: Christopher Hoover <ch@murgatroid.com>
Reviewed-on: http://openocd.zylin.com/4597
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/nor/at91samd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/flash/nor/at91samd.c b/src/flash/nor/at91samd.c index 8553ee8..017d144 100644 --- a/src/flash/nor/at91samd.c +++ b/src/flash/nor/at91samd.c @@ -115,15 +115,16 @@ static const struct samd_part samd10_parts[] = { /* Known SAMD11 parts */ static const struct samd_part samd11_parts[] = { - { 0x0, "SAMD11D14AMU", 16, 4 }, + { 0x0, "SAMD11D14AM", 16, 4 }, { 0x1, "SAMD11D13AMU", 8, 4 }, { 0x2, "SAMD11D12AMU", 4, 4 }, - { 0x3, "SAMD11D14ASU", 16, 4 }, + { 0x3, "SAMD11D14ASS", 16, 4 }, { 0x4, "SAMD11D13ASU", 8, 4 }, { 0x5, "SAMD11D12ASU", 4, 4 }, { 0x6, "SAMD11C14A", 16, 4 }, { 0x7, "SAMD11C13A", 8, 4 }, { 0x8, "SAMD11C12A", 4, 4 }, + { 0x9, "SAMD11D14AU", 16, 4 }, }; /* Known SAMD20 parts. See Table 12-8 in 42129F–SAM–10/2013 */ |