]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/cpu/armv7/stv0991/clock.c
Makefile: Improve generated_defconfig file handling
[thirdparty/u-boot.git] / arch / arm / cpu / armv7 / stv0991 / clock.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
9fa32b12 2/*
1537d386
PC
3 * Copyright (C) 2014, STMicroelectronics - All Rights Reserved
4 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
9fa32b12
VM
5 */
6
7#include <asm/io.h>
8#include <asm/arch/hardware.h>
9#include <asm/arch/stv0991_cgu.h>
10#include<asm/arch/stv0991_periph.h>
11
12static struct stv0991_cgu_regs *const stv0991_cgu_regs = \
13 (struct stv0991_cgu_regs *) (CGU_BASE_ADDR);
14
2ce4eaf4
VM
15void enable_pll1(void)
16{
17 /* pll1 already configured for 1000Mhz, just need to enable it */
18 writel(readl(&stv0991_cgu_regs->pll1_ctrl) & ~(0x01),
19 &stv0991_cgu_regs->pll1_ctrl);
20}
21
9fa32b12
VM
22void clock_setup(int peripheral)
23{
24 switch (peripheral) {
25 case UART_CLOCK_CFG:
26 writel(UART_CLK_CFG, &stv0991_cgu_regs->uart_freq);
27 break;
28 case ETH_CLOCK_CFG:
2ce4eaf4
VM
29 enable_pll1();
30 writel(ETH_CLK_CFG, &stv0991_cgu_regs->eth_freq);
31
32 /* Clock selection for ethernet tx_clk & rx_clk*/
33 writel((readl(&stv0991_cgu_regs->eth_ctrl) & ETH_CLK_MASK)
34 | ETH_CLK_CTRL, &stv0991_cgu_regs->eth_ctrl);
54afb500
VM
35 break;
36 case QSPI_CLOCK_CFG:
37 writel(QSPI_CLK_CTRL, &stv0991_cgu_regs->qspi_freq);
9fa32b12
VM
38 break;
39 default:
40 break;
41 }
42}