]> git.sur5r.net Git - openocd/blob - src/helper/jep106.c
Remove FSF address from GPL notices
[openocd] / src / helper / jep106.c
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  ***************************************************************************/
18
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22
23 #include "jep106.h"
24 #include "log.h"
25
26 static const char * const jep106[][126] = {
27 #include "jep106.inc"
28 };
29
30 const char *jep106_manufacturer(unsigned bank, unsigned id)
31 {
32         if (id < 1 || id > 126) {
33                 LOG_DEBUG("BUG: Caller passed out-of-range JEP106 ID!");
34                 return "<invalid>";
35         }
36
37         /* index is zero based */
38         id--;
39
40         if (bank >= ARRAY_SIZE(jep106) || jep106[bank][id] == 0)
41                 return "<unknown>";
42
43         return jep106[bank][id];
44 }