Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-13 Thread Frank Rowand
On 3/10/23 01:48, David Gow wrote: > On Sat, 4 Mar 2023 at 23:50, Frank Rowand wrote: >> >> On 3/1/23 19:38, Stephen Boyd wrote: >>> This patch series adds unit tests for the clk fixed rate basic type and >>> the clk registration functions that use struct clk_parent_data. To get >>> there, we add

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-09 Thread David Gow
On Sat, 4 Mar 2023 at 23:50, Frank Rowand wrote: > > On 3/1/23 19:38, Stephen Boyd wrote: > > This patch series adds unit tests for the clk fixed rate basic type and > > the clk registration functions that use struct clk_parent_data. To get > > there, we add support for loading a DTB into the UML

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-07 Thread Stephen Boyd
Quoting Maxime Ripard (2023-03-03 06:38:35) > Hi, > > On Wed, Mar 01, 2023 at 05:38:13PM -0800, Stephen Boyd wrote: > > This patch series adds unit tests for the clk fixed rate basic type and > > the clk registration functions that use struct clk_parent_data. To get > > there, we add support for l

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-07 Thread Stephen Boyd
Quoting Frank Rowand (2023-03-04 07:04:48) > On 3/2/23 13:27, Stephen Boyd wrote: > > > > But perhaps this design is too much of an end-to-end test and not a unit > > test? In the spirit of unit testing we shouldn't care about how the node > > is added to the live devicetree, just that there is a

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-06 Thread Frank Rowand
On 3/6/23 06:53, Rob Herring wrote: > On Sat, Mar 4, 2023 at 9:39 AM Frank Rowand wrote: >> >> On 3/2/23 17:57, Stephen Boyd wrote: >>> Quoting Rob Herring (2023-03-02 12:18:34) On Thu, Mar 2, 2023 at 1:44 PM Stephen Boyd wrote: > > Quoting Rob Herring (2023-03-02 09:13:59) >> >>

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-06 Thread Rob Herring
On Sat, Mar 4, 2023 at 9:39 AM Frank Rowand wrote: > > On 3/2/23 17:57, Stephen Boyd wrote: > > Quoting Rob Herring (2023-03-02 12:18:34) > >> On Thu, Mar 2, 2023 at 1:44 PM Stephen Boyd wrote: > >>> > >>> Quoting Rob Herring (2023-03-02 09:13:59) > > Good to see bindings for this. I've

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-05 Thread Frank Rowand
On 3/5/23 03:26, Geert Uytterhoeven wrote: > Hi Frank, > > On Sun, Mar 5, 2023 at 4:33 AM Frank Rowand wrote: >> On 3/2/23 13:47, Geert Uytterhoeven wrote: >>> On Thu, Mar 2, 2023 at 8:28 PM Stephen Boyd wrote: Quoting Rob Herring (2023-03-02 09:32:09) > On Thu, Mar 2, 2023 at 2:14 AM D

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-05 Thread Geert Uytterhoeven
Hi Frank, On Sun, Mar 5, 2023 at 4:33 AM Frank Rowand wrote: > On 3/2/23 13:47, Geert Uytterhoeven wrote: > > On Thu, Mar 2, 2023 at 8:28 PM Stephen Boyd wrote: > >> Quoting Rob Herring (2023-03-02 09:32:09) > >>> On Thu, Mar 2, 2023 at 2:14 AM David Gow wrote: > On Thu, 2 Mar 2023 at 09:3

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-04 Thread Frank Rowand
On 3/2/23 13:47, Geert Uytterhoeven wrote: > Hi Stephen, > > On Thu, Mar 2, 2023 at 8:28 PM Stephen Boyd wrote: >> Quoting Rob Herring (2023-03-02 09:32:09) >>> On Thu, Mar 2, 2023 at 2:14 AM David Gow wrote: On Thu, 2 Mar 2023 at 09:38, Stephen Boyd wrote: > This patch series adds uni

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-04 Thread Frank Rowand
On 3/1/23 19:38, Stephen Boyd wrote: > This patch series adds unit tests for the clk fixed rate basic type and > the clk registration functions that use struct clk_parent_data. To get > there, we add support for loading a DTB into the UML kernel that's > running the unit tests along with probing pl

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-04 Thread Frank Rowand
On 3/2/23 17:57, Stephen Boyd wrote: > Quoting Rob Herring (2023-03-02 12:18:34) >> On Thu, Mar 2, 2023 at 1:44 PM Stephen Boyd wrote: >>> >>> Quoting Rob Herring (2023-03-02 09:13:59) Good to see bindings for this. I've been meaning to do something about the DT unittest ones being

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-04 Thread Frank Rowand
On 3/2/23 14:18, Rob Herring wrote: > On Thu, Mar 2, 2023 at 1:44 PM Stephen Boyd wrote: >> >> Quoting Rob Herring (2023-03-02 09:13:59) >>> On Wed, Mar 1, 2023 at 7:38 PM Stephen Boyd wrote: This patch series adds unit tests for the clk fixed rate basic type and the clk registrati

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-04 Thread Frank Rowand
On 3/2/23 11:13, Rob Herring wrote: > On Wed, Mar 1, 2023 at 7:38 PM Stephen Boyd wrote: >> >> This patch series adds unit tests for the clk fixed rate basic type and >> the clk registration functions that use struct clk_parent_data. To get >> there, we add support for loading a DTB into the UML k

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-04 Thread Frank Rowand
On 3/2/23 13:27, Stephen Boyd wrote: > Quoting Rob Herring (2023-03-02 09:32:09) >> On Thu, Mar 2, 2023 at 2:14 AM David Gow wrote: >>> >>> On Thu, 2 Mar 2023 at 09:38, Stephen Boyd wrote: This patch series adds unit tests for the clk fixed rate basic type and the clk registration

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-04 Thread Frank Rowand
On 3/2/23 11:32, Rob Herring wrote: > On Thu, Mar 2, 2023 at 2:14 AM David Gow wrote: >> >> On Thu, 2 Mar 2023 at 09:38, Stephen Boyd wrote: >>> >>> This patch series adds unit tests for the clk fixed rate basic type and >>> the clk registration functions that use struct clk_parent_data. To get >

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-03 Thread Maxime Ripard
Hi, On Wed, Mar 01, 2023 at 05:38:13PM -0800, Stephen Boyd wrote: > This patch series adds unit tests for the clk fixed rate basic type and > the clk registration functions that use struct clk_parent_data. To get > there, we add support for loading a DTB into the UML kernel that's > running the un

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread Stephen Boyd
Quoting Rob Herring (2023-03-02 12:18:34) > On Thu, Mar 2, 2023 at 1:44 PM Stephen Boyd wrote: > > > > Quoting Rob Herring (2023-03-02 09:13:59) > > > > > > Good to see bindings for this. I've been meaning to do something about > > > the DT unittest ones being undocumented, but I hadn't really dec

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread Rob Herring
On Thu, Mar 2, 2023 at 1:44 PM Stephen Boyd wrote: > > Quoting Rob Herring (2023-03-02 09:13:59) > > On Wed, Mar 1, 2023 at 7:38 PM Stephen Boyd wrote: > > > > > > This patch series adds unit tests for the clk fixed rate basic type and > > > the clk registration functions that use struct clk_pare

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread Geert Uytterhoeven
Hi Stephen, On Thu, Mar 2, 2023 at 8:28 PM Stephen Boyd wrote: > Quoting Rob Herring (2023-03-02 09:32:09) > > On Thu, Mar 2, 2023 at 2:14 AM David Gow wrote: > > > On Thu, 2 Mar 2023 at 09:38, Stephen Boyd wrote: > > > > This patch series adds unit tests for the clk fixed rate basic type and >

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread Stephen Boyd
Quoting Rob Herring (2023-03-02 09:13:59) > On Wed, Mar 1, 2023 at 7:38 PM Stephen Boyd wrote: > > > > This patch series adds unit tests for the clk fixed rate basic type and > > the clk registration functions that use struct clk_parent_data. To get > > there, we add support for loading a DTB into

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread Stephen Boyd
Quoting Rob Herring (2023-03-02 09:32:09) > On Thu, Mar 2, 2023 at 2:14 AM David Gow wrote: > > > > On Thu, 2 Mar 2023 at 09:38, Stephen Boyd wrote: > > > > > > This patch series adds unit tests for the clk fixed rate basic type and > > > the clk registration functions that use struct clk_parent_

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread Rob Herring
On Thu, Mar 2, 2023 at 2:14 AM David Gow wrote: > > On Thu, 2 Mar 2023 at 09:38, Stephen Boyd wrote: > > > > This patch series adds unit tests for the clk fixed rate basic type and > > the clk registration functions that use struct clk_parent_data. To get > > there, we add support for loading a D

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread Rob Herring
On Wed, Mar 1, 2023 at 7:38 PM Stephen Boyd wrote: > > This patch series adds unit tests for the clk fixed rate basic type and > the clk registration functions that use struct clk_parent_data. To get > there, we add support for loading a DTB into the UML kernel that's > running the unit tests alon

Re: [PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-02 Thread David Gow
On Thu, 2 Mar 2023 at 09:38, Stephen Boyd wrote: > > This patch series adds unit tests for the clk fixed rate basic type and > the clk registration functions that use struct clk_parent_data. To get > there, we add support for loading a DTB into the UML kernel that's > running the unit tests along

[PATCH 0/8] clk: Add kunit tests for fixed rate and parent data

2023-03-01 Thread Stephen Boyd
This patch series adds unit tests for the clk fixed rate basic type and the clk registration functions that use struct clk_parent_data. To get there, we add support for loading a DTB into the UML kernel that's running the unit tests along with probing platform drivers to bind to device nodes specif