Skip to content

Commit

Permalink
meru800bfa: Use lm75 driver for tmp75 devices (#248)
Browse files Browse the repository at this point in the history
Summary:
# Description
Meru800BFA now uses the lm75 driver instead of tmp75. The tmp75 driver is not compatible with some of the parts sourced from some vendors which can cause unexpected behavior. The lm75 is a more general driver and avoids any part specific configurations.

Similar changes were added to Meru800bia in #208

# Test
sensor_service
```
========================================================
Processed 147 Sensors. 0 Failures.
Using thread manager (resource pools not enabled) on address/port 5970: runtime: thriftFlagNotSet, , thrift flag: false, enable gflag: false, disable gflag: false
Processed 147 Sensors. 0 Failures.
Processed 147 Sensors. 0 Failures.
Processed 147 Sensors. 0 Failures.
```

Pull Request resolved: #248

Reviewed By: kimdo8736

Differential Revision: D63721930

Pulled By: joancaneus

fbshipit-source-id: f039ba5c61121f0277d5128fc290afd2d0d62f58
  • Loading branch information
aalamsi22 authored and facebook-github-bot committed Dec 5, 2024
1 parent f998571 commit 453c185
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fboss/platform/configs/meru800bfa/platform_manager.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
{
"busName": "INCOMING@0",
"address": "0x48",
"kernelDeviceName": "tmp75",
"kernelDeviceName": "lm75",
"pmUnitScopedName": "SMB_TMP75"
},
{
Expand Down Expand Up @@ -213,7 +213,7 @@
{
"busName": "INCOMING@3",
"address": "0x48",
"kernelDeviceName": "tmp75",
"kernelDeviceName": "lm75",
"pmUnitScopedName": "FAN0_TMP75"
},
{
Expand All @@ -225,7 +225,7 @@
{
"busName": "INCOMING@3",
"address": "0x49",
"kernelDeviceName": "tmp75",
"kernelDeviceName": "lm75",
"pmUnitScopedName": "FAN1_TMP75"
},
{
Expand All @@ -237,7 +237,7 @@
{
"busName": "INCOMING@3",
"address": "0x4a",
"kernelDeviceName": "tmp75",
"kernelDeviceName": "lm75",
"pmUnitScopedName": "FAN2_TMP75"
},
{
Expand Down

0 comments on commit 453c185

Please sign in to comment.