netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/11] pull-request: can-next 2025-11-12
@ 2025-11-12  9:13 Marc Kleine-Budde
  2025-11-12  9:13 ` [PATCH net-next 01/11] can: convert generic HW timestamp ioctl to ndo_hwtstamp callbacks Marc Kleine-Budde
                   ` (11 more replies)
  0 siblings, 12 replies; 17+ messages in thread
From: Marc Kleine-Budde @ 2025-11-12  9:13 UTC (permalink / raw)
  To: netdev; +Cc: davem, kuba, linux-can, kernel

Hello netdev-team,

this is a pull request of 11 patches for net-next/main.

The first 3 patches are by Vadim Fedorenko and convert the CAN drivers
to use the ndo_hwtstamp callbacks.

Maud Spierings contributes a patch to the mcp251x driver that converts
it to use dev_err_probe()

The remaining patches target the mcp251xfd driver and are by Gregor
Herburger and me. They add GPIO controller functionality to the
driver.

regards,
Marc

---

The following changes since commit ea7d0d60ebc9bddf3ad768557dfa1495bc032bf6:

  Merge branch 'add-cn20k-nix-and-npa-contexts' (2025-10-30 10:44:12 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git tags/linux-can-next-for-6.19-20251112

for you to fetch changes up to 5bce93417a62b1da306a33f1e7ebb12bc915a80e:

  can: bxcan: Fix a typo error for assign (2025-11-12 09:48:07 +0100)

----------------------------------------------------------------
linux-can-next-for-6.19-20251112

----------------------------------------------------------------
Chu Guangqing (1):
      can: bxcan: Fix a typo error for assign

Gregor Herburger (5):
      can: mcp251xfd: utilize gather_write function for all non-CRC writes
      can: mcp251xfd: add workaround for errata 5
      can: mcp251xfd: only configure PIN1 when rx_int is set
      can: mcp251xfd: add gpio functionality
      dt-bindings: can: mcp251xfd: add gpio-controller property

Marc Kleine-Budde (3):
      Merge patch series "convert can drivers to use ndo_hwtstamp callbacks"
      can: mcp251xfd: move chip sleep mode into runtime pm
      Merge patch series "can: mcp251xfd: add gpio functionality"

Maud Spierings (1):
      can: mcp251x: mcp251x_can_probe(): use dev_err_probe()

Vadim Fedorenko (3):
      can: convert generic HW timestamp ioctl to ndo_hwtstamp callbacks
      can: peak_canfd: convert to use ndo_hwtstamp callbacks
      can: peak_usb: convert to use ndo_hwtstamp callbacks

 .../bindings/net/can/microchip,mcp251xfd.yaml      |   5 +
 drivers/net/can/bxcan.c                            |   2 +-
 drivers/net/can/dev/dev.c                          |  45 ++--
 drivers/net/can/esd/esd_402_pci-core.c             |   3 +-
 drivers/net/can/kvaser_pciefd/kvaser_pciefd_core.c |   3 +-
 drivers/net/can/peak_canfd/peak_canfd.c            |  35 ++-
 drivers/net/can/spi/mcp251x.c                      |  31 ++-
 drivers/net/can/spi/mcp251xfd/Kconfig              |   1 +
 drivers/net/can/spi/mcp251xfd/mcp251xfd-core.c     | 284 +++++++++++++++++----
 drivers/net/can/spi/mcp251xfd/mcp251xfd-regmap.c   | 114 +++++++--
 drivers/net/can/spi/mcp251xfd/mcp251xfd.h          |   8 +
 drivers/net/can/usb/etas_es58x/es58x_core.c        |   3 +-
 drivers/net/can/usb/gs_usb.c                       |  20 +-
 drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c   |   3 +-
 drivers/net/can/usb/peak_usb/pcan_usb_core.c       |  35 ++-
 include/linux/can/dev.h                            |   6 +-
 16 files changed, 446 insertions(+), 152 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH net-next 0/11] pull-request: can-next 2025-11-12
@ 2025-11-12 18:40 Marc Kleine-Budde
  2025-11-12 18:40 ` [PATCH net-next 07/11] can: mcp251xfd: add workaround for errata 5 Marc Kleine-Budde
  0 siblings, 1 reply; 17+ messages in thread
From: Marc Kleine-Budde @ 2025-11-12 18:40 UTC (permalink / raw)
  To: netdev; +Cc: davem, kuba, linux-can, kernel

Hello netdev-team,

this is a pull request of 11 patches for net-next/main.

The first 3 patches are by Vadim Fedorenko and convert the CAN drivers
to use the ndo_hwtstamp callbacks.

Maud Spierings contributes a patch for the mcp251x driver that
converts it to use dev_err_probe().

The next 6 patches target the mcp251xfd driver and are by Gregor
Herburger and me. They add GPIO controller functionality to the
driver.

The final patch is by Chu Guangqing and fixes a typo in the bxcan
driver.

regards,
Marc

---

The following changes since commit ea7d0d60ebc9bddf3ad768557dfa1495bc032bf6:

  Merge branch 'add-cn20k-nix-and-npa-contexts' (2025-10-30 10:44:12 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git tags/linux-can-next-for-6.19-20251112-2

for you to fetch changes up to b305fbdad4ed7e66b5b3f76b15f71d05fa6af212:

  can: bxcan: Fix a typo error for assign (2025-11-12 19:30:59 +0100)

----------------------------------------------------------------
linux-can-next-for-6.19-20251112-2

----------------------------------------------------------------
Chu Guangqing (1):
      can: bxcan: Fix a typo error for assign

Gregor Herburger (5):
      can: mcp251xfd: utilize gather_write function for all non-CRC writes
      can: mcp251xfd: add workaround for errata 5
      can: mcp251xfd: only configure PIN1 when rx_int is set
      can: mcp251xfd: add gpio functionality
      dt-bindings: can: mcp251xfd: add gpio-controller property

Marc Kleine-Budde (3):
      Merge patch series "convert can drivers to use ndo_hwtstamp callbacks"
      can: mcp251xfd: move chip sleep mode into runtime pm
      Merge patch series "can: mcp251xfd: add gpio functionality"

Maud Spierings (1):
      can: mcp251x: mcp251x_can_probe(): use dev_err_probe()

Vadim Fedorenko (3):
      can: convert generic HW timestamp ioctl to ndo_hwtstamp callbacks
      can: peak_canfd: convert to use ndo_hwtstamp callbacks
      can: peak_usb: convert to use ndo_hwtstamp callbacks

 .../bindings/net/can/microchip,mcp251xfd.yaml      |   5 +
 drivers/net/can/bxcan.c                            |   2 +-
 drivers/net/can/dev/dev.c                          |  45 ++--
 drivers/net/can/esd/esd_402_pci-core.c             |   3 +-
 drivers/net/can/kvaser_pciefd/kvaser_pciefd_core.c |   3 +-
 drivers/net/can/peak_canfd/peak_canfd.c            |  35 ++-
 drivers/net/can/spi/mcp251x.c                      |  31 ++-
 drivers/net/can/spi/mcp251xfd/Kconfig              |   1 +
 drivers/net/can/spi/mcp251xfd/mcp251xfd-core.c     | 284 +++++++++++++++++----
 drivers/net/can/spi/mcp251xfd/mcp251xfd-regmap.c   | 114 +++++++--
 drivers/net/can/spi/mcp251xfd/mcp251xfd.h          |   8 +
 drivers/net/can/usb/etas_es58x/es58x_core.c        |   3 +-
 drivers/net/can/usb/gs_usb.c                       |  20 +-
 drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c   |   3 +-
 drivers/net/can/usb/peak_usb/pcan_usb_core.c       |  35 ++-
 include/linux/can/dev.h                            |   6 +-
 16 files changed, 446 insertions(+), 152 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-11-12 18:45 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-12  9:13 [PATCH net-next 0/11] pull-request: can-next 2025-11-12 Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 01/11] can: convert generic HW timestamp ioctl to ndo_hwtstamp callbacks Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 02/11] can: peak_canfd: convert to use " Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 03/11] can: peak_usb: " Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 04/11] can: mcp251x: mcp251x_can_probe(): use dev_err_probe() Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 05/11] can: mcp251xfd: move chip sleep mode into runtime pm Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 06/11] can: mcp251xfd: utilize gather_write function for all non-CRC writes Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 07/11] can: mcp251xfd: add workaround for errata 5 Marc Kleine-Budde
2025-11-12 17:28   ` Jakub Kicinski
2025-11-12 18:17     ` Marc Kleine-Budde
2025-11-12 18:45       ` Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 08/11] can: mcp251xfd: only configure PIN1 when rx_int is set Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 09/11] can: mcp251xfd: add gpio functionality Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 10/11] dt-bindings: can: mcp251xfd: add gpio-controller property Marc Kleine-Budde
2025-11-12  9:13 ` [PATCH net-next 11/11] can: bxcan: Fix a typo error for assign Marc Kleine-Budde
2025-11-12  9:36 ` [PATCH net-next 0/11] pull-request: can-next 2025-11-12 Marc Kleine-Budde
  -- strict thread matches above, loose matches on Subject: below --
2025-11-12 18:40 Marc Kleine-Budde
2025-11-12 18:40 ` [PATCH net-next 07/11] can: mcp251xfd: add workaround for errata 5 Marc Kleine-Budde

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).