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