-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PDDF support for s5296f platform and fix error for reboot-cause in pd…
…df mode
- Loading branch information
1 parent
7629d0f
commit 467f3a3
Showing
21 changed files
with
3,771 additions
and
0 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
device/dell/x86_64-dellemc_s5296f_c3538-r0/pddf/pd-plugin.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"PSU": | ||
{ | ||
"psu_present": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": { "1":true, "0":false } | ||
}, | ||
"bmc": | ||
{ | ||
"valmap": { "1":true, "0":false } | ||
} | ||
}, | ||
|
||
"psu_power_good": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": { "1": true, "0":false } | ||
}, | ||
"bmc": | ||
{ | ||
"valmap": { "0": true, "2":false } | ||
} | ||
}, | ||
|
||
"psu_fan_dir": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": { "F2B":"INTAKE", "B2F":"EXHAUST" } | ||
}, | ||
"bmc": | ||
{ | ||
"valmap": { "0":"EXHAUST", "1":"INTAKE" } | ||
} | ||
}, | ||
|
||
"PSU_FAN_MAX_SPEED":"25500" | ||
}, | ||
|
||
"FAN": | ||
{ | ||
"direction": | ||
{ | ||
"bmc": | ||
{ | ||
"valmap": {"0":"EXHAUST", "1":"INTAKE"} | ||
} | ||
}, | ||
|
||
"present": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": {"1":true, "0":false} | ||
}, | ||
"bmc": | ||
{ | ||
"valmap": {"ok":true, "na":false} | ||
} | ||
}, | ||
|
||
"pwm_to_duty_cycle": "lambda pwm: (pwm*1.0)" | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.