mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-30 07:34:12 +08:00
eth: bf609 eth clock: add pclk clock for stmmac driver probe
Signed-off-by: Steven Miao <realmz6@gmail.com>
This commit is contained in:
parent
4f650a5966
commit
d91e14b3b9
@ -363,6 +363,12 @@ static struct clk ethclk = {
|
|||||||
.ops = &dummy_clk_ops,
|
.ops = &dummy_clk_ops,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct clk ethpclk = {
|
||||||
|
.name = "pclk",
|
||||||
|
.parent = &sclk0,
|
||||||
|
.ops = &dummy_clk_ops,
|
||||||
|
};
|
||||||
|
|
||||||
static struct clk spiclk = {
|
static struct clk spiclk = {
|
||||||
.name = "spi",
|
.name = "spi",
|
||||||
.parent = &sclk1,
|
.parent = &sclk1,
|
||||||
@ -381,6 +387,7 @@ static struct clk_lookup bf609_clks[] = {
|
|||||||
CLK(dclk, NULL, "DCLK"),
|
CLK(dclk, NULL, "DCLK"),
|
||||||
CLK(oclk, NULL, "OCLK"),
|
CLK(oclk, NULL, "OCLK"),
|
||||||
CLK(ethclk, NULL, "stmmaceth"),
|
CLK(ethclk, NULL, "stmmaceth"),
|
||||||
|
CLK(ethpclk, NULL, "pclk"),
|
||||||
CLK(spiclk, NULL, "spi"),
|
CLK(spiclk, NULL, "spi"),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user