2022-06-26 17:58:56 -05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
2015-12-28 11:05:54 -06:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2015 Andreas Fritiofson *
|
|
|
|
* andreas.fritiofson@gmail.com *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2015-09-21 14:07:46 -05:00
|
|
|
#ifndef OPENOCD_HELPER_JEP106_H
|
|
|
|
#define OPENOCD_HELPER_JEP106_H
|
2015-12-28 11:05:54 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the manufacturer name associated with a JEP106 ID.
|
|
|
|
* @param bank The bank (number of continuation codes) of the manufacturer ID.
|
|
|
|
* @param id The 7-bit manufacturer ID (i.e. with parity stripped).
|
|
|
|
* @return A pointer to static const storage containing the name of the
|
|
|
|
* manufacturer associated with bank and id, or one of the strings
|
|
|
|
* "<invalid>" and "<unknown>".
|
|
|
|
*/
|
2021-08-08 06:51:33 -05:00
|
|
|
const char *jep106_table_manufacturer(unsigned int bank, unsigned int id);
|
|
|
|
|
|
|
|
static inline const char *jep106_manufacturer(unsigned int manufacturer)
|
|
|
|
{
|
|
|
|
return jep106_table_manufacturer(manufacturer >> 7, manufacturer & 0x7f);
|
|
|
|
}
|
2015-12-28 11:05:54 -06:00
|
|
|
|
2015-09-21 14:07:46 -05:00
|
|
|
#endif /* OPENOCD_HELPER_JEP106_H */
|