summaryrefslogtreecommitdiff
path: root/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.h
blob: 1022132f1046234fa2e79615ade8719c58378caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/** @file
  Build a table, each item is (key, info) pair.
  and give a interface of query a string out of a table.

  Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.<BR>
  This program and the accompanying materials
  are licensed and made available under the terms and conditions of the BSD License
  which accompanies this distribution.  The full text of the license may be found at
  http://opensource.org/licenses/bsd-license.php

  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

**/

#ifndef _SMBIOS_QUERY_TABLE_H
#define _SMBIOS_QUERY_TABLE_H

#define QUERY_TABLE_UNFOUND 0xFF

typedef struct TABLE_ITEM {
  UINT16  Key;
  CHAR16  *Info;
} TABLE_ITEM;

//
// Print info by option
//
#define PRINT_INFO_OPTION(Value, Option) \
  do { \
    if (Option == SHOW_NONE) { \
      return ; \
    } \
    if (Option < SHOW_DETAIL) { \
      Print (L"0x%x\n", Value); \
      return ; \
    } \
  } while (0);

/**
  Given a table and a Key, return the responding info.

  Notes:
    Table[Index].Key is change from UINT8 to UINT16,
    in order to deal with "0xaa - 0xbb".

    For example:
      DisplaySELVariableDataFormatTypes(UINT8 Type, UINT8 Option)
    has a item:
      "0x07-0x7F,   Unused"
    Now define Key = 0x7F07, that is to say: High = 0x7F, Low = 0x07.
    Then all the Key Value between Low and High gets the same string
    L"Unused".

  @param[in] Table    The begin address of table.
  @param[in] Number   The number of table items.
  @param[in] Key      The query Key.
  @param[in,out] Info Input as empty buffer; output as data buffer.
  @param[in] InfoLen  The max number of characters for Info.

  @return the found Key and Info is valid.
  @retval QUERY_TABLE_UNFOUND and Info should be NULL.
**/
UINT8
QueryTable (
  IN  TABLE_ITEM    *Table,
  IN  UINTN         Number,
  IN  UINT8         Key,
  IN  OUT CHAR16    *Info,
  IN  UINTN         InfoLen
  );

VOID
PrintBitsInfo (
  IN  TABLE_ITEM    *Table,
  IN  UINTN         Number,
  IN  UINT32        Bits
  );

//
// Display the element detail information
//
VOID
DisplayStructureTypeInfo (
  UINT8 Key,
  UINT8 Option
  );

//
// System Information (Type 1)
//
VOID
DisplaySystemWakeupType (
  UINT8 Type,
  UINT8 Option
  );

//
// System Enclosure (Type 3)
//
VOID
DisplaySystemEnclosureType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplaySystemEnclosureStatus (
  UINT8 Status,
  UINT8 Option
  );
VOID
DisplaySESecurityStatus (
  UINT8 Status,
  UINT8 Option
  );

//
// Processor Information (Type 4)
//
VOID
DisplayProcessorType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplayProcessorUpgrade (
  UINT8 Upgrade,
  UINT8 Option
  );

//
// Memory Controller Information (Type 5)
//
VOID
DisplayMcErrorDetectMethod (
  UINT8 Method,
  UINT8 Option
  );
VOID
DisplayMcErrorCorrectCapability (
  UINT8 Capability,
  UINT8 Option
  );
VOID
DisplayMcInterleaveSupport (
  UINT8 Support,
  UINT8 Option
  );
VOID
DisplayMcMemorySpeeds (
  UINT16  Speed,
  UINT8   Option
  );
VOID
DisplayMemoryModuleVoltage (
  UINT8 Voltage,
  UINT8 Option
  );

//
// Memory Module Information (Type 6)
//
VOID
DisplayMmMemoryType (
  UINT16  Type,
  UINT8   Option
  );
VOID
DisplayMmErrorStatus (
  UINT8 Status,
  UINT8 Option
  );

//
// Cache Information (Type 7)
//
VOID
DisplayCacheSRAMType (
  UINT16  Type,
  UINT8   Option
  );
VOID
DisplayCacheErrCorrectingType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplayCacheSystemCacheType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplayCacheAssociativity (
  UINT8 Associativity,
  UINT8 Option
  );

//
// Port Connector Information  (Type 8)
//
VOID
DisplayPortConnectorType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplayPortType (
  UINT8 Type,
  UINT8 Option
  );

//
// System Slots (Type 9)
//
VOID
DisplaySystemSlotType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplaySystemSlotDataBusWidth (
  UINT8 Width,
  UINT8 Option
  );
VOID
DisplaySystemSlotCurrentUsage (
  UINT8 Usage,
  UINT8 Option
  );
VOID
DisplaySystemSlotLength (
  UINT8 Length,
  UINT8 Option
  );
VOID
DisplaySlotCharacteristics1 (
  UINT8 Chara1,
  UINT8 Option
  );
VOID
DisplaySlotCharacteristics2 (
  UINT8 Chara2,
  UINT8 Option
  );

//
// On Board Devices Information (Type 10)
//
VOID
DisplayOnboardDeviceTypes (
  UINT8 Type,
  UINT8 Option
  );

//
// System Event Log (Type 15)
//
VOID
DisplaySELTypes (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplaySELVarDataFormatType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplayPostResultsBitmapDw1 (
  UINT32  Key,
  UINT8   Option
  );
VOID
DisplayPostResultsBitmapDw2 (
  UINT32  Key,
  UINT8   Option
  );
VOID
DisplaySELSysManagementTypes (
  UINT32  SMType,
  UINT8   Option
  );

//
// Physical Memory Array (Type 16)
//
VOID
DisplayPMALocation (
  UINT8 Location,
  UINT8 Option
  );
VOID
DisplayPMAUse (
  UINT8 Use,
  UINT8 Option
  );
VOID
DisplayPMAErrorCorrectionTypes (
  UINT8 Type,
  UINT8 Option
  );

//
// Memory Device (Type 17)
//
VOID
DisplayMemoryDeviceFormFactor (
  UINT8 FormFactor,
  UINT8 Option
  );
VOID
DisplayMemoryDeviceType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplayMemoryDeviceTypeDetail (
  UINT16  Parameter,
  UINT8   Option
  );

//
// 32-bit Memory Error Information (Type 18)
//
VOID
DisplayMemoryErrorType (
  UINT8 ErrorType,
  UINT8 Option
  );
VOID
DisplayMemoryErrorGranularity (
  UINT8 Granularity,
  UINT8 Option
  );
VOID
DisplayMemoryErrorOperation (
  UINT8 Operation,
  UINT8 Option
  );

//
// Memory Array Mapped Address (Type 19)
// Memory Device Mapped Address  (Type 20)
//
// Built-in Pointing Device  (Type 21)
//
VOID
DisplayPointingDeviceType (
  UINT8 Type,
  UINT8 Option
  );
VOID
DisplayPointingDeviceInterface (
  UINT8   Interface,
  UINT8   Option
  );

//
// Portable Battery  (Type 22)
//
VOID
DisplayPBDeviceChemistry (
  UINT8 Key,
  UINT8 Option
  );

//
// Voltage Probe (Type 26)
//
VOID
DisplayVPLocation (
  UINT8 Key,
  UINT8 Option
  );
VOID
DisplayVPStatus (
  UINT8 Key,
  UINT8 Option
  );

//
// Voltage Probe (Type 27)
//
VOID
DisplayCoolingDeviceStatus (
  UINT8 Key,
  UINT8 Option
  );
VOID
DisplayCoolingDeviceType (
  UINT8 Key,
  UINT8 Option
  );

//
// Temperature Probe  (Type 28)
//
VOID
DisplayTemperatureProbeStatus (
  UINT8 Key,
  UINT8 Option
  );
VOID
DisplayTemperatureProbeLoc (
  UINT8 Key,
  UINT8 Option
  );

//
// Electrical Current Probe (Type 29)
//
VOID
DisplayECPStatus (
  UINT8 Key,
  UINT8 Option
  );
VOID
DisplayECPLoc (
  UINT8 Key,
  UINT8 Option
  );

//
// Management Device  (Type 34)
//
VOID
DisplayMDType (
  UINT8 Key,
  UINT8 Option
  );
VOID
DisplayMDAddressType (
  UINT8 Key,
  UINT8 Option
  );

//
// Memory Channel  (Type 37)
//
VOID
DisplayMemoryChannelType (
  UINT8 Key,
  UINT8 Option
  );

//
// IPMI Device Information  (Type 38)
//
VOID
DisplayIPMIDIBMCInterfaceType (
  UINT8 Key,
  UINT8 Option
  );

#endif