From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CF5CED2EC for ; Wed, 19 Jul 2023 07:24:33 +0000 (UTC) Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3430F1736 for ; Wed, 19 Jul 2023 00:24:32 -0700 (PDT) Received: from moin.white.stw.pengutronix.de ([2a0a:edc0:0:b01:1d::7b] helo=bjornoya.blackshift.org) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qM1Xy-0002qW-Fp for netdev@vger.kernel.org; Wed, 19 Jul 2023 09:24:30 +0200 Received: from dspam.blackshift.org (localhost [127.0.0.1]) by bjornoya.blackshift.org (Postfix) with SMTP id 472B11F4C32 for ; Wed, 19 Jul 2023 07:23:51 +0000 (UTC) Received: from hardanger.blackshift.org (unknown [172.20.34.65]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by bjornoya.blackshift.org (Postfix) with ESMTPS id 0C87E1F4C0B; Wed, 19 Jul 2023 07:23:50 +0000 (UTC) Received: from blackshift.org (localhost [::1]) by hardanger.blackshift.org (OpenSMTPD) with ESMTP id a5fc065f; Wed, 19 Jul 2023 07:23:49 +0000 (UTC) From: Marc Kleine-Budde To: netdev@vger.kernel.org Cc: davem@davemloft.net, kuba@kernel.org, linux-can@vger.kernel.org, kernel@pengutronix.de Subject: [PATCH net-next 0/8] pull-request: can-next 2023-07-19 Date: Wed, 19 Jul 2023 09:23:40 +0200 Message-Id: <20230719072348.525039-1-mkl@pengutronix.de> X-Mailer: git-send-email 2.40.1 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SA-Exim-Connect-IP: 2a0a:edc0:0:b01:1d::7b X-SA-Exim-Mail-From: mkl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: netdev@vger.kernel.org X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_BLOCKED,SPF_HELO_NONE,SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Hello netdev-team, this is a pull request of 8 patches for net-next/master. The first 2 patches are by Judith Mendez, target the m_can driver and add hrtimer based polling support for TI AM62x SoCs, where the interrupt of the MCU domain's m_can cores is not routed to the Cortex A53 core. A patch by Rob Herring converts the grcan driver to use the correct DT include files. Michal Simek and Srinivas Neeli add support for optional reset control to the xilinx_can driver. The next 2 patches are by Jimmy Assarsson and add support for new Kvaser pciefd to the kvaser_pciefd driver. Mao Zhu's patch for the ucan driver removes a repeated word from a comment. regards, Marc --- The following changes since commit 68af900072c157c0cdce0256968edd15067e1e5a: gve: trivial spell fix Recive to Receive (2023-07-14 10:28:17 +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.6-20230719 for you to fetch changes up to 03df47c1bb392b795bcecb6953dcc49199d33b2a: can: ucan: Remove repeated word (2023-07-19 09:04:36 +0200) ---------------------------------------------------------------- linux-can-next-for-6.6-20230719 ---------------------------------------------------------------- Jimmy Assarsson (2): can: kvaser_pciefd: Move hardware specific constants and functions into a driver_data struct can: kvaser_pciefd: Add support for new Kvaser pciefd devices Judith Mendez (2): dt-bindings: net: can: Remove interrupt properties for MCAN can: m_can: Add hrtimer to generate software interrupt Mao Zhu (1): can: ucan: Remove repeated word Marc Kleine-Budde (3): Merge patch series "Enable multiple MCAN on AM62x" Merge patch series "can: xilinx_can: Add support for reset" Merge patch series "can: kvaser_pciefd: Add support for new Kvaser PCI Express devices" Michal Simek (1): dt-bindings: can: xilinx_can: Add reset description Rob Herring (1): can: Explicitly include correct DT includes Srinivas Neeli (1): can: xilinx_can: Add support for controller reset .../devicetree/bindings/net/can/bosch,m_can.yaml | 20 +- .../devicetree/bindings/net/can/xilinx,can.yaml | 3 + drivers/net/can/Kconfig | 5 + drivers/net/can/grcan.c | 3 +- drivers/net/can/kvaser_pciefd.c | 307 +++++++++++++++------ drivers/net/can/m_can/m_can.c | 32 ++- drivers/net/can/m_can/m_can.h | 3 + drivers/net/can/m_can/m_can_platform.c | 21 +- drivers/net/can/usb/ucan.c | 2 +- drivers/net/can/xilinx_can.c | 25 +- 10 files changed, 331 insertions(+), 90 deletions(-)