Shawn McCarney | 310d864 | 2019-10-07 12:19:27 -0500 | [diff] [blame] | 1 | { |
| 2 | "comments": [ "Config file for a FooBar one-chassis system" ], |
| 3 | |
| 4 | "rules": [ |
| 5 | { |
| 6 | "comments": [ "Sets output voltage for a PMBus regulator rail" ], |
| 7 | "id": "set_voltage_rule", |
| 8 | "actions": [ |
| 9 | { |
| 10 | "pmbus_write_vout_command": { |
| 11 | "format": "linear" |
| 12 | } |
| 13 | } |
| 14 | ] |
| 15 | }, |
| 16 | |
| 17 | { |
| 18 | "comments": [ "Reads sensors from a PMBus regulator rail" ], |
| 19 | "id": "read_sensors_rule", |
| 20 | "actions": [ |
| 21 | { |
| 22 | "comments": [ "Read output voltage from READ_VOUT." ], |
| 23 | "pmbus_read_sensor": { |
| 24 | "type": "vout", |
| 25 | "command": "0x8B", |
| 26 | "format": "linear_16" |
| 27 | } |
| 28 | }, |
| 29 | |
| 30 | { |
| 31 | "comments": [ "Read output current from READ_IOUT." ], |
| 32 | "pmbus_read_sensor": { |
| 33 | "type": "iout", |
| 34 | "command": "0x8C", |
| 35 | "format": "linear_11" |
| 36 | } |
| 37 | }, |
| 38 | |
| 39 | { |
| 40 | "comments": [ "Read temperature from READ_TEMPERATURE_1." ], |
| 41 | "pmbus_read_sensor": { |
| 42 | "type": "temperature", |
| 43 | "command": "0x8D", |
| 44 | "format": "linear_11" |
| 45 | } |
| 46 | } |
| 47 | ] |
| 48 | } |
| 49 | ], |
| 50 | |
| 51 | "chassis": [ |
| 52 | { |
| 53 | "comments": [ "Chassis number 1 containing CPUs and memory" ], |
| 54 | "number": 1, |
Shawn McCarney | ecbeeea | 2021-04-29 21:08:18 -0500 | [diff] [blame] | 55 | "inventory_path": "system/chassis", |
Shawn McCarney | 310d864 | 2019-10-07 12:19:27 -0500 | [diff] [blame] | 56 | "devices": [ |
| 57 | { |
| 58 | "comments": [ "IR35221 regulator producing the Vdd rail" ], |
| 59 | "id": "vdd_regulator", |
| 60 | "is_regulator": true, |
Shawn McCarney | 35a7d0c | 2020-10-09 17:39:15 -0500 | [diff] [blame] | 61 | "fru": "system/chassis/motherboard/regulator1", |
Shawn McCarney | 310d864 | 2019-10-07 12:19:27 -0500 | [diff] [blame] | 62 | "i2c_interface": { |
| 63 | "bus": 1, |
| 64 | "address": "0x70" |
| 65 | }, |
| 66 | "rails": [ |
| 67 | { |
| 68 | "comments": [ "Vdd rail" ], |
| 69 | "id": "vdd", |
| 70 | "configuration": { |
| 71 | "volts": 1.03, |
| 72 | "rule_id": "set_voltage_rule" |
| 73 | }, |
| 74 | "sensor_monitoring": { |
| 75 | "rule_id": "read_sensors_rule" |
| 76 | } |
| 77 | } |
| 78 | ] |
| 79 | }, |
| 80 | |
| 81 | { |
| 82 | "comments": [ "IR35221 regulator producing the Vio rail" ], |
| 83 | "id": "vio_regulator", |
| 84 | "is_regulator": true, |
Shawn McCarney | 35a7d0c | 2020-10-09 17:39:15 -0500 | [diff] [blame] | 85 | "fru": "system/chassis/motherboard/regulator2", |
Shawn McCarney | 310d864 | 2019-10-07 12:19:27 -0500 | [diff] [blame] | 86 | "i2c_interface": { |
| 87 | "bus": 1, |
| 88 | "address": "0x71" |
| 89 | }, |
| 90 | "rails": [ |
| 91 | { |
| 92 | "comments": [ "Vio rail" ], |
| 93 | "id": "vio", |
| 94 | "configuration": { |
| 95 | "volts": 1.1, |
| 96 | "rule_id": "set_voltage_rule" |
| 97 | }, |
| 98 | "sensor_monitoring": { |
| 99 | "rule_id": "read_sensors_rule" |
| 100 | } |
| 101 | } |
| 102 | ] |
| 103 | } |
| 104 | ] |
| 105 | } |
| 106 | ] |
| 107 | } |