RE: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-27 Thread Vikram Garhwal
0 7:25 PM > To: Vikram Garhwal ; qemu-devel@nongnu.org > Cc: Francisco Eduardo Iglesias > Subject: Re: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN > controller for QEMU > > > On 2020/2/25 下午2:22, Vikram Garhwal wrote: > > Hi Jason, > > Apologies for the delayed

Re: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-25 Thread Jason Wang
qemu-devel@nongnu.org Subject: Re: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU On 2020/2/11 上午5:45, Vikram Garhwal wrote: +} +} else { +/* Normal mode Tx. */ +generate_frame(&fr

RE: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-24 Thread Vikram Garhwal
talks on how CAN Socket is intended to work. Equivalent file is located as net/can-socketcan.c. Regards, Vikram > -Original Message- > From: Jason Wang > Sent: Monday, February 10, 2020 7:09 PM > To: Vikram Garhwal ; qemu-devel@nongnu.org > Subject: Re: [PATCH 1/1] hw/net

Re: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-10 Thread Jason Wang
On 2020/2/11 上午5:45, Vikram Garhwal wrote: +} +} else { +/* Normal mode Tx. */ +generate_frame(&frame, data); + +can_bus_client_send(&s->bus_client, &frame, 1); I had a quick glance at can_bus_client_send(): It did:

RE: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-10 Thread Vikram Garhwal
rhwal ; qemu-devel@nongnu.org > Subject: Re: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller > for QEMU > > > On 2020/2/4 上午5:06, Vikram Garhwal wrote: > > XlnxCAN is developed based on SocketCAN, QEMU CAN bus implementation. > > Bus connection and socketCAN co

RE: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-06 Thread Vikram Garhwal
t: Re: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller > for QEMU > > > On 2020/2/4 上午5:06, Vikram Garhwal wrote: > > XlnxCAN is developed based on SocketCAN, QEMU CAN bus implementation. > > Bus connection and socketCAN connection for each CAN modu

Re: [PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-04 Thread Jason Wang
On 2020/2/4 上午5:06, Vikram Garhwal wrote: XlnxCAN is developed based on SocketCAN, QEMU CAN bus implementation. Bus connection and socketCAN connection for each CAN module can be set through command lines. Signed-off-by: Vikram Garhwal --- hw/net/can/Makefile.objs |1 + hw/net/

[PATCH 1/1] hw/net/can: Introduce Xlnx ZynqMP CAN controller for QEMU

2020-02-03 Thread Vikram Garhwal
XlnxCAN is developed based on SocketCAN, QEMU CAN bus implementation. Bus connection and socketCAN connection for each CAN module can be set through command lines. Signed-off-by: Vikram Garhwal --- hw/net/can/Makefile.objs |1 + hw/net/can/xlnx-zynqmp-can.c | 1106 +++