Re: [U-Boot] [PATCH V3 1/6] mmc: tmio: Switch to clock framework

2018-11-27 Thread Marek Vasut
On 11/27/2018 04:45 AM, Masahiro Yamada wrote: > On Tue, Nov 27, 2018 at 6:35 AM Marek Vasut wrote: >> >> On 11/14/2018 12:40 AM, Marek Vasut wrote: >>> Switch the driver to using clk_get_rate()/clk_set_rate() instead of >>> caching the mclk frequency in it's private data. This is required on >>>

Re: [U-Boot] [PATCH V3 1/6] mmc: tmio: Switch to clock framework

2018-11-26 Thread Masahiro Yamada
On Tue, Nov 27, 2018 at 6:35 AM Marek Vasut wrote: > > On 11/14/2018 12:40 AM, Marek Vasut wrote: > > Switch the driver to using clk_get_rate()/clk_set_rate() instead of > > caching the mclk frequency in it's private data. This is required on > > the SDHI variant of the controller, where the upstr

Re: [U-Boot] [PATCH V3 1/6] mmc: tmio: Switch to clock framework

2018-11-26 Thread Marek Vasut
On 11/14/2018 12:40 AM, Marek Vasut wrote: > Switch the driver to using clk_get_rate()/clk_set_rate() instead of > caching the mclk frequency in it's private data. This is required on > the SDHI variant of the controller, where the upstream mclk need to > be adjusted when using UHS modes. > > Plat

[U-Boot] [PATCH V3 1/6] mmc: tmio: Switch to clock framework

2018-11-13 Thread Marek Vasut
Switch the driver to using clk_get_rate()/clk_set_rate() instead of caching the mclk frequency in it's private data. This is required on the SDHI variant of the controller, where the upstream mclk need to be adjusted when using UHS modes. Platforms which do not support clock framework or do not su