summaryrefslogtreecommitdiffstats
path: root/src/usr/initservice/extinitsvc/extinitsvc.C
blob: 916ea31ede6d6be83d1e55dbe4480a6d60677c77 (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
/**
 * @file    extinitsvc.C
 *
 *  Implements Initialization Service for Host boot in the extended image.
 *  See extinitsvc.H for details
 *
 */

#include <kernel/console.H>
#include <sys/vfs.h>
#include <sys/task.h>
#include <sys/sync.h>
#include <sys/misc.h>
#include <sys/time.h>
#include <usr/cxxtest/TestSuite.H>

#include <trace/interface.H>
#include <errl/errlentry.H>
#include <initservice/taskargs.H>       // task entry routine

#include "extinitsvc.H"
#include "extinitsvctasks.H"



namespace   INITSERVICE
{

extern  trace_desc_t *g_trac_initsvc;

/**
 * @brief   _start() - task entry point for this module
 *
 */
extern "C"
void _start( void *io_pArgs )
{
    TaskArgs::TaskArgs *pTaskArgs  =
            reinterpret_cast<TaskArgs::TaskArgs *>(io_pArgs);

    // initialize the extended modules in Hostboot.
    ExtInitSvc::getTheInstance().init( io_pArgs );

    if  ( pTaskArgs )
    {
        pTaskArgs->waitChildSync();
    }

    task_end();
}



/******************************************************************************/
// ExtInitSvc::getTheInstance return the only instance
/******************************************************************************/
ExtInitSvc& ExtInitSvc::getTheInstance()
{
    return Singleton<ExtInitSvc>::instance();
}

/******************************************************************************/
// ExtInitSvc::ExtInitSvc constructor
/******************************************************************************/
ExtInitSvc::ExtInitSvc()
{

}

/******************************************************************************/
// ExtInitSvc::~ExtInitSvc destructor
/******************************************************************************/
ExtInitSvc::~ExtInitSvc()
{

}


errlHndl_t  ExtInitSvc::startTask( const TaskInfo *i_ptask,
        TaskArgs::TaskArgs    *i_pargs,
        errlHndl_t &io_rerrl ) const
{
    /**
     *  @todo run constructor on task here.
     */

    InitService::startTask( i_ptask, i_pargs, io_rerrl );

    return io_rerrl;
}



void ExtInitSvc::init( void *i_ptr )
{
    errlHndl_t      errl        =   NULL;   // steps will return an error handle if failure
    uint64_t        nextTask =   0;
    const TaskInfo  *ptask      =   NULL;
    TaskArgs::TaskArgs        args;

    TRACFCOMP( g_trac_initsvc,
            "Extended Initialization Service is starting." );

    //  ----------------------------------------------------------------
    //  loop through the task list and start up any tasks necessary
    //  ----------------------------------------------------------------
    for (   nextTask=0;
            nextTask<MAX_EXT_TASKS;
            nextTask++ )
    {
        //  make a local copy of the extended image task
        ptask    =   &(iv_exttaskinfolist[nextTask]);
        if ( ptask->taskflags.task_type ==  END_TASK_LIST )
        {
            TRACDCOMP( g_trac_initsvc,
                    "End of ExtInitSvc task list.\n" );
            break;
        }

        //  dispatch tasks...
        switch ( ptask->taskflags.task_type)
        {
        case    NONE:
            //  task is a place holder, skip
            TRACDBIN( g_trac_initsvc,
                    "task_type=NONE : ",
                    ptask->taskname,
                    strlen(ptask->taskname)    );
            break;
        case    START_TASK:
            TRACDBIN( g_trac_initsvc,
                    "task_type=START_TASK : ",
                    ptask->taskname,
                    strlen(ptask->taskname)    );
            errl    =   startTask( ptask,
                    &args,
                    errl );
            break;
        case    START_FN:
            TRACDCOMP( g_trac_initsvc,
                    "task_type==START_FN : %p",
                    ptask->taskfn );
            // $$TODO
            break;
        case    BARRIER:
            TRACDCOMP( g_trac_initsvc,
                    "task_type==BARRIER" );
            // $$TODO
            break;

        default:
            TRACDCOMP( g_trac_initsvc,
                    "Invalid task_type: %d",
                    ptask->taskflags.task_type );
            errl = new ERRORLOG::ErrlEntry(
                    ERRORLOG::ERRL_SEV_CRITICAL_SYS_TERM,   //  severity
                    START_EXTINITSVC_ERRL_ID,               //  moduleid
                    INVALID_TASK_TYPE,                      //  reason Code
                    0,                                      //  user1 = tidrc
                    0 );
            break;
        }   //  endswitch

        //  report an error
        reportError( errl );


    }   // endfor


    TRACFCOMP( g_trac_initsvc,
            EXIT_MRK "ExtInitSvc finished.");



    //  =====================================================================
    //  -----   Unit Tests  -------------------------------------------------
    //  =====================================================================
    /**
     *  @note run all the unit tests after we finish the rest
     */
    TRACDBIN( g_trac_initsvc,
            ENTER_MRK "Run Unit Tests: ",
            CXXTEST_TASK.taskname,
            strlen(CXXTEST_TASK.taskname)    );

    errl = startTask(   &CXXTEST_TASK,              //  task struct
                        NULL,                       //  no args
                        errl );                     //  pointer to errorlog
    //  report an error
    reportError( errl );

    TRACDCOMP( g_trac_initsvc,
            EXIT_MRK "Unit Tests finished.");

    // Shutdown all CPUs

    // TODO. Current code does not wait for UTs to finish. Add a delay for now
    // This will be fixed soon.
    nanosleep(2, 0);

    uint64_t l_shutdownStatus = SHUTDOWN_STATUS_GOOD;

    if (CxxTest::g_FailedTests)
    {
        l_shutdownStatus = SHUTDOWN_STATUS_UT_FAILED;
    }

    shutdown(l_shutdownStatus);

    // return to _start(), which may end the task or die.
    return;
}


}   // namespace    EXTINITSVC
OpenPOWER on IntegriCloud