summaryrefslogtreecommitdiffstats
path: root/src/usr/targeting/fakepnordata.H
blob: 4389cc105b51ff3c0c3aaccd53398143308eb7e7 (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
//  IBM_PROLOG_BEGIN_TAG
//  This is an automatically generated prolog.
//
//  $Source: src/usr/targeting/fakepnordata.H $
//
//  IBM CONFIDENTIAL
//
//  COPYRIGHT International Business Machines Corp. 2011
//
//  p1
//
//  Object Code Only (OCO) source materials
//  Licensed Internal Code Source Materials
//  IBM HostBoot Licensed Internal Code
//
//  The source code for this program is not published or other-
//  wise divested of its trade secrets, irrespective of what has
//  been deposited with the U.S. Copyright Office.
//
//  Origin: 30
//
//  IBM_PROLOG_END

#ifndef TARG_FAKEPNORDATA_H
#define TARG_FAKEPNORDATA_H

/**
 *  @file fakepnordata.H
 *
 *  @brief Interface to generate targets/attributes and fake out PNOR
 */

//******************************************************************************
// Includes
//******************************************************************************

// STD
#include <stdint.h>
#include <stdlib.h>
#include <vector>

namespace TARGETING
{

/**
 *  @brief Enum which describes where an attribute resides
 */
enum LOCATION
{
    PNOR, ///< Attribute resides in PNOR
    HEAP, ///< Attribute resides in heap memory, not backed to PNOR
};

/**
 *  @brief Structure which holds attribute information for the PNOR targeting
 *      image generator
 */
struct AttrInfo
{
    uint32_t     size;     ///< Size of attribute
    ATTRIBUTE_ID attrId;   ///< Attribute ID
    LOCATION     location; ///< Location where attribute resides
    const void*  pData;    ///< Address of attribute
};

/**
 *  @brief Property class which maintains info about a property to serialize
 */
template<ATTRIBUTE_ID A,LOCATION L>
class Property
{
    public:

        /**
         *  @brief Map the attribute's type to something more intuitive
         */
        typedef typename AttributeTraits<A>::Type _Type;

        /**
         *  @brief Build a property
         */
        Property()
        {
            info.size = sizeof(_Type);
            info.attrId = A;
            info.location = L;
            info.pData = &iv_data;
            iv_initialized = false;
            memset(&iv_data,0x00,sizeof(iv_data));
        }

        /**
         *  @brief Push attribute info to the attribute array
         *
         *  @param[out] o_info Array of attribute structures
         */
        void addAttrInfo(
            std::vector<AttrInfo>& o_info) const
        {
            if(info.location == PNOR)
            {
                assert(iv_initialized);
            }
            o_info.push_back(info);
        }

        /**
         *  @brief Sets the attribute value
         *
         *  @param[in] i_value Value of the attribute to set
         */
        void set(
            _Type const& i_value)
        {
            iv_data = i_value;
            iv_initialized = true;
        }

        /**
         *  @brief Return size of the attribute
         *
         *  @return uint32_t giving the size of the attribute in bytes
         */
        uint32_t size() const
        {
            return sizeof(iv_data);
        }

        /**
         *  @brief Return attribute's corresponding attribute ID
         *
         *  @return Attribute ID of the attribute
         */
        ATTRIBUTE_ID id() const
        {
            return info.attrId;
        }

        /**
         *  @brief Return address of the attribute data
         *
         *  @return Address of the attribute data
         */
        const _Type* data() const
        {
            return &iv_data;
        }

        /**
         *  @brief Return location where attribute resides
         *
         *  @return Location specifier
         */
        LOCATION location() const
        {
            return info.location;
        }

    public:

        AttrInfo  info;           ///< Attribute information
        _Type     iv_data;        ///< Attribute data
        bool      iv_initialized; ///< Whether attribute was set or not
};

/**
 *  @brief Base class describing attributes that all targets have.
 *
 *  Note: will not repeat documentation for subclasses, since they act the same
 */
class Base
{
    public:

        /**
         *  @brief Build the base object for attributes
         */
        Base()
        {
        }

        /**
         *  @brief Populate the list with information on all the attributes
         *
         *  @param[out] o_info List containing all the attribute information
         */
        void getAttrInfo(
            std::vector<AttrInfo>& o_info) const
        {
            iv_class.addAttrInfo(o_info);
            iv_type.addAttrInfo(o_info);
            iv_model.addAttrInfo(o_info);
            iv_physicalPath.addAttrInfo(o_info);
            iv_affinityPath.addAttrInfo(o_info);
            iv_interfaces.addAttrInfo(o_info);
        }

    public:

        Property<ATTR_CLASS,PNOR>                iv_class;
        Property<ATTR_TYPE,PNOR>                 iv_type;
        Property<ATTR_MODEL,PNOR>                iv_model;
        Property<ATTR_PHYS_PATH,PNOR>            iv_physicalPath;
        Property<ATTR_AFFINITY_PATH,PNOR>        iv_affinityPath;
        Property<ATTR_PRIMARY_CAPABILITIES,PNOR> iv_interfaces;
};

/**
 *  @brief Class describing the data for all cards
 */
class Card : public Base
{
    public:

        Card()
        {
            iv_class.set(CLASS_CARD);

            PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(
            std::vector<AttrInfo>& o_info) const
        {
            Base::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for all DCM cards
 */
class CardScmPower8 : public Card
{
    public:

        CardScmPower8()
        {
            iv_type.set(TYPE_SCM);
            iv_model.set(MODEL_POWER8);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Card::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for the top level system
 */
class SysSysPower8 : public Base
{
    public:

        SysSysPower8()
        {
            iv_class.set(CLASS_SYS);
            iv_type.set(TYPE_SYS);
            iv_model.set(MODEL_POWER8);

            PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Base::getAttrInfo(o_info);

            iv_xscomBaseAddr.addAttrInfo(o_info);
        }

        Property<ATTR_XSCOM_BASE_ADDRESS,PNOR> iv_xscomBaseAddr;
};

/**
 *  @brief Class describing the data for a chip
 */
class Chip : public Base
{
    public:

        Chip()
        {
            iv_class.set(CLASS_CHIP);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Base::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for a node
 */
class EncNodePower8 : public Base
{
    public:

        EncNodePower8()
        {
            iv_class.set(CLASS_ENC);
            iv_type.set(TYPE_NODE);
            iv_model.set(MODEL_POWER8);

            PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Base::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for the Salerno chip
 */
class ProcChipSalerno : public Chip
{
    public:

        ProcChipSalerno()
        {
            iv_type.set(TYPE_PROC);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            l_capabilities.supportsFsiScom = true;
            l_capabilities.supportsXscom = true;
            iv_interfaces.set(l_capabilities);

            ScomSwitches l_switches = {0};
            l_switches.useXscom = 1;
            iv_scomSwitches.set(l_switches);

            iv_dummyRw.set(0);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Chip::getAttrInfo(o_info);

            iv_dummyRw.addAttrInfo(o_info);
            iv_scomSwitches.addAttrInfo(o_info);
            iv_xscomChipInfo.addAttrInfo(o_info);
        }

        Property<ATTR_DUMMY_RW,PNOR> iv_dummyRw;
        Property<ATTR_SCOM_SWITCHES,HEAP> iv_scomSwitches;
        Property<ATTR_XSCOM_CHIP_INFO,PNOR> iv_xscomChipInfo;

};

/**
 *  @brief Class describing the data for a logical entity
 */
class Logical : public Base
{
    public:

        Logical()
        {
            iv_class.set(CLASS_UNIT);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Base::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for an EX unit
 */
class UnitExSalerno : public Logical
{
    public:

        UnitExSalerno()
        {
            iv_type.set(TYPE_EX);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for a core unit
 */
class UnitCoreSalerno : public Logical
{
    public:

        UnitCoreSalerno()
        {
            iv_type.set(TYPE_CORE);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for an L3 unit
 */
class UnitL3Salerno : public Logical
{
    public:

        UnitL3Salerno()
        {
            iv_type.set(TYPE_L3);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }

};

/**
 *  @brief Class describing the data for an L2 unit
 */
class UnitL2Salerno : public Logical
{
    public:

        UnitL2Salerno()
        {
            iv_type.set(TYPE_L2);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for an MCA unit
 */
class UnitMcsSalerno : public Logical
{
    public:

        UnitMcsSalerno()
        {
            iv_type.set(TYPE_MCS);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }

        Property<ATTR_SCOM_SWITCHES,HEAP> iv_scomSwitches;
};

/**
 *  @brief Class describing the data for an MCA unit
 */
class UnitMbaSalerno : public Logical
{
    public:

        UnitMbaSalerno()
        {
            iv_type.set(TYPE_MBA);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }
};

/**
 *  @brief Class describing the data for the pervasive unit
 */
class UnitPervasiveSalerno : public Logical
{
    public:

        UnitPervasiveSalerno()
        {
            iv_type.set(TYPE_PERVASIVE);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }

};

class UnitPciSalerno : public Logical
{
    public:

        UnitPciSalerno()
        {
            iv_type.set(TYPE_PCI);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }
};

class UnitPowerbusSalerno : public Logical
{
    public:

        UnitPowerbusSalerno()
        {
            iv_type.set(TYPE_POWERBUS);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }
};

class UnitMemPortSalerno : public Logical
{
    public:

        UnitMemPortSalerno()
        {
            iv_type.set(TYPE_MEM_PORT);
            iv_model.set(MODEL_SALERNO);

            TARGETING::PrimaryCapabilities l_capabilities = {0};
            iv_interfaces.set(l_capabilities);
        }

        void getAttrInfo(std::vector<AttrInfo>& o_info) const
        {
            Logical::getAttrInfo(o_info);
        }
};

//******************************************************************************
// PNOR Builder Service
//******************************************************************************

/**
 *  @brief Class which builds fake PNOR image for bringup
 */
class PnorBuilderService
{
    public:

        /**
         *  @brief Initial PNOR sizes
         */
        static const uint32_t PNOR_SIZE = 8000;
        static const uint32_t HEAP_SIZE = 8000;

        /**
         *  @brief Constructs the PnorBuilderService
         */
        PnorBuilderService();

        /**
         *  @brief Destructs the PnorBuilderService
         */
        ~PnorBuilderService();

        /**
         *  @brief Returns pointer to the start of the heap section
         */
        uint8_t* heapBase() const;

        /**
         *  @brief Returns pointer to the start of the PNOR section
         */
        uint8_t* pnorBase() const;

        /**
          *  @brief Clears the PNOR section
          */
        void clearPnorSection();

        /**
         *  @brief Clears the PNOR section
         */
        void clearHeapSection();

        /**
         *  @brief Populates attributes valid attributes for a class/type/model
         *      into the targeting image
         *
         *  @param[in] i_pPnor On input and output, pointer to next valid
         *      location to write to in PNOR
         *  @param[in] i_attrInfo   List of attributes to process
         *  @param[in] o_pAttrNames Pointer to where the list was stored
         */
        void populateValidAttrIds(
                  uint8_t*&              io_pPnor,
            const std::vector<AttrInfo>& i_attrInfo,
                  ATTRIBUTE_ID*&         o_pAttrNames);

        /**
         *  @brief Populates attributes into the targeting image
         *
         *  @param[in] i_pAttrNames Pointer to array of valid attributes for
         *      the class/type/model in question
         *  @param[in/out] io_pPnor On both input and output, a pointer to the
         *      next free position in PNOR to populate.
         *  @param[in/out] io_pHeap On both input and output, a pointer to the
         *      next free position on the heap to populate.
         *  @param[out] o_targets List of targets to serialize
         *  @param[in] i_attrInfo List of attribute infor structures
         */
        void populateAttrs(
                   const ATTRIBUTE_ID*     i_pAttrNames,
                   uint8_t*&               io_pPnor,
                   uint8_t*&               io_pHeap,
                   std::vector< Target* >& o_targets,
             const std::vector<AttrInfo>&  i_attrInfo);

        /**
         *  @brief Builds the targeting image
         */
        void buildTargetingImage();

        /**
         *  @brief Updates caller's pointer with the address of the targeting
         *      layout
         *
         *  @param[out] o_pTargetsArea Pointer to the address of the targeting
         *      layout
         */
        void getTargetingImageBaseAddress(
            const void*& o_pTargetsArea);

        uint8_t* iv_pPnor;
        uint8_t* iv_pHeap;

} PACKED;

typedef Singleton<PnorBuilderService> thePnorBuilderService;

} // End namespace TARGETING

#endif // TARG_FAKEPNORDATA_H
OpenPOWER on IntegriCloud