All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/6] Add M_CAN Support for Dra76 platform
@ 2017-12-22 13:31 ` Faiz Abbas
  0 siblings, 0 replies; 44+ messages in thread
From: Faiz Abbas @ 2017-12-22 13:31 UTC (permalink / raw)
  To: wg, mkl, robh+dt, mark.rutland
  Cc: linux-can, netdev, devicetree, linux-kernel, faiz_abbas, nsekhar,
	fcooper, robh, Wenyou.Yang, sergei.shtylyov

This patch series adds support for M_CAN on the TI Dra76
platform. Device tree patches will be sent separately.
A bunch of patches were sent before by
Franklin Cooper <fcooper@ti.com>. I have clubbed the
series together and rebased to the latest kernel.

v6 changes:
Dropped the patches to make hclk optional. Drivers
which enable hclk as the interface clock using
pm_runtime calls must still provide a hclk in the
clocks property.

Support higher speed CAN-FD bitrate:
The community decided that data sampling point be used
for the secondary sampling point here
https://patchwork.kernel.org/patch/9909845/

Franklin S Cooper Jr (6):
  can: dev: Add support for limiting configured bitrate
  can: m_can: Add call to of_can_transceiver
  can: m_can: Add PM Runtime
  can: m_can: Support higher speed CAN-FD bitrates
  dt-bindings: can: m_can: Document new can transceiver binding
  dt-bindings: can: can-transceiver: Document new binding

 .../bindings/net/can/can-transceiver.txt           | 24 +++++++
 .../devicetree/bindings/net/can/m_can.txt          |  9 +++
 drivers/net/can/dev.c                              | 39 +++++++++++
 drivers/net/can/m_can/m_can.c                      | 81 ++++++++++++++++++++--
 include/linux/can/dev.h                            |  8 +++
 5 files changed, 156 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/can/can-transceiver.txt

-- 
2.7.4

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

end of thread, other threads:[~2018-01-05  1:23 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-22 13:31 [PATCH v6 0/6] Add M_CAN Support for Dra76 platform Faiz Abbas
2017-12-22 13:31 ` Faiz Abbas
2017-12-22 13:31 ` [PATCH v6 2/6] can: m_can: Add call to of_can_transceiver Faiz Abbas
2017-12-22 13:31   ` Faiz Abbas
2017-12-22 13:31 ` [PATCH v6 3/6] can: m_can: Add PM Runtime Faiz Abbas
2017-12-22 13:31   ` Faiz Abbas
2018-01-02 16:07   ` Marc Kleine-Budde
     [not found]     ` <aea8638a-c847-b55e-ff2d-37999980ba7b-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2018-01-03 12:39       ` Faiz Abbas
2018-01-03 12:39         ` Faiz Abbas
2018-01-03 12:39         ` Faiz Abbas
     [not found]         ` <1308ee81-a1e9-ac5a-2d97-334fa825ef8d-l0cyMroinI0@public.gmane.org>
2018-01-03 14:25           ` Marc Kleine-Budde
2018-01-03 14:25             ` Marc Kleine-Budde
2018-01-03 15:06             ` Faiz Abbas
2018-01-03 15:06               ` Faiz Abbas
2018-01-03 15:17               ` Marc Kleine-Budde
     [not found]                 ` <cb306ae5-87c5-f6ef-0c40-3b47e208d256-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2018-01-04 15:17                   ` Faiz Abbas
2018-01-04 15:17                     ` Faiz Abbas
2018-01-04 15:17                     ` Faiz Abbas
     [not found]                     ` <6bdaab16-cb16-e039-473c-52dd295bd4ba-l0cyMroinI0@public.gmane.org>
2018-01-04 15:18                       ` Marc Kleine-Budde
2018-01-04 15:18                         ` Marc Kleine-Budde
2018-01-05  1:23                     ` Yang, Wenyou
2018-01-05  1:23                       ` Yang, Wenyou
2017-12-22 13:31 ` [PATCH v6 4/6] can: m_can: Support higher speed CAN-FD bitrates Faiz Abbas
2017-12-22 13:31   ` Faiz Abbas
2018-01-02 13:35   ` Marc Kleine-Budde
2018-01-03 12:55     ` Faiz Abbas
2018-01-03 12:55       ` Faiz Abbas
     [not found] ` <1513949488-13026-1-git-send-email-faiz_abbas-l0cyMroinI0@public.gmane.org>
2017-12-22 13:31   ` [PATCH v6 1/6] can: dev: Add support for limiting configured bitrate Faiz Abbas
2017-12-22 13:31     ` Faiz Abbas
2017-12-22 13:31     ` Faiz Abbas
2018-01-02 13:00     ` Marc Kleine-Budde
2018-01-03 12:19       ` Faiz Abbas
2018-01-03 12:19         ` Faiz Abbas
2018-01-02 16:15     ` Marc Kleine-Budde
     [not found]       ` <8d973da8-df40-e37e-377f-50666db382fe-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2018-01-03 12:21         ` Faiz Abbas
2018-01-03 12:21           ` Faiz Abbas
2018-01-03 12:21           ` Faiz Abbas
2017-12-22 13:31   ` [PATCH v6 5/6] dt-bindings: can: m_can: Document new can transceiver binding Faiz Abbas
2017-12-22 13:31     ` Faiz Abbas
2017-12-22 13:31     ` Faiz Abbas
2017-12-22 13:31 ` [PATCH v6 6/6] dt-bindings: can: can-transceiver: Document new binding Faiz Abbas
2017-12-22 13:31   ` Faiz Abbas
2017-12-29  3:38 ` [PATCH v6 0/6] Add M_CAN Support for Dra76 platform Yang, Wenyou
2017-12-29  3:38   ` Yang, Wenyou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.