blob: fd6680abca2a24151234bf9392ee7d2eb3d527b7 [file] [log] [blame]
Matt Spinler77d32d12017-04-12 09:51:41 -05001#Example fan zone definitions for phosphor-fan-control
2
3#List the properties of the fan zones that are possible in the system.
4#The zones may be conditional based on certain conditions, such as
5#different chassis types or water cooled models. The fans themselves
6#are not listed in this file. They are in a separate YAML file so it
7#can be machine generated (i.e. from the MRW) if desired.
8
9#The general structure is a list of groups of zones, where a group
10#contains both the zones and the conditions required for the zones
11#to be valid
12
13#The cooling_profile is used along with the zone number to know
14#which fans in the fan yaml belong in this zone instance. For
15#example, a fan may only be in zone 0 if it's the air cooled version
16#of the system, but not with the water cooled version. In that
17#case, the fan yaml would have a cooling_profile of 'air' to match
18#the zone cooling profile.
19
Matt Spinleree7f6422017-05-09 11:03:14 -050020#manager_configuration:
21# power_on_delay: [Number of seconds that phosphor-fan-control --init
22# should delay after setting fans to full speed on
23# a power on.]
Matt Spinler77d32d12017-04-12 09:51:41 -050024#
Matt Spinleree7f6422017-05-09 11:03:14 -050025#zone_configuration:
26# - zone_conditions:
Gunnar Mills620e4342017-06-05 12:37:35 -050027# - name: [Name of a condition, if any.]
Matt Spinleree7f6422017-05-09 11:03:14 -050028#
29# zones:
30# - zone: [zone number]
31# cooling_profiles:
32# - [cooling profile]
Gunnar Mills07710ef2017-05-22 14:02:18 -050033# full_speed: [Full speed for the zone.]
Matt Spinler77d32d12017-04-12 09:51:41 -050034
35#Example:
Matt Spinleree7f6422017-05-09 11:03:14 -050036#manager_configuration:
37# power_on_delay: 20
Matt Spinler77d32d12017-04-12 09:51:41 -050038#
Matt Spinleree7f6422017-05-09 11:03:14 -050039#zone_configuration:
40# - zone_conditions:
41# - name: air_cooled_chassis
Matt Spinler77d32d12017-04-12 09:51:41 -050042#
Matt Spinleree7f6422017-05-09 11:03:14 -050043# zones:
44# - zone: 0
45# cooling_profiles:
46# - air
47# - all
Gunnar Mills07710ef2017-05-22 14:02:18 -050048# full_speed: 10500
Matt Spinler77d32d12017-04-12 09:51:41 -050049#
Matt Spinleree7f6422017-05-09 11:03:14 -050050# - zone_conditions:
51# - name: water_and_air_cooled_chassis
52#
53# zones:
54# - zone: 0
55# cooling_profiles:
56# - water
57# - all
Gunnar Mills07710ef2017-05-22 14:02:18 -050058# full_speed: 4000
Matt Spinler77d32d12017-04-12 09:51:41 -050059