Hello netdev-team, this is a pull request of 9 patches for net-next/master. The first patch is by Francesco Dolcini and removes a redundant check for pm_clock_support from the m_can driver. Martin Hundebøll contributes 3 patches to the m_can/tcan4x5x driver to allow resume upon RX of a CAN frame. 3 patches by Srinivas Goud add support for ECC statistics to the xilinx_can driver. The last 2 patches are by Oliver Hartkopp and me, target the CAN RAW protocol and fix an error in the getsockopt() for CAN-XL introduced in the previous pull request to net-next (linux-can-next-for-6.9-20240213). regards, Marc --- The following changes since commit e1a00373e1305578cd09526aa056940409e6b877: Merge tag 'linux-can-next-for-6.9-20240213' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next (2024-02-14 10:00:35 +0000) 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.9-20240220 for you to fetch changes up to 00bf80c437dcbbd808d61cc2866c8f065ff436bd: can: raw: raw_getsockopt(): reduce scope of err (2024-02-20 09:40:46 +0100) ---------------------------------------------------------------- linux-can-next-for-6.9-20240220 ---------------------------------------------------------------- Francesco Dolcini (1): can: m_can: remove redundant check for pm_clock_support Marc Kleine-Budde (3): Merge patch series "can: tcan4x5x: support resume upon rx can frame" Merge patch series "Add ECC feature support to Tx and Rx FIFOs for Xilinx CAN Controller." can: raw: raw_getsockopt(): reduce scope of err Martin Hundebøll (3): dt-bindings: can: tcan4x5x: Document the wakeup-source flag can: m_can: allow keeping the transceiver running in suspend can: tcan4x5x: support resuming from rx interrupt signal Oliver Hartkopp (1): can: raw: fix getsockopt() for new CAN_RAW_XL_VCID_OPTS Srinivas Goud (3): dt-bindings: can: xilinx_can: Add 'xlnx,has-ecc' optional property can: xilinx_can: Add ECC support can: xilinx_can: Add ethtool stats interface for ECC errors .../devicetree/bindings/net/can/tcan4x5x.txt | 3 + .../devicetree/bindings/net/can/xilinx,can.yaml | 5 + drivers/net/can/m_can/m_can.c | 30 ++-- drivers/net/can/m_can/m_can.h | 1 + drivers/net/can/m_can/m_can_pci.c | 1 + drivers/net/can/m_can/m_can_platform.c | 1 + drivers/net/can/m_can/tcan4x5x-core.c | 33 +++- drivers/net/can/xilinx_can.c | 169 ++++++++++++++++++++- net/can/raw.c | 17 ++- 9 files changed, 239 insertions(+), 21 deletions(-)