Re: [PATCH v2 05/13] event: Add basic support for events

2022-03-10 Thread Tom Rini
On Fri, Mar 04, 2022 at 08:43:00AM -0700, Simon Glass wrote: > Add a way to create and dispatch events without needing to allocate > memory. Also add a way to 'spy' on events, thus allowing 'hooks' to be > created. > > Use a linker list for static events, which we can use to replace functions > l

Re: [PATCH v2 05/13] event: Add basic support for events

2022-03-08 Thread Simon Glass
Hi Takahiro, On Sun, 6 Mar 2022 at 21:26, AKASHI Takahiro wrote: > > Hi Simon, > > On Fri, Mar 04, 2022 at 08:43:00AM -0700, Simon Glass wrote: > > Add a way to create and dispatch events without needing to allocate > > memory. Also add a way to 'spy' on events, thus allowing 'hooks' to be > > cr

Re: [PATCH v2 05/13] event: Add basic support for events

2022-03-06 Thread AKASHI Takahiro
Hi Simon, On Fri, Mar 04, 2022 at 08:43:00AM -0700, Simon Glass wrote: > Add a way to create and dispatch events without needing to allocate > memory. Also add a way to 'spy' on events, thus allowing 'hooks' to be > created. > > Use a linker list for static events, which we can use to replace fun

[PATCH v2 05/13] event: Add basic support for events

2022-03-04 Thread Simon Glass
Add a way to create and dispatch events without needing to allocate memory. Also add a way to 'spy' on events, thus allowing 'hooks' to be created. Use a linker list for static events, which we can use to replace functions like arch_cpu_init_f(). Allow an EVENT_DEBUG option which makes it easier t