Re: [PATCH v4 2/5] clockevents: Add timed freeze

2016-06-20 Thread dbasehore .
On Thu, Jun 9, 2016 at 3:43 PM, Thomas Gleixner wrote: > On Thu, 9 Jun 2016, dbaseh...@chromium.org wrote: >> >> +/* >> + * Clockevent device may run during freeze >> + */ >> +# define CLOCK_EVT_FEAT_FREEZE 0x000100 > > This is a bad name and a horrible comment. The device does not f

Re: [PATCH v4 2/5] clockevents: Add timed freeze

2016-06-11 Thread kbuild test robot
Hi, [auto build test ERROR on pm/linux-next] [also build test ERROR on v4.7-rc2 next-20160609] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/dbasehore-chromium-org/Add-suspend-to-idle-validatio

Re: [PATCH v4 2/5] clockevents: Add timed freeze

2016-06-09 Thread Thomas Gleixner
On Thu, 9 Jun 2016, dbaseh...@chromium.org wrote: > > +/* > + * Clockevent device may run during freeze > + */ > +# define CLOCK_EVT_FEAT_FREEZE 0x000100 This is a bad name and a horrible comment. The device does not freeze. It is able to run during suspend. Hint: We have CLOCK_S

[PATCH v4 2/5] clockevents: Add timed freeze

2016-06-09 Thread dbasehore
From: Derek Basehore Adds a new feature to clockevents to schedule wakeups on a CPU during freeze. These won't fully wake up the system, but allow simple platform callbacks that don't require device support to be run during freeze with little power impact. This implementation allows an idle driv