Re: [PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-30 Thread Guenter Roeck
On 07/30/2014 07:10 AM, Guenter Roeck wrote: On 07/30/2014 05:16 AM, Heiko Stübner wrote: Hi Guenter, Am Dienstag, 29. Juli 2014, 18:50:47 schrieb Guenter Roeck: On 07/18/2014 12:34 AM, Guenter Roeck wrote: Various drivers implement architecture and/or device specific means to restart (reset)

Re: [PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-30 Thread Guenter Roeck
On 07/30/2014 05:16 AM, Heiko Stübner wrote: Hi Guenter, Am Dienstag, 29. Juli 2014, 18:50:47 schrieb Guenter Roeck: On 07/18/2014 12:34 AM, Guenter Roeck wrote: Various drivers implement architecture and/or device specific means to restart (reset) the system. Various mechanisms have been impl

Re: [PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-30 Thread Heiko Stübner
Hi Guenter, Am Dienstag, 29. Juli 2014, 18:50:47 schrieb Guenter Roeck: > On 07/18/2014 12:34 AM, Guenter Roeck wrote: > > Various drivers implement architecture and/or device specific means > > to restart (reset) the system. Various mechanisms have been implemented > > to support those schemes. T

Re: [PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-29 Thread Guenter Roeck
On 07/18/2014 12:34 AM, Guenter Roeck wrote: Various drivers implement architecture and/or device specific means to restart (reset) the system. Various mechanisms have been implemented to support those schemes. The best known mechanism is arm_pm_restart, which is a function pointer to be set eith

Re: [PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-25 Thread Guenter Roeck
Any idea, anyone, what might be necessary to get this series accepted ? Guenter On Fri, Jul 18, 2014 at 12:34:09AM -0700, Guenter Roeck wrote: > Various drivers implement architecture and/or device specific means > to restart (reset) the system. Various mechanisms have been implemented > to suppo

Re: [PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-21 Thread Guenter Roeck
Hi Catalin, On 07/21/2014 05:30 AM, Catalin Marinas wrote: On Fri, Jul 18, 2014 at 08:34:09AM +0100, Guenter Roeck wrote: Patch 1 of this series implements the restart handler function. Patches 2 and 3 implement calling the restart handler chain from arm and arm64 restart code. Patch 4 modifie

Re: [PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-21 Thread Catalin Marinas
On Fri, Jul 18, 2014 at 08:34:09AM +0100, Guenter Roeck wrote: > Patch 1 of this series implements the restart handler function. Patches 2 and > 3 > implement calling the restart handler chain from arm and arm64 restart code. > > Patch 4 modifies the restart-poweroff driver to no longer call arm_

[PATCH v5 0/7] kernel: Add support for restart handler call chain

2014-07-18 Thread Guenter Roeck
Various drivers implement architecture and/or device specific means to restart (reset) the system. Various mechanisms have been implemented to support those schemes. The best known mechanism is arm_pm_restart, which is a function pointer to be set either from platform specific code or from drivers.