summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgal Liberman <igall@marvell.com>2017-05-15 15:00:47 +0300
committerKostya Porotchkin <kostap@marvell.com>2017-05-17 11:45:50 +0300
commit114e4915379cb5245952ac6603c898bd01d6e047 (patch)
tree266f0d4a442349cd0d8c3fffe75d508b4eaea864
parent7b3edce139d92fa6fedabde782a6ccc87e6d8b98 (diff)
fix: pcie: fix pcie clock selection for A2 revision
This patch fixes incorrect handling of pcie clock: If pcie_clk is set to input (by the Sample-at-Reset), PCIE refclk buffer 0/1 source field in PCIe_Reference_Clock_Buffer_Control register should be set to 1 and not 0 as it done now. Change-Id: I14fedce9d3299b5b85eb742048f03b17f1f9ab14 Signed-off-by: Igal Liberman <igall@marvell.com> Reviewed-on: http://vgitil04.il.marvell.com:8080/39456 Tested-by: iSoC Platform CI <ykjenk@marvell.com> Reviewed-by: Kostya Porotchkin <kostap@marvell.com> Reviewed-on: http://vgitil04.il.marvell.com:8080/39544
-rw-r--r--drivers/marvell/mochi/cp110_setup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/marvell/mochi/cp110_setup.c b/drivers/marvell/mochi/cp110_setup.c
index beb3e4a2..579dc9f7 100644
--- a/drivers/marvell/mochi/cp110_setup.c
+++ b/drivers/marvell/mochi/cp110_setup.c
@@ -301,10 +301,10 @@ void cp110_pcie_clk_cfg(int cp_index)
* set according to the clock direction (input/output)
*/
reg = mmio_read_32(MVEBU_PCIE_REF_CLK_BUF_CTRL(cp_index));
- reg &= ~(PCIE0_REFCLK_BUFF_SOURCE | PCIE0_REFCLK_BUFF_SOURCE);
- if (pcie0_clk)
+ reg &= ~(PCIE0_REFCLK_BUFF_SOURCE | PCIE1_REFCLK_BUFF_SOURCE);
+ if (!pcie0_clk)
reg |= PCIE0_REFCLK_BUFF_SOURCE;
- if (pcie1_clk)
+ if (!pcie1_clk)
reg |= PCIE1_REFCLK_BUFF_SOURCE;
mmio_write_32(MVEBU_PCIE_REF_CLK_BUF_CTRL(cp_index), reg);