mbox series

pull-request: can-next 2021-10-24

Message ID 20211024204325.3293425-1-mkl@pengutronix.de (mailing list archive)
State Accepted
Commit 12f241f26436cf1134f8a05551d23961ee46037e
Headers show
Series pull-request: can-next 2021-10-24 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git tags/linux-can-next-for-5.16-20211024

Checks

Context Check Description
netdev/tree_selection success Series ignored based on subject

Message

Marc Kleine-Budde Oct. 24, 2021, 8:43 p.m. UTC
Hello Jakub, hello David,

this is a pull request of 15 patches for net-next/master.

The first patch is by Thomas Gleixner and makes use of
hrtimer_forward_now() in the CAN broad cast manager (bcm).

The next patch is by me and changes the type of the variables used in
the CAN bit timing calculation can_fixup_bittiming() to unsigned int.

Vincent Mailhol provides 6 patches targeting the CAN device
infrastructure. The CAN-FD specific Transmitter Delay Compensation
(TDC) is updated and configuration via the CAN netlink interface is
added.

Qing Wang's patch updates the at91 and janz-ican3 drivers to use
sysfs_emit() instead of snprintf() in the sysfs show functions.

Geert Uytterhoeven's patch drops the unneeded ARM dependency from the
rar Kconfig.

Cai Huoqing's patch converts the mscan driver to make use of the
dev_err_probe() helper function.

A patch by me against the gsusb driver changes the printf format
strings to use %u to print unsigned values.

Stephane Grosjean's patch updates the peak_usb CAN-FD driver to use
the 64 bit timestamps provided by the hardware.

The last 2 patches target the xilinx_can driver. Michal Simek provides
a patch that removes repeated word from the kernel-doc and Dongliang
Mu's patch removes a redundant netif_napi_del() from the xcan_remove()
function.

regards,
Marc

---

The following changes since commit 4d98bb0d7ec2d0b417df6207b0bafe1868bad9f8:

  net: macb: Use mdio child node for MDIO bus if it exists (2021-10-24 13:44:39 +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-5.16-20211024

for you to fetch changes up to b9b8218bb3c064628799f83c754dbebd124bd498:

  can: xilinx_can: xcan_remove(): remove redundant netif_napi_del() (2021-10-24 16:26:05 +0200)

----------------------------------------------------------------
linux-can-next-for-5.16-20211024

----------------------------------------------------------------
Cai Huoqing (1):
      can: mscan: mpc5xxx_can: Make use of the helper function dev_err_probe()

Dongliang Mu (1):
      can: xilinx_can: xcan_remove(): remove redundant netif_napi_del()

Geert Uytterhoeven (1):
      can: rcar: drop unneeded ARM dependency

Marc Kleine-Budde (2):
      can: bittiming: can_fixup_bittiming(): change type of tseg1 and alltseg to unsigned int
      can: gs_usb: use %u to print unsigned values

Michal Simek (1):
      can: xilinx_can: remove repeated word from the kernel-doc

Qing Wang (1):
      can: at91/janz-ican3: replace snprintf() in show functions with sysfs_emit()

Stephane Grosjean (1):
      can: peak_usb: CANFD: store 64-bits hw timestamps

Thomas Gleixner (1):
      can: bcm: Use hrtimer_forward_now()

Vincent Mailhol (6):
      can: bittiming: allow TDC{V,O} to be zero and add can_tdc_const::tdc{v,o,f}_min
      can: bittiming: change unit of TDC parameters to clock periods
      can: bittiming: change can_calc_tdco()'s prototype to not directly modify priv
      can: netlink: add interface for CAN-FD Transmitter Delay Compensation (TDC)
      can: netlink: add can_priv::do_get_auto_tdcv() to retrieve tdcv from device
      can: dev: add can_tdc_get_relative_tdco() helper function

 drivers/net/can/at91_can.c                   |   4 +-
 drivers/net/can/dev/bittiming.c              |  30 ++--
 drivers/net/can/dev/netlink.c                | 221 ++++++++++++++++++++++++++-
 drivers/net/can/janz-ican3.c                 |   2 +-
 drivers/net/can/mscan/mpc5xxx_can.c          |   6 +-
 drivers/net/can/rcar/Kconfig                 |   4 +-
 drivers/net/can/usb/etas_es58x/es58x_fd.c    |   7 +-
 drivers/net/can/usb/gs_usb.c                 |  12 +-
 drivers/net/can/usb/peak_usb/pcan_usb_core.c |  13 ++
 drivers/net/can/usb/peak_usb/pcan_usb_core.h |   1 +
 drivers/net/can/usb/peak_usb/pcan_usb_fd.c   |   9 +-
 drivers/net/can/xilinx_can.c                 |   7 +-
 include/linux/can/bittiming.h                |  89 ++++++++---
 include/linux/can/dev.h                      |  34 +++++
 include/uapi/linux/can/netlink.h             |  31 +++-
 net/can/bcm.c                                |   2 +-
 16 files changed, 402 insertions(+), 70 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org Oct. 25, 2021, 12:10 p.m. UTC | #1
Hello:

This pull request was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Sun, 24 Oct 2021 22:43:10 +0200 you wrote:
> Hello Jakub, hello David,
> 
> this is a pull request of 15 patches for net-next/master.
> 
> The first patch is by Thomas Gleixner and makes use of
> hrtimer_forward_now() in the CAN broad cast manager (bcm).
> 
> [...]

Here is the summary with links:
  - pull-request: can-next 2021-10-24
    https://git.kernel.org/netdev/net-next/c/12f241f26436

You are awesome, thank you!