Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d91e14b3 authored by Steven Miao's avatar Steven Miao
Browse files

eth: bf609 eth clock: add pclk clock for stmmac driver probe



Signed-off-by: default avatarSteven Miao <realmz6@gmail.com>
parent 4f650a59
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -363,6 +363,12 @@ static struct clk ethclk = {
	.ops	    = &dummy_clk_ops,
};

static struct clk ethpclk = {
	.name       = "pclk",
	.parent     = &sclk0,
	.ops	    = &dummy_clk_ops,
};

static struct clk spiclk = {
	.name       = "spi",
	.parent     = &sclk1,
@@ -381,6 +387,7 @@ static struct clk_lookup bf609_clks[] = {
	CLK(dclk, NULL, "DCLK"),
	CLK(oclk, NULL, "OCLK"),
	CLK(ethclk, NULL, "stmmaceth"),
	CLK(ethpclk, NULL, "pclk"),
	CLK(spiclk, NULL, "spi"),
};