Re: [U-Boot] [PATCH v2] clk: add fixed rate clock driver

2016-01-21 Thread Simon Glass
On 19 January 2016 at 21:35, Simon Glass wrote: > On 18 January 2016 at 21:55, Masahiro Yamada > wrote: >> This commit intends to implement "fixed-clock" as in Linux. >> (drivers/clk/clk-fixed-rate.c in Linux) >> >> If you need a very simple clock to just provide fixed clock rate >> like a crysta

Re: [U-Boot] [PATCH v2] clk: add fixed rate clock driver

2016-01-19 Thread Simon Glass
On 18 January 2016 at 21:55, Masahiro Yamada wrote: > This commit intends to implement "fixed-clock" as in Linux. > (drivers/clk/clk-fixed-rate.c in Linux) > > If you need a very simple clock to just provide fixed clock rate > like a crystal oscillator, you do not have to write a new driver. > Thi

[U-Boot] [PATCH v2] clk: add fixed rate clock driver

2016-01-18 Thread Masahiro Yamada
This commit intends to implement "fixed-clock" as in Linux. (drivers/clk/clk-fixed-rate.c in Linux) If you need a very simple clock to just provide fixed clock rate like a crystal oscillator, you do not have to write a new driver. This driver can support it. Signed-off-by: Masahiro Yamada --- C