summaryrefslogtreecommitdiffstats
path: root/src/usr/util/utillidmgr.C
blob: da9b260520aa0b2a9ab8bb846210b0c436f3c2b0 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/util/utillidmgr.C $                                   */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2013,2018                        */
/* [+] 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                                                     */

#include <util/utillidmgr.H>
#include <util/util_reasoncodes.H>
#include <util/utiltce.H>
#include <vfs/vfs.H>
#include <stdio.h>
#include <assert.h>

#include <errl/errlmanager.H>
#include "utillidmgrdefs.H"
#include "utilbase.H"
#include <initservice/initserviceif.H>
#include <sys/mm.h>
#include <util/align.H>

#include <config.h>
#ifdef CONFIG_SECUREBOOT
#include <pnor/pnorif.H>
#include <secureboot/service.H>
#endif

using namespace ERRORLOG;
mutex_t UtilLidMgr::cv_mutex = MUTEX_INITIALIZER;

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
UtilLidMgr::UtilLidMgr(uint32_t i_lidId)
: iv_needUnlock(false)
,iv_queueRegistered(false)
,iv_HbMsgQ(nullptr)
,iv_pLidImage(nullptr)
,iv_lidImageSize(0)
,iv_lidSize(0)
{
    errlHndl_t l_err = nullptr;
    iv_spBaseServicesEnabled = INITSERVICE::spBaseServicesEnabled();
    l_err = updateLid(i_lidId);
    if (l_err)
    {
        uint64_t l_reasonCode = l_err->reasonCode();
        UTIL_FT(ERR_MRK"UtilLidMgr::UtilLidMgr() Failed to update Lid (0x%X) shutting down rc=0x%08X",
                i_lidId, l_reasonCode);
        errlCommit(l_err,UTIL_COMP_ID);
        INITSERVICE::doShutdown(l_reasonCode);
    }

    // On non-FSP based systems only get LIDs from either PNOR or VFS
    if ( (iv_spBaseServicesEnabled == false) &&
         (iv_isLidInPnor == false) &&
         (iv_isLidInVFS == false)
       )
    {
        UTIL_FT(ERR_MRK"UtilLidMgr::UtilLidMgr() Requested lid 0x%X not in PNOR or VFS which is required on non-FSP based systems",
                i_lidId);

        /*@
         *   @errortype
         *   @moduleid      Util::UTIL_LIDMGR_CSTOR
         *   @reasoncode    Util::UTIL_LIDMGR_INVAL_LID_REQUEST
         *   @userdata1     LID ID
         *   @userdata2     0
         *   @devdesc       Lid not in PNOR or VFS for non-FSP systems
         *   @custdesc      Firmware encountered an internal error.
         */
        l_err = new ErrlEntry(
                        ERRL_SEV_UNRECOVERABLE,
                        Util::UTIL_LIDMGR_CSTOR,
                        Util::UTIL_LIDMGR_INVAL_LID_REQUEST,
                        i_lidId,
                        0,
                        true /*Add HB Software Callout*/);
        l_err->collectTrace(UTIL_COMP_NAME);
        errlCommit(l_err,UTIL_COMP_ID);
        INITSERVICE::doShutdown(Util::UTIL_LIDMGR_INVAL_LID_REQUEST);
    }

}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
UtilLidMgr::~UtilLidMgr()
{
    errlHndl_t l_err = nullptr;

    l_err = cleanup();
    if(l_err)
    {
        //cleanup errors are extermely rare
        errlCommit( l_err, UTIL_COMP_ID );
    }
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::getLidSize(size_t& o_lidSize)
{
    errlHndl_t errl = nullptr;
    o_lidSize = 0;
    bool img_in_pnor = false;
    do{
        //////////////////////////////////////////////////
        //Check if file is in the PNOR Extended image first.
        //////////////////////////////////////////////////
        errl = getLidSizePnor(o_lidSize, img_in_pnor);
        if(errl)
        {
            //unexpected error encountered, /return to caller.
            break;
        }
        else if(img_in_pnor)
        {
            //Found image in PNOR.  Save size and return
            iv_lidSize = o_lidSize;
            break;
        }

        //if we get here, it means we didn't find the LID in PNOR, so
        //ask the FSP for it.

        //Send message to FSP asking for info on the current LID.
        // allocate message buffer
        // buffer will be initialized to zero by msg_allocate()
        if (iv_spBaseServicesEnabled)
        {
            msg_t * l_pMsg = msg_allocate();

            l_pMsg->type = UTILLID::GET_INFO;

            UTILLID_ADD_LID_ID( iv_lidId, l_pMsg->data[0] );
            UTILLID_ADD_HEADER_FLAG( 0 , l_pMsg->data[0] );

            errl = sendMboxMessage( SYNCHRONOUS, l_pMsg );
            if(errl)
            {
                UTIL_FT(ERR_MRK"getLidSize: Error when calling sendMboxMessage(SYNCHRONOUS)");
                break;
            }

            // see if there was an error on the other end
            UTILLID::UTILLID_RC return_code = UTILLID_GET_RC(l_pMsg->data[0]);

            if ( return_code )
            {
                UTIL_FT(ERR_MRK"getLidSize: rc 0x%x received from FSP for Sync to HB request",
                        return_code );

                /*@
                 *   @errortype
                 *   @moduleid      Util::UTIL_LIDMGR_GETLIDSIZE
                 *   @reasoncode    Util::UTIL_LIDMGR_RC_FAIL
                 *   @userdata1     return code from FSP
                 *   @userdata2     LID ID
                 *   @devdesc       The LID transfer code on the FSP side was
                 *                  unable to fulfill the LID GET_INFO request.
                 */
                errl = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                     Util::UTIL_LIDMGR_GETLIDSIZE,
                                     Util::UTIL_LIDMGR_RC_FAIL,
                                     return_code,
                                     iv_lidId);
                errl->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
                                          HWAS::SRCI_PRIORITY_HIGH);
                errl->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE,
                                          HWAS::SRCI_PRIORITY_MED);
                // for a syncronous message we need to free the message
                msg_free( l_pMsg );
                l_pMsg = nullptr;
                break;
            }

            // Get the LID Size
            iv_lidSize = UTILLID_GET_SIZE( l_pMsg->data[0] );

            o_lidSize = iv_lidSize;

            // for a syncronous message we need to free the message
            msg_free( l_pMsg );
            l_pMsg = nullptr;
        }

    }while(0);

    return errl;
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::getLidSizePnor(size_t& o_lidSize, bool& o_imgInPnor)
{
    errlHndl_t errl = nullptr;
    const char * lidAddr = nullptr;

    o_lidSize = 0;
    o_imgInPnor = false;

    do{
        if (iv_isLidInPnor)
        {
            o_lidSize = iv_lidPnorInfo.size;
        }
        else if (iv_isLidInVFS)
        {
            // Load the file
            UTIL_DT(INFO_MRK"getLidSizePnor: Try to load %s.", iv_lidFileName);
            errl = VFS::module_load( iv_lidFileName );
            if ( errl )
            {
                //Lid not in extended image
                delete errl;
                errl = nullptr;
                break;
            }

            errl = VFS::module_address( iv_lidFileName,
                                        lidAddr,
                                        o_lidSize );
            if ( errl )
            {
                UTIL_FT(ERR_MRK"getLidSizePnor: getting address of file : %s",
                        iv_lidFileName );
                break;
            }
        }
        else
        {
            // Lid is not in extended image or other pnor sections
            break;
        }
        o_imgInPnor = true;

    }while(0);

    return errl;
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::getLidPnor(void* i_dest,
                                  size_t i_destSize,
                                  bool& o_imgInPnor)
{
    errlHndl_t errl = nullptr;
    const char * lidAddr = nullptr;
    size_t lidSize = 0;

    o_imgInPnor = false; //assume not found to start.

    do{
        if(iv_isLidInPnor)
        {
            lidSize = iv_lidPnorInfo.size;
            lidAddr = reinterpret_cast<char *>(iv_lidPnorInfo.vaddr);
        }
        else if (iv_isLidInVFS)
        {
            if(!VFS::module_is_loaded(iv_lidFileName))
            {
                // Load the file
                UTIL_DT(INFO_MRK"getLidPnor: Try to load %s.", iv_lidFileName);

                errl = VFS::module_load( iv_lidFileName );
                if ( errl )
                {
                    //Lid not in extended image
                    delete errl;
                    errl = nullptr;
                    break;
                }
            }

            errl = VFS::module_address( iv_lidFileName,
                                        lidAddr,
                                        lidSize );
            if ( errl )
            {
                UTIL_FT(ERR_MRK"getLidPnor: getting address of file : %s",
                        iv_lidFileName );
                break;
            }
        }
        else
        {
            // Lid is not in extended image or other pnor sections
            break;
        }

        o_imgInPnor = true;

        if(lidSize > i_destSize)
        {
            if (iv_isLidInPnor)
            {
                UTIL_FT(ERR_MRK"getLidPnor: lid=%s in PNOR::%s has size=0x%.8X, which does not fit in provided space=0x%.8X",
                        iv_lidFileName, iv_lidPnorInfo.name, lidSize,
                        i_destSize);

                /*@
                 *   @errortype
                 *   @moduleid      Util::UTIL_LIDMGR_GETLIDPNOR
                 *   @reasoncode    Util::UTIL_LIDMGR_INVAL_SIZE_PNOR
                 *   @userdata1[0:31]     LID size found in pnor
                 *   @userdata1[32:63]    Reserved space provided
                 *   @userdata2     LID ID
                 *   @devdesc       Insufficient space provided for LID by calling
                 *                  function.
                 */
                errl = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                     Util::UTIL_LIDMGR_GETLIDPNOR,
                                     Util::UTIL_LIDMGR_INVAL_SIZE_PNOR,
                                     TWO_UINT32_TO_UINT64(lidSize,
                                                          i_destSize),
                                     iv_lidId,
                                     true /*Add HB Software Callout*/);
                break;
            }
            else
            {
                UTIL_FT(ERR_MRK"getLidPnor: lid=%s found in Ext image has size=0x%.8X, which does not fit in provided space=0x%.8X",
                        iv_lidFileName, lidSize, i_destSize);

                /*@
                 *   @errortype
                 *   @moduleid      Util::UTIL_LIDMGR_GETLIDPNOR
                 *   @reasoncode    Util::UTIL_LIDMGR_INVAL_SIZE
                 *   @userdata1[0:31]     LID size found in Ext Img
                 *   @userdata1[32:63]    Reserved space provided
                 *   @userdata2     LID ID
                 *   @devdesc       Insufficient space provided for LID by calling
                 *                 function.
                 */
                errl = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                     Util::UTIL_LIDMGR_GETLIDPNOR,
                                     Util::UTIL_LIDMGR_INVAL_SIZE,
                                     TWO_UINT32_TO_UINT64(lidSize,
                                                          i_destSize),
                                     iv_lidId,
                                     true /*Add HB Software Callout*/);
                break;
            }
        }
        //Copy file to indicated offset.
        memcpy(i_dest, lidAddr, lidSize);

    }while(0);

    return errl;
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::getLid(void* i_dest, size_t i_destSize)
{
    errlHndl_t errl = nullptr;
    uint32_t curLid = 0;
    uint16_t pageNumber = 0;
    size_t dataSize = 0;
    size_t transferred_data = 0;
    uint8_t* dataPtr = nullptr;
    void* copyOffset = nullptr;
    bool img_in_pnor = false;
    bool use_tces = 0;
    bool tces_allocated = false;
    uint32_t tceToken = 0;
    uint32_t dmaAddr = 0;
    void* tceStartAddr = nullptr;
    uint64_t tceSize = 0;

    do{
        //////////////////////////////////////////////////
        //Check if file is in the PNOR Extended image first.
        //////////////////////////////////////////////////
        errl = getLidPnor(i_dest, i_destSize, img_in_pnor);
        if(errl || img_in_pnor)
        {
            //unexpected error encountered, or found size in PNOR
            //either way, return to caller.
            break;
        }

        //Image not in PNOR, request from FSP.
        if(iv_spBaseServicesEnabled)
        {
            use_tces = TCE::utilUseTcesForDmas();

            // If using TCEs, setup TCE Table for FSP to use
            if (use_tces)
            {
                // Assume caller passed in Virtual Address that was already
                // backed to Physical Memory
                UTIL_FT("getLid: requesting TCEs for i_dest=0x%.16llX, i_destSize=0x%X (lidId=0x%X)", i_dest, i_destSize, iv_lidId);

                // Need to Allocate TCEs on Page-Aligned Memory
                size_t i_dest_remainder = reinterpret_cast<uint64_t>(i_dest)
                                          % PAGESIZE;

                if (i_dest_remainder != 0)
                {
                    tceStartAddr = reinterpret_cast<void*>(
                                     ALIGN_PAGE_DOWN(reinterpret_cast<uint64_t>(i_dest)));
                    tceSize = i_destSize + i_dest_remainder;
                    UTIL_DT("getLid: requesting non-page-aligned i_dest (%p): adjusted TCE tceStartAddr = %p, tceSize=0x%X", i_dest, tceStartAddr, tceSize);
                }
                else
                {
                    tceStartAddr = i_dest;
                    tceSize = i_destSize;
                }

                errl = TCE::utilAllocateTces(mm_virt_to_phys(tceStartAddr),
                                             tceSize,
                                             tceToken);
                if(errl)
                {
                    UTIL_FT(ERR_MRK"getLid: Error while allocating TCEs.");
                    break;
                }
                tces_allocated = true;

                // Update dmaAddr that FSP needs to use, if necessary
                dmaAddr = tceToken + i_dest_remainder;
                UTIL_DT("getLid: got back tceToken=0x%.16llX. DMA_Addr=0x%.16llX", tceToken, dmaAddr);
            }

            errl = createMsgQueue();
            if(errl)
            {
                UTIL_FT(ERR_MRK"getLid: Error while creating message queue.");
                break;
            }

            //Send message to FSP requesting the DMA up the LID in chunks
            // allocate message buffer
            // buffer will be initialized to zero by msg_allocate()
            msg_t * l_pMsg = msg_allocate();

            l_pMsg->type = UTILLID::SEND_TO_HB;

            UTILLID_ADD_LID_ID( iv_lidId, l_pMsg->data[0] );
            UTILLID_ADD_HEADER_FLAG( 0 , l_pMsg->data[0] );
            UTILLID_ADD_TCE_TOKEN( dmaAddr ,  l_pMsg->data[1] );

            errl = sendMboxMessage( SYNCHRONOUS, l_pMsg );
            if(errl)
            {
                UTIL_FT(ERR_MRK"getLid: Error when calling sendMboxMessage(SYNCHRONOUS)");
                break;
            }

            // see if there was an error on the other end
            UTILLID::UTILLID_RC return_code = UTILLID_GET_RC( l_pMsg->data[0] );

            if ( return_code )
            {
                UTIL_FT(ERR_MRK"getLid: rc 0x%x received from FSP for Sync to HB request",
                        return_code );

                /*@
                 *   @errortype
                 *   @moduleid      Util::UTIL_LIDMGR_GETLID
                 *   @reasoncode    Util::UTIL_LIDMGR_RC_FAIL
                 *   @userdata1     return code from FSP
                 *   @userdata2     LID ID
                 *   @devdesc       The LID transfer code on the FSP side was
                 *                  unable to fulfill the LID SEND_TO_HB request.
                 */
                errl = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                     Util::UTIL_LIDMGR_GETLID,
                                     Util::UTIL_LIDMGR_RC_FAIL,
                                     return_code,
                                     iv_lidId);
                errl->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
                                          HWAS::SRCI_PRIORITY_HIGH);
                errl->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE,
                                          HWAS::SRCI_PRIORITY_MED);

                // for a syncronous message we need to free the message
                msg_free( l_pMsg );
                l_pMsg = nullptr;
                break;
            }

            // In TCE Mode FSP DMAs the entire LID before returning synchronus
            // message above with the SEND_TO_HB message type
            if (use_tces && (l_pMsg->type == UTILLID::SEND_TO_HB))
            {
                UTIL_DT("getLid: Using TCEs and got back UTILLID::SEND_TO_HB: transfer complete");
                break;
            }

            //Now wait for FSP to send the LID page-by-page.
            do{
                //Wait for a message
                msg_t * l_pMsg = msg_wait(iv_HbMsgQ);

                //process received message
                if(  UTILLID::PAGE_TO_HB == l_pMsg->type )
                {
                    UTIL_DT("getLid: received a page of data");

                    curLid = UTILLID_GET_LID_ID(l_pMsg->data[0]);
                    pageNumber = UTILLID_GET_PAGE_COUNT(l_pMsg->data[0]);
                    dataSize = UTILLID_GET_SIZE(l_pMsg->data[1]);
                    dataPtr = reinterpret_cast<uint8_t *> (l_pMsg->extra_data);

                    if((curLid != iv_lidId) ||
                       (nullptr == dataPtr))
                    {
                        UTIL_FT(ERR_MRK"getLid: rc 0x%x received from FSP for Sync to HB request",
                                return_code );

                        /*@
                         *   @errortype
                         *   @moduleid      Util::UTIL_LIDMGR_GETLID
                         *   @reasoncode    Util::UTIL_LIDMGR_INVAL_DATA
                         *   @userdata1[0:31]     received LID ID
                         *   @userdata1[32:63]    expected LID ID
                         *   @userdata2[0:31]     pointer to extra data
                         *   @devdesc       DMA message contains data for wrong LID.
                         */
                        errl = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                             Util::UTIL_LIDMGR_GETLID,
                                             Util::UTIL_LIDMGR_INVAL_DATA,
                                             TWO_UINT32_TO_UINT64(curLid,
                                                                  iv_lidId),
                                             TWO_UINT32_TO_UINT64(
                                                nullptr != dataPtr?*(dataPtr):0,
                                                                  0)
                                             );

                        errl->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
                                                  HWAS::SRCI_PRIORITY_HIGH);

                        free(l_pMsg->extra_data);
                        l_pMsg->extra_data = nullptr;
                        break;
                    }


                     //confirm that the data fits in the allocated space
                    uint32_t needed_size = ((static_cast<uint32_t>(pageNumber))*
                                            (4*KILOBYTE)) + dataSize;
                    if( needed_size > i_destSize )
                    {
                        UTIL_FT(ERR_MRK"getLid: lid=%s has size=0x%.8X, which does not fit in provided space=0x%.8X",
                            iv_lidFileName, i_destSize, needed_size);

                        /*@
                         *   @errortype
                         *   @moduleid      Util::UTIL_LIDMGR_GETLID
                         *   @reasoncode    Util::UTIL_LIDMGR_INVAL_SIZE
                         *   @userdata1[0:31]     Allocated Size
                         *   @userdata1[32:63]    Size needed for current data page
                         *   @userdata2[32:63]    Lid ID
                         *   @devdesc       Insufficient space provided for LID by
                         *                  calling function.
                         */
                        errl = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                             Util::UTIL_LIDMGR_GETLID,
                                             Util::UTIL_LIDMGR_INVAL_SIZE,
                                             TWO_UINT32_TO_UINT64(i_destSize,
                                                                  needed_size),
                                             iv_lidId,
                                             true /*Add HB Software Callout*/
                                             );

                        free(l_pMsg->extra_data);
                        l_pMsg->extra_data = nullptr;
                        break;

                    }
                    //copy the page into memory
                    copyOffset = (reinterpret_cast<uint8_t *>(i_dest)) + (pageNumber*PAGESIZE);

                    memcpy(copyOffset, dataPtr, dataSize);

                    transferred_data+=dataSize;

                    free(l_pMsg->extra_data);
                    l_pMsg->extra_data = nullptr;


                } //if UTILLID::PAGE_TO_HB
                else
                {
                    UTIL_FT(ERR_MRK"getLid: Invalid Message type (0x%x) received from FSP.",
                            l_pMsg->type );

                    /*@
                     *   @errortype
                     *   @moduleid      Util::UTIL_LIDMGR_GETLID
                     *   @reasoncode    Util::UTIL_LIDMGR_UNSUP_MSG
                     *   @userdata1     LID ID
                     *   @userdata2     Message Type
                     *   @devdesc       Invalid Message type received from FSP
                     *                  when transferring LID pages.
                     */
                    errl = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                         Util::UTIL_LIDMGR_GETLID,
                                         Util::UTIL_LIDMGR_UNSUP_MSG,
                                         iv_lidId,
                                         l_pMsg->type);

                    errl->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
                                              HWAS::SRCI_PRIORITY_HIGH);
                }

            }while(transferred_data < iv_lidSize);
        }
        if(errl)
        {
            break;
        }
    }while(0);

    // If TCEs were allocated previously, deallocate them here
    if (tces_allocated)
    {
        // Use Preverification Location and Size
        auto tce_errl = TCE::utilDeallocateTces(tceToken);

        if(tce_errl)
        {
            UTIL_FT(ERR_MRK"getLid: Error while deallocating TCEs.");

            if (errl)
            {
                // Commit tce_errl here and original error will be passed back
                tce_errl->collectTrace(UTIL_COMP_NAME);
                errlCommit( tce_errl, UTIL_COMP_ID );
            }
            else
            {
                // Set errl to tce_errl
                errl = tce_errl;
                tce_errl = nullptr;
            }
        }
    }

    if (iv_spBaseServicesEnabled)
    {
        unregisterMsgQueue();
    }

    return errl;
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::getStoredLidImage(void*& o_pLidImage,
                                         size_t& o_lidImageSize)
{
    errlHndl_t errl = nullptr;

    if((iv_pLidImage != nullptr) && (iv_lidImageSize != 0))
    {
        o_pLidImage = iv_pLidImage;
        o_lidImageSize = iv_lidImageSize;
    }
    else
    {
        errl = updateLid(iv_lidId);
        if(0 == iv_lidImageSize && errl == nullptr)
        {
            errl = getLidSize(iv_lidImageSize);
        }

        if(errl == nullptr)
        {
            if(iv_pLidImage != nullptr)
            {
                free(iv_pLidImage);
            }

            iv_pLidImage = static_cast<void*>(malloc(iv_lidImageSize));

            errl = getLid(iv_pLidImage, iv_lidImageSize);
        }

        if(errl)
        {
            cleanup();
        }

        o_pLidImage = iv_pLidImage;
        o_lidImageSize = iv_lidImageSize;
    }

    return errl;
}


///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::releaseLidImage(void)
{
    errlHndl_t errl = cleanup();

    return errl;
}


errlHndl_t UtilLidMgr::sendMboxMessage( MBOX_MSG_TYPE type,
                                        msg_t * i_msg )
{
    errlHndl_t errl = nullptr;

    UTIL_DT("type:  0x%04x",   i_msg->type );
    UTIL_DT("data0: 0x%016llx",i_msg->data[0] );
    UTIL_DT("data1: 0x%016llx",i_msg->data[1] );
    UTIL_DT("extra_data: %p",i_msg->extra_data );

    // determine if its an async message or if we should wait
    // for a response
    if( type == ASYNCHRONOUS )
    {
        UTIL_DT("sendMboxMessage() - sending async mbox msg" );
        errl = MBOX::send( MBOX::FSP_LID_MSGQ, i_msg );
    }
    else
    {
        UTIL_DT("sendMboxMessage() - sending sync mbox msg" );
        errl = MBOX::sendrecv( MBOX::FSP_LID_MSGQ, i_msg );

    }

    if( errl )
    {
        UTIL_FT(ERR_MRK"sendMboxMessage() - failed sending mbox msg" );

        // if the send failed and the message is still valid, check
        // and free the extra data if it exists.
        if( i_msg != nullptr && i_msg->extra_data != nullptr )
        {
            free( i_msg->extra_data );
        }
    }

    return errl;
}


///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::createMsgQueue()
{
    errlHndl_t errl = nullptr;

    mutex_lock(&cv_mutex);
    iv_needUnlock = true;

    // create Hostboot message queue
    iv_HbMsgQ = msg_q_create();

    // register Hostboot message queue with mailbox to receive messages
    errl = MBOX::msgq_register(MBOX::HB_LID_MSGQ, iv_HbMsgQ);
    if (errl)
    {
        UTIL_FT(ERR_MRK"createMsgQueue() - Error registering message queue" );

        //call unregister to ensure proper cleanup
        unregisterMsgQueue();
    }
    else
    {
        iv_queueRegistered = true;
    }

    return errl;
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
void UtilLidMgr::unregisterMsgQueue()
{
    if(iv_queueRegistered)
    {
        // unregister the Hosboot message queue from the mailbox service.
        MBOX::msgq_unregister(MBOX::HB_LID_MSGQ);
        iv_queueRegistered = false;
    }

    if(iv_needUnlock)
    {
        mutex_unlock(&cv_mutex);
        iv_needUnlock = false;
    }
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::cleanup()
{
    errlHndl_t l_err = nullptr;

    iv_lidSize = 0;

    //assert if not unregistered to catch bad code..
    assert(!iv_queueRegistered);

    //make sure we always unload the module
    if (VFS::module_is_loaded(iv_lidFileName))
    {
        l_err = VFS::module_unload( iv_lidFileName );
        if ( l_err )
        {
            UTIL_FT(ERR_MRK"getLidSizePnor: Error unloading module : %s",
                    iv_lidFileName );
        }
    }

    //force evict any pages that the PNOR RP might have
    // laying around
    if(iv_isLidInPnor)
    {
        bool skip_remove_pages = false;

#ifdef CONFIG_SECUREBOOT
#ifndef __HOSTBOOT_RUNTIME
        // If in SECUREBOOT the lid could be securely signed in PNOR (like OCC)
        // If so, unload it securely below rather than call mm_remove_pages
        if (iv_lidPnorInfo.secure)
        {
            skip_remove_pages = true;
        }
#endif
#endif

        if (skip_remove_pages == false)
        {
            int rc = mm_remove_pages( RELEASE,
                                      reinterpret_cast<void *>(
                                        iv_lidPnorInfo.vaddr),
                                      iv_lidPnorInfo.size );
            if( rc )
            {
                UTIL_FT( ERR_MRK"rc=%d from mm_remove_pages(%llX,%llX)", iv_lidPnorInfo.vaddr, iv_lidPnorInfo.size );
                /*@
                 *   @errortype
                 *   @moduleid      Util::UTIL_LIDMGR_CLEANUP
                 *   @reasoncode    Util::UTIL_LIDMGR_MM_FAIL
                 *   @userdata1[00:31]  LID ID
                 *   @userdata1[32:63]  rc from mm_remove_pages
                 *   @userdata2     Virtual address being removed
                 *   @devdesc       Error returned from mm_remove_pages
                 *                  when evicting lid from memory.
                 *   @custdesc      Firmware error during boot.
                 */
                l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE,
                                      Util::UTIL_LIDMGR_CLEANUP,
                                      Util::UTIL_LIDMGR_MM_FAIL,
                                      TWO_UINT32_TO_UINT64(iv_lidId,rc),
                                      iv_lidPnorInfo.vaddr,
                                      true /*sw fail*/);
            }
        }

#ifdef CONFIG_SECUREBOOT
        // If in SECUREBOOT the lid could be securely signed in PNOR (like OCC)
        // If so, unload it securely
        bool l_doUnload = (iv_lidPnorInfo.size != 0);

        if (iv_lidPnorInfo.secure && l_doUnload)
        {
            l_err = PNOR::unloadSecureSection(iv_lidPnorInfo.id);

            if (l_err)
            {
                UTIL_FT(ERR_MRK"UtilLidMgr::cleanup: Error from "
                               "unloadSecureSection(0x%X): "
                               "unloading module : %s (id=0x%X)",
                               iv_lidPnorInfo.id, iv_lidFileName, iv_lidId);
            }
            else
            {
                iv_lidPnorInfo.size = 0;
            }
        }
#endif

    }

    if(iv_pLidImage != nullptr)
    {
        free(iv_pLidImage);
        iv_pLidImage = nullptr;
    }

    iv_lidImageSize = 0;

    return l_err;
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::setLidId(uint32_t i_lidId)
{
    errlHndl_t l_err = nullptr;

    do {
    //must call cleanup before updateLid
    l_err = cleanup();
    if (l_err)
    {
        break;
    }

    l_err = updateLid(i_lidId);
    if (l_err)
    {
        break;
    }
    } while(0);

    return l_err;
}

///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
errlHndl_t UtilLidMgr::updateLid(uint32_t i_lidId)
{
    iv_lidId = i_lidId;
    errlHndl_t l_err = nullptr;

    do {

    //if it's in PNOR, it's not technically lid, so use a slightly
    //different extension.
    sprintf(iv_lidFileName, "%x.lidbin", iv_lidId);
    l_err = getLidPnorSectionInfo(iv_lidId, iv_lidPnorInfo, iv_isLidInPnor);
    if (l_err)
    {
        UTIL_FT("UtilLidMgr::updateLid - getLidPnorSectionInfo failed");
        break;
    }
    UTIL_DT(INFO_MRK "UtilLidMgr: LID 0x%.8X in pnor: %d",
              iv_lidId ,iv_isLidInPnor);
    iv_isLidInVFS = VFS::module_exists(iv_lidFileName);
    } while(0);

    return l_err;
}

OpenPOWER on IntegriCloud