Re: [PATCH v4 05/15] mei: pxp: add command streamer API to the PXP driver

2022-09-12 Thread Greg Kroah-Hartman
On Mon, Sep 12, 2022 at 09:59:45AM +, Winkler, Tomas wrote: > > > > On Fri, Sep 09, 2022 at 06:38:33AM +, Winkler, Tomas wrote: > > > > > > > > On Thu, Sep 08, 2022 at 05:16:02PM -0700, Daniele Ceraolo Spurio wrote: > > > > > +static ssize_t mei_pxp_gsc_command(struct device *dev, u8 > > >

RE: [PATCH v4 05/15] mei: pxp: add command streamer API to the PXP driver

2022-09-12 Thread Winkler, Tomas
> > On Fri, Sep 09, 2022 at 06:38:33AM +, Winkler, Tomas wrote: > > > > > > On Thu, Sep 08, 2022 at 05:16:02PM -0700, Daniele Ceraolo Spurio wrote: > > > > +static ssize_t mei_pxp_gsc_command(struct device *dev, u8 > > > > +client_id, > > > u32 fence_id, > > > > +

Re: [PATCH v4 05/15] mei: pxp: add command streamer API to the PXP driver

2022-09-08 Thread Greg Kroah-Hartman
On Fri, Sep 09, 2022 at 06:38:33AM +, Winkler, Tomas wrote: > > > > On Thu, Sep 08, 2022 at 05:16:02PM -0700, Daniele Ceraolo Spurio wrote: > > > +static ssize_t mei_pxp_gsc_command(struct device *dev, u8 client_id, > > u32 fence_id, > > > +struct scatterlist *sg_in

RE: [PATCH v4 05/15] mei: pxp: add command streamer API to the PXP driver

2022-09-08 Thread Winkler, Tomas
> > On Thu, Sep 08, 2022 at 05:16:02PM -0700, Daniele Ceraolo Spurio wrote: > > +static ssize_t mei_pxp_gsc_command(struct device *dev, u8 client_id, > u32 fence_id, > > + struct scatterlist *sg_in, size_t > > total_in_len, > > + struct sc

Re: [PATCH v4 05/15] mei: pxp: add command streamer API to the PXP driver

2022-09-08 Thread Greg Kroah-Hartman
On Thu, Sep 08, 2022 at 05:16:02PM -0700, Daniele Ceraolo Spurio wrote: > +static ssize_t mei_pxp_gsc_command(struct device *dev, u8 client_id, u32 > fence_id, > +struct scatterlist *sg_in, size_t > total_in_len, > +struct scatterlis

[PATCH v4 05/15] mei: pxp: add command streamer API to the PXP driver

2022-09-08 Thread Daniele Ceraolo Spurio
From: Vitaly Lubart The discrete graphics card with GSC firmware using command streamer API hence it requires to enhance pxp module with the new gsc_command() handler. The handler is implemented via mei_pxp_gsc_command() which is just a thin wrapper around mei_cldev_send_gsc_command() V2: 1. M