blob: c20db634f63d0aa95b4fc6ca4bca8943e3cd5e05 [file] [log] [blame]
Patrick Williams601cea42025-02-01 08:36:51 -05001option('tests', type: 'feature', description: 'Build tests')
George Liubddcf852021-09-08 08:46:22 +08002
3option(
George Liubddcf852021-09-08 08:46:22 +08004 'i2c-occ',
Patrick Williams601cea42025-02-01 08:36:51 -05005 type: 'feature',
6 description: 'Enable I2C OCC support',
7 value: 'disabled',
George Liubddcf852021-09-08 08:46:22 +08008)
9
10option(
11 'read-occ-sensors',
Patrick Williams601cea42025-02-01 08:36:51 -050012 type: 'feature',
13 description: 'Enable read occ sensors support',
14 value: 'enabled',
George Liubddcf852021-09-08 08:46:22 +080015)
16
17option(
18 'max-cpus',
Patrick Williams601cea42025-02-01 08:36:51 -050019 type: 'integer',
20 min: 0,
21 max: 255,
22 description: 'Maximum number of CPUs',
23 value: 2,
George Liubddcf852021-09-08 08:46:22 +080024)
25
26option(
Eddie James3f710bd2021-10-20 13:40:52 -050027 'ps-derating-factor',
Patrick Williams601cea42025-02-01 08:36:51 -050028 type: 'integer',
29 min: 0,
30 max: 100,
31 description: 'Power supply derating factor',
32 value: 90,
Eddie James3f710bd2021-10-20 13:40:52 -050033)
34
35option(
George Liubddcf852021-09-08 08:46:22 +080036 'with-host-communication-protocol',
Patrick Williams601cea42025-02-01 08:36:51 -050037 type: 'string',
38 description: 'To specify the host communication protocol',
39 value: 'pldm',
George Liubddcf852021-09-08 08:46:22 +080040)
41
42option(
43 'power10-support',
Patrick Williams601cea42025-02-01 08:36:51 -050044 type: 'feature',
45 description: 'Enable Power10 support',
46 value: 'enabled',
George Liubddcf852021-09-08 08:46:22 +080047)
48
49option(
50 'yamldir',
Patrick Williams601cea42025-02-01 08:36:51 -050051 type: 'string',
52 description: 'The path to the yaml config files',
Patrick Williams9bec8af2023-09-07 14:02:27 -050053)
Dhruvaraj Subhashchandran1173b2b2024-06-01 11:12:13 -050054
55option(
56 'op_dump_obj_path',
57 type: 'string',
58 value: '/org/openpower/dump',
Patrick Williams601cea42025-02-01 08:36:51 -050059 description: 'Object path requesting OpenPOWER dumps',
Dhruvaraj Subhashchandran1173b2b2024-06-01 11:12:13 -050060)
Lakshmi Yadlapati6213f192024-07-01 11:50:09 -050061
62option(
63 'transport-implementation',
64 type: 'combo',
65 choices: ['mctp-demux', 'af-mctp'],
Patrick Williams601cea42025-02-01 08:36:51 -050066 description: 'transport via af-mctp or mctp-demux',
Lakshmi Yadlapati6213f192024-07-01 11:50:09 -050067)
Chris Cain720a3842025-01-09 10:23:36 -060068
69option(
70 'phal-support',
Patrick Williams601cea42025-02-01 08:36:51 -050071 type: 'feature',
72 description: 'Enable PHAL support',
73 value: 'disabled',
Chris Cain720a3842025-01-09 10:23:36 -060074)
75