2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-11-18 18:42:22 +00:00
|
|
|
/*
|
2017-10-23 07:53:59 +00:00
|
|
|
* Copyright (C) 2014, STMicroelectronics - All Rights Reserved
|
|
|
|
* Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
|
2014-11-18 18:42:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/arch/hardware.h>
|
|
|
|
#include <asm/arch/stv0991_cgu.h>
|
|
|
|
#include<asm/arch/stv0991_periph.h>
|
|
|
|
|
|
|
|
static struct stv0991_cgu_regs *const stv0991_cgu_regs = \
|
|
|
|
(struct stv0991_cgu_regs *) (CGU_BASE_ADDR);
|
|
|
|
|
2014-11-18 18:42:23 +00:00
|
|
|
void enable_pll1(void)
|
|
|
|
{
|
|
|
|
/* pll1 already configured for 1000Mhz, just need to enable it */
|
|
|
|
writel(readl(&stv0991_cgu_regs->pll1_ctrl) & ~(0x01),
|
|
|
|
&stv0991_cgu_regs->pll1_ctrl);
|
|
|
|
}
|
|
|
|
|
2014-11-18 18:42:22 +00:00
|
|
|
void clock_setup(int peripheral)
|
|
|
|
{
|
|
|
|
switch (peripheral) {
|
|
|
|
case UART_CLOCK_CFG:
|
|
|
|
writel(UART_CLK_CFG, &stv0991_cgu_regs->uart_freq);
|
|
|
|
break;
|
|
|
|
case ETH_CLOCK_CFG:
|
2014-11-18 18:42:23 +00:00
|
|
|
enable_pll1();
|
|
|
|
writel(ETH_CLK_CFG, &stv0991_cgu_regs->eth_freq);
|
|
|
|
|
|
|
|
/* Clock selection for ethernet tx_clk & rx_clk*/
|
|
|
|
writel((readl(&stv0991_cgu_regs->eth_ctrl) & ETH_CLK_MASK)
|
|
|
|
| ETH_CLK_CTRL, &stv0991_cgu_regs->eth_ctrl);
|
2015-07-03 01:29:40 +00:00
|
|
|
break;
|
|
|
|
case QSPI_CLOCK_CFG:
|
|
|
|
writel(QSPI_CLK_CTRL, &stv0991_cgu_regs->qspi_freq);
|
2014-11-18 18:42:22 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|