blob: 9ebda277e32c294f2049df0204277b7a9555db8e (
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
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/usr/initservice/bootconfig/bootconfig.H $ */
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2015 */
/* [+] 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 __INITSERVICE_BOOTCONFIG_H
#define __INITSERVICE_BOOTCONFIG_H
#include <initservice/bootconfigif.H>
#include <errl/errlentry.H>
namespace INITSERVICE
{
namespace BOOTCONFIG
{
extern uint8_t CURRENT_CONFIG_VERSION;
/**
* @brief BootConfig Class
* This is the base class used to configure hostboot via external methods,
* an example is using a set of shared registers between hostboot and the
* BMC. The base class is a no-op, any actual configuration should be done
* in a subclass - see AST2400BootConfig as an example.
*/
class BootConfig
{
public:
BootConfig();
virtual ~BootConfig();
/**
* @brief Read and process the Boot configuration info specific to this
* platform. - base class implementation is a no-op
*/
virtual errlHndl_t readAndProcessBootConfig();
/**
* @brief Read the istep control data from the platform specific location
* NOTE: base class implemetation is a no-op
*
* @param[out] o_istepInfo - ISTEP control structure containing the
* next control action as well as next istep
* information.
*/
virtual errlHndl_t readIstepControl(
BOOTCONFIG::istepControl_t & o_info);
/**
* @brief Write the istep control data
* NOTE: base class implemetation is a no-op
*
* @param[in] i_istepInfo - ISTEP control structure containing the
* next control action
*/
virtual errlHndl_t writeIstepControl(
BOOTCONFIG::istepControl_t i_info );
};
};// end namespace
};
#endif
|