xref: /openbmc/openpower-occ-control/meson.options (revision 601cea4cbfa2e8d2cd9021e87d9d79736e4d95c3)
1option('tests', type: 'feature', description: 'Build tests')
2
3option(
4    'i2c-occ',
5    type: 'feature',
6    description: 'Enable I2C OCC support',
7    value: 'disabled',
8)
9
10option(
11    'read-occ-sensors',
12    type: 'feature',
13    description: 'Enable read occ sensors support',
14    value: 'enabled',
15)
16
17option(
18    'max-cpus',
19    type: 'integer',
20    min: 0,
21    max: 255,
22    description: 'Maximum number of CPUs',
23    value: 2,
24)
25
26option(
27    'ps-derating-factor',
28    type: 'integer',
29    min: 0,
30    max: 100,
31    description: 'Power supply derating factor',
32    value: 90,
33)
34
35option(
36    'with-host-communication-protocol',
37    type: 'string',
38    description: 'To specify the host communication protocol',
39    value: 'pldm',
40)
41
42option(
43    'power10-support',
44    type: 'feature',
45    description: 'Enable Power10 support',
46    value: 'enabled',
47)
48
49option(
50    'yamldir',
51    type: 'string',
52    description: 'The path to the yaml config files',
53)
54
55option(
56    'op_dump_obj_path',
57    type: 'string',
58    value: '/org/openpower/dump',
59    description: 'Object path requesting OpenPOWER dumps',
60)
61
62option(
63    'transport-implementation',
64    type: 'combo',
65    choices: ['mctp-demux', 'af-mctp'],
66    description: 'transport via af-mctp or mctp-demux',
67)
68
69option(
70    'phal-support',
71    type: 'feature',
72    description: 'Enable PHAL support',
73    value: 'disabled',
74)
75
76