summaryrefslogtreecommitdiffstats
path: root/src/usr/vpd/HBconfig
blob: 136183442f0fdd126971462b28df62ae1c785032 (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
config CVPD_READ_FROM_PNOR
    default y
    help
        Read Centaur VPD data from PNOR cache

config CVPD_READ_FROM_HW
    default n
    depends on !PALMETTO_PASS1
    help
        Read Centaur VPD data from HW resources

config CVPD_READ
    default y
    depends on CVPD_READ_FROM_PNOR || CVPD_READ_FROM_HW
    help
        Ensure at least one of the CVPD READs are enabled

config CVPD_WRITE_TO_PNOR
    default y if CVPD_READ_FROM_PNOR
    depends on CVPD_READ_FROM_PNOR
    help
        Write Centaur VPD data to PNOR cache

config CVPD_WRITE_TO_HW
    default y if CVPD_READ_FROM_HW
    depends on !PALMETTO_PASS1 && CVPD_READ_FROM_HW
    help
        Write Centaur VPD data to HW resources

config CVPD_WRITE
    default y
    depends on CVPD_WRITE_TO_PNOR || CVPD_WRITE_TO_HW
    help
        Ensure at least one of the CVPD WRITEs are enabled

config MVPD_READ_FROM_PNOR
    default y
    help
        Read Module VPD data from PNOR cache

config MVPD_READ_FROM_HW
    default n
    help
        Read Module VPD data from HW resources

config MVPD_READ
    default y
    depends on MVPD_READ_FROM_PNOR || MVPD_READ_FROM_HW
    help
        Ensure at least one of the MVPD READs are enabled

config MVPD_WRITE_TO_PNOR
    default y if MVPD_READ_FROM_PNOR
    help
        Write Module VPD data to PNOR cache

config MVPD_WRITE_TO_HW
    default y if MVPD_READ_FROM_HW
    depends on MVPD_READ_FROM_HW
    help
        Write Module VPD data to HW resources

config MVPD_WRITE
    default y
    depends on MVPD_WRITE_TO_PNOR || MVPD_WRITE_TO_HW
    help
        Ensure at least one of the MVPD WRITEs are enabled

config DJVPD_READ_FROM_PNOR
    default y
    help
        Read Dimm JEDEC VPD/SPD data from PNOR cache
    
config DJVPD_READ_FROM_HW
    default n
    help
        Read Dimm JEDEC VPD/SPD data from HW resources

config DJVPD_READ
    default y
    depends on DJVPD_READ_FROM_PNOR || DJVPD_READ_FROM_HW
    help
        Ensure at least one of the DJVPD READs are enabled

config DJVPD_WRITE_TO_PNOR
    default y if DJVPD_READ_FROM_PNOR
    help
        Write Dimm JEDEC VPD/SPD data to PNOR cache

config DJVPD_WRITE_TO_HW
    default y if DJVPD_READ_FROM_HW
    depends on DJVPD_READ_FROM_HW
    help
        Write Dimm JEDEC VPD/SPD data to HW resources

config DJVPD_WRITE
    default y
    depends on DJVPD_WRITE_TO_PNOR || DJVPD_WRITE_TO_HW
    help
        Ensure at least one of the DJVPD WRITEs are enabled

config HAVE_MBVPD
    default y if CVPD_READ_FROM_PNOR || CVPD_READ_FROM_HW
    depends on (CVPD_READ_FROM_PNOR || CVPD_READ_FROM_HW) && !PALMETTO_PASS1
    help
        Have MemBuff/Centaur VPD, PNOR or HW

config PALMETTO_PASS1
    default n
    help
        Palmetto pass1 specific changes

config CDIMM_FORMAT_FOR_CVPD
    default y
    help
        Assume Custom DIMM VPD layout for CVPD
OpenPOWER on IntegriCloud