Re: [U-Boot] [PATCH v4 08/13] dm: clk: Define clk_get_parent_rate() for clk operations

2019-05-18 Thread Lukasz Majewski
Hi Simon, > Hi Lukasz, > > On Thu, 16 May 2019 at 16:11, Lukasz Majewski wrote: > > > > This commit adds the clk_get_parent_rate() function, which is > > responsible for getting the rate of parent clock. > > Unfortunately, u-boot's DM support for getting parent is different > > (the parent

Re: [U-Boot] [PATCH v4 08/13] dm: clk: Define clk_get_parent_rate() for clk operations

2019-05-18 Thread Simon Glass
Hi Lukasz, On Thu, 16 May 2019 at 16:11, Lukasz Majewski wrote: > > This commit adds the clk_get_parent_rate() function, which is responsible > for getting the rate of parent clock. > Unfortunately, u-boot's DM support for getting parent is different > (the parent relationship is in udevice)

Re: [U-Boot] [PATCH v4 08/13] dm: clk: Define clk_get_parent_rate() for clk operations

2019-05-16 Thread Peng Fan
> Subject: [PATCH v4 08/13] dm: clk: Define clk_get_parent_rate() for clk > operations > > This commit adds the clk_get_parent_rate() function, which is responsible for > getting the rate of parent clock. > Unfortunately, u-boot's DM support for getting parent is different (the parent >

[U-Boot] [PATCH v4 08/13] dm: clk: Define clk_get_parent_rate() for clk operations

2019-05-16 Thread Lukasz Majewski
This commit adds the clk_get_parent_rate() function, which is responsible for getting the rate of parent clock. Unfortunately, u-boot's DM support for getting parent is different (the parent relationship is in udevice) than the one in common clock framework (CCF) in Linux. To alleviate this