All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Introduce Xlnx ZynqMP CAN controller for QEMU
@ 2020-02-03 21:06 Vikram Garhwal
  2020-02-03 21:06 ` [PATCH 1/1] hw/net/can: " Vikram Garhwal
  2020-02-05  3:17 ` [PATCH 0/1] " Jason Wang
  0 siblings, 2 replies; 12+ messages in thread
From: Vikram Garhwal @ 2020-02-03 21:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: jasowang

Example for single CAN:
    -object can-bus,id=canbus0 \
    -global driver=xlnx.zynqmp-can,property=canbus0,value=canbus0 \
    -object can-host-socketcan,id=socketcan0,if=vcan0,canbus=canbus0

Example for connecting both CAN:
    -object can-bus,id=canbus0 -object can-bus,id=canbus1 \
    -global driver=xlnx.zynqmp-can,property=canbus0,value=canbus0 \
    -global driver=xlnx.zynqmp-can,property=canbus1,value=canbus1 \
    -object can-host-socketcan,id=socketcan0,if=vcan0,canbus=canbus0 \
    -object can-host-socketcan,id=socketcan1,if=vcan0,canbus=canbus1

Vikram Garhwal (1):
  hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

 hw/net/can/Makefile.objs         |    1 +
 hw/net/can/xlnx-zynqmp-can.c     | 1106 ++++++++++++++++++++++++++++++++++++++
 include/hw/net/xlnx-zynqmp-can.h |   77 +++
 3 files changed, 1184 insertions(+)
 create mode 100644 hw/net/can/xlnx-zynqmp-can.c
 create mode 100644 include/hw/net/xlnx-zynqmp-can.h

-- 
2.7.4



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

end of thread, other threads:[~2020-02-27 16:04 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-03 21:06 [PATCH 0/1] Introduce Xlnx ZynqMP CAN controller for QEMU Vikram Garhwal
2020-02-03 21:06 ` [PATCH 1/1] hw/net/can: " Vikram Garhwal
2020-02-05  5:46   ` Jason Wang
2020-02-06 18:39     ` Vikram Garhwal
2020-02-10 21:45     ` Vikram Garhwal
2020-02-11  3:09       ` Jason Wang
2020-02-25  6:22         ` Vikram Garhwal
2020-02-26  3:24           ` Jason Wang
2020-02-27 16:04             ` Vikram Garhwal
2020-02-05  3:17 ` [PATCH 0/1] " Jason Wang
2020-02-05  3:23   ` Vikram Garhwal
2020-02-05  5:48     ` Jason Wang

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.