]> git.baikalelectronics.ru Git - kernel.git/commit
can: add support of SAE J1939 protocol
authorThe j1939 authors <linux-can@vger.kernel.org>
Mon, 8 Oct 2018 09:48:36 +0000 (11:48 +0200)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Wed, 4 Sep 2019 12:22:33 +0000 (14:22 +0200)
commitc4da2dabb66d774e34af1048d0e719f09fe83470
treece8286b670ecdc8fd4a671224b34f7161b660502
parentb725adbdf03a3ba5d03519dc05fff5b772aff27e
can: add support of SAE J1939 protocol

SAE J1939 is the vehicle bus recommended practice used for communication
and diagnostics among vehicle components. Originating in the car and
heavy-duty truck industry in the United States, it is now widely used in
other parts of the world.

J1939, ISO 11783 and NMEA 2000 all share the same high level protocol.
SAE J1939 can be considered the replacement for the older SAE J1708 and
SAE J1587 specifications.

Acked-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Bastian Stender <bst@pengutronix.de>
Signed-off-by: Elenita Hinds <ecathinds@gmail.com>
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be>
Signed-off-by: Maxime Jayat <maxime.jayat@mobile-devices.fr>
Signed-off-by: Robin van der Gracht <robin@protonic.nl>
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
15 files changed:
Documentation/networking/index.rst
Documentation/networking/j1939.rst [new file with mode: 0644]
MAINTAINERS
include/linux/can/can-ml.h
include/uapi/linux/can/j1939.h [new file with mode: 0644]
net/can/Kconfig
net/can/Makefile
net/can/j1939/Kconfig [new file with mode: 0644]
net/can/j1939/Makefile [new file with mode: 0644]
net/can/j1939/address-claim.c [new file with mode: 0644]
net/can/j1939/bus.c [new file with mode: 0644]
net/can/j1939/j1939-priv.h [new file with mode: 0644]
net/can/j1939/main.c [new file with mode: 0644]
net/can/j1939/socket.c [new file with mode: 0644]
net/can/j1939/transport.c [new file with mode: 0644]