blob: 2460505818cc23731cdbd59b179ff7c1934da206 [file] [log] [blame]
Jonathan Doman1d4979c2020-09-10 16:32:04 -07001description: >
2 Implement to advertise power and frequency attributes of a single available
3 (but not necessarily active/applied) processor configuration profile.
4properties:
5 - name: BaseSpeed
6 type: uint32
7 description: The base clock speed of the processor in MHz.
8 flags:
Patrick Williams8da396c2022-03-14 14:21:02 -05009 - readonly
Jonathan Doman1d4979c2020-09-10 16:32:04 -070010 - name: BaseSpeedPrioritySettings
11 type: array[struct[uint32, array[uint32]]]
12 description: >
Patrick Williams8da396c2022-03-14 14:21:02 -050013 An array of objects that specify the base clock frequency for sets of
14 cores when the configuration is operational. Each entry contains two
15 members, first is the base clock speed in MHz, and second is an array
16 identifying the set of core IDs to configure at that base speed.
Jonathan Doman1d4979c2020-09-10 16:32:04 -070017 flags:
Patrick Williams8da396c2022-03-14 14:21:02 -050018 - readonly
Jonathan Doman1d4979c2020-09-10 16:32:04 -070019 - name: MaxJunctionTemperature
20 type: uint32
21 description: The maximum temperature of the junction in degrees Celsius.
22 flags:
Patrick Williams8da396c2022-03-14 14:21:02 -050023 - readonly
Jonathan Doman1d4979c2020-09-10 16:32:04 -070024 - name: MaxSpeed
25 type: uint32
26 description: >
Patrick Williams8da396c2022-03-14 14:21:02 -050027 The maximum clock speed to which the processor can be configured in MHz.
Jonathan Doman1d4979c2020-09-10 16:32:04 -070028 flags:
Patrick Williams8da396c2022-03-14 14:21:02 -050029 - readonly
Jonathan Doman1d4979c2020-09-10 16:32:04 -070030 - name: PowerLimit
31 type: uint32
32 description: The thermal design point of the processor in watts.
33 flags:
Patrick Williams8da396c2022-03-14 14:21:02 -050034 - readonly
Jonathan Doman1d4979c2020-09-10 16:32:04 -070035 - name: AvailableCoreCount
36 type: size
37 description: >
Patrick Williams8da396c2022-03-14 14:21:02 -050038 The number of cores in the processor that can be used in this
39 configuration.
Jonathan Doman1d4979c2020-09-10 16:32:04 -070040 flags:
Patrick Williams8da396c2022-03-14 14:21:02 -050041 - readonly
Jonathan Doman1d4979c2020-09-10 16:32:04 -070042 - name: TurboProfile
43 type: array[struct[uint32, size]]
44 description: >
Patrick Williams8da396c2022-03-14 14:21:02 -050045 An array of objects that specify the turbo profile for a set of active
46 cores. Each entry contains two members, first is the maximum turbo clock
47 speed in MHz, and second is number of cores which can run at that speed.
Jonathan Doman1d4979c2020-09-10 16:32:04 -070048 flags:
Patrick Williams8da396c2022-03-14 14:21:02 -050049 - readonly