MIPS: TXx9: Fix spi-baseclk value
TXx9 SPI bit rate is calculated by: fBR = fSPI / 2 / (n + 1) (fSPI is SPI master clock freq, i.e. imbusclk freq.) So use imbus_clk / 2 as a spi-baseclk. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
committed by
Ralf Baechle
parent
2b5b9b786c
commit
fcc152f3bf
@@ -85,7 +85,7 @@ int txx9_ccfg_toeon __initdata = 1;
|
|||||||
struct clk *clk_get(struct device *dev, const char *id)
|
struct clk *clk_get(struct device *dev, const char *id)
|
||||||
{
|
{
|
||||||
if (!strcmp(id, "spi-baseclk"))
|
if (!strcmp(id, "spi-baseclk"))
|
||||||
return (struct clk *)((unsigned long)txx9_gbus_clock / 2 / 4);
|
return (struct clk *)((unsigned long)txx9_gbus_clock / 2 / 2);
|
||||||
if (!strcmp(id, "imbus_clk"))
|
if (!strcmp(id, "imbus_clk"))
|
||||||
return (struct clk *)((unsigned long)txx9_gbus_clock / 2);
|
return (struct clk *)((unsigned long)txx9_gbus_clock / 2);
|
||||||
return ERR_PTR(-ENOENT);
|
return ERR_PTR(-ENOENT);
|
||||||
|
Reference in New Issue
Block a user