blob: d7eab4abb3b1e53c3a37d47a99dc527b97c6bf41 [file] [log] [blame]
George Liubddcf852021-09-08 08:46:22 +08001option(
2 'tests',
3 type : 'feature',
4 description : 'Build tests'
5)
6
7option(
George Liubddcf852021-09-08 08:46:22 +08008 'i2c-occ',
9 type : 'feature',
10 description : 'Enable I2C OCC support',
11 value: 'disabled'
12)
13
14option(
15 'read-occ-sensors',
16 type : 'feature',
17 description : 'Enable read occ sensors support',
Chris Cain720a3842025-01-09 10:23:36 -060018 value: 'enabled'
George Liubddcf852021-09-08 08:46:22 +080019)
20
21option(
22 'max-cpus',
23 type : 'integer',
24 min:0, max:255,
25 description : 'Maximum number of CPUs',
26 value: 2
27)
28
29option(
Eddie James3f710bd2021-10-20 13:40:52 -050030 'ps-derating-factor',
31 type : 'integer',
32 min:0, max:100,
33 description : 'Power supply derating factor',
34 value: 90
35)
36
37option(
George Liubddcf852021-09-08 08:46:22 +080038 'with-host-communication-protocol',
39 type : 'string',
Chris Cain720a3842025-01-09 10:23:36 -060040 description : 'To specify the host communication protocol',
41 value: 'pldm'
George Liubddcf852021-09-08 08:46:22 +080042)
43
44option(
45 'power10-support',
46 type : 'feature',
47 description : 'Enable Power10 support',
Chris Cain720a3842025-01-09 10:23:36 -060048 value: 'enabled'
George Liubddcf852021-09-08 08:46:22 +080049)
50
51option(
52 'yamldir',
53 type : 'string',
54 description : 'The path to the yaml config files'
Patrick Williams9bec8af2023-09-07 14:02:27 -050055)
Dhruvaraj Subhashchandran1173b2b2024-06-01 11:12:13 -050056
57option(
58 'op_dump_obj_path',
59 type: 'string',
60 value: '/org/openpower/dump',
61 description : 'Object path requesting OpenPOWER dumps'
62)
Lakshmi Yadlapati6213f192024-07-01 11:50:09 -050063
64option(
65 'transport-implementation',
66 type: 'combo',
67 choices: ['mctp-demux', 'af-mctp'],
68 description: 'transport via af-mctp or mctp-demux'
69)
Chris Cain720a3842025-01-09 10:23:36 -060070
71option(
72 'phal-support',
73 type : 'feature',
74 description : 'Enable PHAL support',
75 value: 'disabled'
76)
77