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>
126 lines
4.1 KiB
Diff
126 lines
4.1 KiB
Diff
From 99a91873f7fe56dcdb4dc68b5a0766b63465ccbb Mon Sep 17 00:00:00 2001
|
|
From: Asmaa Mnebhi <asmaa@nvidia.com>
|
|
Date: Thu, 30 Mar 2023 12:25:27 -0400
|
|
Subject: [PATCH 76/77] UBUNTU: SAUCE: gpio: mmio: handle "ngpios" properly in
|
|
bgpio_init()
|
|
X-NVConfidentiality: public
|
|
|
|
BugLink: https://bugs.launchpad.net/bugs/2012743
|
|
|
|
bgpio_init() uses "sz" argument to populate ngpio, which is not
|
|
accurate. Instead, read the "ngpios" property from the DT and if it
|
|
doesn't exist, use the "sz" argument. With this change, drivers no
|
|
longer need to overwrite the ngpio variable after calling bgpio_init().
|
|
|
|
This change has already been approved for upstreaming but has not been
|
|
integrated into the linux-next branch yet (or any other branch as a matter
|
|
of fact).
|
|
There are 2 commits involved:
|
|
gpio: mmio: handle "ngpios" properly in bgpio_init() -
|
|
gpio: mmio: fix calculation of bgpio_bits
|
|
|
|
There is no point in separating these 2 commits into 2 SAUCE patches since
|
|
they target the same functionality and will be reverted soon anyways to
|
|
cherry-pick the linux-next commits.
|
|
|
|
Signed-off-by: Asmaa Mnebhi <asmaa@nvidia.com>
|
|
Acked-by: Tim Gardner <tim.gardner@canonical.com>
|
|
Acked-by: Bartlomiej Zolnierkiewicz <bartlomiej.zolnierkiewicz@canonical.com>
|
|
Signed-off-by: Bartlomiej Zolnierkiewicz <bartlomiej.zolnierkiewicz@canonical.com>
|
|
---
|
|
drivers/gpio/gpio-mmio.c | 9 ++++++++-
|
|
drivers/gpio/gpiolib.c | 34 ++++++++++++++++++++++++++++++++++
|
|
drivers/gpio/gpiolib.h | 1 +
|
|
3 files changed, 43 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpio/gpio-mmio.c b/drivers/gpio/gpio-mmio.c
|
|
index c335a0309..ababc4091 100644
|
|
--- a/drivers/gpio/gpio-mmio.c
|
|
+++ b/drivers/gpio/gpio-mmio.c
|
|
@@ -60,6 +60,8 @@ o ` ~~~~\___/~~~~ ` controller in FPGA is ,.`
|
|
#include <linux/of.h>
|
|
#include <linux/of_device.h>
|
|
|
|
+#include "gpiolib.h"
|
|
+
|
|
static void bgpio_write8(void __iomem *reg, unsigned long data)
|
|
{
|
|
writeb(data, reg);
|
|
@@ -614,10 +616,15 @@ int bgpio_init(struct gpio_chip *gc, struct device *dev,
|
|
gc->parent = dev;
|
|
gc->label = dev_name(dev);
|
|
gc->base = -1;
|
|
- gc->ngpio = gc->bgpio_bits;
|
|
gc->request = bgpio_request;
|
|
gc->be_bits = !!(flags & BGPIOF_BIG_ENDIAN);
|
|
|
|
+ ret = gpiochip_get_ngpios(gc, dev);
|
|
+ if (ret)
|
|
+ gc->ngpio = gc->bgpio_bits;
|
|
+ else
|
|
+ gc->bgpio_bits = roundup_pow_of_two(round_up(gc->ngpio, 8));
|
|
+
|
|
ret = bgpio_setup_io(gc, dat, set, clr, flags);
|
|
if (ret)
|
|
return ret;
|
|
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
|
|
index 3e01a3ac6..964f27f4d 100644
|
|
--- a/drivers/gpio/gpiolib.c
|
|
+++ b/drivers/gpio/gpiolib.c
|
|
@@ -550,6 +550,40 @@ static void machine_gpiochip_add(struct gpio_chip *gc)
|
|
mutex_unlock(&gpio_machine_hogs_mutex);
|
|
}
|
|
|
|
+int gpiochip_get_ngpios(struct gpio_chip *gc, struct device *dev)
|
|
+{
|
|
+ u32 ngpios = gc->ngpio;
|
|
+ int ret;
|
|
+
|
|
+ if (ngpios == 0) {
|
|
+ ret = device_property_read_u32(dev, "ngpios", &ngpios);
|
|
+ if (ret == -ENODATA)
|
|
+ /*
|
|
+ * -ENODATA means that there is no property found and
|
|
+ * we want to issue the error message to the user.
|
|
+ * Besides that, we want to return different error code
|
|
+ * to state that supplied value is not valid.
|
|
+ */
|
|
+ ngpios = 0;
|
|
+ else if (ret)
|
|
+ return ret;
|
|
+
|
|
+ gc->ngpio = ngpios;
|
|
+ }
|
|
+
|
|
+ if (gc->ngpio == 0) {
|
|
+ chip_err(gc, "tried to insert a GPIO chip with zero lines\n");
|
|
+ return -EINVAL;
|
|
+ }
|
|
+
|
|
+ if (gc->ngpio > FASTPATH_NGPIO)
|
|
+ chip_warn(gc, "line cnt %u is greater than fast path cnt %u\n",
|
|
+ gc->ngpio, FASTPATH_NGPIO);
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+EXPORT_SYMBOL_GPL(gpiochip_get_ngpios);
|
|
+
|
|
static void gpiochip_setup_devs(void)
|
|
{
|
|
struct gpio_device *gdev;
|
|
diff --git a/drivers/gpio/gpiolib.h b/drivers/gpio/gpiolib.h
|
|
index b674b5bb9..7c26a0060 100644
|
|
--- a/drivers/gpio/gpiolib.h
|
|
+++ b/drivers/gpio/gpiolib.h
|
|
@@ -136,6 +136,7 @@ int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
|
|
unsigned long lflags, enum gpiod_flags dflags);
|
|
int gpiod_hog(struct gpio_desc *desc, const char *name,
|
|
unsigned long lflags, enum gpiod_flags dflags);
|
|
+int gpiochip_get_ngpios(struct gpio_chip *gc, struct device *dev);
|
|
|
|
/*
|
|
* Return the GPIO number of the passed descriptor relative to its chip
|
|
--
|
|
2.14.1
|
|
|