Displaying 4 results from an estimated 4 matches for "posn_work".
2020 May 16
0
[PATCH RFC] vhost: add an SOF Audio DSP driver
...TIO_RPMSG_F_NS))
+
+struct snd_sof_dev;
+struct sof_vhost_client;
+
+struct vhost_dsp {
+ struct vhost_rpmsg vrdev;
+
+ struct sof_vhost_client *snd;
+
+ bool active;
+
+ /* RPMsg address of the position update endpoint */
+ u32 posn_addr;
+ /* position update buffer and work */
+ struct vhost_work posn_work;
+ struct sof_ipc_stream_posn posn;
+
+ /* IPC request buffer */
+ struct sof_rpmsg_ipc_req ipc_buf;
+ /* IPC response buffer */
+ u8 reply_buf[SOF_IPC_MSG_MAX_SIZE];
+ /*
+ * data response header, captured audio data is copied directly from the
+ * DMA buffer
+ */
+ struct sof_rpmsg_data_resp d...
2020 May 25
0
[Sound-open-firmware] [PATCH RFC] vhost: add an SOF Audio DSP driver
...e client, that has
opened the misc devices. Normally the vhost driver doesn't get notified when
that happens.
> > +
> > + /* RPMsg address of the position update endpoint */
> > + u32 posn_addr;
> > + /* position update buffer and work */
> > + struct vhost_work posn_work;
> > + struct sof_ipc_stream_posn posn;
> > +
> > + /* IPC request buffer */
> > + struct sof_rpmsg_ipc_req ipc_buf;
> > + /* IPC response buffer */
> > + u8 reply_buf[SOF_IPC_MSG_MAX_SIZE];
> > + /*
> > + * data response header, captured audio data...
2020 May 29
15
[RFC 00/12] Audio DSP VirtIO and vhost drivers
This patch set is a follow up to "Add a vhost RPMsg API" [1], it is
marked as an RFC because firstly it depends on the RPMsg API series
and secondly it is currently being reviewed on ALSA and SOF mailing
lists, but any early comments from virtualisation developers would be
highly appreciated too!
Thanks
Guennadi
[1]
2020 May 29
15
[RFC 00/12] Audio DSP VirtIO and vhost drivers
This patch set is a follow up to "Add a vhost RPMsg API" [1], it is
marked as an RFC because firstly it depends on the RPMsg API series
and secondly it is currently being reviewed on ALSA and SOF mailing
lists, but any early comments from virtualisation developers would be
highly appreciated too!
Thanks
Guennadi
[1]