Re: [RFC v2 11/20] dm: add event notification

2022-01-02 Thread Heinrich Schuchardt
On 12/10/21 07:49, AKASHI Takahiro wrote: From: Simon Glass This is a draft implementation of event notification mechanism from Simon. Under this scheme, any U-Boot subsystem can register some kind of callback function to a particular event (more event types will be added later) and that functi

Re: [RFC v2 11/20] dm: add event notification

2021-12-19 Thread Simon Glass
Hi Takahiro, On Tue, 14 Dec 2021 at 00:07, AKASHI Takahiro wrote: > > On Mon, Dec 13, 2021 at 05:51:46AM -0700, Simon Glass wrote: > > Hi Takahiro, > > > > On Fri, 10 Dec 2021 at 00:00, AKASHI Takahiro > > wrote: > > > > > > From: Simon Glass > > > > > > This is a draft implementation of event

Re: [RFC v2 11/20] dm: add event notification

2021-12-13 Thread AKASHI Takahiro
On Mon, Dec 13, 2021 at 05:51:46AM -0700, Simon Glass wrote: > Hi Takahiro, > > On Fri, 10 Dec 2021 at 00:00, AKASHI Takahiro > wrote: > > > > From: Simon Glass > > > > This is a draft implementation of event notification mechanism from Simon. > > Under this scheme, any U-Boot subsystem can regi

Re: [RFC v2 11/20] dm: add event notification

2021-12-13 Thread Simon Glass
Hi Takahiro, On Fri, 10 Dec 2021 at 00:00, AKASHI Takahiro wrote: > > From: Simon Glass > > This is a draft implementation of event notification mechanism from Simon. > Under this scheme, any U-Boot subsystem can register some kind of callback > function to a particular event (more event types w

[RFC v2 11/20] dm: add event notification

2021-12-09 Thread AKASHI Takahiro
From: Simon Glass This is a draft implementation of event notification mechanism from Simon. Under this scheme, any U-Boot subsystem can register some kind of callback function to a particular event (more event types will be added later) and that function will be invoked once the event is fired.