Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DellEMC: S6000, S6100, Z9332f - Add capabilities fields in platform.json #9168

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
136 changes: 112 additions & 24 deletions device/dell/x86_64-dell_s6000_s1220-r0/platform.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"chassis": {
"name": "S6000",
"status_led": {
"controllable": true,
"colors": ["amber", "blinking amber", "green", "blinking green"]
},
"components": [
{
"name": "BIOS"
Expand All @@ -17,111 +21,195 @@
],
"fans": [
{
"name": "FanTray1-Fan1"
"name": "FanTray1-Fan1",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray1-Fan2"
"name": "FanTray1-Fan2",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray2-Fan1"
"name": "FanTray2-Fan1",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray2-Fan2"
"name": "FanTray2-Fan2",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray3-Fan1"
"name": "FanTray3-Fan1",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray3-Fan2"
"name": "FanTray3-Fan2",
"speed": {
"controllable": true,
"minimum": 40
}
}
],
"fan_drawers":[
{
"name": "FanTray1",
"status_led": {
"controllable": true,
"colors": ["amber", "green", "off"]
},
"fans": [
{
"name": "FanTray1-Fan1"
"name": "FanTray1-Fan1",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray1-Fan2"
"name": "FanTray1-Fan2",
"speed": {
"controllable": true,
"minimum": 40
}
}
]
},
{
"name": "FanTray2",
"status_led": {
"controllable": true,
"colors": ["amber", "green", "off"]
},
"fans": [
{
"name": "FanTray2-Fan1"
"name": "FanTray2-Fan1",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray2-Fan2"
"name": "FanTray2-Fan2",
"speed": {
"controllable": true,
"minimum": 40
}
}
]
},
{
"name": "FanTray3",
"status_led": {
"controllable": true,
"colors": ["amber", "green", "off"]
},
"fans": [
{
"name": "FanTray3-Fan1"
"name": "FanTray3-Fan1",
"speed": {
"controllable": true,
"minimum": 40
}
},
{
"name": "FanTray3-Fan2"
"name": "FanTray3-Fan2",
"speed": {
"controllable": true,
"minimum": 40
}
}
]
}
],
"psus": [
{
"name": "PSU1",
"status_led": {
"controllable": false
},
"fans": [
{
"name": "PSU1 Fan"
"name": "PSU1 Fan",
"speed": {
"controllable": true,
"minimum": 40
}
}
],
"thermals": [
{
"name": "PSU1-Sensor 1"
"name": "PSU1-Sensor 1",
"controllable": false
},
{
"name": "PSU1-Sensor 2"
"name": "PSU1-Sensor 2",
"controllable": false
}
]
},
{
"name": "PSU2",
"status_led": {
"controllable": false
},
"fans": [
{
"name": "PSU2 Fan"
"name": "PSU2 Fan",
"speed": {
"controllable": true,
"minimum": 40
}
}
],
"thermals": [
{
"name": "PSU2-Sensor 1"
"name": "PSU2-Sensor 1",
"controllable": false
},
{
"name": "PSU2-Sensor 2"
"name": "PSU2-Sensor 2",
"controllable": false
}
]
}
],
"thermals": [
{
"name": "ASIC On-board"
"name": "ASIC On-board",
"controllable": false
},
{
"name": "NIC"
"name": "NIC",
"controllable": false
},
{
"name": "System Front"
"name": "System Front",
"controllable": false
},
{
"name": "DIMM"
"name": "DIMM",
"controllable": false
},
{
"name": "CPU Core 0"
"name": "CPU Core 0",
"controllable": false
},
{
"name": "CPU Core 1"
"name": "CPU Core 1",
"controllable": false
}
],
"modules": [],
Expand Down
Loading