Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-05-01 Thread Simon Glass
Hi Eugen, On Mon, 1 May 2023 at 02:12, Eugen Hristev wrote: > > On 4/30/23 21:21, Jonas Karlman wrote: > > Hi Tim, > > On 2023-04-28 18:36, Tim Harvey wrote: > >> On Fri, Apr 28, 2023 at 12:39 AM Eugen Hristev > >> wrote: > >>> > >>> On 4/28/23 02:39, Tim Harvey wrote: > On Wed, Apr 19, 202

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-05-01 Thread Tim Harvey
On Mon, May 1, 2023 at 1:12 AM Eugen Hristev wrote: > > On 4/30/23 21:21, Jonas Karlman wrote: > > Hi Tim, > > On 2023-04-28 18:36, Tim Harvey wrote: > >> On Fri, Apr 28, 2023 at 12:39 AM Eugen Hristev > >> wrote: > >>> > >>> On 4/28/23 02:39, Tim Harvey wrote: > On Wed, Apr 19, 2023 at 6:45

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-05-01 Thread Eugen Hristev
On 4/30/23 21:21, Jonas Karlman wrote: Hi Tim, On 2023-04-28 18:36, Tim Harvey wrote: On Fri, Apr 28, 2023 at 12:39 AM Eugen Hristev wrote: On 4/28/23 02:39, Tim Harvey wrote: On Wed, Apr 19, 2023 at 6:45 AM Eugen Hristev wrote: Some devices share a regulator supply, when the first one wi

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-04-30 Thread Jonas Karlman
Hi Tim, On 2023-04-28 18:36, Tim Harvey wrote: > On Fri, Apr 28, 2023 at 12:39 AM Eugen Hristev > wrote: >> >> On 4/28/23 02:39, Tim Harvey wrote: >>> On Wed, Apr 19, 2023 at 6:45 AM Eugen Hristev >>> wrote: Some devices share a regulator supply, when the first one will request reg

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-04-28 Thread Simon Glass
Hi Eugen, On Fri, 28 Apr 2023 at 01:39, Eugen Hristev wrote: > > On 4/28/23 02:39, Tim Harvey wrote: > > On Wed, Apr 19, 2023 at 6:45 AM Eugen Hristev > > wrote: > >> > >> Some devices share a regulator supply, when the first one will request > >> regulator disable, the second device will have i

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-04-28 Thread Tim Harvey
On Fri, Apr 28, 2023 at 12:39 AM Eugen Hristev wrote: > > On 4/28/23 02:39, Tim Harvey wrote: > > On Wed, Apr 19, 2023 at 6:45 AM Eugen Hristev > > wrote: > >> > >> Some devices share a regulator supply, when the first one will request > >> regulator disable, the second device will have it's supp

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-04-28 Thread Eugen Hristev
On 4/28/23 02:39, Tim Harvey wrote: On Wed, Apr 19, 2023 at 6:45 AM Eugen Hristev wrote: Some devices share a regulator supply, when the first one will request regulator disable, the second device will have it's supply cut off before graciously shutting down. Hence there will be timeouts and o

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-04-27 Thread Tim Harvey
On Wed, Apr 19, 2023 at 6:45 AM Eugen Hristev wrote: > > Some devices share a regulator supply, when the first one will request > regulator disable, the second device will have it's supply cut off before > graciously shutting down. Hence there will be timeouts and other failed > operations. > Impl

Re: [PATCH v5 1/3] regulator: implement basic reference counter

2023-04-19 Thread Patrice CHOTARD
On 4/19/23 15:45, Eugen Hristev wrote: > Some devices share a regulator supply, when the first one will request > regulator disable, the second device will have it's supply cut off before > graciously shutting down. Hence there will be timeouts and other failed > operations. > Implement a refere

[PATCH v5 1/3] regulator: implement basic reference counter

2023-04-19 Thread Eugen Hristev
Some devices share a regulator supply, when the first one will request regulator disable, the second device will have it's supply cut off before graciously shutting down. Hence there will be timeouts and other failed operations. Implement a reference counter mechanism similar with what is done in L