summaryrefslogtreecommitdiffstats
path: root/src/include/runtime/interface.h
blob: 152226d540fe6ed211101638b723bba635cb33a7 (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
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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/include/runtime/interface.h $                             */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2013,2019                        */
/* [+] International Business Machines 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.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
#ifndef __RUNTIME__INTERFACE_H
#define __RUNTIME__INTERFACE_H

/** @file interface.h
 *  @brief Interfaces between Hostboot Runtime and Sapphire.
 *
 *  This file has two structures of function pointers: hostInterfaces_t and
 *  runtimeInterfaces_t.  hostInterfaces are provided by Sapphire (or a
 *  similar environment, such as Hostboot IPL's CxxTest execution).
 *  runtimeInterfaces are provided by Hostboot Runtime to Sapphire.
 *
 *  @note This file must be in C rather than C++.
 */

/** Current interface version.
 *  0x9002:  9=P9, 002=Version 2
 */
#define HOSTBOOT_RUNTIME_INTERFACE_VERSION 0x9002

#ifndef __HOSTBOOT_RUNTIME_INTERFACE_VERSION_ONLY

#include <stdint.h>
#include <time.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "generic_hbrt_fsp_message.H"

/** Memory error types defined for memory_error() interface. */
enum MemoryError_t
{
    /** Hardware has reported a solid memory CE that is correctable, but
     *  continues to report errors on subsequent reads. A second CE on that
     *  cache line will result in memory UE. Therefore, it is advised to
     *  migrate off of the address range as soon as possible. */
    MEMORY_ERROR_CE = 0,

    /** Hardware has reported an uncorrectable error in memory (memory UE,
     *  channel failure, etc). The hypervisor should migrate any partitions
     *  off this address range as soon as possible. Note that these kind of
     *  errors will most likely result in persistent partition failures. It
     *  is advised that the hypervisor gives firmware some time after
     *  partition failures to handle the hardware attentions so that the
     *  hypervisor will know all areas of memory that are impacted by the
     *  failure. */
    MEMORY_ERROR_UE = 1,

    /** Firmware has predictively requested service on a part in the memory
     *  subsystem. The partitions may not have been affected, but it is
     *  advised to migrate off of the address range as soon as possible to
     *  avoid potential partition outages. */
    MEMORY_ERROR_PREDICTIVE = 2,
};


/** Common return codes for scom_read, scom_write. */

/* RC for a piberr is equal to 0x1000 plus the pib error value,
   made into a negative */
#define HBRT_RC_PIBERR_MASK            ((int)(0x0u - 0x1007u))  /* 0xFFFF_EFF9 */

#define HBRT_RC_PIBERR_001_BUSY        ((int)(0x0u - 0x1001u))  /* 0xFFFF_EFFF */
#define HBRT_RC_PIBERR_010_OFFLINE     ((int)(0x0u - 0x1002u))  /* 0xFFFF_EFFE */
#define HBRT_RC_PIBERR_011_PGOOD       ((int)(0x0u - 0x1003u))  /* 0xFFFF_EFFD */
#define HBRT_RC_PIBERR_100_INVALIDADDR ((int)(0x0u - 0x1004u))  /* 0xFFFF_EFFC */
#define HBRT_RC_PIBERR_101_CLOCKERR    ((int)(0x0u - 0x1005u))  /* 0xFFFF_EFFB */
#define HBRT_RC_PIBERR_110_PARITYERR   ((int)(0x0u - 0x1006u))  /* 0xFFFF_EFFA */
#define HBRT_RC_PIBERR_111_TIMEOUT     ((int)(0x0u - 0x1007u))  /* 0xFFFF_EFF9 */

/* Memory channel failure caused an error out to buffer chip. */
#define HBRT_RC_CHANNEL_FAILURE        ((int)(0x0u - 0x1008u))  /* 0xFFFF_EFF8 */

/* Any host-specific RCs will be this value or bigger */
#define HBRT_RC_NEXT_OPEN_RC           ((int)(0x0u - 0x1009u))  /* 0xFFFF_EFF7 */

/** End return codes for scom_read, scom_write. */


/**
 * I2C Master Description: chip, engine and port packed into
 * a single 64-bit argument
 *
 * ---------------------------------------------------
 * |         chip         |  reserved  |  eng | port |
 * |         (32)         |    (16)    |  (8) | (8)  |
 * ---------------------------------------------------
 */
#define HBRT_I2C_MASTER_CHIP_SHIFT        32
#define HBRT_I2C_MASTER_CHIP_MASK         (0xfffffffful << 32)
#define HBRT_I2C_MASTER_ENGINE_SHIFT      8
#define HBRT_I2C_MASTER_ENGINE_MASK       (0xfful << 8)
#define HBRT_I2C_MASTER_PORT_SHIFT        0
#define HBRT_I2C_MASTER_PORT_MASK         (0xfful)


/**
 *  Load types for the load_pm_complex() interface
 *      HBRT_PM_LOAD: initial load of all lids/sections from scratch,
 *                    preserve nothing
 *      HBRT_PM_RELOAD: concurrent reload of all lids/sections,
 *                      but preserve runtime updates
 */
#define HBRT_PM_LOAD    0
#define HBRT_PM_RELOAD  1

/**
 *  Wakeup mode for the wakeup() interface
 *      HBRT_WKUP_FORCE_AWAKE: force a core awake
 *      HBRT_WKUP_CLEAR_FORCE: clear a previous force
 *      HBRT_WKUP_CLEAR_FORCE_COMPLETELY: clear all previous forces, regardless
 *                                        of internal counts
 */
#define HBRT_WKUP_FORCE_AWAKE  0
#define HBRT_WKUP_CLEAR_FORCE  1
#define HBRT_WKUP_CLEAR_FORCE_COMPLETELY  2

/**
 *  Chip ID types included in the chip_id / proc_id / core_id
 *      passed to the host in several interfaces
 */
#define HBRT_PROC_TYPE          0x00000000 //!< PROC chip id type
#define HBRT_MEMBUF_TYPE        0x80000000 //!< MEMBUF chip id type
#define HBRT_CORE_TYPE          0x40000000 //!< CORE chip id type
#define HBRT_CHIPID_TYPE_MASK   0xFF000000 //!< TYPE field

/**
 *  Reserved memory labels - used by get_reserved_mem
 */
#define HBRT_RSVD_MEM__CODE               "ibm,hbrt-code-image"
#define HBRT_RSVD_MEM__PRIMARY            "ibm,hb-rsv-mem"
#define HBRT_RSVD_MEM__HOMER              "ibm,homer-image"
#define HBRT_RSVD_MEM__OCC_COMMON         "ibm,occ-common-area"
#define HBRT_RSVD_MEM__SBE_COMM           "ibm,sbe-comm"
#define HBRT_RSVD_MEM__SBE_FFDC           "ibm,sbe-ffdc"
#define HBRT_RSVD_MEM__SECUREBOOT         "ibm,secure-crypt-algo-code"
#define HBRT_RSVD_MEM__DATA               "ibm,hbrt-data"
#define HBRT_RSVD_MEM__ARCH_REG           "ibm,arch-reg-data"
#define HBRT_RSVD_MEM__UNSEC_HOMER        "ibm,unsecure-homer"
#define HBRT_RSVD_MEM__UVBWLIST           "ibm,uvbwlist"

/* Aligned reserved memory size for Opal */
#define HBRT_RSVD_MEM_OPAL_ALIGN  64*KILOBYTE

/**
 * Specifiers for get_interface_capabilities
 */

/* Common Features */
#define HBRT_CAPS_SET0_COMMON  0

/* OPAL fixes */
#define HBRT_CAPS_SET1_OPAL    1
#define HBRT_CAPS_OPAL_HAS_XSCOM_RC     (1ul << 0)
#define HBRT_CAPS_OPAL_HAS_WAKEUP       (1ul << 1)
#define HBRT_CAPS_OPAL_HAS_WAKEUP_CLEAR (1ul << 2)

/* PHYP fixes */
#define HBRT_CAPS_SET2_PHYP    2

/* FSP failed due to a a reset/reload. Only applicable when
 * hostInterfaces::hbrt_fw_msg::io_type is set to
 * HBRT_FW_MSG_HBRT_FSP_REQ
 */
#define HBRT_RC_FSPDEAD       -8193    //0x2001

/* FSP failed due to a a reset/reload */
#define HBRT_FW_REQUEST_RETRIES  1

/* Defined Return Codes for wakeup() */
#define HBRT_RC_WAKEUP_INVALID_ON_CORE_XSTOP      -12289   /* -0x3001 */

/* Define a const, for hostInterfaces::nvdimm_operation_t::procId,
 * that will flag when to apply the NVDIMM operation(s) to all NVDIMMs
 */
const uint64_t HBRT_NVDIMM_OPERATION_APPLY_TO_ALL_NVDIMMS = 0xFFFFFFFFFFFFFFFF;

/** @typedef hostInterfaces_t
 *  @brief Interfaces provided by the underlying environment (ex. Sapphire).
 *
 *  @note Some of these functions are not required (marked optional) and
 *        may be NULL.
 */
typedef struct hostInterfaces
{
    /** Interface version. */
    uint64_t interfaceVersion;

    /**
     *  @brief Put a string to the console
     *         Host must add newline to end of the string
     *  @param[in] i_str string to print
     *  @platform FSP, OpenPOWER
     */
    void (*puts)(const char* i_str);

    /**
     *  @brief Critical failure in runtime executeion
     *  @platform FSP, OpenPOWER
     */
    void (*assert)();

    /**
     *  @brief Hint to environment that the page may be executed
     *         OPTIONAL - may be implemented as a NO-OP
     *  @param[in] i_pageAddr aligned address of page that may be executed
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*set_page_execute)(void* i_pageAddr);

    /**
     *  @brief Allocate a block of memory
     *  @param[in] i_blockSize size of the block to be allocated
     *  @return pointer to beginning of the block or NULL if allocation failed
     *  @platform FSP, OpenPOWER
     */
    void* (*malloc)(size_t i_blockSize);

    /**
     *  @brief Deallocate a block of memory
     *  @param[in] i_blockAddr address pointing to block of memory to deallocate
     *  @platform FSP, OpenPOWER
     */
    void (*free)(void* i_blockAddr);

    /**
     *  @brief Resize a block of memory
     *  @param[in] i_blockAddr address pointing to block of memory to resize
     *  @param[in] i_blockSize new size of the allocated block
     *  @return pointer to beginning of the block or NULL if resize failed
     *  @platform FSP, OpenPOWER
     */
    void* (*realloc)(void* i_blockAddr, size_t blockSize);

    /**
     *  @brief Send an error log to the FSP
     *  @param[in] i_plid     platform log identifier
     *  @param[in] i_errlSize data size in bytes
     *  @param[in] i_errlData pointer to data
     *  @return 0 on success else error code
     *  @platform FSP
     */
    int (*sendErrorLog)(uint32_t i_plid, uint32_t i_errlSize,
                        void* i_errlData);

    /**
     *  @brief Scan communication read
     *  @param[in]  i_chipId   processor chip ID
                               plus ID type, see defines at top
     *  @param[in]  i_scomAddr scom address to read
     *  @param[out] o_scomData pointer to 8-byte data buffer
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*scom_read)(uint64_t i_chipId, uint64_t i_scomAddr,
                     void* o_scomData);

    /**
     *  @brief Scan communication write
     *  @param[in] i_chipId   processor chip ID
                              plus ID type, see defines at top
     *  @param[in] i_scomAddr scom address to write
     *  @param[in] i_scomData pointer to 8-byte data buffer
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*scom_write)(uint64_t i_chipId, uint64_t i_scomAddr,
                      void* i_scomData);

    /**
     *  @brief Load a LID from PNOR, FSP, etc.
     *  @param[in]  i_lidId     LID number
     *  @param[out] o_lidBuffer allocated buffer for LID
     *  @param[out] o_lidSize   size of LID (in bytes)
     *  @return 0 on success, else RC.
     *  @platform FSP
     */
    int (*lid_load)(uint32_t i_lidId, void** o_lidBuffer,
                    size_t* o_lidSize);

    /**
     *  @brief Release memory from previously loaded LID.
     *  @param[in] i_lidBuffer allocated buffer for LID to release
     *  @return 0 on success, else return code
     *  @platform FSP
     */
    int (*lid_unload)(void* i_lidBuffer);

    /**
     *  @brief Get the address of a reserved memory region by its name
     *  @param[in] i_name     memory region name (ex. "ibm,hbrt-vpd-image")
     *  @param[in] i_instance instance number
     *  @return physical address of region or NULL
     *  @platform FSP, OpenPOWER
     **/
    uint64_t (*get_reserved_mem)(const char* i_name, uint32_t i_instance);

    /**
     *  @brief Force a core to be awake, or clear the force
     *  @param[in] i_core  Core to wake
                           plus ID type, see defines at top
     *  @param[in] i_mode  HBRT_WKUP_FORCE_AWAKE
     *                     HBRT_WKUP_CLEAR_FORCE
     *  @return non-zero return code on error
     *  @platform FSP, OpenPOWER
     */
    int (*wakeup)(uint32_t i_core, uint32_t i_mode );

    /**
     *  @brief Delay/sleep for at least the time given
     *  @param[in] i_seconds     seconds to sleep
     *  @param[in] i_nanoSeconds nano seconds to sleep
     *  @platform FSP, OpenPOWER
     */
    void (*nanosleep)(uint64_t i_seconds, uint64_t i_nanoSeconds);

    /**
     * DEPRECATED - remove when PHYP support new pm_complex functions
     * @brief Report an OCC error to the host
     * @param[in] Failing    status that identifies the nature of the fail
     * @param[in] Identifier that specifies the failing part
                             plus ID type, see defines at top
     * @platform FSP
     */
    void (*report_failure)( uint64_t i_status, uint64_t i_partId );

    /**
     *  @brief Reads the clock value from a POSIX clock
     *  @param[in]  i_clkId the clock ID to read
     *  @param[out] o_tp    the timespec struct to store the clock value in
     *  @return 0 or -(errno)
     *  @retval     0       SUCCESS
     *  @retval     -EINVAL invalid clock requested
     *  @retval     -EFAULT NULL ptr given for timespec struct
     *  @platform FSP, OpenPOWER
     */
    int (*clock_gettime)(clockid_t i_clkId, timespec_t* o_tp);

    /**
     *  @brief Read Pnor
     *  @param[in]  i_proc          processor Id
     *                              plus ID type, see defines at top
     *  @param[in]  i_partitionName name of the partition to read
     *  @param[in]  i_offset        offset within the partition
     *  @param[out] o_data          pointer to the data read
     *  @param[in]  i_sizeBytes     size of o_data buffer, maximum number
     *                              of bytes to read
     *  @retval     rc              negative on error, else number of
     *                              bytes actually read
     *  @platform OpenPOWER
     */
    int (*pnor_read) (uint32_t i_proc, const char* i_partitionName,
                      uint64_t i_offset, void* o_data, size_t i_sizeBytes);

    /**
     *  @brief Write Pnor
     *  @param[in] i_proc          processor Id
     *                             plus ID type, see defines at top
     *  @param[in] i_partitionName name of the partition to write
     *  @param[in] i_offset        offset withing the partition
     *  @param[in] i_data          pointer to the data to write
     *  @param[in] i_sizeBytes     size of i_data buffer, maximum number
     *                             of bytes to read
     *  @retval    rc              negative on error, else number of
     *                             bytes actually written
     */
    int (*pnor_write) (uint32_t i_proc, const char* i_partitionName,
                       uint64_t i_offset, void* i_data, size_t i_sizeBytes);

    /**
     *  @brief Read data from an i2c device
     *  @param[in] i_master     chip, engine and port packed into
     *                          a single 64-bit argument
     *                          chip includes ID type, see defines at top
     *     ---------------------------------------------------
     *     |         chip         |  reserved  |  eng | port |
     *     |         (32)         |    (16)    |  (8) | (8)  |
     *     ---------------------------------------------------
     *  @param[in] i_devAddr    I2C address of device
     *  @param[in] i_offsetSize length of offset (in bytes)
     *  @param[in] i_offset     offset within device to read
     *  @param[in] i_length     number of bytes to read
     *  @param[out] o_data      data that was read
     *  @return 0 on success else return code
     *  @platform OpenPOWER
     */
    int (*i2c_read)( uint64_t i_master, uint16_t i_devAddr,
                     uint32_t i_offsetSize, uint32_t i_offset,
                     uint32_t i_length, void* o_data );

    /**
     *  @brief Write data to an i2c device
     *  @param[in] i_master     chip, engine and port packed into
     *                          a single 64-bit argument
     *                          chip includes ID type, see defines at top
     *    ---------------------------------------------------
     *    |         chip         |  reserved  |  eng | port |
     *    |         (32)         |    (16)    |  (8) | (8)  |
     *    ---------------------------------------------------
     *  @param[in] i_devAddr    I2C address of device
     *  @param[in] i_offsetSize length of offset (in bytes)
     *  @param[in] i_offset     offset within device to write
     *  @param[in] i_length     number of bytes to write
     *  @param[in] i_data       data to write
     *  @return 0 on success else return code
     *  @platform OpenPOWER
     */
    int (*i2c_write)( uint64_t i_master, uint16_t i_devAddr,
                      uint32_t i_offsetSize, uint32_t i_offset,
                      uint32_t i_length, void* i_data );

    /**
     *  @brief Perform an IPMI transaction
     *  @param[in] netfn      the IPMI netfn byte
     *  @param[in] cmd        the IPMI cmd byte
     *  @param[in] tx_buf     the IPMI packet to send to the host
     *  @param[in] tx_size    the number of bytes to send
     *  @param[in] rx_buf     a buffer to be populated with the IPMI
     *                        response. First bytes will be the
     *                        IPMI completion code.
     *  @param[inout] rx_size The allocated size of the rx buffer on input
     *                        updated to the size of the response on output.
     *  @retval rc            non-zero on error
     *  @platform OpenPOWER
     */
    int (*ipmi_msg)(uint8_t netfn, uint8_t cmd,
                    void *tx_buf, size_t tx_size,
                    void *rx_buf, size_t *rx_size);

    /**
     * @brief Hardware has reported a memory error. This function requests the
     *        hypervisor to dynamically remove all pages within the address
     *        range given (including endpoints) from the available memory space.
     *
     * It is understood that the hypervisor may not be able to immediately
     * deallocate the memory because it is in use by a partition. Therefore, the
     * hypervisor should cache all requests and deallocate the memory once it
     * has been freed.
     *
     * Firmware does not know page boundaries so the addresses given could be
     * any address within a page. In some cases, the start and end address may
     * be the same address, indicating that only one page needs to be
     * deallocated.
     *
     * @param  i_startAddr The beginning address of the range.
     * @param  i_endAddr   The end address of the range.
     * @param  i_errorType See enum MemoryError_t.
     *
     * @return 0 if the request is successfully received. Any value other than 0
     *         on failure. The hypervisor should cache the request and return
     *         immediately. It should not wait for the request to be applied.
     *         See note above.
     * @platform FSP, OpenPOWER
     */
    int (*memory_error)( uint64_t i_startAddr, uint64_t i_endAddr,
                         enum MemoryError_t i_errorType );

    /**
     * @brief Query the HBRT host for a list of fixes/features
     *
     * There are times when workarounds need to be put into place to handle
     * issues with the hosting layer (e.g. opal-prd) while fixes are not yet
     * released.  This is especially true because of the disconnected release
     * streams for the firmware and the hosting environment.
     *
     * @param  i_set Indicates which set of fixes/features we're checking
     *               see HBRT_CAPS_SET...
     *
     * @return a bitmask containing the relevant flags for the current
     *         implementation, see HBRT_CAPS_FLAGS_...
     */
    uint64_t (*get_interface_capabilities)( uint64_t i_set );

    /**
     *  @brief Map a physical address space into usable memory
     *  @note Repeated calls to map the same memory should not return an error
     *  @param[in]  i_physMem  Physical address
     *  @param[in]  i_bytes    Number of bytes to map in
     *  @return NULL on error, else pointer to usable memory
     *  @platform FSP, OpenPOWER
     */
    void* (*map_phys_mem)(uint64_t i_physMem, size_t i_bytes);

    /**
     *  @brief Unmap a physical address space from usable memory
     *  @param[in]  i_ptr  Previously mapped pointer
     *  @return 0 on success, else RC
     *  @platform FSP, OpenPOWER
     */
    int (*unmap_phys_mem)(void* i_ptr);

    /**
     *  @brief Modify the SCOM restore section of the HCODE image with the
     *         given register data
     *
     *  @note The Hypervisor should perform the following actions:
     *        - insert the data into the HCODE image (p9_stop_api)
     *
     *  @pre HBRT is responsible for enabling special wakeup on the
     *       associated core(s) before calling this interface
     *
     *  @param  i_chipId    processor chip ID
                            plus ID type, always proc (0x0)
     *  @param  i_section   runtime section to update
     *                      (passthru to pore_gen_scom)
     *  @param  i_operation type of operation to perform
     *                      (passthru to pore_gen_scom)
     *  @param  i_scomAddr  fully qualified scom address
     *  @param  i_scomData  data for operation
     *
     *  @return 0 if the request is successfully received.
     *          Any value other than 0 on failure.
     *  @platform FSP, OpenPOWER
     */
    int (*hcode_scom_update)( uint64_t i_chipId,
                              uint32_t i_section,
                              uint32_t i_operation,
                              uint64_t i_scomAddr,
                              uint64_t i_scomData );

    /**
     *  @brief Structure to be sent and received in the
     *         firmware_request call
     *
     *  @note  see README.md file on how to create an HBRT to FW
     *         request message interface
     */

    enum  // hbrt_fw_msg::io_type             the struct associated with io_type
    {
       HBRT_FW_MSG_TYPE_REQ_NOP           =  0,
       HBRT_FW_MSG_TYPE_RESP_NOP          =  1, // struct resp_generic
       HBRT_FW_MSG_TYPE_RESP_GENERIC      =  2, // struct resp_generic
       HBRT_FW_MSG_TYPE_REQ_HCODE_UPDATE  =  3, // struct req_hcode_update
       HBRT_FW_MSG_HBRT_FSP_REQ           =  4, // struct GenericFspMboxMessage_t
       HBRT_FW_MSG_TYPE_ERROR_LOG         =  5, // struct error_log
       HBRT_FW_MSG_HBRT_FSP_RESP          =  6, // struct GenericFspMboxMessage_t
       HBRT_FW_MSG_TYPE_I2C_LOCK          =  7, // struct req_i2c_lock
       HBRT_FW_MSG_TYPE_SBE_STATE         =  8, // struct sbe_state
       HBRT_FW_MSG_TYPE_NVDIMM_PROTECTION =  9, // struct nvdimm_protection_state
       HBRT_FW_MSG_TYPE_NVDIMM_OPERATION  = 10, // struct nvdimm_operation_t
       HBRT_FW_MSG_TYPE_GARD_EVENT        = 11, // struct gard_event_t
    };

    // NVDIMM protection state enum
    enum
    {
        HBRT_FW_NVDIMM_NOT_PROTECTED = 0,
        HBRT_FW_NVDIMM_PROTECTED     = 1
    };

    // NVDIMM valid operations
    // @note Multiple operations can be triggered at the same time using
    //       a single NVDIMM operation call.  Having said that, operation
    //       combinations should be sensical. Nonsensical operations will
    //       error out.
    enum NVDIMM_Op_t: uint16_t
    {
        /// The following operations pertain to arming/disarming
        /// the NVDIMM
        // Disarm the NV logic such that the next save attempt is a NOOP
        HBRT_FW_NVDIMM_DISARM             = 0x0001,
        // Disable encryption on the NVDIMM and clear saved values from FW
        HBRT_FW_NVDIMM_DISABLE_ENCRYPTION = 0x0002,
        // Remove keys
        HBRT_FW_NVDIMM_REMOVE_KEYS        = 0x0004,
        // Enable encryption on the NVDIMM
        HBRT_FW_NVDIMM_ENABLE_ENCRYPTION  = 0x0008,
        // Arm the NV logic
        HBRT_FW_NVDIMM_ARM                = 0x0010,

        /// The following operation pertains to the Health of the NVDIMM
        /// This operation can be performed with the arming/disarming
        /// operation, these operation types are orthogonal to each other
        // Manufacturing energy source(ES) health check request
        HBRT_FW_MNFG_ES_HEALTH_CHECK      = 0x0020,
    };

    // NVDIMM (PHYP -> HBRT) message to request NVDIMM operation(s)
    struct nvdimm_operation_t
    {
        uint64_t    procId;  // Retrieve all NVDIMMs under the processor ID, all
                             // FFs (HBRT_NVDIMM_OPERATION_APPLY_TO_ALL_NVDIMMS)
                             // means operate on all NVDIMMs in the system
        uint32_t    rsvd1;   // reserved
        uint16_t    rsvd2;   // reserved
        NVDIMM_Op_t opType;  // NVDIMM operation(s) to perform,
                             // see @note associated with NVDIMM_Op_t above
    } __attribute__ ((packed));

    // Gard event error type
    // @note This needs to stay in sync with the FSP Mailbox specification for
    //       command : Gard-able Error Detected - cmd 0xCE, s/c 0x63, mod 01
    enum GARD_ERROR_t: uint32_t
    {
        HBRT_GARD_ERROR_UNKNOWN                  = 0x0000,
        HBRT_GARD_ERROR_COMPUTATION_TEST_FAILURE = 0x0001,
        HBRT_GARD_ERROR_SLB                      = 0x0002,
        HBRT_GARD_ERROR_CHIP_TOD_FAILURE         = 0x0003,
        HBRT_GARD_ERROR_TIMEFAC_FAILURE          = 0x0004,
        HBRT_GARD_ERROR_PROC_RECOVERY_THRESHOLD  = 0x0005,
        HBRT_GARD_ERROR_NX                       = 0x0008,
        HBRT_GARD_ERROR_SLW                      = 0x0009,
        HBRT_GARD_ERROR_CAPP_UNIT                = 0x000A,

        // Mark the end of the gard error types.
        // This is not valid, just a marker
        HBRT_GARD_ERROR_LAST,
    };

    // Gard event (PHYP/OPAL -> HBRT)
    struct gard_event_t
    {
        GARD_ERROR_t i_error_type;     // Gard event error type enum
        uint32_t     i_procId;         // Processor ID for
                                       // error types 0x0001 to 0x0005
                                       // Chip ID for
                                       // error types 0x0008 to 0x000A
        uint32_t     i_plid;           // Platform log identifier
        uint16_t     i_sub_unit_mask;  // Currently not being used
        uint16_t     i_recovery_level; // Currently not being used
    } __attribute__ ((packed));

    struct hbrt_fw_msg   // define struct hbrt_fw_msg
    {
       hbrt_fw_msg() { req_hcode_update = { 0 }; };  // ctor

       uint64_t io_type;          // message type from HBRT_FW_MSG_TYPE enum
       union
       {
          // This struct is returned from skiboot with
          // io_type set to HBRT_FW_MSG_TYPE_RESP_GENERIC or
          // with HBRT_FW_MSG_TYPE_RESP_NOP
          struct
          {
             uint64_t o_status;      // return code for a generic response
          } resp_generic;

          // This struct is sent from HBRT with
          // io_type set to HBRT_FW_MSG_TYPE_REQ_HCODE_UPDATE
          struct
          {
             uint64_t i_chipId;     // processor chip ID plus ID type,
                                    // always proc (0x0)
             uint32_t i_section;    // runtime section to update
                                    // (passthru to pore_gen_scom)
             uint32_t i_operation;  // type of operation to perform
                                    // (passthru to pore_gen_scom)
             uint64_t i_scomAddr;   // fully qualified scom address
             uint64_t i_scomData;   // data for operation
          } req_hcode_update;

          // This struct is sent from HBRT with
          // io_type set to HBRT_FW_MSG_TYPE_ERROR_LOG
          // Send an error log to FSP
          struct
          {
             uint32_t i_plid;     // platform log identifier
             uint32_t i_errlSize; // data size in bytes
             uint8_t  i_data;     // the error log data
                                  // uint8_t *myData =
                                  // (uint8_t*)&l_req_fw_msg->error_log.i_data;
          } __attribute__ ((packed)) error_log;


          // This struct is sent from HBRT with
          // io_type set to HBRT_FW_MSG_TYPE_I2C_LOCK
          struct
          {
             uint64_t i_chipId;     // processor chip ID plus ID type,
                                    // always proc (0x0)
             uint8_t i_i2cMaster;   // i2c master
                                    // B=0, C=1, D=2, E=3
             uint8_t i_operation;   // type of operation to perform
                                    // 1 = lock, 2 = unlock
          } __attribute__ ((packed)) req_i2c_lock;

          // This struct is sent from HBRT with
          // io_type set to  HBRT_FW_MSG_TYPE_SBE_STATE
          struct
          {
             uint64_t i_procId; // processor ID of the SBE that is disabled/enabled
             uint64_t i_state;  // state of the SBE; 0 = disabled, 1 = enabled
          } __attribute__ ((packed)) sbe_state;

          // This struct is sent from HBRT with
          // io_type set to HBRT_FW_MSG_TYPE_NVDIMM_PROTECTION
          struct
          {
             uint64_t i_procId; // processor ID of the NVDIMM with/without OCC protection
             uint64_t i_state;  // NVDIMM protection state enum
          } __attribute__ ((packed)) nvdimm_protection_state;

          // This struct is sent from PHYP to HBRT with
          // io_type set to HBRT_FW_MSG_TYPE_NVDIMM_OPERATION
          struct nvdimm_operation_t nvdimm_operation;

          // This struct is sent from PHYP/OPAL to HBRT with
          // io_type set to HBRT_FW_MSG_TYPE_GARD_EVENT
          struct gard_event_t gard_event;

          // This struct is sent from HBRT with
          // io_type set to HBRT_FW_MSG_HBRT_FSP_REQ or
          // HBRT_FW_MSG_HBRT_FSP_RESP
          // This struct sends/receives an MBox message to the FSP
          struct GenericFspMboxMessage_t generic_msg;

       }; // end union
    };  // end struct hbrt_fw_msg

    // Created a static constexpr to return the base size of hbrt_fw_msg
    // Can't do #define - sizeof not allowed to be used in #defines
    static constexpr size_t HBRT_FW_MSG_BASE_SIZE =
                                            sizeof(hbrt_fw_msg::io_type);

    /**
     * @brief Send a request to firmware, and receive a response
     * @details
     *   req_len bytes are sent to runtime firmware, and resp_len
     *   bytes received in response.
     *
     *   Both req and resp are allocated by the caller. If resp_len
     *   is not large enough to contain the full response, an error
     *   is returned.
     *
     * @param[in]  i_reqLen       length of request data
     * @param[in]  i_req          request data
     * @param[inout] o_respLen    in: size of request data buffer
     *                            out: length of request data
     * @param[in]  o_resp         response data
     * @return 0 on success, else RC
     * @platform FSP, OpenPOWER
     */
    int (*firmware_request)( uint64_t i_reqLen,
                             void *i_req,
                             uint64_t* o_respLen,
                             void *o_resp );

    // Reserve some space for future growth.
    // do NOT ever change this number, even if you add functions.
    //
    // The value of 32 was somewhat arbitrarily chosen.
    //
    // If either side modifies the interface.h file we're suppose to be able to
    // tolerate the other side not supporting the function yet.  The function
    // pointer can be NULL.  So if we require a new interface from OPAL, like
    // "read_iic", we need to be able to tolerate that function pointer being
    // NULL and do something sane (and erroring out is not consider sane).
    //
    // The purpose of this is to give us the ability to update Hostboot and
    // OPAL independently.  It is pretty rare that we both have function ready
    // at the same time.  The "reserve" is there so that the structures are
    // allocated with sufficient space and populated with NULL function
    // pointers.  32 is big enough that we should not likely add that many
    // functions from either direction in between any two levels of support.
    void (*reserved[27])(void);

} hostInterfaces_t;


typedef struct runtimeInterfaces
{
    /** Interface version. */
    uint64_t interfaceVersion;

    /**
     *  @brief Execute CxxTests that may be contained in the image.
     *  @param[in] i_stats pointer to CxxTestStats structure for
     *                     results reporting.
     *  @platform FSP, OpenPOWER
     */
    void (*cxxtestExecute)(void* i_stats);

    /**
     *  @brief Get a list of lid numbers for the lids known to HostBoot
     *  @param[out] o_num the number of lids in the list
     *  @return a pointer to the lid list
     *  @platform FSP
     */
    const uint32_t * (*get_lid_list)(size_t * o_num);

    /**
     * Space allocated for deprecated P8 interfaces
     */
    const uint32_t * (*occ_load__deprecated)(size_t * o_num);
    const uint32_t * (*occ_start__deprecated)(size_t * o_num);
    const uint32_t * (*occ_stop__deprecated)(size_t * o_num);

    /**
     *  @brief Notify HTMGT that an OCC has an error to report
     *
     *  @details  When an OCC has encountered an error that it wants to
     *            be reported, this interface will be called to trigger
     *            HTMGT to collect and commit the error.
     *
     *  @param[in] i_chipId ChipID which identifies the OCC reporting an error
     *  @platform FSP, OpenPOWER
     */
    void (*process_occ_error)(uint64_t i_chipId);

    /**
     *  @brief Enable chip attentions
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*enable_attns)(void);

    /**
     *  @brief Disable chip attentions
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*disable_attns)(void);

    /**
     *  @brief handle chip attentions
     *  @param[in] i_proc        processor chip id at attention
     *                           XSCOM chip id based on devtree defn
     *  @param[in] i_ipollStatus processor chip Ipoll status
     *  @param[in] i_ipollMask   processor chip Ipoll mask
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*handle_attns)( uint64_t i_proc,
                         uint64_t i_ipollStatus,
                         uint64_t i_ipollMask );

    /**
     *  @brief Notify HTMGT that an OCC has failed and needs to be reset
     *
     *  @details  When BMC detects an OCC failure that requires a reset,
     *            this interface will be called to trigger the OCC reset.
     *            HTMGT maintains a reset count and if there are additional
     *            resets available, the OCCs get reset/reloaded.
     *            If the recovery attempts have been exhauseted or the OCC
     *            fails to go active, an unrecoverable error will be logged
     *            and the system will remain in safe mode.
     *
     *  @param[in]  i_chipId  ChipID which identifies the failing OCC
     *  @platform OpenPOWER
     */
    void (*process_occ_reset)(uint64_t  i_chipId);

    /**
     *  @brief Change the OCC state
     *
     *  @details  This is a blocking call that will change the OCC state.
     *            The OCCs will only actuate (update processor frequency/
     *            voltages) when in Active state.  The OCC will only be
     *            monitoring/observing when in Observation state.
     *
     *  @note     When the OCCs are initially started, the state will default
     *            to Active.  If the state is changed to Observation, that
     *            state will be retained until the next IPL. (If the OCC would
     *            get reset, it would return to the last requested state)
     *
     *  @param[in]  i_occ_activation  set to 0 to move OCC to Observation state
     *                           or any other value to move OCC to Active state
     *  @returns  0 on success, or return code if the state did not change
     *  @platform OpenPOWER
     */
    int (*enable_occ_actuation)(int i_occ_activation);

    /**
     * @brief Apply a set of attribute overrides
     * @param[in] i_data pointer to binary override data
     * @param[in] i_size length of override data (bytes)
     * @returns  0 on success, or return code if the command failed
     * @platform FSP, OpenPOWER
     */
    int (*apply_attr_override)(uint8_t* i_data,
                               size_t i_size );

    /**
     *  @brief Send a pass-through command to HTMGT
     *
     *  @details This is a blocking call that will send a command
     *           to HTMGT.
     *  @note   If o_rspLength is returned with a non-zero value,
     *          the data at the o_rspData should be dumped to
     *          stdout in a hex dump format.
     *  @note   The maximum response data returned will be 4096 bytes
     *
     *  @param[in]      i_cmdLength  number of bytes in pass-thru command data
     *  @param[in]   *i_cmdData   pointer to pass-thru command data
     *  @param[out]    *o_rspLength  pointer to number of bytes returned
     *                               in o_rspData
     *  @param[out]    *o_rspData   pointer to a 4096 byte buffer that will
     *                               contain the response data from the command
     *  @returns 0 on success, or return code if the command failed
     *  @platform OpenPOWER
     */
    int (*mfg_htmgt_pass_thru)( uint16_t   i_cmdLength,
                                uint8_t *  i_cmdData,
                                uint16_t * o_rspLength,
                                uint8_t *  o_rspData );

    /**
     *  @brief Execute an arbitrary command inside Hostboot Runtime
     *  @param[in]  argc        number of arguments (standard C args)
     *  @param[in]  argv        array of argument values (standard C args)
     *  @param[out] o_outString response message (NULL terminated), memory
     *                          allocated by hbrt, if o_outString is NULL
     *                          then no response will be sent
     *  @return 0 on success, else error code
     *  @platform FSP, OpenPOWER
     */
    int (*run_command)( int argc,
                        const char** argv,
                        char** o_outString );

    /**
     *  @brief Verify integrity of a secure container
     *  @param[in] i_pContainer Pointer to a valid secure container,
     *      Must not be NULL.  Container is assumed to be stripped of any ECC
     *      and must start with a valid secure header (which contains the
     *      container size information)
     *  @param[in] i_pHwKeyHash Pointer to a valid hardware keys' hash.
     *      Must not be NULL.
     *  @param[in] i_hwKeyHashSize Size of the hardware keys' hash.
     *      A value which incorrectly states the size of the hardware keys' hash
     *      will be detected as a verification error or worse, an illegal memory
     *      access.  Must not be 0.
     *  @note If secureboot is compiled out, the function pointer will be set to
     *      NULL.  If caller's secureboot support is compiled in and secureboot
     *      is enabled by policy, then caller should treat a NULL pointer as a
     *      verification failure.
     *  @return Integer error code indicating success or failure
     *  @retval 0 Container verified correctly
     *  @retval !0 API error or otherwise failed to verify container
     *  @platform FSP, OpenPOWER
     */
    int (*verify_container)(
        const void*  i_pContainer,
        const void*  i_pHwKeyHash,
              size_t i_hwKeyHashSize);

    /**
     *  @brief SBE message passing notification
     *
     *  @details
     *      This is a blocking call that is used to notify HBRT there is
     *      a SBE message available.  This should be called when the Host
     *      detects the appropriate PSU interrupt from the SBE.
     *
     *  @param[in] i_procChipId Chip ID of the processor whose SBE is passing
     *                          the message and sent the interrupt
     *
     *  @return 0 on success, or return code if the command failed
     *  @platform FSP, OpenPOWER
     */
    int (*sbe_message_passing)(uint32_t i_procChipId);

    /**
     *  @brief Load OCC/HCODE images into mainstore
     *
     *  @param[in] i_chip            the HW chip id (XSCOM chip ID)
     *  @param[in] i_homer_addr      the physical mainstore address of the
     *                               start of the HOMER image,
     *  @param[in] i_occ_common_addr the physical mainstore address of the
     *                               OCC common area, 8MB, used for
     *                               OCC-OCC communication (1 per node)
     *  @param[in] i_mode            selects initial load vs concurrent reloads
     *                               HBRT_PM_LOAD:
     *                                  load all lids/sections from scratch,
     *                                  preserve nothing
     *                               HBRT_PM_RELOAD:
     *                                  reload all lids/sections,
     *                                  but preserve runtime updates
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*load_pm_complex)( uint64_t i_chip,
                            uint64_t i_homer_addr,
                            uint64_t i_occ_common_addr,
                            uint32_t i_mode );

    /**
     *  @brief Start OCC/HCODE on the specified chip
     *  @param[in] i_chip the HW chip id
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*start_pm_complex)( uint64_t i_chip );

    /**
     *  @brief Reset OCC/HCODE on the specified chip
     *  @param[in] i_chip the HW chip id
     *  @return 0 on success else return code
     *  @platform FSP, OpenPOWER
     */
    int (*reset_pm_complex)( uint64_t i_chip );

    /**
     * @brief Query the IPOLL event mask supported by HBRT
     *
     * @details  This call allows the wrapper application to query
     * the ipoll event mask to set when the HBRT instance is running. Bits
     * that are *set* in this bitmask represent events that will be
     * forwarded to the handle_attn() callback.
     *
     * @return        The IPOLL event bits to enable during HBRT execution
     * @platform FSP, OpenPOWER
     */
    uint64_t (*get_ipoll_events)( void );

    /**
     * @brief Receive an async notification from firmware
     * @param[in] i_len   length of notification data
     * @param[in] i_data  notification data
     * @platform FSP, OpenPOWER
     */
    void (*firmware_notify)( uint64_t len,
                             void *data );

    /**
     *  @brief Prepare for HBRT concurrent code update
     *
     *  @details  This call allows the Host to inform HBRT that a concurrent
     *  code update has been initiated.  HBRT then prepares updated targeting
     *  data for use by the updated HBRT code.
     *
     *  @return        0 on success else return code
     *  @platform FSP
     */
    int (*prepare_hbrt_update)( void );

    // Reserve some space for future growth.
    // Currently are decrementing this number as we add functions.
    //
    // The initial value of 32 was somewhat arbitrarily chosen.
    //
    // If either side modifies the interface.h file we're suppose to be able to
    // tolerate the other side not supporting the function yet.  The function
    // pointer can be NULL.  So if we require a new interface from OPAL, like
    // "read_iic", we need to be able to tolerate that function pointer being
    // NULL and do something sane (and erroring out is not consider sane).
    //
    // The purpose of this is to give us the ability to update Hostboot and
    // OPAL independently.  It is pretty rare that we both have function ready
    // at the same time.  The "reserve" is there so that the structures are
    // allocated with sufficient space and populated with NULL function
    // pointers.  32 is big enough that we should not likely add that many
    // functions from either direction in between any two levels of support.
    void (*reserved[21])(void);

} runtimeInterfaces_t;


// For internal use. These routines are to be called after all other set up
// is complete.
// This approach is taken due to complication with linking to rt_main, the
// order of static global initializers, constructors, and vfs_module_init.

#ifdef __HOSTBOOT_RUNTIME
struct postInitCalls_t
{
    /**
     * @brief Apply ATTR_TMP overrides
     *
     */
    void (*callApplyTempOverrides)();

    /**
     * @brief Calls RtPnor::init() which loads section(s) into memory
     *        so PRD can access when PNOR is not accessible
     */
    void (*callInitPnor)();


    /**
     * @brief Sets up ErrlManager so it is ready for errors
     *
     */
    void (*callInitErrlManager)();

    /**
     * @brief Clear pending SBE messages
     *
     */
    void (*callClearPendingSbeMsgs)();

    /**
     * @brief Clear pending OCC messages
     *
     */
    void (*callClearPendingOccMsgs)();

    /** @brief Calls RsvdTraceBufService::init() which maps
     *      the Reserved Memory section to the circular buffer, which will keep
     *      track of all runtime traces
     */
    void (*callInitRsvdTraceBufService)();

    /** @brief Calls RsvdTraceBufService::commitRsvdMemTraceErrl(), which commits
     *      the ERRL with Rsved Mem Traces from previous boot, if created in
     *      RsvdTraceBufService::init()
     */
    void (*callCommitRsvdTraceBufErrl)();

};

extern hostInterfaces_t* g_hostInterfaces;
runtimeInterfaces_t* getRuntimeInterfaces();
postInitCalls_t* getPostInitCalls();
#endif

#endif //__HOSTBOOT_RUNTIME_INTERFACE_VERSION_ONLY
#endif //__RUNTIME__INTERFACE_H
OpenPOWER on IntegriCloud