Add RISC-V support.
[openocd.git] / src / helper / jep106.c
blob33dc61c91b7d7f2c50d0994e2f9087845d030691
1 /***************************************************************************
2 * Copyright (C) 2015 Andreas Fritiofson *
3 * andreas.fritiofson@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 ***************************************************************************/
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
23 #include "jep106.h"
24 #include "log.h"
26 static const char * const jep106[][126] = {
27 #include "jep106.inc"
30 const char *jep106_manufacturer(unsigned bank, unsigned id)
32 if (id < 1 || id > 126) {
33 LOG_DEBUG("BUG: Caller passed out-of-range JEP106 ID!");
34 return "<invalid>";
37 /* index is zero based */
38 id--;
40 if (bank >= ARRAY_SIZE(jep106) || jep106[bank][id] == 0)
41 return "<unknown>";
43 return jep106[bank][id];