Hello Jakub, hello David, this is a pull request of 36 patches for net-next/master. The first 5 patches are by me and update various CAN DT bindings. Eric Dumazet's patch for the CAN GW replaces a costly synchronize_rcu() by a call_rcu(). The next 2 patches by me enhance the CAN bit rate handling, the bit rate checking is simplified and the arguments and local variables of functions are marked as const. A patch by me for the kvaser_usb driver removes a redundant variable. The next patch by me lets the c_can driver use the default ethtool drvinfo. Minghao Chi's patch for the softing driver removes a redundant variable. Srinivas Neeli contributes an enhancement for the xilinx_can NAPI poll function. Vincent Mailhol's patch for the etas_es58x driver converts to BITS_PER_TYPE() from of manual calculation. The next 23 patches target the mcp251xfd driver and are by me. The first 15 patches, add support for the internal PLL, which includes simplifying runtime PM handling, better chip detection and error handling after wakeup, and the PLL handling. The last 8 patches prepare the driver to support multiple RX-FIFOs and runtime configurable RX/TX rings. The actual runtime ring configuration via ethtool will be added in a later patch series. regards, Marc --- The following changes since commit e422eef268baa0d08f969d1330f13929a7efc138: Merge branch 'add-ethtool-support-for-completion-queue-event-size' (2022-02-23 20:33:16 -0800) 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-5.18-20220224 for you to fetch changes up to aada74220f0076a2f76392806224ca385fae536a: can: mcp251xfd: mcp251xfd_priv: introduce macros specifying the number of supported TEF/RX/TX rings (2022-02-24 08:47:00 +0100) ---------------------------------------------------------------- linux-can-next-for-5.18-20220224 ---------------------------------------------------------------- Eric Dumazet (1): can: gw: use call_rcu() instead of costly synchronize_rcu() Marc Kleine-Budde (32): dt-binding: can: mcp251xfd: include common CAN controller bindings dt-binding: can: sun4i_can: include common CAN controller bindings dt-binding: can: m_can: list Chandrasekar Ramakrishnan as maintainer dt-binding: can: m_can: fix indention of table in bosch,mram-cfg description dt-binding: can: m_can: include common CAN controller bindings can: bittiming: can_validate_bitrate(): simplify bit rate checking can: bittiming: mark function arguments and local variables as const can: kvaser_usb: kvaser_usb_send_cmd(): remove redundant variable actual_len can: c_can: ethtool: use default drvinfo can: mcp251xfd: mcp251xfd_reg_invalid(): rename from mcp251xfd_osc_invalid() can: mcp251xfd: mcp251xfd_regmap_crc_read(): ignore CRC error only if solely OSC register is read can: mcp251xfd: mcp251xfd_unregister(): simplify runtime PM handling can: mcp251xfd: mcp251xfd_chip_sleep(): introduce function to bring chip into sleep mode can: mcp251xfd: mcp251xfd_chip_stop(): convert to a void function can: mcp251xfd: mcp251xfd_chip_wait_for_osc_ready(): factor out into separate function can: mcp251xfd: mcp251xfd_chip_wait_for_osc_ready(): improve chip detection and error handling can: mcp251xfd: mcp251xfd_chip_wait_for_osc_ready(): prepare for PLL support can: mcp251xfd: mcp251xfd_chip_softreset_check(): wait for OSC ready before accessing chip can: mcp251xfd: mcp251xfd_chip_timestamp_init(): factor out into separate function can: mcp251xfd: mcp251xfd_chip_wake(): renamed from mcp251xfd_chip_clock_enable() can: mcp251xfd: __mcp251xfd_chip_set_mode(): prepare for PLL support: improve error handling and diagnostics can: mcp251xfd: mcp251xfd_chip_clock_init(): prepare for PLL support, wait for OSC ready can: mcp251xfd: mcp251xfd_register(): prepare to activate PLL after softreset can: mcp251xfd: add support for internal PLL can: mcp251xfd: introduce struct mcp251xfd_tx_ring::nr and ::fifo_nr and make use of it can: mcp251xfd: mcp251xfd_ring_init(): split ring_init into separate functions can: mcp251xfd: ring: prepare to change order of TX and RX FIFOs can: mcp251xfd: ring: change order of TX and RX FIFOs can: mcp251xfd: ring: mcp251xfd_ring_init(): checked RAM usage of ring setup can: mcp251xfd: ring: update FIFO setup debug info can: mcp251xfd: prepare for multiple RX-FIFOs can: mcp251xfd: mcp251xfd_priv: introduce macros specifying the number of supported TEF/RX/TX rings Minghao Chi (1): can: softing: softing_netdev_open(): remove redundant ret variable Srinivas Neeli (1): can: xilinx_can: Add check for NAPI Poll function Vincent Mailhol (1): can: etas_es58x: use BITS_PER_TYPE() instead of manual calculation .../bindings/net/can/allwinner,sun4i-a10-can.yaml | 3 + .../devicetree/bindings/net/can/bosch,m_can.yaml | 9 +- .../bindings/net/can/microchip,mcp251xfd.yaml | 3 + drivers/net/can/c_can/c_can_ethtool.c | 9 - drivers/net/can/dev/bittiming.c | 20 +- drivers/net/can/softing/softing_main.c | 5 +- .../net/can/spi/mcp251xfd/mcp251xfd-chip-fifo.c | 4 +- drivers/net/can/spi/mcp251xfd/mcp251xfd-core.c | 342 +++++++++++++++------ drivers/net/can/spi/mcp251xfd/mcp251xfd-dump.c | 4 +- drivers/net/can/spi/mcp251xfd/mcp251xfd-regmap.c | 24 +- drivers/net/can/spi/mcp251xfd/mcp251xfd-ring.c | 203 ++++++++---- drivers/net/can/spi/mcp251xfd/mcp251xfd-rx.c | 12 +- drivers/net/can/spi/mcp251xfd/mcp251xfd.h | 31 +- drivers/net/can/usb/etas_es58x/es58x_fd.c | 3 +- drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c | 4 +- drivers/net/can/xilinx_can.c | 9 +- include/linux/can/bittiming.h | 6 +- net/can/gw.c | 16 +- 18 files changed, 478 insertions(+), 229 deletions(-)