Netdev List
 help / color / mirror / Atom feed
* [PATCH net-next 0/11] pull-request: can-next 2026-08-18
@ 2026-08-17 23:24 Marc Kleine-Budde
  2026-08-17 23:24 ` [PATCH net-next 01/11] can: tcan4x5x: put tcan into sleep when removing driver Marc Kleine-Budde
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: Marc Kleine-Budde @ 2026-08-17 23:24 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 patch is by Sean Nyekjaer, targets the tcan4x5x driver and
puts the device into sleep mode before removing the driver.

Pavel Pisa's patch fixes the colors in the documentation of the TX
buffer FSM of CTU CAN FD driver.

2 patches by Cunhao Lu add support for the rockchip 3588 SoC to the
rockchip CAN-FD driver.

Kuniyuki Iwashima contributes per-netns device unregistration for the
vxcan driver.

Eduard Bostina converts the TI HECC DT bindings doc to DT schema.

Harini T contributes 2 patches to the xilinx_can driver to document
phys and update maintainer.

A patch by bui duc phuc converts the m_can driver to use
of_property_present() for wakeup-source.

Fanbo He's patch fixes a typo in the gs_usb driver.

The last patch is by Markus Schneider-Pargmann and removed not needed
driver_data from the m_can PCI driver.

regards,
Marc

---

The following changes since commit e6a5d573d24cd375e09d24f136523cb3cc85c9d3:

  net: dsa: drop explicit NULL comparisons (2026-08-14 13:57:27 -0700)

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-7.3-20260818

for you to fetch changes up to f6a48a7b10be44c470f5ce1037ebaaf343f384f7:

  can: m_can: pci: Remove driver_data (2026-08-17 19:20:38 +0200)

----------------------------------------------------------------
linux-can-next-for-7.3-20260818

----------------------------------------------------------------
Cunhao Lu (2):
      dt-bindings: can: rockchip: add rk3588 CAN-FD compatible
      can: rockchip: add RK3588 CAN support

Eduard Bostina (1):
      dt-bindings: net: can: Convert TI HECC to DT schema

Fanbo He (1):
      drivers: gs_usb: gs_usb_probe(): fix typo in error message

Harini T (2):
      MAINTAINERS: Replace maintainer for Xilinx CAN driver
      dt-bindings: can: xilinx_can: Document phys property

Kuniyuki Iwashima (1):
      can: vxcan: support per-netns device unregistration.

Marc Kleine-Budde (2):
      Merge patch series "dt-bindings: can: rockchip: add rk3588 CAN-FD compatible"
      Merge patch series "dt-bindings: can: xilinx_can: Document phys and update maintainer"

Markus Schneider-Pargmann (The Capable Hub) (1):
      can: m_can: pci: Remove driver_data

Pavel Pisa (1):
      docs: ctucanfd: fix swapped colors in legend for TX buffer FSM of CTU CAN FD

Sean Nyekjaer (1):
      can: tcan4x5x: put tcan into sleep when removing driver

bui duc phuc (1):
      can: m_can: Use of_property_present() for wakeup-source

 .../bindings/net/can/rockchip,rk3568v2-canfd.yaml  |  4 +-
 .../bindings/net/can/ti,am3517-hecc.yaml           | 64 ++++++++++++++++++++++
 .../devicetree/bindings/net/can/ti_hecc.txt        | 32 -----------
 .../devicetree/bindings/net/can/xilinx,can.yaml    |  5 +-
 .../device_drivers/can/ctu/fsm_txt_buffer_user.svg |  4 +-
 MAINTAINERS                                        |  2 +-
 drivers/net/can/m_can/m_can.c                      |  2 +-
 drivers/net/can/m_can/m_can_pci.c                  |  6 +-
 drivers/net/can/m_can/tcan4x5x-core.c              | 31 +++++++++--
 drivers/net/can/rockchip/rockchip_canfd-core.c     | 17 ++++++
 drivers/net/can/rockchip/rockchip_canfd-rx.c       |  5 +-
 drivers/net/can/rockchip/rockchip_canfd.h          | 14 ++++-
 drivers/net/can/usb/gs_usb.c                       |  2 +-
 drivers/net/can/vxcan.c                            | 26 +++++----
 14 files changed, 155 insertions(+), 59 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/can/ti,am3517-hecc.yaml
 delete mode 100644 Documentation/devicetree/bindings/net/can/ti_hecc.txt


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

end of thread, other threads:[~2026-08-18 18:42 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-17 23:24 [PATCH net-next 0/11] pull-request: can-next 2026-08-18 Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 01/11] can: tcan4x5x: put tcan into sleep when removing driver Marc Kleine-Budde
2026-08-18 18:37   ` patchwork-bot+netdevbpf
2026-08-18 18:41   ` patchwork-bot+netdevbpf
2026-08-17 23:24 ` [PATCH net-next 02/11] dt-bindings: can: rockchip: add rk3588 CAN-FD compatible Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 03/11] can: rockchip: add RK3588 CAN support Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 04/11] docs: ctucanfd: fix swapped colors in legend for TX buffer FSM of CTU CAN FD Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 05/11] can: vxcan: support per-netns device unregistration Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 06/11] MAINTAINERS: Replace maintainer for Xilinx CAN driver Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 07/11] dt-bindings: net: can: Convert TI HECC to DT schema Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 08/11] dt-bindings: can: xilinx_can: Document phys property Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 09/11] can: m_can: Use of_property_present() for wakeup-source Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 10/11] drivers: gs_usb: gs_usb_probe(): fix typo in error message Marc Kleine-Budde
2026-08-17 23:24 ` [PATCH net-next 11/11] can: m_can: pci: Remove driver_data 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