blob: c54168e4daffda496946f0a7feeb5925104b356a [file] [log] [blame]
Vikas Manocha33913c52014-11-18 10:42:22 -08001/*
Patrice Chotardcc551162017-10-23 09:53:59 +02002 * Copyright (C) 2014, STMicroelectronics - All Rights Reserved
3 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha33913c52014-11-18 10:42:22 -08004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <asm/io.h>
9#include <asm/arch/hardware.h>
10#include <asm/arch/stv0991_cgu.h>
11#include<asm/arch/stv0991_periph.h>
12
13static struct stv0991_cgu_regs *const stv0991_cgu_regs = \
14 (struct stv0991_cgu_regs *) (CGU_BASE_ADDR);
15
Vikas Manocha32b9e712014-11-18 10:42:23 -080016void enable_pll1(void)
17{
18 /* pll1 already configured for 1000Mhz, just need to enable it */
19 writel(readl(&stv0991_cgu_regs->pll1_ctrl) & ~(0x01),
20 &stv0991_cgu_regs->pll1_ctrl);
21}
22
Vikas Manocha33913c52014-11-18 10:42:22 -080023void clock_setup(int peripheral)
24{
25 switch (peripheral) {
26 case UART_CLOCK_CFG:
27 writel(UART_CLK_CFG, &stv0991_cgu_regs->uart_freq);
28 break;
29 case ETH_CLOCK_CFG:
Vikas Manocha32b9e712014-11-18 10:42:23 -080030 enable_pll1();
31 writel(ETH_CLK_CFG, &stv0991_cgu_regs->eth_freq);
32
33 /* Clock selection for ethernet tx_clk & rx_clk*/
34 writel((readl(&stv0991_cgu_regs->eth_ctrl) & ETH_CLK_MASK)
35 | ETH_CLK_CTRL, &stv0991_cgu_regs->eth_ctrl);
Vikas Manocha20cdba52015-07-02 18:29:40 -070036 break;
37 case QSPI_CLOCK_CFG:
38 writel(QSPI_CLK_CTRL, &stv0991_cgu_regs->qspi_freq);
Vikas Manocha33913c52014-11-18 10:42:22 -080039 break;
40 default:
41 break;
42 }
43}