From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Artur Petrosyan <Arthur.Petrosyan@synopsys.com>
Cc: Felipe Balbi <balbi@kernel.org>,
Minas Harutyunyan <Minas.Harutyunyan@synopsys.com>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
John Youn <John.Youn@synopsys.com>
Subject: Re: [PATCH v2 00/12] usb: dwc2: Add clock gating support.
Date: Tue, 13 Apr 2021 12:26:11 +0200 [thread overview]
Message-ID: <YHVxw26V2SPzpoQy@kroah.com> (raw)
In-Reply-To: <9b21e84b-817d-df04-1eb1-78c7ca1c931e@synopsys.com>
On Tue, Apr 13, 2021 at 08:03:23AM +0000, Artur Petrosyan wrote:
> Hi Greg,
>
> On 4/13/2021 11:35, Artur Petrosyan wrote:
> > This patch set adds clock gating power saving support for
> > dwc2 core.
> > It adds support for the following cases described by programming guide.
> > 1. Enter to clock gating from USB_SUSPEND interrupt.
> > 2. Clock gating entering flow by system suspend.
> > 3. Clock gating exiting flow by system resume.
> > 4. Exit clock gating from wakeup interrupt.
> > 5. Exit clock gating from session request interrupt.
> > 6. Exit clock gating when port reset is asserted.
> >
> > Additional cases to exit form clock gating were needed which are not
> > described in clock gating programming guide.
> > 1. Added clock gating exit flow before removing driver
> > 2. Exit clock gating in urb enqueue.
> >
> > It updates the implementation of dwc2 entering and exiting clock
> > gating when a port is suspended or resumed.
> >
> > The patch set also adds the implementation of function handlers
> > for entering and exiting host or device clock gating.
> >
> > NOTE: This is the third patch set in the power saving mode fixes
> > series.
> > This patch set is part of multiple series and is continuation
> > of the "usb: dwc2: Fix and improve power saving modes" patch set.
> > (Patch set link: https://marc.info/?l=linux-usb&m=160379622403975&w=2).
> > The patches that were included in the "usb: dwc2:
> > Fix and improve power saving modes" which was submitted
> > earlier was too large and needed to be split up into
> > smaller patch sets.
> >
> > Changes since V1:
> > Re sending the patch set as v1 because vger.kernel.org rejected
> > the cover letter. With error code "550 5.7.1 Content-Policy"
> > No changes in the patches or the source code.
> >
> >
> > Artur Petrosyan (12):
> > usb: dwc2: Add device clock gating support functions
> > usb: dwc2: Add host clock gating support functions
> > usb: dwc2: Allow entering clock gating from USB_SUSPEND interrupt
> > usb: dwc2: Add exit clock gating from wakeup interrupt
> > usb: dwc2: Add exit clock gating from session request interrupt
> > usb: dwc2: Add exit clock gating when port reset is asserted
> > usb: dwc2: Update enter clock gating when port is suspended
> > usb: dwc2: Update exit clock gating when port is resumed
> > usb: dwc2: Allow exit clock gating in urb enqueue
> > usb: dwc2: Add clock gating entering flow by system suspend
> > usb: dwc2: Add clock gating exiting flow by system resume
> > usb: dwc2: Add exit clock gating before removing driver
> >
> > drivers/usb/dwc2/core.h | 15 ++-
> > drivers/usb/dwc2/core_intr.c | 62 ++++++++----
> > drivers/usb/dwc2/gadget.c | 71 ++++++++++++++
> > drivers/usb/dwc2/hcd.c | 177 +++++++++++++++++++++++++++--------
> > drivers/usb/dwc2/platform.c | 9 ++
> > 5 files changed, 272 insertions(+), 62 deletions(-)
> >
> >
> > base-commit: 9bc46a12c53d8268392774172742aa9e5dd6953d
> >
> This cover letter for the clock gating patches is being rejected by
> "vger.kernel.org". I have tried to send one more time as v2 but again it
> is rejected.
> The error message is "vger.kernel.org
> Remote Server returned '554 5.7.1 <vger.kernel.org #5.7.1 smtp; 550
> 5.7.1 Content-Policy accept-into-freezer-1"
>
> Could you please suggest any solution to this?
No idea, sorry, vger is fickle when it comes to odd rules it has for
things it has to deal with. Looks like your patches came through just
fine, so all is good.
thanks,
greg k-h
prev parent reply other threads:[~2021-04-13 10:26 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1618297800.git.Arthur.Petrosyan@synopsys.com>
2021-04-13 7:16 ` [PATCH 01/12] usb: dwc2: Add device clock gating support functions Artur Petrosyan
2021-04-13 7:16 ` [PATCH 02/12] usb: dwc2: Add host " Artur Petrosyan
2021-04-13 7:16 ` [PATCH 03/12] usb: dwc2: Allow entering clock gating from USB_SUSPEND interrupt Artur Petrosyan
2021-04-13 9:25 ` Sergei Shtylyov
2021-04-13 7:16 ` [PATCH 04/12] usb: dwc2: Add exit clock gating from wakeup interrupt Artur Petrosyan
2021-04-13 7:16 ` [PATCH 05/12] usb: dwc2: Add exit clock gating from session request interrupt Artur Petrosyan
2021-04-13 7:16 ` [PATCH 06/12] usb: dwc2: Add exit clock gating when port reset is asserted Artur Petrosyan
2021-04-13 7:17 ` [PATCH 07/12] usb: dwc2: Update enter clock gating when port is suspended Artur Petrosyan
2021-04-13 9:22 ` Sergei Shtylyov
2021-04-13 10:24 ` Greg Kroah-Hartman
2021-04-13 7:17 ` [PATCH 08/12] usb: dwc2: Update exit clock gating when port is resumed Artur Petrosyan
2021-04-13 7:17 ` [PATCH 09/12] usb: dwc2: Allow exit clock gating in urb enqueue Artur Petrosyan
2021-04-13 7:17 ` [PATCH 10/12] usb: dwc2: Add clock gating entering flow by system suspend Artur Petrosyan
2021-04-13 7:17 ` [PATCH 11/12] usb: dwc2: Add clock gating exiting flow by system resume Artur Petrosyan
2021-04-13 7:17 ` [PATCH 12/12] usb: dwc2: Add exit clock gating before removing driver Artur Petrosyan
2021-04-13 7:36 ` [PATCH v2 01/12] usb: dwc2: Add device clock gating support functions Artur Petrosyan
2021-04-13 7:36 ` [PATCH v2 02/12] usb: dwc2: Add host " Artur Petrosyan
2021-04-13 7:36 ` [PATCH v2 03/12] usb: dwc2: Allow entering clock gating from USB_SUSPEND interrupt Artur Petrosyan
2021-04-13 7:36 ` [PATCH v2 04/12] usb: dwc2: Add exit clock gating from wakeup interrupt Artur Petrosyan
2021-04-13 7:36 ` [PATCH v2 05/12] usb: dwc2: Add exit clock gating from session request interrupt Artur Petrosyan
2021-04-13 7:36 ` [PATCH v2 06/12] usb: dwc2: Add exit clock gating when port reset is asserted Artur Petrosyan
2021-04-13 7:36 ` [PATCH v2 07/12] usb: dwc2: Update enter clock gating when port is suspended Artur Petrosyan
2021-04-13 7:37 ` [PATCH v2 08/12] usb: dwc2: Update exit clock gating when port is resumed Artur Petrosyan
2021-04-13 7:37 ` [PATCH v2 09/12] usb: dwc2: Allow exit clock gating in urb enqueue Artur Petrosyan
2021-04-13 7:37 ` [PATCH v2 10/12] usb: dwc2: Add clock gating entering flow by system suspend Artur Petrosyan
2021-04-13 9:29 ` Sergei Shtylyov
2021-04-13 7:37 ` [PATCH v2 11/12] usb: dwc2: Add clock gating exiting flow by system resume Artur Petrosyan
2021-04-13 9:30 ` Sergei Shtylyov
2021-04-13 7:37 ` [PATCH v2 12/12] usb: dwc2: Add exit clock gating before removing driver Artur Petrosyan
[not found] ` <20210413073600.57846A0094@mailhost.synopsys.com>
2021-04-13 8:03 ` [PATCH v2 00/12] usb: dwc2: Add clock gating support Artur Petrosyan
2021-04-13 10:26 ` Greg Kroah-Hartman [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YHVxw26V2SPzpoQy@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=Arthur.Petrosyan@synopsys.com \
--cc=John.Youn@synopsys.com \
--cc=Minas.Harutyunyan@synopsys.com \
--cc=balbi@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®