2021-10-13 12:29:24

by Abhyuday Godhasara

[permalink] [raw]
Subject: RE: [PATCH v4 0/6] Add Xilinx Event Management Driver

Hi Greg,

> -----Original Message-----
> From: Abhyuday Godhasara <[email protected]>
> Sent: Wednesday, September 15, 2021 6:46 PM
> To: [email protected]
> Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> <[email protected]>; Rajan Vaja <[email protected]>; Manish Narani
> <[email protected]>; [email protected]; Sai Krishna Potthuri
> <[email protected]>; Jiaying Liang <[email protected]>; Jiaying Liang
> <[email protected]>; [email protected]; linux-arm-
> [email protected]
> Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
>
> This Linux driver provides support to subscribe error/event notification and
> receive notification from firmware for error/event and forward event
> notification to subscribed driver via registered callback.
>
> All types of events like power and error will be handled from single place as
> part of event management driver.
>
> Changes in v4:
> - Rebase on latest tree
>
> Changes in v3:
> - Update the commit message.
>
> Changes in v2:
> - Removed updated copyright year from unchanged files.
> - make sgi_num as module parameter for event management driver.
> - Use same object for error detection and printing.
>
> Acked-by: Michal Simek <[email protected]>
[Abhyuday] Michal suggested to merge this via your tree. Please have a look.
Please let me know if there is anything required from my side.

Thanks,
Abhyuday
>
> Abhyuday Godhasara (6):
> firmware: xilinx: add register notifier in zynqmp firmware
> firmware: xilinx: add macros of node ids for error event
> firmware: xilinx: export the feature check of zynqmp firmware
> drivers: soc: xilinx: add xilinx event management driver
> firmware: xilinx: instantiate xilinx event manager driver
> driver: soc: xilinx: register for power events in zynqmp power driver
>
> MAINTAINERS | 6 +
> drivers/firmware/xilinx/zynqmp.c | 40 +-
> drivers/soc/xilinx/Kconfig | 10 +
> drivers/soc/xilinx/Makefile | 1 +
> drivers/soc/xilinx/xlnx_event_manager.c | 600 ++++++++++++++++++++
> drivers/soc/xilinx/zynqmp_power.c | 54 +-
> include/linux/firmware/xlnx-event-manager.h | 36 ++
> include/linux/firmware/xlnx-zynqmp.h | 29 +-
> 8 files changed, 767 insertions(+), 9 deletions(-) create mode 100644
> drivers/soc/xilinx/xlnx_event_manager.c
> create mode 100644 include/linux/firmware/xlnx-event-manager.h
>
> --
> 2.32.0.93.g670b81a


Attachments:
winmail.dat (14.35 kB)

2021-10-13 13:00:57

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver

On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara wrote:
> Hi Greg,
>
> > -----Original Message-----
> > From: Abhyuday Godhasara <[email protected]>
> > Sent: Wednesday, September 15, 2021 6:46 PM
> > To: [email protected]
> > Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > <[email protected]>; Rajan Vaja <[email protected]>; Manish Narani
> > <[email protected]>; [email protected]; Sai Krishna Potthuri
> > <[email protected]>; Jiaying Liang <[email protected]>; Jiaying Liang
> > <[email protected]>; [email protected]; linux-arm-
> > [email protected]
> > Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >
> > This Linux driver provides support to subscribe error/event notification and
> > receive notification from firmware for error/event and forward event
> > notification to subscribed driver via registered callback.
> >
> > All types of events like power and error will be handled from single place as
> > part of event management driver.
> >
> > Changes in v4:
> > - Rebase on latest tree
> >
> > Changes in v3:
> > - Update the commit message.
> >
> > Changes in v2:
> > - Removed updated copyright year from unchanged files.
> > - make sgi_num as module parameter for event management driver.
> > - Use same object for error detection and printing.
> >
> > Acked-by: Michal Simek <[email protected]>
> [Abhyuday] Michal suggested to merge this via your tree. Please have a look.
> Please let me know if there is anything required from my side.

Ok, I'll pick it up, thanks.

greg k-h

2021-10-13 13:08:30

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver

On Wed, Oct 13, 2021 at 02:59:21PM +0200, [email protected] wrote:
> On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara wrote:
> > Hi Greg,
> >
> > > -----Original Message-----
> > > From: Abhyuday Godhasara <[email protected]>
> > > Sent: Wednesday, September 15, 2021 6:46 PM
> > > To: [email protected]
> > > Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > <[email protected]>; Rajan Vaja <[email protected]>; Manish Narani
> > > <[email protected]>; [email protected]; Sai Krishna Potthuri
> > > <[email protected]>; Jiaying Liang <[email protected]>; Jiaying Liang
> > > <[email protected]>; [email protected]; linux-arm-
> > > [email protected]
> > > Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > >
> > > This Linux driver provides support to subscribe error/event notification and
> > > receive notification from firmware for error/event and forward event
> > > notification to subscribed driver via registered callback.
> > >
> > > All types of events like power and error will be handled from single place as
> > > part of event management driver.
> > >
> > > Changes in v4:
> > > - Rebase on latest tree
> > >
> > > Changes in v3:
> > > - Update the commit message.
> > >
> > > Changes in v2:
> > > - Removed updated copyright year from unchanged files.
> > > - make sgi_num as module parameter for event management driver.
> > > - Use same object for error detection and printing.
> > >
> > > Acked-by: Michal Simek <[email protected]>
> > [Abhyuday] Michal suggested to merge this via your tree. Please have a look.
> > Please let me know if there is anything required from my side.
>
> Ok, I'll pick it up, thanks.

Nope, I can not as for some reason it all did not show up on
lore.kernel.org.

Please resend this, with Michal's ack and I will be glad to pick it up.

thanks,

greg k-h

2021-10-13 14:00:09

by Abhyuday Godhasara

[permalink] [raw]
Subject: RE: [PATCH v4 0/6] Add Xilinx Event Management Driver

Hi Greg,

> -----Original Message-----
> From: [email protected] <[email protected]>
> Sent: Wednesday, October 13, 2021 6:36 PM
> To: Abhyuday Godhasara <[email protected]>
> Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> Manish Narani <[email protected]>; [email protected]; Sai Krishna
> Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
> [email protected]; [email protected]
> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
>
> On Wed, Oct 13, 2021 at 02:59:21PM +0200, [email protected]
> wrote:
> > On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara wrote:
> > > Hi Greg,
> > >
> > > > -----Original Message-----
> > > > From: Abhyuday Godhasara <[email protected]>
> > > > Sent: Wednesday, September 15, 2021 6:46 PM
> > > > To: [email protected]
> > > > Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > > <[email protected]>; Rajan Vaja <[email protected]>; Manish
> > > > Narani <[email protected]>; [email protected]; Sai Krishna
> > > > Potthuri <[email protected]>; Jiaying Liang <[email protected]>;
> > > > Jiaying Liang <[email protected]>; [email protected];
> > > > linux-arm- [email protected]
> > > > Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > >
> > > > This Linux driver provides support to subscribe error/event
> > > > notification and receive notification from firmware for
> > > > error/event and forward event notification to subscribed driver via
> registered callback.
> > > >
> > > > All types of events like power and error will be handled from
> > > > single place as part of event management driver.
> > > >
> > > > Changes in v4:
> > > > - Rebase on latest tree
> > > >
> > > > Changes in v3:
> > > > - Update the commit message.
> > > >
> > > > Changes in v2:
> > > > - Removed updated copyright year from unchanged files.
> > > > - make sgi_num as module parameter for event management driver.
> > > > - Use same object for error detection and printing.
> > > >
> > > > Acked-by: Michal Simek <[email protected]>
> > > [Abhyuday] Michal suggested to merge this via your tree. Please have a
> look.
> > > Please let me know if there is anything required from my side.
> >
> > Ok, I'll pick it up, thanks.
>
> Nope, I can not as for some reason it all did not show up on lore.kernel.org.
>
> Please resend this, with Michal's ack and I will be glad to pick it up.
[Abhyuday] Sent v5 with Michal's ack.

Thanks,
Abhyuday

>
> thanks,
>
> greg k-h

2021-10-13 14:13:17

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver

On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara wrote:
> Hi Greg,
>
> > -----Original Message-----
> > From: [email protected] <[email protected]>
> > Sent: Wednesday, October 13, 2021 6:36 PM
> > To: Abhyuday Godhasara <[email protected]>
> > Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> > Manish Narani <[email protected]>; [email protected]; Sai Krishna
> > Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
> > [email protected]; [email protected]
> > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >
> > On Wed, Oct 13, 2021 at 02:59:21PM +0200, [email protected]
> > wrote:
> > > On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara wrote:
> > > > Hi Greg,
> > > >
> > > > > -----Original Message-----
> > > > > From: Abhyuday Godhasara <[email protected]>
> > > > > Sent: Wednesday, September 15, 2021 6:46 PM
> > > > > To: [email protected]
> > > > > Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > > > <[email protected]>; Rajan Vaja <[email protected]>; Manish
> > > > > Narani <[email protected]>; [email protected]; Sai Krishna
> > > > > Potthuri <[email protected]>; Jiaying Liang <[email protected]>;
> > > > > Jiaying Liang <[email protected]>; [email protected];
> > > > > linux-arm- [email protected]
> > > > > Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > > >
> > > > > This Linux driver provides support to subscribe error/event
> > > > > notification and receive notification from firmware for
> > > > > error/event and forward event notification to subscribed driver via
> > registered callback.
> > > > >
> > > > > All types of events like power and error will be handled from
> > > > > single place as part of event management driver.
> > > > >
> > > > > Changes in v4:
> > > > > - Rebase on latest tree
> > > > >
> > > > > Changes in v3:
> > > > > - Update the commit message.
> > > > >
> > > > > Changes in v2:
> > > > > - Removed updated copyright year from unchanged files.
> > > > > - make sgi_num as module parameter for event management driver.
> > > > > - Use same object for error detection and printing.
> > > > >
> > > > > Acked-by: Michal Simek <[email protected]>
> > > > [Abhyuday] Michal suggested to merge this via your tree. Please have a
> > look.
> > > > Please let me know if there is anything required from my side.
> > >
> > > Ok, I'll pick it up, thanks.
> >
> > Nope, I can not as for some reason it all did not show up on lore.kernel.org.
> >
> > Please resend this, with Michal's ack and I will be glad to pick it up.
> [Abhyuday] Sent v5 with Michal's ack.

Sent where? Do you have a lore.kernel.org link? Did you cc: me?

thanks,

greg k-h

2021-10-13 14:25:43

by Abhyuday Godhasara

[permalink] [raw]
Subject: RE: [PATCH v4 0/6] Add Xilinx Event Management Driver

Hi Greg,


Thanks,
Abhyuday

> -----Original Message-----
> From: [email protected] <[email protected]>
> Sent: Wednesday, October 13, 2021 7:41 PM
> To: Abhyuday Godhasara <[email protected]>
> Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> Manish Narani <[email protected]>; [email protected]; Sai Krishna
> Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
> [email protected]; [email protected]
> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
>
> On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara wrote:
> > Hi Greg,
> >
> > > -----Original Message-----
> > > From: [email protected] <[email protected]>
> > > Sent: Wednesday, October 13, 2021 6:36 PM
> > > To: Abhyuday Godhasara <[email protected]>
> > > Cc: Michal Simek <[email protected]>; Rajan Vaja
> > > <[email protected]>; Manish Narani <[email protected]>;
> > > [email protected]; Sai Krishna Potthuri <[email protected]>;
> > > Jiaying Liang <[email protected]>; linux- [email protected];
> > > [email protected]
> > > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > >
> > > On Wed, Oct 13, 2021 at 02:59:21PM +0200, [email protected]
> > > wrote:
> > > > On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara wrote:
> > > > > Hi Greg,
> > > > >
> > > > > > -----Original Message-----
> > > > > > From: Abhyuday Godhasara <[email protected]>
> > > > > > Sent: Wednesday, September 15, 2021 6:46 PM
> > > > > > To: [email protected]
> > > > > > Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > > > > <[email protected]>; Rajan Vaja <[email protected]>; Manish
> > > > > > Narani <[email protected]>; [email protected]; Sai Krishna
> > > > > > Potthuri <[email protected]>; Jiaying Liang
> > > > > > <[email protected]>; Jiaying Liang <[email protected]>;
> > > > > > [email protected];
> > > > > > linux-arm- [email protected]
> > > > > > Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > > > >
> > > > > > This Linux driver provides support to subscribe error/event
> > > > > > notification and receive notification from firmware for
> > > > > > error/event and forward event notification to subscribed
> > > > > > driver via
> > > registered callback.
> > > > > >
> > > > > > All types of events like power and error will be handled from
> > > > > > single place as part of event management driver.
> > > > > >
> > > > > > Changes in v4:
> > > > > > - Rebase on latest tree
> > > > > >
> > > > > > Changes in v3:
> > > > > > - Update the commit message.
> > > > > >
> > > > > > Changes in v2:
> > > > > > - Removed updated copyright year from unchanged files.
> > > > > > - make sgi_num as module parameter for event management driver.
> > > > > > - Use same object for error detection and printing.
> > > > > >
> > > > > > Acked-by: Michal Simek <[email protected]>
> > > > > [Abhyuday] Michal suggested to merge this via your tree. Please
> > > > > have a
> > > look.
> > > > > Please let me know if there is anything required from my side.
> > > >
> > > > Ok, I'll pick it up, thanks.
> > >
> > > Nope, I can not as for some reason it all did not show up on lore.kernel.org.
> > >
> > > Please resend this, with Michal's ack and I will be glad to pick it up.
> > [Abhyuday] Sent v5 with Michal's ack.
>
> Sent where? Do you have a lore.kernel.org link? Did you cc: me?
[Abhyuday] I added [email protected] and [email protected] in CC. also added you in "To" for v5.
Please let me know if require anything else also.

>
> thanks,
>
> greg k-h

2021-10-13 14:27:47

by Abhyuday Godhasara

[permalink] [raw]
Subject: RE: [PATCH v4 0/6] Add Xilinx Event Management Driver

Hi Greg,

Replaying inline,

> -----Original Message-----
> From: Abhyuday Godhasara
> Sent: Wednesday, October 13, 2021 7:51 PM
> To: [email protected]
> Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> Manish Narani <[email protected]>; [email protected]; Sai Krishna
> Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
> [email protected]; [email protected]
> Subject: RE: [PATCH v4 0/6] Add Xilinx Event Management Driver
>
> Hi Greg,
>
>
> Thanks,
> Abhyuday
>
> > -----Original Message-----
> > From: [email protected] <[email protected]>
> > Sent: Wednesday, October 13, 2021 7:41 PM
> > To: Abhyuday Godhasara <[email protected]>
> > Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> > Manish Narani <[email protected]>; [email protected]; Sai Krishna
> > Potthuri <[email protected]>; Jiaying Liang <[email protected]>;
> > linux- [email protected]; [email protected]
> > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >
> > On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara wrote:
> > > Hi Greg,
> > >
> > > > -----Original Message-----
> > > > From: [email protected] <[email protected]>
> > > > Sent: Wednesday, October 13, 2021 6:36 PM
> > > > To: Abhyuday Godhasara <[email protected]>
> > > > Cc: Michal Simek <[email protected]>; Rajan Vaja
> > > > <[email protected]>; Manish Narani <[email protected]>;
> > > > [email protected]; Sai Krishna Potthuri <[email protected]>;
> > > > Jiaying Liang <[email protected]>; linux- [email protected];
> > > > [email protected]
> > > > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > >
> > > > On Wed, Oct 13, 2021 at 02:59:21PM +0200,
> > > > [email protected]
> > > > wrote:
> > > > > On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara
> wrote:
> > > > > > Hi Greg,
> > > > > >
> > > > > > > -----Original Message-----
> > > > > > > From: Abhyuday Godhasara <[email protected]>
> > > > > > > Sent: Wednesday, September 15, 2021 6:46 PM
> > > > > > > To: [email protected]
> > > > > > > Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > > > > > <[email protected]>; Rajan Vaja <[email protected]>;
> > > > > > > Manish Narani <[email protected]>; [email protected]; Sai
> > > > > > > Krishna Potthuri <[email protected]>; Jiaying Liang
> > > > > > > <[email protected]>; Jiaying Liang <[email protected]>;
> > > > > > > [email protected];
> > > > > > > linux-arm- [email protected]
> > > > > > > Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > > > > >
> > > > > > > This Linux driver provides support to subscribe error/event
> > > > > > > notification and receive notification from firmware for
> > > > > > > error/event and forward event notification to subscribed
> > > > > > > driver via
> > > > registered callback.
> > > > > > >
> > > > > > > All types of events like power and error will be handled
> > > > > > > from single place as part of event management driver.
> > > > > > >
> > > > > > > Changes in v4:
> > > > > > > - Rebase on latest tree
> > > > > > >
> > > > > > > Changes in v3:
> > > > > > > - Update the commit message.
> > > > > > >
> > > > > > > Changes in v2:
> > > > > > > - Removed updated copyright year from unchanged files.
> > > > > > > - make sgi_num as module parameter for event management driver.
> > > > > > > - Use same object for error detection and printing.
> > > > > > >
> > > > > > > Acked-by: Michal Simek <[email protected]>
> > > > > > [Abhyuday] Michal suggested to merge this via your tree.
> > > > > > Please have a
> > > > look.
> > > > > > Please let me know if there is anything required from my side.
> > > > >
> > > > > Ok, I'll pick it up, thanks.
> > > >
> > > > Nope, I can not as for some reason it all did not show up on
> lore.kernel.org.
> > > >
> > > > Please resend this, with Michal's ack and I will be glad to pick it up.
> > > [Abhyuday] Sent v5 with Michal's ack.
> >
> > Sent where? Do you have a lore.kernel.org link? Did you cc: me?
>
[Abhyuday] I added [email protected] and [email protected] in CC. also added you in "To" for v5.
Please let me know if require anything else.

Thanks,
Abhyuday

>
> >
> > thanks,
> >
> > greg k-h

2021-10-13 14:32:57

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver

On Wed, Oct 13, 2021 at 02:21:01PM +0000, Abhyuday Godhasara wrote:
> Hi Greg,
>
>
> Thanks,
> Abhyuday
>
> > -----Original Message-----
> > From: [email protected] <[email protected]>
> > Sent: Wednesday, October 13, 2021 7:41 PM
> > To: Abhyuday Godhasara <[email protected]>
> > Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> > Manish Narani <[email protected]>; [email protected]; Sai Krishna
> > Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
> > [email protected]; [email protected]
> > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >
> > On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara wrote:
> > > Hi Greg,
> > >
> > > > -----Original Message-----
> > > > From: [email protected] <[email protected]>
> > > > Sent: Wednesday, October 13, 2021 6:36 PM
> > > > To: Abhyuday Godhasara <[email protected]>
> > > > Cc: Michal Simek <[email protected]>; Rajan Vaja
> > > > <[email protected]>; Manish Narani <[email protected]>;
> > > > [email protected]; Sai Krishna Potthuri <[email protected]>;
> > > > Jiaying Liang <[email protected]>; linux- [email protected];
> > > > [email protected]
> > > > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > >
> > > > On Wed, Oct 13, 2021 at 02:59:21PM +0200, [email protected]
> > > > wrote:
> > > > > On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara wrote:
> > > > > > Hi Greg,
> > > > > >
> > > > > > > -----Original Message-----
> > > > > > > From: Abhyuday Godhasara <[email protected]>
> > > > > > > Sent: Wednesday, September 15, 2021 6:46 PM
> > > > > > > To: [email protected]
> > > > > > > Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > > > > > <[email protected]>; Rajan Vaja <[email protected]>; Manish
> > > > > > > Narani <[email protected]>; [email protected]; Sai Krishna
> > > > > > > Potthuri <[email protected]>; Jiaying Liang
> > > > > > > <[email protected]>; Jiaying Liang <[email protected]>;
> > > > > > > [email protected];
> > > > > > > linux-arm- [email protected]
> > > > > > > Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > > > > >
> > > > > > > This Linux driver provides support to subscribe error/event
> > > > > > > notification and receive notification from firmware for
> > > > > > > error/event and forward event notification to subscribed
> > > > > > > driver via
> > > > registered callback.
> > > > > > >
> > > > > > > All types of events like power and error will be handled from
> > > > > > > single place as part of event management driver.
> > > > > > >
> > > > > > > Changes in v4:
> > > > > > > - Rebase on latest tree
> > > > > > >
> > > > > > > Changes in v3:
> > > > > > > - Update the commit message.
> > > > > > >
> > > > > > > Changes in v2:
> > > > > > > - Removed updated copyright year from unchanged files.
> > > > > > > - make sgi_num as module parameter for event management driver.
> > > > > > > - Use same object for error detection and printing.
> > > > > > >
> > > > > > > Acked-by: Michal Simek <[email protected]>
> > > > > > [Abhyuday] Michal suggested to merge this via your tree. Please
> > > > > > have a
> > > > look.
> > > > > > Please let me know if there is anything required from my side.
> > > > >
> > > > > Ok, I'll pick it up, thanks.
> > > >
> > > > Nope, I can not as for some reason it all did not show up on lore.kernel.org.
> > > >
> > > > Please resend this, with Michal's ack and I will be glad to pick it up.
> > > [Abhyuday] Sent v5 with Michal's ack.
> >
> > Sent where? Do you have a lore.kernel.org link? Did you cc: me?
> [Abhyuday] I added [email protected] and [email protected] in CC. also added you in "To" for v5.
> Please let me know if require anything else also.

Again, I do not see them in my inbox, nor do I see them on
lore.kernel.org.

Are you _sure_ you sent them?

thanks,

greg k-h

2021-10-13 15:33:06

by Michal Simek

[permalink] [raw]
Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver



On 10/13/21 16:29, [email protected] wrote:
> On Wed, Oct 13, 2021 at 02:21:01PM +0000, Abhyuday Godhasara wrote:
>> Hi Greg,
>>
>>
>> Thanks,
>> Abhyuday
>>
>>> -----Original Message-----
>>> From: [email protected] <[email protected]>
>>> Sent: Wednesday, October 13, 2021 7:41 PM
>>> To: Abhyuday Godhasara <[email protected]>
>>> Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
>>> Manish Narani <[email protected]>; [email protected]; Sai Krishna
>>> Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
>>> [email protected]; [email protected]
>>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
>>>
>>> On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara wrote:
>>>> Hi Greg,
>>>>
>>>>> -----Original Message-----
>>>>> From: [email protected] <[email protected]>
>>>>> Sent: Wednesday, October 13, 2021 6:36 PM
>>>>> To: Abhyuday Godhasara <[email protected]>
>>>>> Cc: Michal Simek <[email protected]>; Rajan Vaja
>>>>> <[email protected]>; Manish Narani <[email protected]>;
>>>>> [email protected]; Sai Krishna Potthuri <[email protected]>;
>>>>> Jiaying Liang <[email protected]>; linux- [email protected];
>>>>> [email protected]
>>>>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
>>>>>
>>>>> On Wed, Oct 13, 2021 at 02:59:21PM +0200, [email protected]
>>>>> wrote:
>>>>>> On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara wrote:
>>>>>>> Hi Greg,
>>>>>>>
>>>>>>>> -----Original Message-----
>>>>>>>> From: Abhyuday Godhasara <[email protected]>
>>>>>>>> Sent: Wednesday, September 15, 2021 6:46 PM
>>>>>>>> To: [email protected]
>>>>>>>> Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
>>>>>>>> <[email protected]>; Rajan Vaja <[email protected]>; Manish
>>>>>>>> Narani <[email protected]>; [email protected]; Sai Krishna
>>>>>>>> Potthuri <[email protected]>; Jiaying Liang
>>>>>>>> <[email protected]>; Jiaying Liang <[email protected]>;
>>>>>>>> [email protected];
>>>>>>>> linux-arm- [email protected]
>>>>>>>> Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
>>>>>>>>
>>>>>>>> This Linux driver provides support to subscribe error/event
>>>>>>>> notification and receive notification from firmware for
>>>>>>>> error/event and forward event notification to subscribed
>>>>>>>> driver via
>>>>> registered callback.
>>>>>>>>
>>>>>>>> All types of events like power and error will be handled from
>>>>>>>> single place as part of event management driver.
>>>>>>>>
>>>>>>>> Changes in v4:
>>>>>>>> - Rebase on latest tree
>>>>>>>>
>>>>>>>> Changes in v3:
>>>>>>>> - Update the commit message.
>>>>>>>>
>>>>>>>> Changes in v2:
>>>>>>>> - Removed updated copyright year from unchanged files.
>>>>>>>> - make sgi_num as module parameter for event management driver.
>>>>>>>> - Use same object for error detection and printing.
>>>>>>>>
>>>>>>>> Acked-by: Michal Simek <[email protected]>
>>>>>>> [Abhyuday] Michal suggested to merge this via your tree. Please
>>>>>>> have a
>>>>> look.
>>>>>>> Please let me know if there is anything required from my side.
>>>>>>
>>>>>> Ok, I'll pick it up, thanks.
>>>>>
>>>>> Nope, I can not as for some reason it all did not show up on lore.kernel.org.
>>>>>
>>>>> Please resend this, with Michal's ack and I will be glad to pick it up.
>>>> [Abhyuday] Sent v5 with Michal's ack.
>>>
>>> Sent where? Do you have a lore.kernel.org link? Did you cc: me?
>> [Abhyuday] I added [email protected] and [email protected] in CC. also added you in "To" for v5.
>> Please let me know if require anything else also.
>
> Again, I do not see them in my inbox, nor do I see them on
> lore.kernel.org.
>
> Are you _sure_ you sent them?

I got it but I expect they are not sent out of xilinx.com domain and you
are sort of blocked. You should talk to IT or just simply use any email
out of xilinx domain to check that you got it.
Also I am not able to see it in lore.

Thanks,
Michal

2021-10-21 14:00:18

by Abhyuday Godhasara

[permalink] [raw]
Subject: RE: [PATCH v4 0/6] Add Xilinx Event Management Driver

Hi Greg,

> -----Original Message-----
> From: Michal Simek <[email protected]>
> Sent: Wednesday, October 13, 2021 9:00 PM
> To: [email protected]; Abhyuday Godhasara
> <[email protected]>
> Cc: Rajan Vaja <[email protected]>; Manish Narani <[email protected]>;
> [email protected]; Sai Krishna Potthuri <[email protected]>; Jiaying
> Liang <[email protected]>; [email protected]; linux-arm-
> [email protected]
> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
>
>
>
> On 10/13/21 16:29, [email protected] wrote:
> > On Wed, Oct 13, 2021 at 02:21:01PM +0000, Abhyuday Godhasara wrote:
> >> Hi Greg,
> >>
> >>
> >> Thanks,
> >> Abhyuday
> >>
> >>> -----Original Message-----
> >>> From: [email protected] <[email protected]>
> >>> Sent: Wednesday, October 13, 2021 7:41 PM
> >>> To: Abhyuday Godhasara <[email protected]>
> >>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> >>> <[email protected]>; Manish Narani <[email protected]>;
> >>> [email protected]; Sai Krishna Potthuri <[email protected]>;
> >>> Jiaying Liang <[email protected]>; linux- [email protected];
> >>> [email protected]
> >>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >>>
> >>> On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara wrote:
> >>>> Hi Greg,
> >>>>
> >>>>> -----Original Message-----
> >>>>> From: [email protected] <[email protected]>
> >>>>> Sent: Wednesday, October 13, 2021 6:36 PM
> >>>>> To: Abhyuday Godhasara <[email protected]>
> >>>>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> >>>>> <[email protected]>; Manish Narani <[email protected]>;
> >>>>> [email protected]; Sai Krishna Potthuri <[email protected]>;
> >>>>> Jiaying Liang <[email protected]>; linux- [email protected];
> >>>>> [email protected]
> >>>>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >>>>>
> >>>>> On Wed, Oct 13, 2021 at 02:59:21PM +0200,
> >>>>> [email protected]
> >>>>> wrote:
> >>>>>> On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara
> wrote:
> >>>>>>> Hi Greg,
> >>>>>>>
> >>>>>>>> -----Original Message-----
> >>>>>>>> From: Abhyuday Godhasara <[email protected]>
> >>>>>>>> Sent: Wednesday, September 15, 2021 6:46 PM
> >>>>>>>> To: [email protected]
> >>>>>>>> Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> >>>>>>>> <[email protected]>; Rajan Vaja <[email protected]>; Manish
> >>>>>>>> Narani <[email protected]>; [email protected]; Sai Krishna
> >>>>>>>> Potthuri <[email protected]>; Jiaying Liang
> >>>>>>>> <[email protected]>; Jiaying Liang <[email protected]>;
> >>>>>>>> [email protected];
> >>>>>>>> linux-arm- [email protected]
> >>>>>>>> Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >>>>>>>>
> >>>>>>>> This Linux driver provides support to subscribe error/event
> >>>>>>>> notification and receive notification from firmware for
> >>>>>>>> error/event and forward event notification to subscribed driver
> >>>>>>>> via
> >>>>> registered callback.
> >>>>>>>>
> >>>>>>>> All types of events like power and error will be handled from
> >>>>>>>> single place as part of event management driver.
> >>>>>>>>
> >>>>>>>> Changes in v4:
> >>>>>>>> - Rebase on latest tree
> >>>>>>>>
> >>>>>>>> Changes in v3:
> >>>>>>>> - Update the commit message.
> >>>>>>>>
> >>>>>>>> Changes in v2:
> >>>>>>>> - Removed updated copyright year from unchanged files.
> >>>>>>>> - make sgi_num as module parameter for event management driver.
> >>>>>>>> - Use same object for error detection and printing.
> >>>>>>>>
> >>>>>>>> Acked-by: Michal Simek <[email protected]>
> >>>>>>> [Abhyuday] Michal suggested to merge this via your tree. Please
> >>>>>>> have a
> >>>>> look.
> >>>>>>> Please let me know if there is anything required from my side.
> >>>>>>
> >>>>>> Ok, I'll pick it up, thanks.
> >>>>>
> >>>>> Nope, I can not as for some reason it all did not show up on
> lore.kernel.org.
> >>>>>
> >>>>> Please resend this, with Michal's ack and I will be glad to pick it up.
> >>>> [Abhyuday] Sent v5 with Michal's ack.
> >>>
> >>> Sent where? Do you have a lore.kernel.org link? Did you cc: me?
> >> [Abhyuday] I added [email protected] and linux-arm-
> [email protected] in CC. also added you in "To" for v5.
> >> Please let me know if require anything else also.
> >
> > Again, I do not see them in my inbox, nor do I see them on
> > lore.kernel.org.
> >
> > Are you _sure_ you sent them?
>
> I got it but I expect they are not sent out of xilinx.com domain and you are sort
> of blocked. You should talk to IT or just simply use any email out of xilinx
> domain to check that you got it.
> Also I am not able to see it in lore.
[Abhyuday] Now v5 are available in lore.kernel.org

Thanks,
Abhyuday
>
> Thanks,
> Michal

2021-10-21 14:16:11

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver

On Thu, Oct 21, 2021 at 01:55:49PM +0000, Abhyuday Godhasara wrote:
> Hi Greg,
>
> > -----Original Message-----
> > From: Michal Simek <[email protected]>
> > Sent: Wednesday, October 13, 2021 9:00 PM
> > To: [email protected]; Abhyuday Godhasara
> > <[email protected]>
> > Cc: Rajan Vaja <[email protected]>; Manish Narani <[email protected]>;
> > [email protected]; Sai Krishna Potthuri <[email protected]>; Jiaying
> > Liang <[email protected]>; [email protected]; linux-arm-
> > [email protected]
> > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >
> >
> >
> > On 10/13/21 16:29, [email protected] wrote:
> > > On Wed, Oct 13, 2021 at 02:21:01PM +0000, Abhyuday Godhasara wrote:
> > >> Hi Greg,
> > >>
> > >>
> > >> Thanks,
> > >> Abhyuday
> > >>
> > >>> -----Original Message-----
> > >>> From: [email protected] <[email protected]>
> > >>> Sent: Wednesday, October 13, 2021 7:41 PM
> > >>> To: Abhyuday Godhasara <[email protected]>
> > >>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> > >>> <[email protected]>; Manish Narani <[email protected]>;
> > >>> [email protected]; Sai Krishna Potthuri <[email protected]>;
> > >>> Jiaying Liang <[email protected]>; linux- [email protected];
> > >>> [email protected]
> > >>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > >>>
> > >>> On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara wrote:
> > >>>> Hi Greg,
> > >>>>
> > >>>>> -----Original Message-----
> > >>>>> From: [email protected] <[email protected]>
> > >>>>> Sent: Wednesday, October 13, 2021 6:36 PM
> > >>>>> To: Abhyuday Godhasara <[email protected]>
> > >>>>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> > >>>>> <[email protected]>; Manish Narani <[email protected]>;
> > >>>>> [email protected]; Sai Krishna Potthuri <[email protected]>;
> > >>>>> Jiaying Liang <[email protected]>; linux- [email protected];
> > >>>>> [email protected]
> > >>>>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > >>>>>
> > >>>>> On Wed, Oct 13, 2021 at 02:59:21PM +0200,
> > >>>>> [email protected]
> > >>>>> wrote:
> > >>>>>> On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara
> > wrote:
> > >>>>>>> Hi Greg,
> > >>>>>>>
> > >>>>>>>> -----Original Message-----
> > >>>>>>>> From: Abhyuday Godhasara <[email protected]>
> > >>>>>>>> Sent: Wednesday, September 15, 2021 6:46 PM
> > >>>>>>>> To: [email protected]
> > >>>>>>>> Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > >>>>>>>> <[email protected]>; Rajan Vaja <[email protected]>; Manish
> > >>>>>>>> Narani <[email protected]>; [email protected]; Sai Krishna
> > >>>>>>>> Potthuri <[email protected]>; Jiaying Liang
> > >>>>>>>> <[email protected]>; Jiaying Liang <[email protected]>;
> > >>>>>>>> [email protected];
> > >>>>>>>> linux-arm- [email protected]
> > >>>>>>>> Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > >>>>>>>>
> > >>>>>>>> This Linux driver provides support to subscribe error/event
> > >>>>>>>> notification and receive notification from firmware for
> > >>>>>>>> error/event and forward event notification to subscribed driver
> > >>>>>>>> via
> > >>>>> registered callback.
> > >>>>>>>>
> > >>>>>>>> All types of events like power and error will be handled from
> > >>>>>>>> single place as part of event management driver.
> > >>>>>>>>
> > >>>>>>>> Changes in v4:
> > >>>>>>>> - Rebase on latest tree
> > >>>>>>>>
> > >>>>>>>> Changes in v3:
> > >>>>>>>> - Update the commit message.
> > >>>>>>>>
> > >>>>>>>> Changes in v2:
> > >>>>>>>> - Removed updated copyright year from unchanged files.
> > >>>>>>>> - make sgi_num as module parameter for event management driver.
> > >>>>>>>> - Use same object for error detection and printing.
> > >>>>>>>>
> > >>>>>>>> Acked-by: Michal Simek <[email protected]>
> > >>>>>>> [Abhyuday] Michal suggested to merge this via your tree. Please
> > >>>>>>> have a
> > >>>>> look.
> > >>>>>>> Please let me know if there is anything required from my side.
> > >>>>>>
> > >>>>>> Ok, I'll pick it up, thanks.
> > >>>>>
> > >>>>> Nope, I can not as for some reason it all did not show up on
> > lore.kernel.org.
> > >>>>>
> > >>>>> Please resend this, with Michal's ack and I will be glad to pick it up.
> > >>>> [Abhyuday] Sent v5 with Michal's ack.
> > >>>
> > >>> Sent where? Do you have a lore.kernel.org link? Did you cc: me?
> > >> [Abhyuday] I added [email protected] and linux-arm-
> > [email protected] in CC. also added you in "To" for v5.
> > >> Please let me know if require anything else also.
> > >
> > > Again, I do not see them in my inbox, nor do I see them on
> > > lore.kernel.org.
> > >
> > > Are you _sure_ you sent them?
> >
> > I got it but I expect they are not sent out of xilinx.com domain and you are sort
> > of blocked. You should talk to IT or just simply use any email out of xilinx
> > domain to check that you got it.
> > Also I am not able to see it in lore.
> [Abhyuday] Now v5 are available in lore.kernel.org

Looks good, all now reviewed from my side.

greg k-h

2021-10-21 14:20:22

by Abhyuday Godhasara

[permalink] [raw]
Subject: RE: [PATCH v4 0/6] Add Xilinx Event Management Driver

Hi Greg,

> -----Original Message-----
> From: [email protected] <[email protected]>
> Sent: Thursday, October 21, 2021 7:43 PM
> To: Abhyuday Godhasara <[email protected]>
> Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> Manish Narani <[email protected]>; [email protected]; Sai Krishna
> Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
> [email protected]; [email protected]
> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
>
> On Thu, Oct 21, 2021 at 01:55:49PM +0000, Abhyuday Godhasara wrote:
> > Hi Greg,
> >
> > > -----Original Message-----
> > > From: Michal Simek <[email protected]>
> > > Sent: Wednesday, October 13, 2021 9:00 PM
> > > To: [email protected]; Abhyuday Godhasara
> > > <[email protected]>
> > > Cc: Rajan Vaja <[email protected]>; Manish Narani
> > > <[email protected]>; [email protected]; Sai Krishna Potthuri
> > > <[email protected]>; Jiaying Liang <[email protected]>;
> > > [email protected]; linux-arm- [email protected]
> > > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > >
> > >
> > >
> > > On 10/13/21 16:29, [email protected] wrote:
> > > > On Wed, Oct 13, 2021 at 02:21:01PM +0000, Abhyuday Godhasara wrote:
> > > >> Hi Greg,
> > > >>
> > > >>
> > > >> Thanks,
> > > >> Abhyuday
> > > >>
> > > >>> -----Original Message-----
> > > >>> From: [email protected] <[email protected]>
> > > >>> Sent: Wednesday, October 13, 2021 7:41 PM
> > > >>> To: Abhyuday Godhasara <[email protected]>
> > > >>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> > > >>> <[email protected]>; Manish Narani <[email protected]>;
> > > >>> [email protected]; Sai Krishna Potthuri <[email protected]>;
> > > >>> Jiaying Liang <[email protected]>; linux-
> > > >>> [email protected]; [email protected]
> > > >>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > >>>
> > > >>> On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara
> wrote:
> > > >>>> Hi Greg,
> > > >>>>
> > > >>>>> -----Original Message-----
> > > >>>>> From: [email protected] <[email protected]>
> > > >>>>> Sent: Wednesday, October 13, 2021 6:36 PM
> > > >>>>> To: Abhyuday Godhasara <[email protected]>
> > > >>>>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> > > >>>>> <[email protected]>; Manish Narani <[email protected]>;
> > > >>>>> [email protected]; Sai Krishna Potthuri
> > > >>>>> <[email protected]>; Jiaying Liang <[email protected]>;
> > > >>>>> linux- [email protected];
> > > >>>>> [email protected]
> > > >>>>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > >>>>>
> > > >>>>> On Wed, Oct 13, 2021 at 02:59:21PM +0200,
> > > >>>>> [email protected]
> > > >>>>> wrote:
> > > >>>>>> On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara
> > > wrote:
> > > >>>>>>> Hi Greg,
> > > >>>>>>>
> > > >>>>>>>> -----Original Message-----
> > > >>>>>>>> From: Abhyuday Godhasara <[email protected]>
> > > >>>>>>>> Sent: Wednesday, September 15, 2021 6:46 PM
> > > >>>>>>>> To: [email protected]
> > > >>>>>>>> Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > >>>>>>>> <[email protected]>; Rajan Vaja <[email protected]>;
> > > >>>>>>>> Manish Narani <[email protected]>; [email protected];
> Sai
> > > >>>>>>>> Krishna Potthuri <[email protected]>; Jiaying Liang
> > > >>>>>>>> <[email protected]>; Jiaying Liang <[email protected]>;
> > > >>>>>>>> [email protected];
> > > >>>>>>>> linux-arm- [email protected]
> > > >>>>>>>> Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > >>>>>>>>
> > > >>>>>>>> This Linux driver provides support to subscribe error/event
> > > >>>>>>>> notification and receive notification from firmware for
> > > >>>>>>>> error/event and forward event notification to subscribed
> > > >>>>>>>> driver via
> > > >>>>> registered callback.
> > > >>>>>>>>
> > > >>>>>>>> All types of events like power and error will be handled
> > > >>>>>>>> from single place as part of event management driver.
> > > >>>>>>>>
> > > >>>>>>>> Changes in v4:
> > > >>>>>>>> - Rebase on latest tree
> > > >>>>>>>>
> > > >>>>>>>> Changes in v3:
> > > >>>>>>>> - Update the commit message.
> > > >>>>>>>>
> > > >>>>>>>> Changes in v2:
> > > >>>>>>>> - Removed updated copyright year from unchanged files.
> > > >>>>>>>> - make sgi_num as module parameter for event management
> driver.
> > > >>>>>>>> - Use same object for error detection and printing.
> > > >>>>>>>>
> > > >>>>>>>> Acked-by: Michal Simek <[email protected]>
> > > >>>>>>> [Abhyuday] Michal suggested to merge this via your tree.
> > > >>>>>>> Please have a
> > > >>>>> look.
> > > >>>>>>> Please let me know if there is anything required from my side.
> > > >>>>>>
> > > >>>>>> Ok, I'll pick it up, thanks.
> > > >>>>>
> > > >>>>> Nope, I can not as for some reason it all did not show up on
> > > lore.kernel.org.
> > > >>>>>
> > > >>>>> Please resend this, with Michal's ack and I will be glad to pick it up.
> > > >>>> [Abhyuday] Sent v5 with Michal's ack.
> > > >>>
> > > >>> Sent where? Do you have a lore.kernel.org link? Did you cc: me?
> > > >> [Abhyuday] I added [email protected] and linux-arm-
> > > [email protected] in CC. also added you in "To" for v5.
> > > >> Please let me know if require anything else also.
> > > >
> > > > Again, I do not see them in my inbox, nor do I see them on
> > > > lore.kernel.org.
> > > >
> > > > Are you _sure_ you sent them?
> > >
> > > I got it but I expect they are not sent out of xilinx.com domain and
> > > you are sort of blocked. You should talk to IT or just simply use
> > > any email out of xilinx domain to check that you got it.
> > > Also I am not able to see it in lore.
> > [Abhyuday] Now v5 are available in lore.kernel.org
>
> Looks good, all now reviewed from my side.
[Abhyuday] Thanks for the review, please can you merge it from your tree as Michal suggested.

Thanks,
Abhyuday
>
> greg k-h

2021-10-21 14:30:51

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver

On Thu, Oct 21, 2021 at 02:18:33PM +0000, Abhyuday Godhasara wrote:
> Hi Greg,
>
> > -----Original Message-----
> > From: [email protected] <[email protected]>
> > Sent: Thursday, October 21, 2021 7:43 PM
> > To: Abhyuday Godhasara <[email protected]>
> > Cc: Michal Simek <[email protected]>; Rajan Vaja <[email protected]>;
> > Manish Narani <[email protected]>; [email protected]; Sai Krishna
> > Potthuri <[email protected]>; Jiaying Liang <[email protected]>; linux-
> > [email protected]; [email protected]
> > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> >
> > On Thu, Oct 21, 2021 at 01:55:49PM +0000, Abhyuday Godhasara wrote:
> > > Hi Greg,
> > >
> > > > -----Original Message-----
> > > > From: Michal Simek <[email protected]>
> > > > Sent: Wednesday, October 13, 2021 9:00 PM
> > > > To: [email protected]; Abhyuday Godhasara
> > > > <[email protected]>
> > > > Cc: Rajan Vaja <[email protected]>; Manish Narani
> > > > <[email protected]>; [email protected]; Sai Krishna Potthuri
> > > > <[email protected]>; Jiaying Liang <[email protected]>;
> > > > [email protected]; linux-arm- [email protected]
> > > > Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > >
> > > >
> > > >
> > > > On 10/13/21 16:29, [email protected] wrote:
> > > > > On Wed, Oct 13, 2021 at 02:21:01PM +0000, Abhyuday Godhasara wrote:
> > > > >> Hi Greg,
> > > > >>
> > > > >>
> > > > >> Thanks,
> > > > >> Abhyuday
> > > > >>
> > > > >>> -----Original Message-----
> > > > >>> From: [email protected] <[email protected]>
> > > > >>> Sent: Wednesday, October 13, 2021 7:41 PM
> > > > >>> To: Abhyuday Godhasara <[email protected]>
> > > > >>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> > > > >>> <[email protected]>; Manish Narani <[email protected]>;
> > > > >>> [email protected]; Sai Krishna Potthuri <[email protected]>;
> > > > >>> Jiaying Liang <[email protected]>; linux-
> > > > >>> [email protected]; [email protected]
> > > > >>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > > >>>
> > > > >>> On Wed, Oct 13, 2021 at 01:57:59PM +0000, Abhyuday Godhasara
> > wrote:
> > > > >>>> Hi Greg,
> > > > >>>>
> > > > >>>>> -----Original Message-----
> > > > >>>>> From: [email protected] <[email protected]>
> > > > >>>>> Sent: Wednesday, October 13, 2021 6:36 PM
> > > > >>>>> To: Abhyuday Godhasara <[email protected]>
> > > > >>>>> Cc: Michal Simek <[email protected]>; Rajan Vaja
> > > > >>>>> <[email protected]>; Manish Narani <[email protected]>;
> > > > >>>>> [email protected]; Sai Krishna Potthuri
> > > > >>>>> <[email protected]>; Jiaying Liang <[email protected]>;
> > > > >>>>> linux- [email protected];
> > > > >>>>> [email protected]
> > > > >>>>> Subject: Re: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > > >>>>>
> > > > >>>>> On Wed, Oct 13, 2021 at 02:59:21PM +0200,
> > > > >>>>> [email protected]
> > > > >>>>> wrote:
> > > > >>>>>> On Wed, Oct 13, 2021 at 12:27:58PM +0000, Abhyuday Godhasara
> > > > wrote:
> > > > >>>>>>> Hi Greg,
> > > > >>>>>>>
> > > > >>>>>>>> -----Original Message-----
> > > > >>>>>>>> From: Abhyuday Godhasara <[email protected]>
> > > > >>>>>>>> Sent: Wednesday, September 15, 2021 6:46 PM
> > > > >>>>>>>> To: [email protected]
> > > > >>>>>>>> Cc: Michal Simek <[email protected]>; Abhyuday Godhasara
> > > > >>>>>>>> <[email protected]>; Rajan Vaja <[email protected]>;
> > > > >>>>>>>> Manish Narani <[email protected]>; [email protected];
> > Sai
> > > > >>>>>>>> Krishna Potthuri <[email protected]>; Jiaying Liang
> > > > >>>>>>>> <[email protected]>; Jiaying Liang <[email protected]>;
> > > > >>>>>>>> [email protected];
> > > > >>>>>>>> linux-arm- [email protected]
> > > > >>>>>>>> Subject: [PATCH v4 0/6] Add Xilinx Event Management Driver
> > > > >>>>>>>>
> > > > >>>>>>>> This Linux driver provides support to subscribe error/event
> > > > >>>>>>>> notification and receive notification from firmware for
> > > > >>>>>>>> error/event and forward event notification to subscribed
> > > > >>>>>>>> driver via
> > > > >>>>> registered callback.
> > > > >>>>>>>>
> > > > >>>>>>>> All types of events like power and error will be handled
> > > > >>>>>>>> from single place as part of event management driver.
> > > > >>>>>>>>
> > > > >>>>>>>> Changes in v4:
> > > > >>>>>>>> - Rebase on latest tree
> > > > >>>>>>>>
> > > > >>>>>>>> Changes in v3:
> > > > >>>>>>>> - Update the commit message.
> > > > >>>>>>>>
> > > > >>>>>>>> Changes in v2:
> > > > >>>>>>>> - Removed updated copyright year from unchanged files.
> > > > >>>>>>>> - make sgi_num as module parameter for event management
> > driver.
> > > > >>>>>>>> - Use same object for error detection and printing.
> > > > >>>>>>>>
> > > > >>>>>>>> Acked-by: Michal Simek <[email protected]>
> > > > >>>>>>> [Abhyuday] Michal suggested to merge this via your tree.
> > > > >>>>>>> Please have a
> > > > >>>>> look.
> > > > >>>>>>> Please let me know if there is anything required from my side.
> > > > >>>>>>
> > > > >>>>>> Ok, I'll pick it up, thanks.
> > > > >>>>>
> > > > >>>>> Nope, I can not as for some reason it all did not show up on
> > > > lore.kernel.org.
> > > > >>>>>
> > > > >>>>> Please resend this, with Michal's ack and I will be glad to pick it up.
> > > > >>>> [Abhyuday] Sent v5 with Michal's ack.
> > > > >>>
> > > > >>> Sent where? Do you have a lore.kernel.org link? Did you cc: me?
> > > > >> [Abhyuday] I added [email protected] and linux-arm-
> > > > [email protected] in CC. also added you in "To" for v5.
> > > > >> Please let me know if require anything else also.
> > > > >
> > > > > Again, I do not see them in my inbox, nor do I see them on
> > > > > lore.kernel.org.
> > > > >
> > > > > Are you _sure_ you sent them?
> > > >
> > > > I got it but I expect they are not sent out of xilinx.com domain and
> > > > you are sort of blocked. You should talk to IT or just simply use
> > > > any email out of xilinx domain to check that you got it.
> > > > Also I am not able to see it in lore.
> > > [Abhyuday] Now v5 are available in lore.kernel.org
> >
> > Looks good, all now reviewed from my side.
> [Abhyuday] Thanks for the review, please can you merge it from your tree as Michal suggested.

Ah, oops, you are right, I'll go queue it up now, thanks.

greg k-h