342604a4bb
* [Mellanox] Don't populate arm64 Kconfig when integrating hw-mgmt
Signed-off-by: Vivek Reddy <vkarri@nvidia.com>
* Intgerate HW-MGMT 7.0030.2008 Changes
## Patch List
* 0285-UBUNTU-SAUCE-mlxbf-gige-Fix-intermittent-no-ip-issue.patch :
* 0286-pinctrl-Introduce-struct-pinfunction-and-PINCTRL_PIN.patch :
* 0287-pinctrl-mlxbf3-Add-pinctrl-driver-support.patch :
* 0288-UBUNTU-SAUCE-gpio-mmio-handle-ngpios-properly-in-bgp.patch :
* 0289-UBUNTU-SAUCE-gpio-mlxbf3-Add-gpio-driver-support.patch :
* 0291-mlxsw-core_hwmon-Align-modules-label-name-assignment.patch :
* 0292-mlxsw-i2c-Limit-single-transaction-buffer-size.patch :
* 0293-mlxsw-reg-Limit-MTBR-register-records-buffer-by-one-.patch :
* 0296-UBUNTU-SAUCE-mmc-sdhci-of-dwcmshc-Add-runtime-PM-ope.patch :
* 0298-UBUNTU-SAUCE-mlxbf-ptm-use-0444-instead-of-S_IRUGO.patch :
* 0299-UBUNTU-SAUCE-mlxbf-ptm-add-atx-debugfs-nodes.patch :
* 0300-UBUNTU-SAUCE-mlxbf-ptm-update-module-version.patch :
* 0301-UBUNTU-SAUCE-mlxbf-gige-Fix-kernel-panic-at-shutdown.patch :
* 0302-UBUNTU-SAUCE-mlxbf-bootctl-support-SMC-call-for-sett.patch :
* 0303-UBUNTU-SAUCE-Add-BF3-related-ACPI-config-and-Ring-de.patch :
* 0306-dt-bindings-trivial-devices-Add-infineon-xdpe1a2g7.patch :
* 0307-leds-mlxreg-Add-support-for-new-flavour-of-capabilit.patch :
* 0308-leds-mlxreg-Remove-code-for-amber-LED-colour.patch :
* 0308-platform_data-mlxreg-Add-capability-bit-and-mask-fie.patch :
* 0309-hwmon-mlxreg-fan-Add-support-for-new-flavour-of-capa.patch :
* 0310-hwmon-mlxreg-fan-Extend-number-of-supporetd-fans.patch :
* 0317-platform-mellanox-Introduce-support-for-switches-equ.patch :
* 0318-mellanox-Relocate-mlx-platform-driver.patch :
* 0319-UBUNTU-SAUCE-mlxbf-tmfifo-fix-potential-race.patch :
* 0320-UBUNTU-SAUCE-mlxbf-tmfifo-Drop-the-Rx-packet-if-no-m.patch :
* 0321-UBUNTU-SAUCE-mlxbf-tmfifo-Drop-jumbo-frames.patch :
* 0322-UBUNTU-SAUCE-mlxbf-tmfifo.c-Amend-previous-tmfifo-pa.patch :
* 0323-mlxbf_gige-add-set_link_ksettings-ethtool-callback.patch :
* 0324-mlxbf_gige-fix-white-space-in-mlxbf_gige_eth_ioctl.patch :
* 0325-UBUNTU-SAUCE-mlxbf-bootctl-Fix-kernel-panic-due-to-b.patch :
* 0326-platform-mellanox-mlxreg-hotplug-Add-support-for-new.patch :
* 0327-platform-mellanox-mlx-platform-Change-register-name.patch :
* 0328-platform-mellanox-mlx-platform-Add-support-for-new-X.patch :
* [Mellanox] Remove thermal zone related code and replace with new one
* Revert "Revert "[Mellanox] Align PSU temperature sysfs node name with hw-management change (#16820)" (#16956)"
This reverts commit c2edc6f9d5
.
---------
Signed-off-by: Vivek Reddy <vkarri@nvidia.com>
Co-authored-by: Junchao-Mellanox <junchao@nvidia.com>
Co-authored-by: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com>
102 lines
3.4 KiB
Diff
102 lines
3.4 KiB
Diff
From 582264258aa3e95f87e33221ff9026899e02d529 Mon Sep 17 00:00:00 2001
|
|
From: Vadim Pasternak <vadimp@nvidia.com>
|
|
Date: Sun, 23 Jul 2023 06:26:09 +0000
|
|
Subject: [PATCH] hwmon: (mlxreg-fan) Add support for new flavour of capability
|
|
register
|
|
X-NVConfidentiality: public
|
|
|
|
FAN platform data is common across the various systems, while fan
|
|
driver should be able to apply only the fan instances relevant
|
|
to specific system.
|
|
|
|
For example, platform data might contain descriptions for fan1,
|
|
fan2, ..., fan{n}, while some systems equipped with all 'n' fans,
|
|
others with less.
|
|
Also, on some systems fan drawer can be equipped with several
|
|
tachometers and on others only with one.
|
|
|
|
For detection of the real number of equipped drawers and tachometers
|
|
special capability registers are used.
|
|
These registers used to indicate presence of drawers and tachometers
|
|
through the bitmap.
|
|
|
|
For some new big modular systems this register will provide presence
|
|
data by counter.
|
|
|
|
Use slot parameter to distinct whether capability register contains
|
|
bitmask or counter.
|
|
|
|
Signed-off-by: Vadim Pasternak <vadimp@nvidia.com>
|
|
---
|
|
drivers/hwmon/mlxreg-fan.c | 19 ++++++++++++++++---
|
|
1 file changed, 16 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/drivers/hwmon/mlxreg-fan.c b/drivers/hwmon/mlxreg-fan.c
|
|
index acba9d688..c0b42821f 100644
|
|
--- a/drivers/hwmon/mlxreg-fan.c
|
|
+++ b/drivers/hwmon/mlxreg-fan.c
|
|
@@ -72,12 +72,14 @@ struct mlxreg_fan;
|
|
* @reg: register offset;
|
|
* @mask: fault mask;
|
|
* @prsnt: present register offset;
|
|
+ * @shift: tacho presence bit shift;
|
|
*/
|
|
struct mlxreg_fan_tacho {
|
|
bool connected;
|
|
u32 reg;
|
|
u32 mask;
|
|
u32 prsnt;
|
|
+ u32 shift;
|
|
};
|
|
|
|
/*
|
|
@@ -146,8 +148,10 @@ mlxreg_fan_read(struct device *dev, enum hwmon_sensor_types type, u32 attr,
|
|
/*
|
|
* Map channel to presence bit - drawer can be equipped with
|
|
* one or few FANs, while presence is indicated per drawer.
|
|
+ * Shift channel value if necessary to align with register value.
|
|
*/
|
|
- if (BIT(channel / fan->tachos_per_drwr) & regval) {
|
|
+ if (BIT(rol32(channel, tacho->shift) / fan->tachos_per_drwr) &
|
|
+ regval) {
|
|
/* FAN is not connected - return zero for FAN speed. */
|
|
*val = 0;
|
|
return 0;
|
|
@@ -411,7 +415,7 @@ static int mlxreg_fan_connect_verify(struct mlxreg_fan *fan,
|
|
return err;
|
|
}
|
|
|
|
- return !!(regval & data->bit);
|
|
+ return data->slot ? (data->slot <= regval ? 1 : 0) : !!(regval & data->bit);
|
|
}
|
|
|
|
static int mlxreg_pwm_connect_verify(struct mlxreg_fan *fan,
|
|
@@ -486,6 +490,7 @@ static int mlxreg_fan_config(struct mlxreg_fan *fan,
|
|
fan->tacho[tacho_num].reg = data->reg;
|
|
fan->tacho[tacho_num].mask = data->mask;
|
|
fan->tacho[tacho_num].prsnt = data->reg_prsnt;
|
|
+ fan->tacho[tacho_num].shift = data->capability_bit;
|
|
fan->tacho[tacho_num++].connected = true;
|
|
tacho_avail++;
|
|
} else if (strnstr(data->label, "pwm", sizeof(data->label))) {
|
|
@@ -548,7 +553,15 @@ static int mlxreg_fan_config(struct mlxreg_fan *fan,
|
|
return err;
|
|
}
|
|
|
|
- drwr_avail = hweight32(regval);
|
|
+ /*
|
|
+ * The number of drawers could be specified in registers by counters for newer
|
|
+ * systems, or by bitmasks for older systems. In case the data is provided by
|
|
+ * counter, it is indicated through 'version' field.
|
|
+ */
|
|
+ if (pdata->version)
|
|
+ drwr_avail = regval;
|
|
+ else
|
|
+ drwr_avail = hweight32(regval);
|
|
if (!tacho_avail || !drwr_avail || tacho_avail < drwr_avail) {
|
|
dev_err(fan->dev, "Configuration is invalid: drawers num %d tachos num %d\n",
|
|
drwr_avail, tacho_avail);
|
|
--
|
|
2.14.1
|
|
|