summaryrefslogtreecommitdiffstats
path: root/src/usr/hdat/hdatpcia.C
blob: 75b97d583729e1863b2ea977a6e0e4bc7a34a897 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/hdat/hdatpcia.C $                                     */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2015,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 <sys/mm.h>
#include <sys/mmio.h>
#include "hdatpcia.H"
#include <targeting/common/util.H>
#include <util/align.H>

using namespace TARGETING;

namespace HDAT
{
extern trace_desc_t *g_trac_hdat;

/*******************************************************************************
* hdatSetPciaHdrs
*
* @brief Routine initializes HDIF headers for a PCIA array entry
*
* @pre None
*
* @post None
*
* @param[in] i_pcia
*       The iv_spPcia array element to operate on
*
* @return A null error log handle if successful, Currently can't fail.
*
*******************************************************************************/
static errlHndl_t hdatSetPciaHdrs(hdatSpPcia_t *i_pcia)
{
    errlHndl_t l_errlHndl = NULL;

    i_pcia->hdatHdr.hdatStructId       = HDAT_HDIF_STRUCT_ID;
    i_pcia->hdatHdr.hdatInstance       = 0;
    i_pcia->hdatHdr.hdatVersion        = HDAT_PCIA_VERSION;
    i_pcia->hdatHdr.hdatSize           = sizeof(hdatSpPcia_t);
    i_pcia->hdatHdr.hdatHdrSize        = sizeof(hdatHDIF_t);
    i_pcia->hdatHdr.hdatDataPtrOffset  = sizeof(hdatHDIF_t);
    i_pcia->hdatHdr.hdatDataPtrCnt     = HDAT_PCIA_DA_CNT;
    i_pcia->hdatHdr.hdatChildStrCnt    = 0;
    i_pcia->hdatHdr.hdatChildStrOffset = 0;

    memcpy(i_pcia->hdatHdr.hdatStructName, HDAT_PCIA_STRUCT_NAME,
            sizeof(i_pcia->hdatHdr.hdatStructName));
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_COREDATA].hdatOffset =
        offsetof(hdatSpPcia_t, hdatCoreData);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_COREDATA].hdatSize =
        sizeof(hdatPciaCoreUniqueData_t);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_CPU_TIME_BASE].hdatOffset =
        offsetof(hdatSpPcia_t, hdatTime);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_CPU_TIME_BASE].hdatSize =
        sizeof(hdatPciaCpuTimeBase_t);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_CACHE_SIZE].hdatOffset =
        offsetof(hdatSpPcia_t, hdatCache);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_CACHE_SIZE].hdatSize =
        sizeof(hdatPciaCacheSize_t);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_THREADDATA].hdatOffset =
        offsetof(hdatSpPcia_t, hdatThreadData);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_THREADDATA].hdatSize =
        sizeof(hdatPciaThreadUniqueData_t);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_CPU_ATTRIBUTES].hdatOffset =
        offsetof(hdatSpPcia_t, hdatAttr);
    i_pcia->hdatPciaIntData[HDAT_PCIA_DA_CPU_ATTRIBUTES].hdatSize =
        sizeof(hdatPciaCpuAttributes_t);

    return l_errlHndl;
}

/*******************************************************************************
*  PCIA Constructor
*******************************************************************************/
HdatPcia::HdatPcia(errlHndl_t &o_errlHndl, const hdatMsAddr_t &i_msAddr)
: iv_numPciaEntries(0), iv_spPciaEntrySize(0), iv_spPcia(NULL)
{
    // Copy the main store address for the pcia data
    memcpy(&iv_msAddr, &i_msAddr, sizeof(hdatMsAddr_t));

    // We are using the CORE DATA section
    iv_numPciaEntries = HDAT_NUM_P8_PCIA_ENTRIES;
    iv_spPciaEntrySize = sizeof(hdatSpPcia_t);

    // Allocate space for each CORE -- will use max amount to start
    uint64_t l_base_addr = ((uint64_t) i_msAddr.hi << 32) | i_msAddr.lo;

    void *l_virt_addr = mm_block_map (
            reinterpret_cast<void*>(ALIGN_PAGE_DOWN(l_base_addr)),
            (ALIGN_PAGE(iv_numPciaEntries*iv_spPciaEntrySize)+PAGESIZE));

    l_virt_addr = reinterpret_cast<void *>(
                    reinterpret_cast<uint64_t>(l_virt_addr) +
                    (l_base_addr - ALIGN_PAGE_DOWN(l_base_addr)));

    // initializing the space to zero
    memset(l_virt_addr ,0x0, (iv_numPciaEntries*iv_spPciaEntrySize));

    iv_spPcia = reinterpret_cast<hdatSpPcia_t *>(l_virt_addr);

    HDAT_DBG("Constructor iv_spPcia addr 0x%016llX virtual addr 0x%016llX",
                  (uint64_t) this->iv_spPcia, (uint64_t)l_virt_addr);
}

/*******************************************************************************
*  hdatLoadPcia
*******************************************************************************/
errlHndl_t HdatPcia::hdatLoadPcia(uint32_t &o_size, uint32_t &o_count)
{
    errlHndl_t l_errl = NULL;

    do
    {
        // PCIA index
        uint32_t index = 0;

        //Storing offset address for calculating the sizing of each PCIA
        uint64_t l_offset = (uint64_t)&this->iv_spPcia[index];

        // Get Max threads
        ATTR_THREAD_COUNT_type l_coreThreadCount = 0;
        Target* l_pTopLevel = NULL;
        (void)TARGETING::targetService().getTopLevelTarget(l_pTopLevel);
        if(NULL == l_pTopLevel)
        {
            /*@
             * @errortype
             * @moduleid         HDAT::MOD_PCIA_LOAD
             * @reasoncode       HDAT::RC_TOP_LVL_TGT_NOT_FOUND
             * @devdesc          Top level target not found
             * @custdesc         Firmware encountered an internal
             *                   error while retrieving target data
             */
            hdatBldErrLog(l_errl,
                    MOD_PCIA_LOAD,
                    RC_TOP_LVL_TGT_NOT_FOUND,
                    0,0,0,0);

            HDAT_ERR("Error getting top level target");
            break;
        }

        // Get the fused core support info
        bool l_fused_core_support = is_fused_mode();

        l_coreThreadCount = l_pTopLevel->getAttr<ATTR_THREAD_COUNT>();
        uint64_t en_thread_mask =
          l_pTopLevel->getAttr<TARGETING::ATTR_ENABLED_THREADS>();
        //Check the enabled threads to see if user overrode to SMT1 or SMT2
        //Note this only handles specific SMT1/2 -- no other permutations
        size_t l_enabledThreads = l_coreThreadCount;
        if (en_thread_mask == 0x8000000000000000)
        {
            l_enabledThreads = 1;
        }
        else if (en_thread_mask == 0xC000000000000000)
        {
             l_enabledThreads = 2;
        }
        uint32_t l_procStatus;
        HDAT_DBG("Core Thread Count[%d], Enabled[%d]",
                 l_coreThreadCount, l_enabledThreads);

        if ( l_enabledThreads == HDAT_MAX_EIGHT_THREADS_SUPPORTED )
        {
            l_procStatus =
                HDAT_PROC_NOT_INSTALLED | HDAT_PRIM_THREAD | HDAT_EIGHT_THREAD;
        }
        else if ( l_enabledThreads == HDAT_MAX_FOUR_THREADS_SUPPORTED )
        {
            l_procStatus =
                HDAT_PROC_NOT_INSTALLED | HDAT_PRIM_THREAD | HDAT_FOUR_THREAD;
        }
        else if ( l_enabledThreads == HDAT_MAX_TWO_THREADS_SUPPORTED )
        {
            l_procStatus =
                HDAT_PROC_NOT_INSTALLED | HDAT_PRIM_THREAD | HDAT_TWO_THREAD;
        }
        else // Single threaded
        {
            l_procStatus =
                HDAT_PROC_NOT_INSTALLED | HDAT_PRIM_THREAD;
        }

        //for each procs in the system
        TARGETING::PredicateCTM l_procFilter(CLASS_CHIP, TYPE_PROC);
        TARGETING::PredicateHwas l_pred;
        l_pred.present(true);
        TARGETING::PredicatePostfixExpr l_presentProc;
        l_presentProc.push(&l_procFilter).push(&l_pred).And();

        TARGETING::TargetRangeFilter l_filter(
                                    TARGETING::targetService().begin(),
                                    TARGETING::targetService().end(),
                                    &l_presentProc);
        if (l_fused_core_support == false)
        {
            for (;l_filter;++l_filter)
            {
                TARGETING::Target* l_pProcTarget = *l_filter;
                uint32_t Procstatus = 0;

                uint32_t l_procFabricId =
                    l_pProcTarget->getAttr<TARGETING::ATTR_FABRIC_GROUP_ID>();

                uint64_t l_procIntrBase =
                      l_pProcTarget->getAttr<TARGETING::ATTR_INTP_BASE_ADDR>();

                uint32_t l_procPosition =
                    l_pProcTarget->getAttr<TARGETING::ATTR_FABRIC_CHIP_ID>();

                TARGETING::PredicateCTM l_corePredicate(TARGETING::CLASS_UNIT,
                                                    TARGETING::TYPE_CORE);

                //Cores with partial good data are present and reported
                //Cores that are present but not functional, also reported
                TARGETING::PredicateHwas l_predPresent;
                l_predPresent.present(true);

                TARGETING::PredicatePostfixExpr l_PresentCore;
                l_PresentCore.push(&l_corePredicate).push(&l_predPresent).And();

                TARGETING::TargetHandleList l_coreList;

                TARGETING::targetService().getAssociated(l_coreList, l_pProcTarget,
                                                TARGETING::TargetService::CHILD,
                                                TARGETING::TargetService::ALL,
                                                &l_PresentCore);

                for (uint32_t l_idx = 0; l_idx < l_coreList.size(); ++l_idx)
                {
                    HDAT_DBG("Core list size %d PCIA offset 0x%016llX",
                        l_coreList.size(),(uint64_t) &this->iv_spPcia[index]);
                    TARGETING::Target* l_pTarget = l_coreList[l_idx];
                    uint32_t l_coreNum =
                            l_pTarget->getAttr<TARGETING::ATTR_CHIP_UNIT>();

                    for ( uint32_t l_threadIndex=0;
                        l_threadIndex < l_enabledThreads; ++l_threadIndex)
                    {
                        l_errl = hdatSetCoreInfo(index,
                                            l_pTarget,l_pProcTarget);
                        if(l_errl)
                        {
                            HDAT_ERR("Error [0x%08X] in call to set core info",
                                                          l_errl->reasonCode());
                            break;
                        }
                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadData[l_threadIndex].pciaPhysThreadId =
                                                                l_threadIndex;

                        HDAT_DBG("HdatPcia thread idx %d, thread id %d ",
                        l_threadIndex, this->iv_spPcia[index].hdatThreadData.
                        pciaThreadData[l_threadIndex].pciaPhysThreadId);


                        /* Proc ID Reg for split core is NNNNCCC0PPPPPTT
                           Where           NNNN  is node number
                                                 left shift by 11 bits
                                           CCC   is Chip
                                                 left shift by 8 bits
                                           PPPPP is the core number
                                                 left shift by 2 bits
                                           TT    is thread id
                        */
                        // PIR generation for split core mode
                        uint32_t     l_ThreadProcIdReg =  l_procFabricId << 11 |
                                                          l_procPosition << 8  |
                                                          l_coreNum << 2       |
                                                          l_threadIndex;

                        hdatSetPciaHdrs(&this->iv_spPcia[index]);
                        this->iv_spPcia[index].hdatCoreData.pciaProcStatus
                            = l_procStatus;
                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadData[l_threadIndex].pciaProcIdReg =
                        l_ThreadProcIdReg;

                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadData[l_threadIndex].pciaInterruptLine =
                        l_ThreadProcIdReg;

                        Procstatus = isFunctional(l_pTarget) ?
                                           HDAT_PROC_USABLE :
                                           HDAT_PROC_NOT_USABLE;
                        l_procStatus &= ~HDAT_PROC_STAT_MASK;
                        l_procStatus |= Procstatus;

                        this->iv_spPcia[index].hdatCoreData.pciaProcStatus =
                        (static_cast<hdatProcStatus> (l_procStatus)
                        ) & HDAT_EXIST_FLAGS_MASK_FOR_PCIA;

                        //IBASE ADDRESS + NNNN + 000
                        //Where NNNN = Thread Number =
                        //         (Core Number * Number of threads) + Thread Number
                        uint64_t l_ibase = l_procIntrBase +
                              (l_coreNum * 0x1000 * l_coreThreadCount) +
                              l_threadIndex * 0x1000;

                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadData[l_threadIndex].pciaIbaseAddr.hi  =
                               ((l_ibase & 0xFFFFFFFF00000000ull) >> 32);
                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadData[l_threadIndex].pciaIbaseAddr.hi |=
                                HDAT_REAL_ADDRESS_MASK;

                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadData[l_threadIndex].pciaIbaseAddr.lo  =
                                (l_ibase & 0x00000000FFFFFFFFull);

                        if(HDAT_PROC_NOT_INSTALLED == (HDAT_PROC_STAT_BITS &
                            this->iv_spPcia[index].hdatCoreData.pciaProcStatus))
                        {
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_TIME_BASE].hdatOffset = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_TIME_BASE].hdatSize = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CACHE_SIZE].hdatOffset = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CACHE_SIZE].hdatSize = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_ATTRIBUTES].hdatOffset = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_ATTRIBUTES].hdatSize = 0;
                        }
                        // Need to setup header information for Thread Array Data
                        this->iv_spPcia[index].hdatThreadData.pciaThreadOffsetToData
                        = offsetof(hdatPciaThreadUniqueData_t, pciaThreadData);
                        this->iv_spPcia[index].hdatThreadData.pciaThreadNumEntries
                        = l_enabledThreads;
                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadSizeAllocated = sizeof(hdatPciaThreadArray_t);
                        this->iv_spPcia[index].hdatThreadData.pciaThreadSizeActual =
                        sizeof(hdatPciaThreadArray_t);

                    }
                    if(NULL != l_errl)
                    {
                        //Break if there is an error
                        HDAT_ERR("Error [0x%08X] in call to get chip parent failed",
                                                l_errl->reasonCode());
                        break;
                    }
                    index++;
                    if ((HDAT_RESERVE_FOR_CCM == (HDAT_RESERVE_FOR_CCM &
                    this->iv_spPcia[index].hdatCoreData.pciaProcStatus))||
                    (HDAT_PROC_NOT_INSTALLED != (HDAT_PROC_STAT_BITS &
                    this->iv_spPcia[index].hdatCoreData.pciaProcStatus)))
                    {
                        // The PCIA is a fixed size, but wanted it padded to a 128
                        // byte boundary
                        uint32_t l_rem=0, l_pad=0;
                        l_rem=0; l_pad=0;
                        // Pad to 128 bytes
                        l_rem = this->iv_spPcia[index-1].hdatHdr.hdatSize % 128;
                        l_pad = l_rem ? (128 - l_rem ) : 0;
                        uint8_t *l_addr=
                        reinterpret_cast<uint8_t *> (this->iv_spPcia);
                        // padding is allocated for size of PCIA entry. If it was
                        // smaller than 128 bytes, then you may need to bump it up
                        l_addr += l_pad;
                        this->iv_spPcia  =
                            reinterpret_cast<hdatSpPcia_t *>(l_addr);
                    }
                }
                if(NULL != l_errl)
                {
                    //Break if there is an error
                    break;
                }
            }
        }
        else
        {
            index = 0;
            //ATTR_THREAD_COUNT always return 4 ir-respective of fused or
            //non-fused mode. Updating the thread count to 8 only in case
            //of fused core mode
            l_coreThreadCount = l_coreThreadCount * 2;

            for (;l_filter;++l_filter)
            {
                TARGETING::Target* l_pProcTarget = *l_filter;
                uint32_t l_procStatus = HDAT_PROC_USABLE;

                uint32_t l_procFabricId =
                    l_pProcTarget->getAttr<TARGETING::ATTR_FABRIC_GROUP_ID>();

                uint32_t l_procPosition =
                    l_pProcTarget->getAttr<TARGETING::ATTR_FABRIC_CHIP_ID>();

                //Get the the EQ(Quad id) targets
                TARGETING::TargetHandleList l_eqList;
                TARGETING::PredicateCTM
                    l_eqFilter(TARGETING::CLASS_UNIT, TARGETING::TYPE_EQ);

                //Check the presence of EQs
                TARGETING::PredicateHwas l_predEqPresent;
                l_predEqPresent.present(true);

                TARGETING::PredicatePostfixExpr l_presentEq;
                l_presentEq.push(&l_eqFilter).push(&l_predEqPresent).And();

                TARGETING::targetService().getAssociated(
                    l_eqList,
                    l_pProcTarget,
                    TARGETING::TargetService::CHILD,
                    TARGETING::TargetService::ALL,
                    &l_presentEq);

                TARGETING::ATTR_CHIP_UNIT_type l_eqId = 0;
                for(uint32_t l_eqIdx = 0; l_eqIdx < l_eqList.size();
                    ++l_eqIdx)
                {
                    TARGETING::Target* l_pTarget = l_eqList[l_eqIdx];
                    l_eqId = l_pTarget->getAttr<TARGETING::ATTR_CHIP_UNIT>();

                    //Get the the EX targets
                    TARGETING::TargetHandleList l_exList;
                    TARGETING::PredicateCTM
                        l_exFilter(TARGETING::CLASS_UNIT, TARGETING::TYPE_EX);

                    //Check the presence of EXs
                    TARGETING::PredicateHwas l_predExPresent;
                    l_predExPresent.present(true);

                    TARGETING::PredicatePostfixExpr l_presentEx;
                    l_presentEx.push(&l_exFilter).push(&l_predExPresent).And();

                    TARGETING::targetService().getAssociated(
                        l_exList,
                        l_pTarget,
                        TARGETING::TargetService::CHILD,
                        TARGETING::TargetService::ALL,
                        &l_presentEx);

                    HDAT_DBG("thread count :0x%.8X", l_coreThreadCount);
                    TARGETING::ATTR_CHIP_UNIT_type l_exId = 0;
                    for(uint32_t l_exIdx = 0; l_exIdx < l_exList.size();
                        ++l_exIdx)
                    {
                        HDAT_DBG("PCIA offset 0x%016llX",
                            (uint64_t) &this->iv_spPcia[index]);

                        TARGETING::Target* l_pExTarget = l_exList[l_exIdx];
                        l_exId =
                            l_pExTarget->getAttr<TARGETING::ATTR_CHIP_UNIT>();

                        //Resetting the proc status
                        l_procStatus = HDAT_PROC_USABLE;

                        l_errl = hdatSetCoreInfo(index, l_pExTarget,
                                                 l_pProcTarget);
                        if(l_errl)
                        {
                            HDAT_ERR("Error [0x%08X] in call to set core info",
                                                          l_errl->reasonCode());
                            break;
                        }

                        for ( uint32_t l_threadIndex=0;
                            l_threadIndex < l_coreThreadCount; ++l_threadIndex)
                        {
                            this->iv_spPcia[index].hdatThreadData.
                            pciaThreadData[l_threadIndex].pciaPhysThreadId =
                                                                l_threadIndex;

                            HDAT_DBG("HdatPcia thread idx %d, thread id %d ",
                                l_threadIndex,
                                this->iv_spPcia[index].hdatThreadData.
                                pciaThreadData[l_threadIndex].pciaPhysThreadId);

                            /* Proc ID Reg for fused core is NNNNCCC0QQQPTTT
                               Where           NNNN   is node number
                                                      left shift by 11 bits
                                               CCC    is Chip
                                                      left shift by 8 bits
                                               QQQ    is Quad id
                                                      left shift by 4 bits
                                               P      is the core
                                                      left shift by 3 bits
                                                      chiplet pair number
                                               TTT    is thread id
                             */
                            uint32_t l_threadProcIdReg = 0;
                            // PIR generation for fused core mode
                            l_threadProcIdReg =  l_procFabricId << 11 |
                                                 l_procPosition << 8  |
                                                 l_eqId << 4          |
                                                 l_exId << 3          |
                                                 l_threadIndex;

                            this->iv_spPcia[index].hdatThreadData.
                                pciaThreadData[l_threadIndex].pciaProcIdReg =
                                l_threadProcIdReg;
                        }

                        if (l_pExTarget->getAttr<TARGETING::ATTR_HWAS_STATE>
                            ().functional == false)
                        {
                            l_procStatus = HDAT_PROC_NOT_USABLE;
                        }

                        hdatSetPciaHdrs(&this->iv_spPcia[index]);
                            this->iv_spPcia[index].hdatCoreData.pciaProcStatus
                            = l_procStatus;

                        l_procStatus |= HDAT_EIGHT_THREAD;

                        uint32_t l_stat = this->iv_spPcia[index].hdatCoreData.
                            pciaProcStatus & HDAT_PROC_STAT_MASK;
                        this->iv_spPcia[index].hdatCoreData.pciaProcStatus =
                           (static_cast<hdatProcStatus> (l_procStatus)
                           | l_stat ) & HDAT_EXIST_FLAGS_MASK_FOR_PCIA;

                        if(HDAT_PROC_NOT_INSTALLED == (HDAT_PROC_STAT_BITS &
                        this->iv_spPcia[index].hdatCoreData.pciaProcStatus))
                        {
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_TIME_BASE].hdatOffset = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_TIME_BASE].hdatSize = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CACHE_SIZE].hdatOffset = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CACHE_SIZE].hdatSize = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_ATTRIBUTES].hdatOffset = 0;
                            this->iv_spPcia[index].hdatPciaIntData
                                [HDAT_PCIA_DA_CPU_ATTRIBUTES].hdatSize = 0;
                        }
                        // Need to setup header information for
                        // Thread Array Data
                        this->iv_spPcia[index].hdatThreadData.pciaThreadOffsetToData
                        = offsetof(hdatPciaThreadUniqueData_t, pciaThreadData);
                        this->iv_spPcia[index].hdatThreadData.pciaThreadNumEntries
                            = l_coreThreadCount;
                        this->iv_spPcia[index].hdatThreadData.
                        pciaThreadSizeAllocated = sizeof(hdatPciaThreadArray_t);
                        this->iv_spPcia[index].hdatThreadData.pciaThreadSizeActual =
                            sizeof(hdatPciaThreadArray_t);
                        if(NULL != l_errl)
                        {
                            //Break if there is an error
                            HDAT_ERR("Error [0x%08X] in call to get chip parent failed",
                                     l_errl->reasonCode());
                            break;
                        }
                        index++;
                        if ((HDAT_RESERVE_FOR_CCM == (HDAT_RESERVE_FOR_CCM &
                            this->iv_spPcia[index].hdatCoreData.pciaProcStatus))||
                            (HDAT_PROC_NOT_INSTALLED != (HDAT_PROC_STAT_BITS &
                            this->iv_spPcia[index].hdatCoreData.pciaProcStatus)))
                        {
                            // The PCIA is a fixed size, but wanted it padded to a 128
                            // byte boundary
                            uint32_t l_rem=0, l_pad=0;
                            l_rem=0; l_pad=0;
                            // Pad to 128 bytes
                            l_rem = this->iv_spPcia[index-1].hdatHdr.hdatSize % 128;
                            l_pad = l_rem ? (128 - l_rem ) : 0;
                            uint8_t *l_addr=
                            reinterpret_cast<uint8_t *> (this->iv_spPcia);
                            // padding is allocated for size of PCIA entry. If it was
                            // smaller than 128 bytes, then you may need to bump it up
                            l_addr += l_pad;
                            this->iv_spPcia  =
                            reinterpret_cast<hdatSpPcia_t *>(l_addr);
                        }
                    } //End of EX list
                } //End of EQ list
                if(NULL != l_errl)
                {
                    //Break if there is an error
                    break;
                }
            } //End of Proc list
        }
        //End offset - starting offset divided by index
        //for calculating each PCIA size.
        o_size = ((uint64_t)&this->iv_spPcia[index] - l_offset)/index;
        o_count = index;
    }while(0);

    return l_errl;
}

/*******************************************************************************
*  hdatSetCoreInfo
*******************************************************************************/
errlHndl_t HdatPcia::hdatSetCoreInfo(const uint32_t i_index,
                                     const Target* i_pCoreTarget,
                                     const Target* i_pProcTarget)
{
    errlHndl_t l_errl = NULL;
    do
    {
        if(NULL == i_pCoreTarget)
        {
            HDAT_ERR("Input Target Pointer is NULL");
            /*@
             * @errortype
             * @moduleid         HDAT::MOD_PCIA_SET_CORE_INF
             * @reasoncode       HDAT::RC_INVALID_OBJECT
             * @userdata1        Index of proc target
             * @devdesc          Input Target Pointer is NULL
             * @custdesc         Firmware encountered an internal
             *                   error while retrieving target data
             */
            hdatBldErrLog(l_errl,
                    MOD_PCIA_SET_CORE_INF,
                    RC_INVALID_OBJECT,
                    i_index,0,0,0);
            break;
        }

        if((i_pCoreTarget->getAttr<ATTR_TYPE>() != TYPE_CORE) &&
            (i_pCoreTarget->getAttr<ATTR_TYPE>() != TYPE_EX))
        {
            HDAT_ERR("Input Target type is not valid");
            HDAT_ERR("Input Target type is not valid %x",
                   i_pCoreTarget->getAttr<ATTR_TYPE>());
            /*@
             * @errortype
             * @moduleid         HDAT::MOD_PCIA_SET_CORE_INF
             * @reasoncode       HDAT::RC_INVALID_TGT_ATTR
             * @userdata1        Index of proc target
             * @userdata2        Target HUID
             * @devdesc          Invalid input target attribute
             * @custdesc         Firmware encountered an internal error
             *                   while retrieving attribute data
             */
            hdatBldErrLog(l_errl,
                    MOD_PCIA_SET_CORE_INF,
                    RC_INVALID_TGT_ATTR,
                    i_index,get_huid(i_pCoreTarget),0,0);
            break;
        }
        TARGETING::Target *l_pSysTarget = NULL;
        (void) TARGETING::targetService().getTopLevelTarget(l_pSysTarget);

        // asserting
        assert(l_pSysTarget != NULL);

        uint32_t l_procOrdId = i_pProcTarget->getAttr<ATTR_ORDINAL_ID>();

        uint32_t l_coreOrdId = i_pCoreTarget->getAttr<ATTR_ORDINAL_ID>();

        HDAT_DBG("proc ord ID:0x%08X, core ord ID:0x%08X",
                                                 l_procOrdId,l_coreOrdId);

        uint32_t l_HWCardId  =  0;
        l_errl = HDAT::hdatGetHwCardId(i_pProcTarget,l_HWCardId);
        if(NULL != l_errl)
        {
            HDAT_ERR("Error [0x%08X] in call to get card id failed",
                                                    l_errl->reasonCode());

            l_errl->addFFDC(HDAT_COMP_ID,AT,sizeof(AT),
                    HDAT_VERSION1,HDAT_PCIA_FFDC_SUBSEC);
            break;
        }
        HDAT_DBG("hw card ID:0x%08X", l_HWCardId);

        iv_spPcia[i_index].hdatCoreData.pciaHWCardID = l_HWCardId;

        TARGETING::TargetHandleList targetListNode;
        targetListNode.clear();
        getParentAffinityTargets(targetListNode,i_pCoreTarget,
                    TARGETING::CLASS_ENC,TARGETING::TYPE_NODE);
        if(targetListNode.empty())
        {
            /*@
             * @errortype
             * @moduleid         HDAT::MOD_PCIA_SET_CORE_INF
             * @reasoncode       HDAT::RC_EMPTY_TARGET_LIST
             * @devdesc          Target List is Empty
             * @custdesc         Firmware encountered an internal
             *                   error while retrieving target data
             */
            hdatBldErrLog(l_errl,
                MOD_PCIA_SET_CORE_INF,
                RC_EMPTY_TARGET_LIST,
                0,0,0,0);
                break;
        }
        //get the parent node id
        Target* l_pNodeTarget = targetListNode[0];

        uint32_t l_nodeOrdId = l_pNodeTarget->getAttr<ATTR_ORDINAL_ID>();

        uint32_t l_fabNodeId = i_pProcTarget->getAttr<ATTR_FABRIC_GROUP_ID>();

        //Set the Internal Drawer Node ID
        iv_spPcia[i_index].hdatCoreData.pciaDrawerNodeID = l_fabNodeId;

        //get the parent node id and set that
        this->iv_spPcia[i_index].hdatCoreData.pciaDBOBID = l_nodeOrdId;

        //set the LCO target to 0
        this->iv_spPcia[i_index].hdatCoreData.pciaLCOTarget = 0;
        this->iv_spPcia[i_index].hdatCoreData.pciaCCMNodeID = l_nodeOrdId;
        //get the parent node id and set that

        //Ordinal Id of the fru containing this proc
        uint32_t l_fruOrdId = i_pProcTarget->getAttr<TARGETING::ATTR_FRU_ID>();
        this->iv_spPcia[i_index].hdatCoreData.pciaFruId = l_fruOrdId;

        //Module id is same as FRU Ordinal ID
        this->iv_spPcia[i_index].hdatCoreData.pciaModuleId = l_fruOrdId;

        //Ordinal ID of the core
        this->iv_spPcia[i_index].hdatCoreData.pciaHdwProcId = l_coreOrdId;

        uint32_t l_eclevel = 0;
        uint32_t l_chipId = 0;

        //Set the Chip EC level
        l_errl = HDAT::hdatGetIdEc(i_pProcTarget, l_eclevel, l_chipId);
        if(NULL != l_errl)
        {
            HDAT_ERR("Error [0x%08X] in call to get IdEc Failed",
                                                        l_errl->reasonCode());
            l_errl->addFFDC(HDAT_COMP_ID,AT,sizeof(AT),
                    HDAT_VERSION1,HDAT_PCIA_FFDC_SUBSEC);
            break;
        }
        iv_spPcia[i_index].hdatCoreData.pciaChipEcLvl = l_eclevel;

        //Ordinal id of the proc(chip)
        this->iv_spPcia[i_index].hdatCoreData.pciaChipId = l_procOrdId;

        //Set Clock Freq - Cycle Time in MHz
        iv_spPcia[i_index].hdatTime.pciaClockSpeed =
                     l_pSysTarget->getAttr<TARGETING::ATTR_NOMINAL_FREQ_MHZ>();

        //CPU Time Base Structure
        uint32_t l_CycleTime = pow(2,34) /
            iv_spPcia[i_index].hdatTime.pciaClockSpeed;

        //Set Cycle Time
        iv_spPcia[i_index].hdatTime.pciaCycleTime = l_CycleTime;
        //Set Time Base - units of microseconds * 2^32
        iv_spPcia[i_index].hdatTime.pciaTimeBase =
                         i_pProcTarget->getAttr<TARGETING::ATTR_TIME_BASE>();
        // set the memory bus frequency
        iv_spPcia[i_index].hdatTime.pciaMemBusFreq = getMemBusFreq(i_pProcTarget);

        //Set ICache Info
        //Cache Size Structure
        this->iv_spPcia[i_index].hdatCache.pciaICacheSize =
                 i_pProcTarget->getAttr<TARGETING::ATTR_ICACHE_SIZE>();
        this->iv_spPcia[i_index].hdatCache.pciaICacheLineSize =
                 i_pProcTarget->getAttr<TARGETING::ATTR_ICACHE_LINE_SIZE>();
        this->iv_spPcia[i_index].hdatCache.pciaICacheBlkSize =
                 i_pProcTarget->getAttr<TARGETING::ATTR_ICACHE_BLOCK_SIZE>();

        this->iv_spPcia[i_index].hdatCache.pciaICacheAssocSets =
                 i_pProcTarget->getAttr<TARGETING::ATTR_ICACHE_ASSOC_SETS>();

        //Set DCache Info
        this->iv_spPcia[i_index].hdatCache.pciaDCacheBlkSize =
                 i_pProcTarget->getAttr<TARGETING::ATTR_DCACHE_LINE_SIZE>();
        this->iv_spPcia[i_index].hdatCache.pciaDCacheAssocSets =
                 i_pProcTarget->getAttr<TARGETING::ATTR_DCACHE_ASSOC_SETS>();


        //Set L1 Cache Info
        this->iv_spPcia[i_index].hdatCache.pciaL1DCacheSize =
                 i_pProcTarget->getAttr<TARGETING::ATTR_DATA_CACHE_SIZE>();
        this->iv_spPcia[i_index].hdatCache.pciaL1DCacheLineSize =
                 i_pProcTarget->getAttr<TARGETING::ATTR_DATA_CACHE_LINE_SIZE>();

        //Set L2 Cache Info
        this->iv_spPcia[i_index].hdatCache.pciaL2DCacheSize =
                  i_pProcTarget->getAttr<TARGETING::ATTR_L2_CACHE_SIZE>();
        this->iv_spPcia[i_index].hdatCache.pciaL2DCacheLineSize =
                  i_pProcTarget->getAttr<TARGETING::ATTR_L2_CACHE_LINE_SIZE>();

        this->iv_spPcia[i_index].hdatCache.pciaL2AssocSets =
                  i_pProcTarget->getAttr<TARGETING::ATTR_L2_CACHE_ASSOC_SETS>();

        //Set L3 Cache Info
        this->iv_spPcia[i_index].hdatCache.pciaL3DCacheSize =
            i_pProcTarget->getAttr<TARGETING::ATTR_L3_CACHE_SIZE>();
        this->iv_spPcia[i_index].hdatCache.pciaL3DCacheLineSize =
            i_pProcTarget->getAttr<TARGETING::ATTR_L3_CACHE_LINE_SIZE>();

        //ECO not supported initialize to 0
        this->iv_spPcia[i_index].hdatCache.pciaL3Pt5DCacheSize = 0;
        this->iv_spPcia[i_index].hdatCache.pciaL3Pt5DCacheLineSize = 0;

        //Set TLB info
        this->iv_spPcia[i_index].hdatCache.pciaITlbEntries =
                 i_pProcTarget->getAttr<TARGETING::ATTR_TLB_INSTR_ENTRIES>();
        this->iv_spPcia[i_index].hdatCache.pciaITlbAssocSets =
                 i_pProcTarget->getAttr<TARGETING::ATTR_TLB_INSTR_ASSOC_SETS>();

        this->iv_spPcia[i_index].hdatCache.pciaDTlbEntries =
                 i_pProcTarget->getAttr<TARGETING::ATTR_TLB_DATA_ENTRIES>();
        this->iv_spPcia[i_index].hdatCache.pciaDTlbAssocSets =
                 i_pProcTarget->getAttr<TARGETING::ATTR_TLB_DATA_ASSOC_SETS>();

        this->iv_spPcia[i_index].hdatCache.pciaReserveSize =
                 i_pProcTarget->getAttr<TARGETING::ATTR_TLB_RESERVE_SIZE>();

        //Set CPU Attributes
        iv_spPcia[i_index].hdatAttr.pciaAttributes =
                        i_pProcTarget->getAttr<TARGETING::ATTR_CPU_ATTR>();
    }
    while(0);

    return l_errl;
}

/*******************************************************************************
*  PCIA Destructor
*******************************************************************************/
HdatPcia :: ~HdatPcia()
{
    int rc = 0;
    rc =  mm_block_unmap(reinterpret_cast<void*>(ALIGN_PAGE_DOWN(
                    reinterpret_cast<uint64_t>(iv_spPcia))));
    if( rc != 0)
    {
        errlHndl_t l_errl = NULL;
        /*@
         * @errortype
         * @moduleid         HDAT::MOD_PCIA_DESTRUCTOR
         * @reasoncode       HDAT::RC_DEV_MAP_FAIL
         * @devdesc          Unmap a mapped region failed
         * @custdesc         Firmware encountered an internal error.
        */
        hdatBldErrLog(l_errl,
                MOD_PCIA_DESTRUCTOR,
                RC_DEV_MAP_FAIL,
                0,0,0,0,
                ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                HDAT_VERSION1,
                true);
    }

}

} //namespace HDAT
OpenPOWER on IntegriCloud