Re: [PATCH v5 1/4] clk: core: link consumer with clock driver

2019-08-24 Thread Miquel Raynal
Hi Stephen, Stephen Boyd wrote on Wed, 14 Aug 2019 17:03:00 -0700: > Quoting Miquel Raynal (2019-05-21 05:51:10) > > One major concern when, for instance, suspending/resuming a platform > > is to never access registers before the underlying clock has been > > resumed, otherwise most of the time

Re: [PATCH v5 1/4] clk: core: link consumer with clock driver

2019-08-14 Thread Stephen Boyd
Quoting Miquel Raynal (2019-05-21 05:51:10) > One major concern when, for instance, suspending/resuming a platform > is to never access registers before the underlying clock has been > resumed, otherwise most of the time the kernel will just crash. One > solution is to use syscore operations when r

[PATCH v5 1/4] clk: core: link consumer with clock driver

2019-05-21 Thread Miquel Raynal
One major concern when, for instance, suspending/resuming a platform is to never access registers before the underlying clock has been resumed, otherwise most of the time the kernel will just crash. One solution is to use syscore operations when registering clock drivers suspend/resume callbacks. O