summaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2022-03-08 12:00:36 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-03-08 12:55:28 +0100
commitab092d5be36eb4cb8a6f761b05d0a41cbba201d4 (patch)
tree6afcd08976c61f290b95f0759d78fc679136f40a /drivers/clk
parent8eba1cd4bbedec75161d42ef9fab38737c9a2333 (diff)
downloadbarebox-ab092d5be36eb4cb8a6f761b05d0a41cbba201d4.tar.gz
barebox-ab092d5be36eb4cb8a6f761b05d0a41cbba201d4.tar.xz
clk: imx6: fix axi_sels
Adaption of Kernel commit: | commit a08b9bc586a7810cdebbc316d5cbaed56a2a04a9 | Author: Anson Huang <b20788@freescale.com> | Commit: Shawn Guo <shawn.guo@linaro.org> | CommitDate: Mon Jun 3 13:47:12 2013 +0800 | | ARM: imx: clk-imx6q: AXI clock select index is incorrect | | The AXI clock mux should be as below: | | 00: periph; | 01: pll2_pfd2_396m; | 10: periph; | 11: pll3_pfd1_540m; Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/imx/clk-imx6.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/imx/clk-imx6.c b/drivers/clk/imx/clk-imx6.c
index aa5876d21b..8cc4c2a08f 100644
--- a/drivers/clk/imx/clk-imx6.c
+++ b/drivers/clk/imx/clk-imx6.c
@@ -106,6 +106,7 @@ static const char *periph2_sels[] = {
static const char *axi_sels[] = {
"periph",
"pll2_pfd2_396m",
+ "periph",
"pll3_pfd1_540m",
};