Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 1 | option('tests', type: 'feature', description: 'Build tests') |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 2 | |
| 3 | option( |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 4 | 'i2c-occ', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 5 | type: 'feature', |
| 6 | description: 'Enable I2C OCC support', |
| 7 | value: 'disabled', |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 8 | ) |
| 9 | |
| 10 | option( |
| 11 | 'read-occ-sensors', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 12 | type: 'feature', |
| 13 | description: 'Enable read occ sensors support', |
| 14 | value: 'enabled', |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 15 | ) |
| 16 | |
| 17 | option( |
| 18 | 'max-cpus', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 19 | type: 'integer', |
| 20 | min: 0, |
| 21 | max: 255, |
| 22 | description: 'Maximum number of CPUs', |
| 23 | value: 2, |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 24 | ) |
| 25 | |
| 26 | option( |
Eddie James | 3f710bd | 2021-10-20 13:40:52 -0500 | [diff] [blame] | 27 | 'ps-derating-factor', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 28 | type: 'integer', |
| 29 | min: 0, |
| 30 | max: 100, |
| 31 | description: 'Power supply derating factor', |
| 32 | value: 90, |
Eddie James | 3f710bd | 2021-10-20 13:40:52 -0500 | [diff] [blame] | 33 | ) |
| 34 | |
| 35 | option( |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 36 | 'with-host-communication-protocol', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 37 | type: 'string', |
| 38 | description: 'To specify the host communication protocol', |
| 39 | value: 'pldm', |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 40 | ) |
| 41 | |
| 42 | option( |
| 43 | 'power10-support', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 44 | type: 'feature', |
| 45 | description: 'Enable Power10 support', |
| 46 | value: 'enabled', |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 47 | ) |
| 48 | |
| 49 | option( |
| 50 | 'yamldir', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 51 | type: 'string', |
| 52 | description: 'The path to the yaml config files', |
Patrick Williams | 9bec8af | 2023-09-07 14:02:27 -0500 | [diff] [blame] | 53 | ) |
Dhruvaraj Subhashchandran | 1173b2b | 2024-06-01 11:12:13 -0500 | [diff] [blame] | 54 | |
| 55 | option( |
| 56 | 'op_dump_obj_path', |
| 57 | type: 'string', |
| 58 | value: '/org/openpower/dump', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 59 | description: 'Object path requesting OpenPOWER dumps', |
Dhruvaraj Subhashchandran | 1173b2b | 2024-06-01 11:12:13 -0500 | [diff] [blame] | 60 | ) |
Lakshmi Yadlapati | 6213f19 | 2024-07-01 11:50:09 -0500 | [diff] [blame] | 61 | |
| 62 | option( |
| 63 | 'transport-implementation', |
| 64 | type: 'combo', |
| 65 | choices: ['mctp-demux', 'af-mctp'], |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 66 | description: 'transport via af-mctp or mctp-demux', |
Lakshmi Yadlapati | 6213f19 | 2024-07-01 11:50:09 -0500 | [diff] [blame] | 67 | ) |
Chris Cain | 720a384 | 2025-01-09 10:23:36 -0600 | [diff] [blame] | 68 | |
| 69 | option( |
| 70 | 'phal-support', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame^] | 71 | type: 'feature', |
| 72 | description: 'Enable PHAL support', |
| 73 | value: 'disabled', |
Chris Cain | 720a384 | 2025-01-09 10:23:36 -0600 | [diff] [blame] | 74 | ) |
| 75 | |