-
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_dell_platforms: Add PDDF support for s5212f, s5224f, s52…
…32f and s5248f dell Platfroms
- Loading branch information
1 parent
d9e6ab7
commit 7629d0f
Showing
81 changed files
with
11,025 additions
and
56 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
device/dell/x86_64-dellemc_s5212f_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,61 @@ | ||
{ | ||
"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": { "1":"Exhaust", "2":"Intake" } | ||
} | ||
}, | ||
|
||
"PSU_FAN_MAX_SPEED":"25500" | ||
}, | ||
|
||
"FAN": | ||
{ | ||
"present": | ||
{ | ||
"i2c": | ||
{ | ||
"valmap": {"1":true, "0":false} | ||
}, | ||
"bmc": | ||
{ | ||
"valmap": {"ok":true, "na":false} | ||
} | ||
}, | ||
|
||
"pwm_to_duty_cycle": "lambda pwm: ((pwm/14520) * 100)" | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.