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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
|
/* Copyright 2013-2017 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __SPIRA_H
#define __SPIRA_H
#include "hdif.h"
/*
* To help the FSP to distinguish between physical address and TCE mapped address.
* Also to help hostboot to distinguish physical and relative address.
*/
#define HRMOR_BIT (1ul << 63)
/*
* The SPIRA structure
*
* NOTE: This is one of the only HDIF structure that we layout entirely
* as a C struct because it's provided by us to the FSP. Almost everything
* else is generated by the FSP, and thus must be "parsed" since the various
* offsets and alignments might change.
*/
#define SPIRA_VERSION 0x20 /* Like 730 ? */
struct spira_ntuple {
__be64 addr;
__be16 alloc_cnt;
__be16 act_cnt;
__be32 alloc_len;
__be32 act_len;
__be32 tce_off;
__be64 padding;
} __packed;
#define SPIRA_NTUPLES_COUNT 0x19
struct spira_ntuples {
struct HDIF_array_hdr array_hdr;
struct spira_ntuple sp_subsys; /* 0x040 */
struct spira_ntuple ipl_parms; /* 0x060 */
struct spira_ntuple nt_enclosure_vpd; /* 0x080 */
struct spira_ntuple slca; /* 0x0a0 */
struct spira_ntuple backplane_vpd; /* 0x0c0 */
struct spira_ntuple system_vpd; /* 0x0e0 */
struct spira_ntuple chip_tod; /* 0x100 */
struct spira_ntuple proc_init; /* 0x120 */
struct spira_ntuple clock_vpd; /* 0x140 */
struct spira_ntuple anchor_vpd; /* 0x160 */
struct spira_ntuple op_panel_vpd; /* 0x180 */
struct spira_ntuple ext_cache_fru_vpd; /* 0x1a0 */
struct spira_ntuple misc_cec_fru_vpd; /* 0x1c0 */
struct spira_ntuple paca; /* 0x1e0 */
struct spira_ntuple ms_vpd; /* 0x200 */
struct spira_ntuple cec_iohub_fru; /* 0x220 */
struct spira_ntuple cpu_ctrl; /* 0x240 */
struct spira_ntuple mdump_src; /* 0x260 */
struct spira_ntuple mdump_dst; /* 0x280 */
struct spira_ntuple mdump_res; /* 0x2a0 */
struct spira_ntuple heap; /* 0x2c0 */
struct spira_ntuple pcia; /* 0x2e0 */
struct spira_ntuple proc_chip; /* 0x300 */
struct spira_ntuple hs_data; /* 0x320 */
struct spira_ntuple ipmi_sensor; /* 0x360 */
struct spira_ntuple node_stb_data; /* 0x380 */
};
struct spira {
struct HDIF_common_hdr hdr;
struct HDIF_idata_ptr ntuples_ptr;
__be64 pad;
struct spira_ntuples ntuples;
/*
* We reserve 0xc0 rather than 0x4c0 so we fit SPIRAH/SPIRAS here
* while preserving compatibility with existing P7/P8 systems.
*
* According to FSP engineers, this is an okay thing to do.
*/
u8 reserved[0x80];
} __packed __align(0x100);
extern struct spira spira;
/* SPIRA-H signature */
#define SPIRAH_HDIF_SIG "SPIRAH"
/* First version of the secure boot compliant design. */
#define SPIRAH_VERSION 0x50
/* N-tuples in SPIRAH */
#define SPIRAH_NTUPLES_COUNT 0x6
struct spirah_ntuples {
struct HDIF_array_hdr array_hdr; /* 0x030 */
struct spira_ntuple hs_data_area; /* 0x040 */
struct spira_ntuple proc_init; /* 0x060 */
struct spira_ntuple cpu_ctrl; /* 0x080 */
struct spira_ntuple mdump_src; /* 0x0a0 */
struct spira_ntuple mdump_dst; /* 0x0c0 */
struct spira_ntuple mdump_res; /* 0x0e0 */
struct spira_ntuple proc_dump_area; /* 0x100 */
};
struct spirah {
struct HDIF_common_hdr hdr;
struct HDIF_idata_ptr ntuples_ptr;
__be64 pad;
struct spirah_ntuples ntuples;
u8 reserved[0xE0];
} __packed __align(0x100);
extern struct spirah spirah;
/* SPIRA-S signature */
#define SPIRAS_HDIF_SIG "SPIRAS"
/* First version on 810 release */
#define SPIRAS_VERSION_P8 0x40
#define SPIRAS_VERSION_P9 0x50
/* N-tuples in SPIRAS */
#define SPIRAS_NTUPLES_COUNT 0x10
struct spiras_ntuples {
struct HDIF_array_hdr array_hdr; /* 0x030 */
struct spira_ntuple sp_subsys; /* 0x040 */
struct spira_ntuple ipl_parms; /* 0x060 */
struct spira_ntuple nt_enclosure_vpd; /* 0x080 */
struct spira_ntuple slca; /* 0x0a0 */
struct spira_ntuple backplane_vpd; /* 0x0c0 */
struct spira_ntuple system_vpd; /* 0x0e0 */
struct spira_ntuple clock_vpd; /* 0x100 */
struct spira_ntuple anchor_vpd; /* 0x120 */
struct spira_ntuple op_panel_vpd; /* 0x140 */
struct spira_ntuple misc_cec_fru_vpd; /* 0x160 */
struct spira_ntuple ms_vpd; /* 0x180 */
struct spira_ntuple cec_iohub_fru; /* 0x1a0 */
struct spira_ntuple pcia; /* 0x1c0 */
struct spira_ntuple proc_chip; /* 0x1e0 */
struct spira_ntuple hs_data; /* 0x200 */
struct spira_ntuple hbrt_data; /* 0x220 */
struct spira_ntuple ipmi_sensor; /* 0x240 */
struct spira_ntuple node_stb_data; /* 0x260 */
};
struct spiras {
struct HDIF_common_hdr hdr;
struct HDIF_idata_ptr ntuples_ptr;
__be64 pad;
struct spiras_ntuples ntuples;
u8 reserved[0x180];
} __packed __align(0x100);
extern struct spiras *spiras;
/* This macro can be used to check the validity of a pointer returned
* by one of the HDIF API functions. It returns true if the pointer
* appears valid. If it's not valid and not NULL, it will print some
* error in the log as well.
*/
#define CHECK_SPPTR(_ptr) spira_check_ptr(_ptr, __FILE__, __LINE__)
#define get_hdif(ntuple, id) __get_hdif((ntuple), (id), __FILE__, __LINE__)
extern struct HDIF_common_hdr *__get_hdif(struct spira_ntuple *n,
const char id[],
const char *file, int line);
#define for_each_ntuple_idx(_ntuples, _p, _idx, _id) \
for (_p = get_hdif((_ntuples), _id ""), _idx = 0; \
_p && _idx < be16_to_cpu((_ntuples)->act_cnt); \
_p = (void *)_p + be32_to_cpu((_ntuples)->alloc_len), _idx++)
#define for_each_ntuple(_ntuples, _p, _id) \
for (_p = get_hdif((_ntuples), _id ""); \
_p && (void *)_p < ntuple_addr(_ntuples) \
+ (be16_to_cpu((_ntuples)->act_cnt) * \
be32_to_cpu((_ntuples)->alloc_len)); \
_p = (void *)_p + be32_to_cpu((_ntuples)->alloc_len))
#define for_each_paca(p) for_each_ntuple(&spira.ntuples.paca, p, PACA_HDIF_SIG)
#define for_each_pcia(p) for_each_ntuple(&spira.ntuples.pcia, p, SPPCIA_HDIF_SIG)
/* We override these for testing. */
#ifndef ntuple_addr
#define ntuple_addr(_ntuples) ((void *)BE64_TO_CPU((_ntuples)->addr))
#endif
#ifndef spira_check_ptr
extern bool spira_check_ptr(const void *ptr, const char *file,
unsigned int line);
#endif
struct proc_init_data {
struct HDIF_common_hdr hdr;
struct HDIF_idata_ptr regs_ptr;
struct {
__be64 nia;
__be64 msr;
__be64 nia_charm_time;
__be64 msr_charm_time;
} regs;
} __packed __align(0x10);
/*
* The FRU ID structure is used in several tuples, so we
* define it generically here
*/
struct spira_fru_id {
__be16 slca_index;
__be16 rsrc_id; /* formerly VPD port number */
} __packed;
/*
* The FRU operational status structure is used in several
* tuples, so we define it generically here
*/
struct spira_fru_op_status {
uint8_t flags;
#define FRU_OP_STATUS_FLAG_USED 0x02 /* If 0 -> not used (redundant) */
#define FRU_OP_STATUS_FLAG_FUNCTIONAL 0x01 /* If 0 -> non-functional */
uint8_t reserved[3];
} __packed;
/*
* Move VPD related stuff to another file ...
*/
#define VPD_ID(_a, _b) ((_a) << 8 | (_b))
/*
* Service Processor Subsystem Structure
*
* This structure contains several internal data blocks
* describing the service processor(s) in the system
*/
#define SPSS_HDIF_SIG "SPINFO"
/* Idata index 0 : FRU ID Data */
#define SPSS_IDATA_FRU_ID 0
/* Idata index 1 : Keyword VPD for the FSP instance */
#define SPSS_IDATA_KEYWORD_VPD 1
/* Idata index 2 : SP Implementation */
#define SPSS_IDATA_SP_IMPL 2
struct spss_sp_impl {
__be16 hw_version;
__be16 sw_version;
__be16 func_flags;
#define SPSS_SP_IMPL_FLAGS_INSTALLED 0x8000
#define SPSS_SP_IMPL_FLAGS_FUNCTIONAL 0x4000
#define SPSS_SP_IMPL_FLAGS_PRIMARY 0x2000
u8 chip_version;
u8 reserved;
u8 sp_family[64];
} __packed;
/* Idata index 3 is deprecated */
/* Idata index 4 : SP Memory Locator */
#define SPSS_IDATA_SP_MEMLOC 4
/* Idata index 5 : SP I/O path array */
#define SPSS_IDATA_SP_IOPATH 5
/* An HDIF array of IO path */
struct spss_iopath {
__be16 iopath_type;
#define SPSS_IOPATH_TYPE_IOHUB_PHB 0x0001
#define SPSS_IOPATH_TYPE_PSI 0x0002
#define SPSS_IOPATH_TYPE_LPC 0x0003
union {
struct {
__be16 iohub_chip_inst;
__be16 iohub_chip_port;
__be16 phb_id;
} __packed iohub_phb;
struct {
__be16 link_status;
#define SPSS_IO_PATH_PSI_LINK_BAD_FRU 0x0000
#define SPSS_IO_PATH_PSI_LINK_CURRENT 0x0001
#define SPSS_IO_PATH_PSI_LINK_BACKUP 0x0002
u8 ml2_version;
u8 reserved;
__be16 slca_count;
u8 slca_idx[16];
__be32 proc_chip_id;
__be32 reserved2;
__be64 gxhb_base;
} __packed psi;
struct { /* only populated after version 0x30 */
__be16 link_status;
#define LPC_STATUS_STUFFED 0x0000
#define LPC_STATUS_ACTIVE 0x0001
uint8_t ml2_version;
uint8_t reserved[3];
__be32 chip_id;
__be32 io_bar;
__be32 memory_bar;
__be32 firmware_bar;
__be32 internal_bar;
__be32 reserved2;
__be64 uart_base;
__be32 uart_size;
__be32 uart_clk; /* UART baud clock in Hz */
__be32 uart_baud; /* UART baud rate */
uint8_t uart_int_number;
uint8_t uart_int_type;
#define UART_INT_LVL_LOW 0x1
#define UART_INT_RISING 0x2
#define UART_INT_LVL_HIGH 0x3
uint8_t reserved3[2];
__be64 bt_base;
__be32 bt_size;
uint8_t bt_sms_int_num;
uint8_t bt_bmc_response_int_num;
uint8_t reserved4[2];
} __packed lpc;
};
} __packed;
/*
* IPL Parms structure
*
*/
/* Idata index 0: System Parameters */
#define IPLPARAMS_SYSPARAMS 0
struct iplparams_sysparams {
char sys_model[4];
char cpu_feature_code[4];
__be32 effective_pvr;
__be32 system_type;
uint8_t num_lpar_oct[8];
__be32 abc_bus_speed;
__be32 wxyz_bus_speed;
__be32 sys_eco_mode;
#define SYS_ATTR_MULTIPLE_TPM PPC_BIT32(0)
#define SYS_ATTR_RISK_LEVEL PPC_BIT32(3)
__be32 sys_attributes;
__be32 mem_scrubbing;
__be16 cur_spl_value;
uint8_t pump_mode; /* Reserved */
uint8_t use_pore_sleep;
__be32 pore_image_size; /* Reserved */
uint8_t vtpm_enabled;
uint8_t hw_page_table_size; /* >= 0x59 */
__be16 hv_disp_wheel; /* >= 0x58 */
__be32 nest_freq_mhz; /* >= 0x5b */
uint8_t split_core_mode; /* >= 0x5c */
uint8_t reserved[3];
uint8_t sys_vendor[64]; /* >= 0x5f */
#define SEC_CONTAINER_SIG_CHECKING PPC_BIT16(0)
#define SEC_HASHES_EXTENDED_TO_TPM PPC_BIT16(1)
__be16 sys_sec_setting; /* >= 0x60 */
__be16 tpm_config_bit; /* >= 0x60 */
__be16 tpm_drawer; /* >= 0x60 */
__be16 hw_key_hash_size; /* >= 0x60 */
#define SYSPARAMS_HW_KEY_HASH_MAX 64
uint8_t hw_key_hash[SYSPARAMS_HW_KEY_HASH_MAX]; /* >= 0x60 */
uint8_t sys_family_str[64]; /* vendor,name */
uint8_t sys_type_str[64]; /* vendor,type */
} __packed;
/* Idata index 1: IPL parameters */
#define IPLPARAMS_IPLPARAMS 1
struct iplparams_iplparams {
uint8_t reserved;
uint8_t hv_ipl_dest;
uint8_t ipl_side;
#define IPLPARAMS_CEC_FW_IPL_SIDE_TEMP 0x10
#define IPLPARAMS_FSP_FW_IPL_SIDE_TEMP 0x01
uint8_t ipl_speed;
__be16 cec_ipl_attrib;
uint8_t cec_ipl_maj_type;
uint8_t cec_ipl_min_type;
uint8_t os_ipl_mode;
uint8_t keylock_pos;
uint8_t lmb_size;
uint8_t deprecated;
__be32 max_hsl_opticonnect;
__be32 other_attrib;
#define IPLPARAMS_OATTR_RST_PCI_BUSNO 0x08000000
#define IPLPARAMS_OATTR_CLEAR_NVRAM 0x04000000
#define IPLPARAMS_OATRR_LIGHT_PATH 0x00000004
__be16 huge_page_count;
uint8_t huge_page_size;
#define IPLPARAMS_HUGE_PG_SIZE_16G 0
uint8_t num_vlan_switches;
__be32 reserved2;
__be32 enlarge_io; /* >= 0x5a */
uint8_t core_config;
#define IPLPARAMS_CORE_NORMAL 0x00
#define IPLPARAMS_CORE_FUSE 0x01
} __packed;
/* Idata index 4: Platform Dump Descriptor */
#define IPLPARAMS_PLATFORM_DUMP 4
struct iplparams_dump {
__be16 flags;
uint8_t reserved1;
uint8_t policy;
#define HYP_DUMP_POLICY_NORMAL 0x00
__be32 dump_id;
__be64 reserved2;
__be64 act_dump_sz;
__be32 max_hw_dump_sz;
__be32 act_hw_dump_sz;
__be32 max_sp_dump_sz;
__be32 plid;
} __packed;
/* Idata index 8: serial ports */
#define IPLPARMS_IDATA_SERIAL 8
/* An HDIF array of serial descriptions */
struct iplparms_serial {
uint8_t loc_code[LOC_CODE_SIZE];
__be16 rsrc_id;
__be16 flags;
#define PLPARMS_SERIAL_FLAGS_CALLHOME 0x8000
} __packed;
/* Idata index 9: FW features */
#define IPLPARAMS_FEATURES 9
struct iplparams_feature {
char name[64];
__be64 flags;
} __packed;
/*
* Chip TOD structure
*
* This is an array of 32 entries (I assume per possible chip)
*/
/* Idata index 0: Chip ID data (array) */
#define CHIPTOD_IDATA_CHIPID 0
struct chiptod_chipid {
__be32 chip_id;
__be32 flags;
#define CHIPTOD_ID_FLAGS_PRIMARY 0x02
#define CHIPTOD_ID_FLAGS_SECONDARY 0x01
#define CHIPTOD_ID_FLAGS_STATUS_MASK 0x0c
#define CHIPTOD_ID_FLAGS_STATUS_OK 0x04
#define CHIPTOD_ID_FLAGS_STATUS_NOK 0x08
} __packed;
/* Idata index 0: Chip Initialization data */
#define CHIPTOD_IDATA_CHIPINIT 1
struct chiptod_chipinit {
__be32 ctrl_reg_internal;
__be32 tod_ctrl_reg;
} __packed;
/*
* MS VPD - Memory Description Tree
*
* One such structure pointing to the various memory arrays
* along with other infos about the BCRs, Page Mover, XSCOM,...
*/
#define MSVPD_HDIF_SIG "MS VPD"
/* Idata index 0: Mainstore address config */
#define MSVPD_IDATA_MS_ADDR_CONFIG 0
/* Mainstore Address Configuration */
struct msvpd_ms_addr_config {
__be64 max_configured_ms_address;
__be64 max_possible_ms_address;
__be32 deprecated;
__be64 mirrorable_memory_starting_address;
} __packed;
/* Idata index 1: Total configured mainstore */
#define MSVPD_IDATA_TOTAL_CONFIG_MS 1
struct msvpd_total_config_ms {
__be64 total_in_mb;
} __packed;
/* Idata index 2: Page mover and sync structure */
#define MSVPD_IDATA_PMOVER_SYNCHRO 2
struct msvpd_pmover_bsr_synchro {
__be32 flags;
#define MSVPD_PMS_FLAG_HWLOCK_EN 0x80000000
#define MSVPD_PMS_FLAG_PMOVER_EN 0x40000000
#define MSVPD_PMS_FLAG_BSR_EN 0x20000000
#define MSVPD_PMS_FLAG_XSCOMBASE_VALID 0x10000000
/* P7 values for BSR mode */
#define MSVPD_PMS_FLAG_P7BSR_1M_MODE 0x00000000
#define MSVPD_PMS_FLAG_P7BSR_2M_MODE 0x02000000
#define MSVPD_PMS_FLAG_P7BSR_4M_MODE 0x04000000
#define MSVPD_PMS_FLAG_P7BSR_8M_MODE 0x06000000
__be32 hwlocks_per_page;
__be64 hwlock_addr;
__be64 pmover_addr;
__be64 bsr_addr;
__be64 xscom_addr;
} __packed;
/* Idata index 3: Memory Trace Array */
#define MSVPD_IDATA_TRACE_AREAS 3
struct msvpd_trace {
__be64 start, end;
char reserved[16];
};
/* Idata index 4: UE Address Array */
/* Idata index 5: Hostboot reserved memory address range */
#define MSVPD_IDATA_HB_RESERVED_MEM 5
struct msvpd_hb_reserved_mem {
#define MSVPD_HBRMEM_RANGE_TYPE PPC_BITMASK32(0,7)
#define HBRMEM_CONTAINER_VERIFICATION_CODE 0x3
__be32 type_instance;
__be64 start_addr;
__be64 end_addr;
__be32 label_size;
uint8_t label[64];
uint8_t rw_perms;
#define HB_RESERVE_READABLE 0x80
#define HB_RESERVE_WRITEABLE 0x40
uint8_t reserved[7];
} __packed;
/* Child index 0: MS area child structure */
#define MSVPD_CHILD_MS_AREAS 0
/*
* CEC I/O Hub FRU
*
* This is an array of CEC Hub FRU HDIF structures
*
* Each of these has some idata pointers to generic info about the
* hub and a possible child pointer for daughter card.
*
* Actual ports are in the SLCA and need to be cross referenced
*
* Note that slots meant for the addition of GX+ adapters that
* are currently unpopulated but support hotplug will have a
* minimum "placeholder" entry, which will be fully populated
* when the array is rebuild during concurrent maintenance.
* This "placeholder" is called a "reservation".
*
* WARNING: The array rebuild by concurrent maintenance is not
* guaranteed to be in the same order as the IPL array, not is
* the order stable between concurrent maintenance operations.
*
* There's also a child pointer to daughter card structures but
* we aren't going to handle that just yet.
*/
#define CECHUB_FRU_HDIF_SIG "IO HUB"
#define IOKID_FRU_HDIF_SIG "IO KID"
#define IOSLOT_FRU_HDIF_SIG "IOSLOT"
/* Idata index 0: FRU ID data
*
* This is a generic struct spira_fru_id defined above
*/
#define CECHUB_FRU_ID_DATA 0
/* Idata index 1: ASCII Keyword VPD */
#define CECHUB_ASCII_KEYWORD_VPD 1
/* Idata index 2: Hub FRU ID data area */
#define CECHUB_FRU_ID_DATA_AREA 2
struct cechub_hub_fru_id {
__be32 card_type;
#define CECHUB_FRU_TYPE_IOHUB_RSRV 0
#define CECHUB_FRU_TYPE_IOHUB_CARD 1
#define CECHUB_FRU_TYPE_CPU_CARD 2
#define CECHUB_FRU_TYPE_CEC_BKPLANE 3
#define CECHUB_FRU_TYPE_BKPLANE_EXT 4
__be32 unused;
__be16 total_chips;
uint8_t flags;
#define CECHUB_FRU_FLAG_HEADLESS 0x80 /* not connected to CPU */
#define CECHUB_FRU_FLAG_PASSTHROUGH 0x40 /* connected to passhtrough
port of another hub */
uint8_t reserved;
__be16 parent_hub_id; /* chip instance number of the
hub that contains the passthrough
port this one is connected to */
__be16 reserved2;
} __packed;
/* Idata index 3: IO HUB array */
#define CECHUB_FRU_IO_HUBS 3
/* This is an HDIF array of IO Hub structures */
struct cechub_io_hub {
__be64 fmtc_address;
__be32 fmtc_tce_size;
__be16 hub_num; /* unique hub number (I/O Hub ID) */
uint8_t flags;
#define CECHUB_HUB_FLAG_STATE_MASK 0xc0
#define CECHUB_HUB_FLAG_STATE_OK 0x00
#define CECHUB_HUB_FLAG_STATE_FAILURES 0x40
#define CECHUB_HUB_FLAG_STATE_NOT_INST 0x80
#define CECHUB_HUB_FLAG_STATE_UNUSABLE 0xc0
#define CECHUB_HUB_FLAG_MASTER_HUB 0x20 /* HDAT < v9.x only */
#define CECHUB_HUB_FLAG_GARD_MASK_VALID 0x08 /* HDAT < v9.x only */
#define CECHUB_HUB_FLAG_SWITCH_MASK_PDT 0x04 /* HDAT < v9.x only */
#define CECHUB_HUB_FLAG_FAB_BR0_PDT 0x02 /* HDAT < v9.x only */
#define CECHUB_HUB_FLAG_FAB_BR1_PDT 0x01 /* HDAT < v9.x only */
uint8_t nr_ports; /* HDAT < v9.x only */
uint8_t fab_br0_pdt; /* p5ioc2 PCI-X or P8 PHB3's */
#define CECHUB_HUB_FAB_BR0_PDT_PHB0 0x80
#define CECHUB_HUB_FAB_BR0_PDT_PHB1 0x40
#define CECHUB_HUB_FAB_BR0_PDT_PHB2 0x20
#define CECHUB_HUB_FAB_BR0_PDT_PHB3 0x10
#define CECHUB_HUB_FAB_BR0_PDT_PHB4 0x08
#define CECHUB_HUB_FAB_BR0_PDT_PHB5 0x04
uint8_t fab_br1_pdt; /* p5ioc2 & p7ioc PCI-E */
#define CECHUB_HUB_FAB_BR1_PDT_PHB0 0x80
#define CECHUB_HUB_FAB_BR1_PDT_PHB1 0x40
#define CECHUB_HUB_FAB_BR1_PDT_PHB2 0x20
#define CECHUB_HUB_FAB_BR1_PDT_PHB3 0x10
#define CECHUB_HUB_FAB_BR1_PDT_PHB4 0x08 /* p7ioc only */
#define CECHUB_HUB_FAB_BR1_PDT_PHB5 0x04 /* p7ioc only */
__be16 iohub_id; /* the type of hub */
#define CECHUB_HUB_P7IOC 0x60e7 /* from VPL3 */
#define CECHUB_HUB_MURANO 0x20ef /* Murano from spec */
#define CECHUB_HUB_MURANO_SEGU 0x0001 /* Murano+Seguso from spec */
#define CECHUB_HUB_VENICE_WYATT 0x0010 /* Venice+Wyatt from spec */
#define CECHUB_HUB_NIMBUS_SFORAZ 0x0020 /* Nimbus+sforaz from spec */
#define CECHUB_HUB_NIMBUS_MONZA 0x0021 /* Nimbus+monza from spec */
#define CECHUB_HUB_NIMBUS_LAGRANGE 0x0022 /* Nimbus+lagrange from spec */
#define CECHUB_HUB_CUMULUS_DUOMO 0x0031 /* cumulus+duomo from spec */
__be32 ec_level;
__be32 aff_dom2; /* HDAT < v9.x only */
__be32 aff_dom3; /* HDAT < v9.x only */
__be64 reserved;
__be32 proc_chip_id;
union {
/* HDAT < v9.x */
struct {
__be32 gx_index; /* GX bus index on cpu */
__be32 buid_ext; /* BUID Extension */
__be32 xscom_chip_id; /* TORRENT ONLY */
};
/* HDAT >= v9.x */
struct {
__be32 reserved1;
__be32 reserved2;
__be16 reserved3;
__be16 hw_topology;
};
};
__be32 mrid;
__be32 mem_map_vers;
union {
/* HDAT < v9.x */
struct {
__be64 gx_ctrl_bar0;
__be64 gx_ctrl_bar1;
__be64 gx_ctrl_bar2;
__be64 gx_ctrl_bar3;
__be64 gx_ctrl_bar4;
__be32 sw_mask_pdt;
__be16 gard_mask;
__be16 gx_bus_speed; /* Version 0x58 */
};
/* HDAT >= v9.x, HDIF version 0x6A adds phb_lane_eq with four
* words per PHB (4 PHBs).
*
* HDAT >= 10.x, HDIF version 0x7A adds space for another two
* two PHBs (6 total) and the gen4 EQ values.
*/
struct {
/* Gen 3 PHB eq values, 6 PHBs */
__be64 phb_lane_eq[6][4];
/* Gen 4 PHB eq values */
__be64 phb4_lane_eq[6][4];
};
};
} __packed;
/* We support structures as small as 0x68 bytes */
#define CECHUB_IOHUB_MIN_SIZE 0x68
/* Child index 0: IO Daugther Card */
#define CECHUB_CHILD_IO_KIDS 0
/* Child index 1: PCIe Slot Mapping Information */
#define CECHUB_CHILD_IOSLOTS 1
#define IOSLOT_IDATA_SLOTMAP 0
struct slot_map_entry {
__be16 entry_id;
__be16 parent_id;
uint8_t phb_index; /* only valid for ROOT and SWITCH_UP */
uint8_t type;
#define SLOT_TYPE_ROOT_COMPLEX 0x0
#define SLOT_TYPE_SWITCH_UP 0x1
#define SLOT_TYPE_SWITCH_DOWN 0x2
#define SLOT_TYPE_BUILTIN 0x3
uint8_t lane_swapped;
uint8_t reserved;
__be16 lane_mask;
__be16 lane_reverse;
/* what can I do with this? reference something under/vpd/ ? */
__be16 slca_idx;
__be16 mrw_slot_id;
__be32 features;
#define SLOT_FEAT_SLOT 0x1
uint8_t up_port;
uint8_t down_port; /* the switch port this device is attached to */
__be32 vendor_id;
__be32 device_id;
__be32 sub_vendor_id;
__be32 sub_device_id;
char name[8];
} __packed;
#define IOSLOT_IDATA_DETAILS 1
struct slot_map_details {
__be16 entry;
/* Phyp junk, ignore */
uint8_t mgc_load_source;
uint8_t hddw_order;
__be16 mmio_size_32; /* In MB */
__be16 mmio_size_64;
__be16 dma_size_32;
__be16 dma_size_64;
uint8_t power_ctrl_type; /* slot power control source */
#define SLOT_PWR_NONE 0x0
#define SLOT_PWR_I2C 0x1
uint8_t presence_det_type; /* slot presence detect source */
#define SLOT_PRESENCE_NONE 0x0
#define SLOT_PRESENCE_PCI 0x1
#define SLOT_PRESENCE_I2C 0x2
uint8_t perst_ctl_type; /* slot PERST source */
#define SLOT_PERST_NONE 0x0
#define SLOT_PERST_PHB_OR_SW 0x1
#define SLOT_PERST_SW_GPIO 0x2
uint8_t perst_gpio;
__be16 max_power; /* in W? */
__be32 slot_caps;
#define SLOT_CAP_LSI 0x01 /* phyp junk? */
#define SLOT_CAP_CAPI 0x02
#define SLOT_CAP_CCARD 0x04
#define SLOT_CAP_HOTPLUG 0x08
#define SLOT_CAP_SRIOV 0x10 /* phyp junk */
#define SLOT_CAP_ELLOCO 0x20 /* why is this seperate from the nvlink cap? */
#define SLOT_CAP_NVLINK 0x30
__be16 reserved1;
/* I2C Link IDs */
__be32 i2c_power_ctl;
__be32 i2c_pgood;
__be32 i2c_cable_card; /* opencapi presence detect? */
__be32 i2c_mex_fpga;
};
/*
* IO KID is a dauther card structure
*/
#define IOKID_FRU_ID_DATA 0
#define IOKID_KW_VPD 1
/*
* CPU Controls Legacy Structure
*/
struct cpu_ctl_legacy {
__be64 addr;
__be64 size;
} __packed;
/*
* CPU Control Legacy table
*
* Format of this table is defined in FIPS PHYP Attn spec.
*/
struct cpu_ctl_legacy_table {
struct cpu_ctl_legacy spat;
struct cpu_ctl_legacy sp_attn_area1;
struct cpu_ctl_legacy sp_attn_area2;
struct cpu_ctl_legacy hsr_area;
struct cpu_ctl_legacy reserved[12];
} __packed;
/*
* CPU Controls Header Structure
*/
#define CPU_CTL_HDIF_SIG "CPUCTL"
struct cpu_ctl_init_data {
struct HDIF_common_hdr hdr;
struct HDIF_idata_ptr cpu_ctl;
uint8_t reserved[8];
struct cpu_ctl_legacy_table cpu_ctl_lt;
} __packed __align(0x10);
/*
* Slot Location Code Array (aka SLCA)
*
* This is a pile of location codes referenced by various other
* structures such as the IO Hubs for things on the CEC. Not
* everything in there is a physical port. The SLCA is actually
* a tree which represent the topology of the system.
*
* The tree works as follow: A parent has a pointer to the first
* child. A child has a pointer to its parent. Siblings are
* consecutive entries.
*
* Note: If we ever support concurrent maintenance... this is
* completely rebuilt, invalidating all indices, though other
* structures that may reference SLCA by index will be rebuilt
* as well.
*
* Note that a lot of that stuff is based on VPD documentation
* such as the identification keywords. I will list the ones
* I manage to figure out without the doc separately.
*/
#define SLCA_HDIF_SIG "SLCA "
/* Idata index 0 : SLCA root pointer
*
* The SLCA array is an HDIF array of all the entries. The tree
* structure is based on indices inside the entries and order of
* the entries
*/
#define SLCA_IDATA_ARRAY 0
#define SLCA_ROOT_INDEX 0
/* Note: An "index" (or idx) is always an index into the SLCA array
* and "id" is a reference to some other object.
*/
struct slca_entry {
__be16 my_index; /* redundant, useful */
__be16 rsrc_id; /* formerly VPD port number */
uint8_t fru_id[2]; /* ASCII VPD ID */
#define SLCA_ROOT_VPD_ID VPD_ID('V','V')
#define SLCA_SYSTEM_VPD_ID VPD_ID('S','V')
#define SLCA_SAI_INDICATOR_ID VPD_ID('S','A')
__be16 parent_index; /* Parent entry index */
uint8_t flags;
#define SLCA_FLAG_NON_FUNCTIONAL 0x02 /* For redundant entries */
#define SLCA_FLAG_IMBEDDED 0x01 /* not set => pluggable */
uint8_t old_nr_child; /* Legacy: Nr of children */
__be16 child_index; /* First child index */
__be16 child_rsrc_id; /* Resource ID of first child */
uint8_t loc_code_allen; /* Alloc len of loc code */
uint8_t loc_code_len; /* Loc code len */
uint8_t loc_code[LOC_CODE_SIZE]; /* NULL terminated (thus max 79 chr) */
__be16 first_dup_idx; /* First redundant resource index */
uint8_t nr_dups; /* Number of redundant entries */
uint8_t reserved;
__be16 nr_child; /* New version */
uint8_t install_indic; /* Installed indicator */
#define SLCA_INSTALL_NO_HW_PDT 1 /* No HW presence detect */
#define SLCA_INSTALL_INSTALLED 2
#define SLCA_INSTALL_NOT_INSTALLED 3
uint8_t vpd_collected;
#define SLCA_VPD_COLLECTED 2
#define SLCA_VPD_NOT_COLLECTED 3
} __packed;
/*
* System VPD
*/
#define SYSVPD_HDIF_SIG "SYSVPD"
/* Idata index 0 : FRU ID Data */
#define SYSVPD_IDATA_FRU_ID 0
/* Idata index 1 : Keyword VPD */
#define SYSVPD_IDATA_KW_VPD 1
/* Idata index 2 : Operational status */
#define SYSVPD_IDATA_OP_STATUS 2
/*
* FRU keyword VPD structure
*/
#define FRUVPD_HDIF_SIG "FRUVPD"
/* Idata index 0 : FRU ID Data */
#define FRUVPD_IDATA_FRU_ID 0
/* Idata index 1 : Keyword VPD */
#define FRUVPD_IDATA_KW_VPD 1
/* Idata index 2 : Operational status */
#define FRUVPD_IDATA_OP_STATUS 2
/*
* SPPACA structure. The SPIRA contain an array of these, one
* per processor thread
*/
#define PACA_HDIF_SIG "SPPACA"
/* Idata index 0 : FRU ID Data */
#define SPPACA_IDATA_FRU_ID 0
/* Idata index 1 : Keyword VPD */
#define SPPACA_IDATA_KW_VPD 1
/* Idata index 2 : CPU ID data area */
#define SPPACA_IDATA_CPU_ID 2
struct sppaca_cpu_id {
__be32 pir;
__be32 fru_id;
__be32 hardware_proc_id;
#define CPU_ID_VERIFY_MASK 0xC0000000
#define CPU_ID_VERIFY_SHIFT 30
#define CPU_ID_VERIFY_USABLE_NO_FAILURES 0
#define CPU_ID_VERIFY_USABLE_FAILURES 1
#define CPU_ID_VERIFY_NOT_INSTALLED 2
#define CPU_ID_VERIFY_UNUSABLE 3
#define CPU_ID_SECONDARY_THREAD 0x20000000
#define CPU_ID_PACA_RESERVED 0x10000000
#define CPU_ID_NUM_SECONDARY_THREAD_MASK 0x00FF0000
#define CPU_ID_NUM_SECONDARY_THREAD_SHIFT 16
__be32 verify_exists_flags;
__be32 chip_ec_level;
__be32 processor_chip_id;
__be32 logical_processor_id;
/* This is the resource number, too. */
__be32 process_interrupt_line;
__be32 reserved1;
__be32 hardware_module_id;
__be64 ibase;
__be32 deprecated1;
__be32 physical_thread_id;
__be32 deprecated2;
__be32 ccm_node_id;
/* This fields are not always present, check struct size */
#define SPIRA_CPU_ID_MIN_SIZE 0x40
__be32 hw_card_id;
__be32 internal_drawer_node_id;
__be32 drawer_book_octant_blade_id;
__be32 memory_interleaving_scope;
__be32 lco_target;
} __packed;
/* Idata index 3 : Timebase data */
#define SPPACA_IDATA_TIMEBASE 3
struct sppaca_cpu_timebase {
__be32 cycle_time;
__be32 time_base;
__be32 actual_clock_speed;
__be32 memory_bus_frequency;
} __packed;
/* Idata index 4 : Cache size structure */
#define SPPACA_IDATA_CACHE_SIZE 4
struct sppaca_cpu_cache {
__be32 icache_size_kb;
__be32 icache_line_size;
__be32 l1_dcache_size_kb;
__be32 l1_dcache_line_size;
__be32 l2_dcache_size_kb;
__be32 l2_line_size;
__be32 l3_dcache_size_kb;
__be32 l3_line_size;
__be32 dcache_block_size;
__be32 icache_block_size;
__be32 dcache_assoc_sets;
__be32 icache_assoc_sets;
__be32 dtlb_entries;
__be32 dtlb_assoc_sets;
__be32 itlb_entries;
__be32 itlb_assoc_sets;
__be32 reservation_size;
__be32 l2_cache_assoc_sets;
__be32 l35_dcache_size_kb;
__be32 l35_cache_line_size;
} __packed;
/* Idata index 6 : CPU Attributes */
#define SPPACA_IDATA_CPU_ATTR 6
#define sppaca_cpu_attr sppcia_cpu_attr
/*
* SPPCIA structure. The SPIRA contain an array of these, one
* per processor core
*/
#define SPPCIA_HDIF_SIG "SPPCIA"
/* Idata index 0 : Core unique data */
#define SPPCIA_IDATA_CORE_UNIQUE 0
/* NOTE: This is the same layout as "struct sppaca_cpu_id",
* with essentially some fields removed and a reserved
* field added
*/
struct sppcia_core_unique {
__be32 reserved;
__be32 proc_fru_id;
__be32 hw_proc_id;
__be32 verif_exist_flags; /* Same as PACA */
__be32 chip_ec_level;
__be32 proc_chip_id;
__be32 reserved2;
__be32 reserved3;
__be32 reserved4;
__be32 hw_module_id;
__be64 reserved5;
__be32 reserved6;
__be32 reserved7;
__be32 reserved8;
__be32 ccm_node_id;
__be32 hw_card_id;
__be32 internal_drawer_node_id;
__be32 drawer_book_octant_blade_id;
__be32 memory_interleaving_scope;
__be32 lco_target;
__be32 reserved9;
} __packed;
/* Idata index 1 : CPU Time base structure */
#define SPPCIA_IDATA_TIMEBASE 1
#define sppcia_cpu_timebase sppaca_cpu_timebase
/* Idata index 2 : CPU Cache Size Structure */
#define SPPCIA_IDATA_CPU_CACHE 2
#define sppcia_cpu_cache sppaca_cpu_cache
/* Idata index 3 : Thread Array Data
*
* HDIF array of
*/
#define SPPCIA_IDATA_THREAD_ARRAY 3
struct sppcia_cpu_thread {
__be32 proc_int_line;
__be32 phys_thread_id;
__be64 ibase;
__be32 pir;
} __packed;
/* Idata index 4 : CPU Attributes */
#define SPPCIA_IDATA_CPU_ATTR 4
struct sppcia_cpu_attr {
#define CPU_ATTR_UNIFIED_PL1 0x80
#define CPU_ATTR_SPLIT_TLB 0x40
#define CPU_ATTR_TLBIA 0x20
#define CPU_ATTR_PERF_MONITOR 0x10
#define CPU_ATTR_EXTERN_CONT 0x02
__be32 attr;
} __packed;
/*
* Processor Chip Related Data. The SPIRA contain an array of these, one
* per chip
*/
#define SPPCRD_HDIF_SIG "SPPCRD"
/* Idata index 0 : Chip info */
#define SPPCRD_IDATA_CHIP_INFO 0
struct sppcrd_chip_info {
__be32 proc_chip_id;
__be32 verif_exist_flags;
#define CHIP_VERIFY_MASK 0xC0000000
#define CHIP_VERIFY_SHIFT 30
#define CHIP_VERIFY_USABLE_NO_FAILURES 0
#define CHIP_VERIFY_USABLE_FAILURES 1
#define CHIP_VERIFY_NOT_INSTALLED 2
#define CHIP_VERIFY_UNUSABLE 3
#define CHIP_VERIFY_MASTER_PROC PPC_BIT32(4)
__be32 nx_state;
__be32 pore_state;
__be32 xscom_id;
/* Version 0xA */
__be32 reserved;
__be32 dbob_id;
__be32 occ_state;
/* Version 0xC - none of these are used */
__be32 processor_fru_id;
__be32 chip_ec_level;
__be32 hw_module_id;
__be32 hw_card_id;
__be32 internal_drawer_nid;
__be32 ccm_nid;
/* Version 0xD */
__be32 capp0_func_state;
/* Version 0xE */
__be32 capp1_func_state;
/* *possibly* from Version 0x20 - check spec */
__be32 stop_levels;
/* From latest version (possibly 0x21 and later) */
__be32 sw_xstop_fir_scom;
uint8_t sw_xstop_fir_bitpos;
uint8_t reserved_1[3];
} __packed;
/* Idata index 1 : Chip TOD */
#define SPPCRD_IDATA_CHIP_TOD 1
struct sppcrd_chip_tod {
__be32 flags;
/* CHIPTOD_ID_... values */
__be32 ctrl_reg_internal;
__be32 tod_ctrl_reg;
} __packed;
/* Idata index 2 : FRU ID */
#define SPPCRD_IDATA_FRU_ID 2
/* Idata index 3 : ASCII Keyword data */
#define SPPCRD_IDATA_KW_VPD 3
/* Idata index 4 : Module VPD */
#define SPPCRD_IDATA_MODULE_VPD 4
/* Idata index 5 : Chip attached I2C devices */
#define SPPCRD_IDATA_HOST_I2C 5
/* Idata index 5 : Chip attached I2C devices */
#define SPPCRD_IDATA_PNOR 6
/* Idata index 6 : OpenCAPI/NVlink info */
#define SPPCRD_IDATA_SMP_LINK 7
struct sppcrd_smp_link {
__be32 link_id;
__be32 usage;
#define SMP_LINK_USE_NONE 0
#define SMP_LINK_USE_DEVICE 1
#define SMP_LINK_USE_INTERPOSER 2
#define SMP_LINK_USE_DRAWER 3
#define SMP_LINK_USE_D2D 4 /* GPU to GPU */
__be32 brick_id;
__be32 lane_mask;
/* bonded pci slots (mostly a NVLink thing) */
__be16 pci_slot_idx;
__be16 pci_sideband_slot_idx;
__be16 slca_idx; /* SLCA index of the *external* port */
__be16 reserved;
/* nvlink/ocapi detection devices */
__be32 i2c_link_cable;
__be32 i2c_presence;
__be32 i2c_micro;
uint8_t link_speed;
uint8_t occ_flag_bit;
__be16 gpu_slca;
} __packed;
/* Idata index 8 : chip EC Level array */
#define SPPCRD_IDATA_EC_LEVEL 8
struct sppcrd_ecid {
__be32 chip_id;
__be32 ec_level;
__be64 low; /* Processor ECID bit 0-63 */
__be64 high; /* Processor ECID bit 64-127 */
} __packed;
/*
* Host Services Data.
*/
#define HSERV_HDIF_SIG "HOSTSR"
/* Idata index 0 : System attribute data */
#define HSERV_IDATA_SYS_ATTR 0
/* IPMI sensors mapping data */
#define IPMI_SENSORS_HDIF_SIG "FRUSE "
/* Idata index 0 : Sensor mapping data */
#define IPMI_SENSORS_IDATA_SENSORS 0
struct ipmi_sensors_data {
__be32 slca_index;
uint8_t type;
uint8_t id;
__be16 reserved;
} __packed;
struct ipmi_sensors {
__be32 count;
struct ipmi_sensors_data data[];
} __packed;
/* Idata index 1 : LED - sensors ID mapping data */
#define IPMI_SENSORS_IDATA_LED 1
/*
* Node Secure and Trusted Boot Related Data
*/
#define STB_HDIF_SIG "TPMREL"
/*
* Idata index 0 : Secure Boot and TPM Instance Info
*
* There can be multiple entries with each entry corresponding to
* a master processor that has a TPM device
*/
#define TPMREL_IDATA_SECUREBOOT_TPM_INFO 0
struct secureboot_tpm_info {
__be32 chip_id;
__be32 dbob_id;
uint8_t locality1;
uint8_t locality2;
uint8_t locality3;
uint8_t locality4;
#define TPM_PRESENT_AND_FUNCTIONAL 0x01
#define TPM_PRESENT_AND_NOT_FUNCTIONAL 0x02
#define TPM_NOT_PRESENT 0x03
uint8_t tpm_status;
uint8_t reserved[3];
/* zero indicates no tpm log data */
__be32 srtm_log_offset;
__be32 srtm_log_size;
/* zero indicates no tpm log data */
__be32 drtm_log_offset;
__be32 drtm_log_size;
} __packed;
/* Idata index 2: Hash and Verification Function Offsets Array */
#define TPMREL_IDATA_HASH_VERIF_OFFSETS 2
struct hash_and_verification {
#define TPMREL_HV_SHA512 0x00
#define TPMREL_HV_VERIFY 0x01
__be32 type;
__be32 version;
__be32 dbob_id;
__be32 offset;
} __packed;
static inline const char *cpu_state(u32 flags)
{
switch ((flags & CPU_ID_VERIFY_MASK) >> CPU_ID_VERIFY_SHIFT) {
case CPU_ID_VERIFY_USABLE_NO_FAILURES:
return "OK";
case CPU_ID_VERIFY_USABLE_FAILURES:
return "FAILURES";
case CPU_ID_VERIFY_NOT_INSTALLED:
return "NOT-INSTALLED";
case CPU_ID_VERIFY_UNUSABLE:
return "UNUSABLE";
}
return "**UNKNOWN**";
}
#endif /* __SPIRA_H */
|