From patchwork Thu Nov 2 01:00:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavel Pisa X-Patchwork-Id: 833160 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=2001:4830:134:3::11; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yS6Hk17wmz9t3H for ; Thu, 2 Nov 2017 12:02:03 +1100 (AEDT) Received: from localhost ([::1]:58255 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eA3tQ-00073G-PT for incoming@patchwork.ozlabs.org; Wed, 01 Nov 2017 21:02:00 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eA3t4-00072z-64 for qemu-devel@nongnu.org; Wed, 01 Nov 2017 21:01:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eA3sz-00064j-8x for qemu-devel@nongnu.org; Wed, 01 Nov 2017 21:01:38 -0400 Received: from smtp8.web4u.cz ([81.91.87.88]:56182 helo=mx-8.mail.web4u.cz) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eA3sy-00062v-Uf for qemu-devel@nongnu.org; Wed, 01 Nov 2017 21:01:33 -0400 Received: from baree.pikron.com (unknown [89.102.4.32]) (Authenticated sender: ppisa@pikron.com) by mx-8.mail.web4u.cz (Postfix) with ESMTPA id AF8471FFAE8; Thu, 2 Nov 2017 02:01:28 +0100 (CET) From: pisa@cmp.felk.cvut.cz To: qemu-devel@nongnu.org Date: Thu, 2 Nov 2017 02:00:55 +0100 Message-Id: X-Mailer: git-send-email 2.11.0 X-W4U-Auth: 8a47b942adda45f2bfdd353ee45c97638bb7e52a X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 81.91.87.88 Subject: [Qemu-devel] [PATCH 0/5 v2] CAN bus support for QEMU (SJA1000 PCI so far) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Marek Vasut , Oliver Hartkopp , Stefan Hajnoczi , Deniz Eren , Konrad Frederic , Jan Kiszka , Pavel Pisa Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" From: Pavel Pisa Basic emulation of CAN bus controller and interconnection for QEMU. Patches version 2: The bus emulation and the SJA1000 chip emulation introduced by individual patches as suggested by Frederic Konrad. Simple example board to test SJA1000 as single memory-mapped BAR has been omitted in a new series because emulation of real existing boards can provide same functions now. Conditionalized debug printfs changed to be exposed to compiler syntax check as suggested in review. The work has been started by Jin Yang in the frame of GSoC 2013 slot contributed by RTEMS project which has been looking for environment to allow develop and test CAN drivers for multiple CPU architectures. I have menthored the project and then done substantial code cleanup and update to QOM. Deniz Eren then used emulation for SJA1000 base card driver development for other operating system and contributed PCM-3680I and MIOe-3680 support. Some page about the project https://gitlab.fel.cvut.cz/canbus/qemu-canbus/wikis/home FEE CTU GitLab repository with can-pci branch for 2.3, 2.4, 2.7, 2.8 and 2.10 version if QEMU is available there https://gitlab.fel.cvut.cz/canbus/qemu-canbus/tree/can-pci mirror at GitHub https://github.com/CTU-IIG/qemu There are many areas for improvement and extension of the code still (for example freeze and migration is not implemented. CAN controllers use proper QOM model but bus/interconnection emulation uses simple broadcast connection which is required for CAN, but it is not based on QEMU bus model). I have tried to look into QEMU VLANs implementation but it does not map straightforward to CAN and I would need some help/opinion from more advanced developers to decide what is their right mapping to CAN. CAN-FD support would be interesting requires other developers/ companies contributions or setup of some project to allow invite some students and colleagues from my university into project. But I believe that (even in its actual state) provided solution is great help for embedded systems developers when they can connect SocketCAN from one or more embedded systems running in virtual environment together or with Linux host SocketCAN virtual or real bus interfaces. We have even tested our generic CANopen device configured for CANopen 401 profile for generic I/O running in the virtual system which can control GPIO inputs/outputs through virtual industrial I/O card. Generally QEMU can be interesting setup which allows to test complete industrial applications in virtual environment even before real hardware is availabe. Pavel Deniz Eren (2): CAN bus PCM-3680I PCI (dual SJA1000 channel) emulation added. CAN bus MIOe-3680 PCI (dual SJA1000 channel) emulation added. Pavel Pisa (3): CAN bus simple messages transport implementation for QEMU CAN bus SJA1000 chip register level emulation for QEMU CAN bus Kvaser PCI CAN-S (single SJA1000 channel) emulation added. default-configs/pci.mak | 3 + hw/Makefile.objs | 1 + hw/can/Makefile.objs | 7 + hw/can/can_core.c | 374 ++++++++++++++++++ hw/can/can_kvaser_pci.c | 376 ++++++++++++++++++ hw/can/can_mioe3680_pci.c | 335 ++++++++++++++++ hw/can/can_pcm3680_pci.c | 335 ++++++++++++++++ hw/can/can_sja1000.c | 973 ++++++++++++++++++++++++++++++++++++++++++++++ hw/can/can_sja1000.h | 176 +++++++++ include/can/can_emu.h | 133 +++++++ 10 files changed, 2713 insertions(+) create mode 100644 hw/can/Makefile.objs create mode 100644 hw/can/can_core.c create mode 100644 hw/can/can_kvaser_pci.c create mode 100644 hw/can/can_mioe3680_pci.c create mode 100644 hw/can/can_pcm3680_pci.c create mode 100644 hw/can/can_sja1000.c create mode 100644 hw/can/can_sja1000.h create mode 100644 include/can/can_emu.h