Skip to content

Commit

Permalink
sof_ri_info: add JSL Intel prod key to list of known keys
Browse files Browse the repository at this point in the history
Extracted from
https://github.com/thesofproject/sof-bin/blob/main/v1.9.x/sof-v1.9.2/intel-signed/sof-jsl.ri

Note previous sof-jsl.ri releases were signed with the ICL key:
#4916

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
  • Loading branch information
marc-hb authored and lgirdwood committed Nov 21, 2021
1 parent e14ec39 commit 2c208b5
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions tools/sof_ri_info/sof_ri_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,39 @@
0x5, 0x76, 0x1b, 0x44, 0x55, 0x75, 0xd9, 0x32,
0x35, 0xf1, 0xec, 0x4d, 0x93, 0x73, 0xe6, 0xc4])

JSL_INTEL_PROD_KEY = bytes([0x6f, 0xe4, 0xd5, 0xc9, 0x52, 0xf4, 0x01, 0xc1,
0x89, 0xc7, 0x2b, 0x16, 0x9b, 0xe6, 0x5d, 0x8e,
0x91, 0x28, 0x63, 0x16, 0x4f, 0x7b, 0x18, 0x6e,
0xa7, 0x89, 0x0c, 0xea, 0x24, 0x62, 0xc7, 0x94,
0x75, 0x43, 0xfd, 0x6d, 0xa8, 0x67, 0x47, 0x36,
0x50, 0xaf, 0x37, 0x46, 0x15, 0x82, 0x45, 0x4a,
0xa3, 0x2e, 0xae, 0xa4, 0x1f, 0x92, 0x67, 0x4b,
0x5e, 0x67, 0x7e, 0x02, 0xfc, 0x18, 0x6f, 0x68,
0x0d, 0xe3, 0xc1, 0x00, 0xdf, 0xea, 0xed, 0x9f,
0xdc, 0x61, 0xa0, 0xfd, 0x36, 0x61, 0x84, 0xa7,
0x8c, 0x2a, 0x4b, 0x2c, 0x2d, 0xed, 0x8d, 0x0b,
0x35, 0xe9, 0x79, 0x59, 0x3f, 0x22, 0xdc, 0x3c,
0xd4, 0x43, 0x32, 0x22, 0xf0, 0xda, 0x0d, 0xa1,
0x3a, 0xec, 0x47, 0x87, 0x5e, 0xa0, 0xd2, 0xaa,
0xf8, 0x1c, 0x61, 0x08, 0x05, 0x64, 0xb4, 0xa8,
0x75, 0xc8, 0x20, 0x34, 0xbf, 0x04, 0x10, 0x75,
0x8c, 0xb7, 0x6d, 0x49, 0xde, 0x3d, 0x3c, 0x66,
0x08, 0xfe, 0x67, 0xc8, 0x77, 0x04, 0x7c, 0xa5,
0xf0, 0x9e, 0xe7, 0x5e, 0x70, 0xbf, 0xde, 0xf1,
0xcb, 0x1c, 0xc0, 0x84, 0x4a, 0x89, 0x76, 0x37,
0x4f, 0xad, 0x3b, 0x8f, 0x04, 0x91, 0xd0, 0x1b,
0x0b, 0xa8, 0x20, 0x6e, 0x1e, 0x97, 0x1e, 0xff,
0x1f, 0xef, 0xde, 0x7a, 0xd7, 0x93, 0x3c, 0xa9,
0x46, 0xe5, 0x74, 0x66, 0x9c, 0x85, 0xfa, 0xaa,
0x4a, 0xe4, 0x39, 0xc5, 0x33, 0xbb, 0x8e, 0xca,
0x1f, 0xd9, 0x4c, 0xbc, 0xcd, 0x7c, 0xa1, 0x30,
0xdb, 0x15, 0xed, 0xa1, 0x24, 0x9d, 0xcb, 0xf0,
0xbe, 0xeb, 0x92, 0x60, 0xb0, 0xab, 0x60, 0xa0,
0xcc, 0xd8, 0x04, 0xf9, 0xf1, 0xa0, 0x04, 0x98,
0x6a, 0x20, 0xd8, 0x86, 0xff, 0xd4, 0x9d, 0x09,
0xa1, 0x22, 0xce, 0x0a, 0x3e, 0x21, 0x27, 0xcd,
0xf8, 0x7c, 0xb0, 0x09, 0x09, 0xc2, 0xa3, 0xcc])

TGL_INTEL_PROD_KEY = bytes([0xd3, 0x72, 0x92, 0x99, 0x4e, 0xb9, 0xcd, 0x67,
0x41, 0x86, 0x16, 0x77, 0x35, 0xa1, 0x34, 0x85,
0x43, 0x96, 0xd9, 0x53, 0x76, 0x4d, 0xd0, 0x63,
Expand Down Expand Up @@ -311,6 +344,7 @@
KNOWN_KEYS = {APL_INTEL_PROD_KEY : 'APL Intel prod key',
CNL_INTEL_PROD_KEY : 'CNL Intel prod key',
ICL_INTEL_PROD_KEY : 'ICL Intel prod key',
JSL_INTEL_PROD_KEY : 'JSL Intel prod key',
TGL_INTEL_PROD_KEY : 'TGL Intel prod key',
EHL_INTEL_PROD_KEY : 'EHL Intel prod key',
COMMUNITY_KEY : 'Community key',
Expand Down

0 comments on commit 2c208b5

Please sign in to comment.