blob: 515806fe06db7b71cdefa615b416e00b66a05aa6 [file] [log] [blame]
Sridevi Ramesh70e14182019-08-27 04:04:27 -05001#!/usr/bin/python
2
3r"""
4Contains PLDM-related constants.
5"""
6
Sridevi Ramesh1495bc42020-02-04 03:13:33 -06007PLDM_SUPPORTED_TYPES = ['base', 'platform', 'bios']
Rahul Maheshwari4d488572019-12-10 23:53:05 -06008
Sridevi Rameshc4e1cba2019-12-03 00:12:27 -06009# PLDM types.
10PLDM_TYPE_BASE = {'VALUE': '00', 'STRING': 'base'}
11PLDM_TYPE_PLATFORM = {'VALUE': '02', 'STRING': 'platform'}
12PLDM_TYPE_BIOS = {'VALUE': '03', 'STRING': 'bios'}
13PLDM_TYPE_FRU = {'VALUE': '04', 'STRING': 'fru'}
14PLDM_TYPE_OEM = {'VALUE': '3F', 'STRING': 'oem'}
Sridevi Ramesh70e14182019-08-27 04:04:27 -050015
Sridevi Rameshc4e1cba2019-12-03 00:12:27 -060016VERSION_BASE = {'VALUE': ['f1', 'f0', 'f0', '00'], 'STRING': '1.0.0'}
Sridevi Rameshec753aa2020-02-17 22:55:13 -060017VERSION_PLATFORM = {'VALUE': ['f1', 'f2', 'f0', '00'], 'STRING': '1.2.0'}
Sridevi Rameshc4e1cba2019-12-03 00:12:27 -060018VERSION_BIOS = {'VALUE': ['f1', 'f1', 'f1', '00'], 'STRING': '1.0.0'}
19VERSION_FRU = {'VALUE': ['f1', 'f0', 'f0', '00'], 'STRING': '1.0.0'}
Sridevi Ramesh70e14182019-08-27 04:04:27 -050020
Sridevi Ramesh70e14182019-08-27 04:04:27 -050021
Sridevi Ramesh039bc762020-03-30 09:59:07 -050022PLDM_BASE_CMDS = ['2(GetTID)', '3(GetPLDMVersion)', '4(GetPLDMTypes)', '5(GetPLDMCommands)']
23PLDM_PLATFORM_CMDS = ['57(SetStateEffecterStates)', '81(GetPDR)']
24PLDM_BIOS_CMDS = ['1(GetBIOSTable)', '7(SetBIOSAttributeCurrentValue)',
25 '8(GetBIOSAttributeCurrentValueByHandle)', '12(GetDateTime)',
26 '13(SetDateTime)']
27PLDM_FRU_CMDS = ['1(GetFRURecordTableMetadata)', '2(GetFRURecordTable)']
Sridevi Rameshc4e1cba2019-12-03 00:12:27 -060028
29# PLDM command format.
30
Sridevi Rameshc4e1cba2019-12-03 00:12:27 -060031'''
32e.g. : GetPLDMVersion usage
33
34pldmtool base GetPLDMVersion -t <pldm_type>
35
36pldm supported types
37
38base->0,platform->2,bios->3,fru->4
39
40'''
Rahul Maheshwari4d488572019-12-10 23:53:05 -060041CMD_GETPLDMVERSION = 'base GetPLDMVersion -t %s'
Sridevi Rameshc4e1cba2019-12-03 00:12:27 -060042
43'''
44e.g. : PLDM raw command usage
45
46pldmtool raw -d 0x80 0x00 0x03 0x00 0x00 0x00 0x00 0x01 0x00
47
48pldm raw -d 0x<header> 0x<pldm_type> 0x<pldm_cmd_type> 0x<payload_data>
49'''
50
Rahul Maheshwari4d488572019-12-10 23:53:05 -060051CMD_PLDMTOOL_RAW = 'raw -d 0x80' + '0x%s' + ' ' + '0x%s'
Sridevi Rameshc4e1cba2019-12-03 00:12:27 -060052
53
54# PLDM command payload data.
55
56PAYLOAD_GetPLDMVersion = \
57 ' 0x00 0x00 0x00 0x00 0x%s 0x%s' # %(TransferOperationFlag, PLDMType)
Rahul Maheshwari4d488572019-12-10 23:53:05 -060058
59
Sridevi Ramesh1495bc42020-02-04 03:13:33 -060060'''
61e.g. : SetDateTime usage
62
63pldmtool bios SetDateTime -d <YYYYMMDDHHMMSS>
64
65'''
66CMD_SETDATETIME = 'bios SetDateTime -d %s'
Sridevi Rameshfe52e402020-02-05 00:15:24 -060067
68
69CMD_GETPDR = 'platform GetPDR -d %s'
70
71'''
72e.g. : SetStateEffecterStates usage
73
Sridevi Rameshca3223a2020-03-11 03:58:58 -050074pldmtool platform GetPDR -i <effter_handle> -c <count> -d <effecterID, effecterState>
Sridevi Rameshfe52e402020-02-05 00:15:24 -060075
Sridevi Rameshca3223a2020-03-11 03:58:58 -050076pldmtool platform SetStateEffecterStates -i 1 -c 1 -d 1 1
Sridevi Rameshfe52e402020-02-05 00:15:24 -060077'''
78
Sridevi Rameshca3223a2020-03-11 03:58:58 -050079CMD_SETSTATEEFFECTERSTATES = 'platform SetStateEffecterStates -i %s -c %s -d %s'
Sridevi Rameshfe52e402020-02-05 00:15:24 -060080
81# GetPDR parsed response message for record handle.
82# Dictionary value array holds the expected output for record handle 1, 2.
Sridevi Rameshfe52e402020-02-05 00:15:24 -060083#
84# Note :
85# Record handle - 0 is default & has same behaviour as record handle 1
86# Only record handle 0, 1, 2 are supported as of now.
87
Sridevi Ramesh538d18d2020-03-30 11:45:42 -050088RESPONSE_DICT_GETPDR_SETSTATEEFFECTER = {
Sridevi Rameshfe52e402020-02-05 00:15:24 -060089 'responsecount': ['29', '30'],
Sridevi Rameshfe52e402020-02-05 00:15:24 -060090 'pdrheaderversion': ['1'],
91 'pdrtype': ['11'],
92 'recordchangenumber': ['0'],
93 'datalength': ['19', '20'],
94 'pldmterminushandle': ['0'],
Sridevi Ramesh538d18d2020-03-30 11:45:42 -050095 'effecterid': ['1', '2', '3'],
96 'entitytype': ['33', '45', '31'],
Sridevi Rameshfe52e402020-02-05 00:15:24 -060097 'entityinstancenumber': ['0'],
98 'containerid': ['0'],
99 'effectersemanticid': ['0'],
100 'effecterinit': ['0'],
101 'effecterdescriptionpdr': ['false'],
102 'compositeeffectercount': ['1'],
Sridevi Ramesh538d18d2020-03-30 11:45:42 -0500103 'statesetid': ['196', '260', '129'],
Sridevi Rameshfe52e402020-02-05 00:15:24 -0600104 'possiblestatessize': ['1', '2'],
Sridevi Ramesh538d18d2020-03-30 11:45:42 -0500105 'possiblestates': ['6', '0', '64']}
Sridevi Rameshfe52e402020-02-05 00:15:24 -0600106
Sridevi Ramesh538d18d2020-03-30 11:45:42 -0500107RESPONSE_DICT_GETPDR_FRURECORDSETIDENTIFIER = {
108 'responsecount': ['20'],
109 'pdrheaderversion': ['1'],
110 'pdrtype': ['20'],
111 'recordchangenumber': ['0'],
112 'datalength': ['10'],
113 'pldmterminushandle': ['0'],
114 'entitytype': ['System Board', 'Chassis front panel board (control panel)',
115 'Management Controller', '208(OEM)', 'Power converter'],
116 'containerid': ['0', '1']}
117
118RESPONSE_DICT_GETPDR_PDRENTITYASSOCIATION = {
119 'pdrheaderversion': ['1'],
120 'pdrtype': ['15'],
121 'recordchangenumber': ['0'],
122 'containerid': ['1'],
123 'associationtype': ['Physical'],
124 'containerentitytype': ['System Board'],
125}
126
127PLDM_PDR_TYPES = {
128 'PLDM_STATE_EFFECTER_PDR': '11',
129 'PLDM_PDR_FRU_RECORD_SET': '20',
130 'PLDM_PDR_ENTITY_ASSOCIATION': '15'}