* [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion
@ 2025-03-05 10:55 Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 1/4] ieee802154: ca8210: Use proper setters and getters for bitwise types Andy Shevchenko
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Andy Shevchenko @ 2025-03-05 10:55 UTC (permalink / raw)
To: Andy Shevchenko, Miquel Raynal, Linus Walleij, linux-wpan, netdev,
devicetree, linux-kernel, linux-gpio
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Bartosz Golaszewski, Alexander Aring, Stefan Schmidt
The main part is the patch 3 that converts the driver to GPIO descriptor APIs,
the first one is just an ad-hoc fix WRT sparse complains on the bitwise
types misuse. The second one is a small cleanup that helps patch 3 to be nicer.
In v4:
- split DT patch (Krzysztof)
- collected tags (Miquel)
In v3:
- inverted polarity of the reset line in accordance with datasheet (Linus)
- added quirk for the out-of-tree admittedly wrong DTS implementations
- collected tags (Linus)
In v2:
- split and extended cleanup pieces into patch 2 (Miquel)
- updated kernel doc for changed members (Miquel)
- unfolded PTR_ERR_OR_ZERO() to the preferred pattern (Miquel)
- collected tags (Miquel)
Andy Shevchenko (4):
ieee802154: ca8210: Use proper setters and getters for bitwise types
ieee802154: ca8210: Get platform data via dev_get_platdata()
ieee802154: ca8210: Switch to using gpiod API
dt-bindings: ieee802154: ca8210: Update polarity of the reset pin
.../bindings/net/ieee802154/ca8210.txt | 2 +-
drivers/gpio/gpiolib-of.c | 9 +++
drivers/net/ieee802154/ca8210.c | 78 ++++++++-----------
3 files changed, 41 insertions(+), 48 deletions(-)
--
2.47.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH net-next v4 1/4] ieee802154: ca8210: Use proper setters and getters for bitwise types
2025-03-05 10:55 [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Andy Shevchenko
@ 2025-03-05 10:55 ` Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 2/4] ieee802154: ca8210: Get platform data via dev_get_platdata() Andy Shevchenko
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Andy Shevchenko @ 2025-03-05 10:55 UTC (permalink / raw)
To: Andy Shevchenko, Miquel Raynal, Linus Walleij, linux-wpan, netdev,
devicetree, linux-kernel, linux-gpio
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Bartosz Golaszewski, Alexander Aring, Stefan Schmidt
Sparse complains that the driver doesn't respect the bitwise types:
drivers/net/ieee802154/ca8210.c:1796:27: warning: incorrect type in assignment (different base types)
drivers/net/ieee802154/ca8210.c:1796:27: expected restricted __le16 [addressable] [assigned] [usertype] pan_id
drivers/net/ieee802154/ca8210.c:1796:27: got unsigned short [usertype]
drivers/net/ieee802154/ca8210.c:1801:25: warning: incorrect type in assignment (different base types)
drivers/net/ieee802154/ca8210.c:1801:25: expected restricted __le16 [addressable] [assigned] [usertype] pan_id
drivers/net/ieee802154/ca8210.c:1801:25: got unsigned short [usertype]
drivers/net/ieee802154/ca8210.c:1928:28: warning: incorrect type in argument 3 (different base types)
drivers/net/ieee802154/ca8210.c:1928:28: expected unsigned short [usertype] dst_pan_id
drivers/net/ieee802154/ca8210.c:1928:28: got restricted __le16 [addressable] [usertype] pan_id
Use proper setters and getters for bitwise types.
Note, in accordance with [1] the protocol is little endian.
Link: https://www.cascoda.com/wp-content/uploads/2018/11/CA-8210_datasheet_0418.pdf [1]
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/net/ieee802154/ca8210.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
index 753215ebc67c..a036910f6082 100644
--- a/drivers/net/ieee802154/ca8210.c
+++ b/drivers/net/ieee802154/ca8210.c
@@ -1446,8 +1446,7 @@ static u8 mcps_data_request(
command.pdata.data_req.src_addr_mode = src_addr_mode;
command.pdata.data_req.dst.mode = dst_address_mode;
if (dst_address_mode != MAC_MODE_NO_ADDR) {
- command.pdata.data_req.dst.pan_id[0] = LS_BYTE(dst_pan_id);
- command.pdata.data_req.dst.pan_id[1] = MS_BYTE(dst_pan_id);
+ put_unaligned_le16(dst_pan_id, command.pdata.data_req.dst.pan_id);
if (dst_address_mode == MAC_MODE_SHORT_ADDR) {
command.pdata.data_req.dst.address[0] = LS_BYTE(
dst_addr->short_address
@@ -1795,12 +1794,12 @@ static int ca8210_skb_rx(
}
hdr.source.mode = data_ind[0];
dev_dbg(&priv->spi->dev, "srcAddrMode: %#03x\n", hdr.source.mode);
- hdr.source.pan_id = *(u16 *)&data_ind[1];
+ hdr.source.pan_id = cpu_to_le16(get_unaligned_le16(&data_ind[1]));
dev_dbg(&priv->spi->dev, "srcPanId: %#06x\n", hdr.source.pan_id);
memcpy(&hdr.source.extended_addr, &data_ind[3], 8);
hdr.dest.mode = data_ind[11];
dev_dbg(&priv->spi->dev, "dstAddrMode: %#03x\n", hdr.dest.mode);
- hdr.dest.pan_id = *(u16 *)&data_ind[12];
+ hdr.dest.pan_id = cpu_to_le16(get_unaligned_le16(&data_ind[12]));
dev_dbg(&priv->spi->dev, "dstPanId: %#06x\n", hdr.dest.pan_id);
memcpy(&hdr.dest.extended_addr, &data_ind[14], 8);
@@ -1927,7 +1926,7 @@ static int ca8210_skb_tx(
status = mcps_data_request(
header.source.mode,
header.dest.mode,
- header.dest.pan_id,
+ le16_to_cpu(header.dest.pan_id),
(union macaddr *)&header.dest.extended_addr,
skb->len - mac_len,
&skb->data[mac_len],
--
2.47.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH net-next v4 2/4] ieee802154: ca8210: Get platform data via dev_get_platdata()
2025-03-05 10:55 [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 1/4] ieee802154: ca8210: Use proper setters and getters for bitwise types Andy Shevchenko
@ 2025-03-05 10:55 ` Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 3/4] ieee802154: ca8210: Switch to using gpiod API Andy Shevchenko
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Andy Shevchenko @ 2025-03-05 10:55 UTC (permalink / raw)
To: Andy Shevchenko, Miquel Raynal, Linus Walleij, linux-wpan, netdev,
devicetree, linux-kernel, linux-gpio
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Bartosz Golaszewski, Alexander Aring, Stefan Schmidt
Access to platform data via dev_get_platdata() getter to make code cleaner.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/net/ieee802154/ca8210.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
index a036910f6082..65f042c8734b 100644
--- a/drivers/net/ieee802154/ca8210.c
+++ b/drivers/net/ieee802154/ca8210.c
@@ -627,7 +627,8 @@ static int ca8210_spi_transfer(
*/
static void ca8210_reset_send(struct spi_device *spi, unsigned int ms)
{
- struct ca8210_platform_data *pdata = spi->dev.platform_data;
+ struct device *dev = &spi->dev;
+ struct ca8210_platform_data *pdata = dev_get_platdata(dev);
struct ca8210_priv *priv = spi_get_drvdata(spi);
long status;
@@ -2736,9 +2737,10 @@ static int ca8210_config_extern_clk(
*/
static int ca8210_register_ext_clock(struct spi_device *spi)
{
+ struct device *dev = &spi->dev;
+ struct ca8210_platform_data *pdata = dev_get_platdata(dev);
struct device_node *np = spi->dev.of_node;
struct ca8210_priv *priv = spi_get_drvdata(spi);
- struct ca8210_platform_data *pdata = spi->dev.platform_data;
if (!np)
return -EFAULT;
@@ -2784,8 +2786,9 @@ static void ca8210_unregister_ext_clock(struct spi_device *spi)
*/
static int ca8210_reset_init(struct spi_device *spi)
{
+ struct device *dev = &spi->dev;
+ struct ca8210_platform_data *pdata = dev_get_platdata(dev);
int ret;
- struct ca8210_platform_data *pdata = spi->dev.platform_data;
pdata->gpio_reset = of_get_named_gpio(
spi->dev.of_node,
@@ -2813,8 +2816,9 @@ static int ca8210_reset_init(struct spi_device *spi)
*/
static int ca8210_interrupt_init(struct spi_device *spi)
{
+ struct device *dev = &spi->dev;
+ struct ca8210_platform_data *pdata = dev_get_platdata(dev);
int ret;
- struct ca8210_platform_data *pdata = spi->dev.platform_data;
pdata->gpio_irq = of_get_named_gpio(
spi->dev.of_node,
--
2.47.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH net-next v4 3/4] ieee802154: ca8210: Switch to using gpiod API
2025-03-05 10:55 [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 1/4] ieee802154: ca8210: Use proper setters and getters for bitwise types Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 2/4] ieee802154: ca8210: Get platform data via dev_get_platdata() Andy Shevchenko
@ 2025-03-05 10:55 ` Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 4/4] dt-bindings: ieee802154: ca8210: Update polarity of the reset pin Andy Shevchenko
2025-03-06 21:05 ` [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Stefan Schmidt
4 siblings, 0 replies; 7+ messages in thread
From: Andy Shevchenko @ 2025-03-05 10:55 UTC (permalink / raw)
To: Andy Shevchenko, Miquel Raynal, Linus Walleij, linux-wpan, netdev,
devicetree, linux-kernel, linux-gpio
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Bartosz Golaszewski, Alexander Aring, Stefan Schmidt
This updates the driver to gpiod API, and removes yet another use of
of_get_named_gpio().
With this, invert the logic of the reset pin which is active-low
and add a quirk for the legacy and incorrect device tree descriptions.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/gpio/gpiolib-of.c | 9 ++++++
drivers/net/ieee802154/ca8210.c | 57 +++++++++++----------------------
2 files changed, 28 insertions(+), 38 deletions(-)
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
index a7370fa48556..280d56736844 100644
--- a/drivers/gpio/gpiolib-of.c
+++ b/drivers/gpio/gpiolib-of.c
@@ -203,6 +203,15 @@ static void of_gpio_try_fixup_polarity(const struct device_node *np,
*/
{ "qi,lb60", "rb-gpios", true },
#endif
+#if IS_ENABLED(CONFIG_IEEE802154_CA8210)
+ /*
+ * According to the datasheet, the NRST pin 27 is an active-low
+ * signal. However, the device tree schema and admittedly
+ * the out-of-tree implementations have been used for a long
+ * time incorrectly by describing reset GPIO as active-high.
+ */
+ { "cascoda,ca8210", "reset-gpio", false },
+#endif
#if IS_ENABLED(CONFIG_PCI_LANTIQ)
/*
* According to the PCI specification, the RST# pin is an
diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
index 65f042c8734b..ebc4f1b18e7b 100644
--- a/drivers/net/ieee802154/ca8210.c
+++ b/drivers/net/ieee802154/ca8210.c
@@ -52,12 +52,10 @@
#include <linux/debugfs.h>
#include <linux/delay.h>
#include <linux/gpio/consumer.h>
-#include <linux/gpio.h>
#include <linux/ieee802154.h>
#include <linux/io.h>
#include <linux/kfifo.h>
#include <linux/of.h>
-#include <linux/of_gpio.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/poll.h>
@@ -350,8 +348,8 @@ struct work_priv_container {
* @extclockenable: true if the external clock is to be enabled
* @extclockfreq: frequency of the external clock
* @extclockgpio: ca8210 output gpio of the external clock
- * @gpio_reset: gpio number of ca8210 reset line
- * @gpio_irq: gpio number of ca8210 interrupt line
+ * @reset_gpio: ca8210 reset GPIO descriptor
+ * @irq_gpio: ca8210 interrupt GPIO descriptor
* @irq_id: identifier for the ca8210 irq
*
*/
@@ -359,8 +357,8 @@ struct ca8210_platform_data {
bool extclockenable;
unsigned int extclockfreq;
unsigned int extclockgpio;
- int gpio_reset;
- int gpio_irq;
+ struct gpio_desc *reset_gpio;
+ struct gpio_desc *irq_gpio;
int irq_id;
};
@@ -632,10 +630,10 @@ static void ca8210_reset_send(struct spi_device *spi, unsigned int ms)
struct ca8210_priv *priv = spi_get_drvdata(spi);
long status;
- gpio_set_value(pdata->gpio_reset, 0);
+ gpiod_set_value(pdata->reset_gpio, 1);
reinit_completion(&priv->ca8210_is_awake);
msleep(ms);
- gpio_set_value(pdata->gpio_reset, 1);
+ gpiod_set_value(pdata->reset_gpio, 0);
priv->promiscuous = false;
/* Wait until wakeup indication seen */
@@ -2788,24 +2786,14 @@ static int ca8210_reset_init(struct spi_device *spi)
{
struct device *dev = &spi->dev;
struct ca8210_platform_data *pdata = dev_get_platdata(dev);
- int ret;
- pdata->gpio_reset = of_get_named_gpio(
- spi->dev.of_node,
- "reset-gpio",
- 0
- );
-
- ret = gpio_direction_output(pdata->gpio_reset, 1);
- if (ret < 0) {
- dev_crit(
- &spi->dev,
- "Reset GPIO %d did not set to output mode\n",
- pdata->gpio_reset
- );
+ pdata->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW);
+ if (IS_ERR(pdata->reset_gpio)) {
+ dev_crit(dev, "Reset GPIO did not set to output mode\n");
+ return PTR_ERR(pdata->reset_gpio);
}
- return ret;
+ return 0;
}
/**
@@ -2820,20 +2808,15 @@ static int ca8210_interrupt_init(struct spi_device *spi)
struct ca8210_platform_data *pdata = dev_get_platdata(dev);
int ret;
- pdata->gpio_irq = of_get_named_gpio(
- spi->dev.of_node,
- "irq-gpio",
- 0
- );
+ pdata->irq_gpio = devm_gpiod_get(dev, "irq", GPIOD_IN);
+ if (IS_ERR(pdata->irq_gpio)) {
+ dev_crit(dev, "Could not retrieve IRQ GPIO\n");
+ return PTR_ERR(pdata->irq_gpio);
+ }
- pdata->irq_id = gpio_to_irq(pdata->gpio_irq);
+ pdata->irq_id = gpiod_to_irq(pdata->irq_gpio);
if (pdata->irq_id < 0) {
- dev_crit(
- &spi->dev,
- "Could not get irq for gpio pin %d\n",
- pdata->gpio_irq
- );
- gpio_free(pdata->gpio_irq);
+ dev_crit(dev, "Could not get irq for IRQ GPIO\n");
return pdata->irq_id;
}
@@ -2844,10 +2827,8 @@ static int ca8210_interrupt_init(struct spi_device *spi)
"ca8210-irq",
spi_get_drvdata(spi)
);
- if (ret) {
+ if (ret)
dev_crit(&spi->dev, "request_irq %d failed\n", pdata->irq_id);
- gpio_free(pdata->gpio_irq);
- }
return ret;
}
--
2.47.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH net-next v4 4/4] dt-bindings: ieee802154: ca8210: Update polarity of the reset pin
2025-03-05 10:55 [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Andy Shevchenko
` (2 preceding siblings ...)
2025-03-05 10:55 ` [PATCH net-next v4 3/4] ieee802154: ca8210: Switch to using gpiod API Andy Shevchenko
@ 2025-03-05 10:55 ` Andy Shevchenko
2025-03-05 16:27 ` Conor Dooley
2025-03-06 21:05 ` [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Stefan Schmidt
4 siblings, 1 reply; 7+ messages in thread
From: Andy Shevchenko @ 2025-03-05 10:55 UTC (permalink / raw)
To: Andy Shevchenko, Miquel Raynal, Linus Walleij, linux-wpan, netdev,
devicetree, linux-kernel, linux-gpio
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Bartosz Golaszewski, Alexander Aring, Stefan Schmidt
The code has been updated to follow what datasheet says about
the polarity of the reset pin, which is active-low. Update
the device tree bindings accordingly.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
Documentation/devicetree/bindings/net/ieee802154/ca8210.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt b/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
index a1046e636fa1..f1bd07a0097d 100644
--- a/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
+++ b/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
@@ -20,7 +20,7 @@ Example:
reg = <0>;
spi-max-frequency = <3000000>;
spi-cpol;
- reset-gpio = <&gpio1 1 GPIO_ACTIVE_HIGH>;
+ reset-gpio = <&gpio1 1 GPIO_ACTIVE_LOW>;
irq-gpio = <&gpio1 2 GPIO_ACTIVE_HIGH>;
extclock-enable;
extclock-freq = 16000000;
--
2.47.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v4 4/4] dt-bindings: ieee802154: ca8210: Update polarity of the reset pin
2025-03-05 10:55 ` [PATCH net-next v4 4/4] dt-bindings: ieee802154: ca8210: Update polarity of the reset pin Andy Shevchenko
@ 2025-03-05 16:27 ` Conor Dooley
0 siblings, 0 replies; 7+ messages in thread
From: Conor Dooley @ 2025-03-05 16:27 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Miquel Raynal, Linus Walleij, linux-wpan, netdev, devicetree,
linux-kernel, linux-gpio, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Bartosz Golaszewski,
Alexander Aring, Stefan Schmidt
[-- Attachment #1: Type: text/plain, Size: 1133 bytes --]
On Wed, Mar 05, 2025 at 12:55:37PM +0200, Andy Shevchenko wrote:
> The code has been updated to follow what datasheet says about
> the polarity of the reset pin, which is active-low. Update
> the device tree bindings accordingly.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> Documentation/devicetree/bindings/net/ieee802154/ca8210.txt | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt b/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
> index a1046e636fa1..f1bd07a0097d 100644
> --- a/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
> +++ b/Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
> @@ -20,7 +20,7 @@ Example:
> reg = <0>;
> spi-max-frequency = <3000000>;
> spi-cpol;
> - reset-gpio = <&gpio1 1 GPIO_ACTIVE_HIGH>;
> + reset-gpio = <&gpio1 1 GPIO_ACTIVE_LOW>;
Acked-by: Conor Dooley <conor.dooley@microchip.com>
> irq-gpio = <&gpio1 2 GPIO_ACTIVE_HIGH>;
> extclock-enable;
> extclock-freq = 16000000;
> --
> 2.47.2
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion
2025-03-05 10:55 [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Andy Shevchenko
` (3 preceding siblings ...)
2025-03-05 10:55 ` [PATCH net-next v4 4/4] dt-bindings: ieee802154: ca8210: Update polarity of the reset pin Andy Shevchenko
@ 2025-03-06 21:05 ` Stefan Schmidt
4 siblings, 0 replies; 7+ messages in thread
From: Stefan Schmidt @ 2025-03-06 21:05 UTC (permalink / raw)
To: Miquel Raynal, Linus Walleij, linux-wpan, netdev, devicetree,
linux-kernel, linux-gpio, Andy Shevchenko
Cc: Stefan Schmidt, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Bartosz Golaszewski, Alexander Aring
Hello Andy Shevchenko.
On Wed, 05 Mar 2025 12:55:33 +0200, Andy Shevchenko wrote:
> The main part is the patch 3 that converts the driver to GPIO descriptor APIs,
> the first one is just an ad-hoc fix WRT sparse complains on the bitwise
> types misuse. The second one is a small cleanup that helps patch 3 to be nicer.
>
> In v4:
> - split DT patch (Krzysztof)
> - collected tags (Miquel)
>
> [...]
Applied to wpan/wpan-next.git, thanks!
[1/4] ieee802154: ca8210: Use proper setters and getters for bitwise types
https://git.kernel.org/wpan/wpan-next/c/169b22622058
[2/4] ieee802154: ca8210: Get platform data via dev_get_platdata()
https://git.kernel.org/wpan/wpan-next/c/0a3e89b06d36
[3/4] ieee802154: ca8210: Switch to using gpiod API
https://git.kernel.org/wpan/wpan-next/c/20629a48d50a
[4/4] dt-bindings: ieee802154: ca8210: Update polarity of the reset pin
https://git.kernel.org/wpan/wpan-next/c/a5d4d993fac4
regards,
Stefan Schmidt
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-03-06 21:15 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-05 10:55 [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 1/4] ieee802154: ca8210: Use proper setters and getters for bitwise types Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 2/4] ieee802154: ca8210: Get platform data via dev_get_platdata() Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 3/4] ieee802154: ca8210: Switch to using gpiod API Andy Shevchenko
2025-03-05 10:55 ` [PATCH net-next v4 4/4] dt-bindings: ieee802154: ca8210: Update polarity of the reset pin Andy Shevchenko
2025-03-05 16:27 ` Conor Dooley
2025-03-06 21:05 ` [PATCH net-next v4 0/4] ieee802154: ca8210: Sparse fix and GPIOd conversion Stefan Schmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).