]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/cpu/armv7/am33xx/clock_am43xx.c
drivers: net: cpsw: add support to have phy address from cpsw platform data
[thirdparty/u-boot.git] / arch / arm / cpu / armv7 / am33xx / clock_am43xx.c
CommitLineData
3b34ac13
LV
1/*
2 * clock_am43xx.c
3 *
4 * clocks for AM43XX based boards
5 * Derived from AM33XX based boards
6 *
7 * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#include <common.h>
13#include <asm/arch/cpu.h>
14#include <asm/arch/clock.h>
15#include <asm/arch/hardware.h>
16#include <asm/arch/sys_proto.h>
17#include <asm/io.h>
18
19struct cm_perpll *const cmper = (struct cm_perpll *)CM_PER;
20struct cm_wkuppll *const cmwkup = (struct cm_wkuppll *)CM_WKUP;
0d54cb92 21struct cm_dpll *const cmdpll = (struct cm_dpll *)CM_DPLL;
3b34ac13
LV
22
23const struct dpll_regs dpll_mpu_regs = {
24 .cm_clkmode_dpll = CM_WKUP + 0x560,
25 .cm_idlest_dpll = CM_WKUP + 0x564,
26 .cm_clksel_dpll = CM_WKUP + 0x56c,
27 .cm_div_m2_dpll = CM_WKUP + 0x570,
28};
29
30const struct dpll_regs dpll_core_regs = {
31 .cm_clkmode_dpll = CM_WKUP + 0x520,
32 .cm_idlest_dpll = CM_WKUP + 0x524,
33 .cm_clksel_dpll = CM_WKUP + 0x52C,
34 .cm_div_m4_dpll = CM_WKUP + 0x538,
35 .cm_div_m5_dpll = CM_WKUP + 0x53C,
36 .cm_div_m6_dpll = CM_WKUP + 0x540,
37};
38
39const struct dpll_regs dpll_per_regs = {
40 .cm_clkmode_dpll = CM_WKUP + 0x5E0,
41 .cm_idlest_dpll = CM_WKUP + 0x5E4,
42 .cm_clksel_dpll = CM_WKUP + 0x5EC,
43 .cm_div_m2_dpll = CM_WKUP + 0x5F0,
44};
45
46const struct dpll_regs dpll_ddr_regs = {
47 .cm_clkmode_dpll = CM_WKUP + 0x5A0,
48 .cm_idlest_dpll = CM_WKUP + 0x5A4,
49 .cm_clksel_dpll = CM_WKUP + 0x5AC,
50 .cm_div_m2_dpll = CM_WKUP + 0x5B0,
cf04d032 51 .cm_div_m4_dpll = CM_WKUP + 0x5B8,
3b34ac13
LV
52};
53
3b34ac13
LV
54void setup_clocks_for_console(void)
55{
56 /* Do not add any spl_debug prints in this function */
57 clrsetbits_le32(&cmwkup->wkclkstctrl, CD_CLKCTRL_CLKTRCTRL_MASK,
58 CD_CLKCTRL_CLKTRCTRL_SW_WKUP <<
59 CD_CLKCTRL_CLKTRCTRL_SHIFT);
60
61 /* Enable UART0 */
62 clrsetbits_le32(&cmwkup->wkup_uart0ctrl,
63 MODULE_CLKCTRL_MODULEMODE_MASK,
64 MODULE_CLKCTRL_MODULEMODE_SW_EXPLICIT_EN <<
65 MODULE_CLKCTRL_MODULEMODE_SHIFT);
66}
67
68void enable_basic_clocks(void)
69{
70 u32 *const clk_domains[] = {
71 &cmper->l3clkstctrl,
72 &cmper->l3sclkstctrl,
73 &cmper->l4lsclkstctrl,
74 &cmwkup->wkclkstctrl,
75 &cmper->emifclkstctrl,
76 0
77 };
78
79 u32 *const clk_modules_explicit_en[] = {
80 &cmper->l3clkctrl,
81 &cmper->l4lsclkctrl,
82 &cmper->l4fwclkctrl,
83 &cmwkup->wkl4wkclkctrl,
84 &cmper->l3instrclkctrl,
85 &cmper->l4hsclkctrl,
86 &cmwkup->wkgpio0clkctrl,
87 &cmwkup->wkctrlclkctrl,
88 &cmper->timer2clkctrl,
89 &cmper->gpmcclkctrl,
90 &cmper->elmclkctrl,
91 &cmper->mmc0clkctrl,
92 &cmper->mmc1clkctrl,
93 &cmwkup->wkup_i2c0ctrl,
94 &cmper->gpio1clkctrl,
95 &cmper->gpio2clkctrl,
96 &cmper->gpio3clkctrl,
cd8341b7
DG
97 &cmper->gpio4clkctrl,
98 &cmper->gpio5clkctrl,
3b34ac13
LV
99 &cmper->i2c1clkctrl,
100 &cmper->emiffwclkctrl,
101 &cmper->emifclkctrl,
102 &cmper->otfaemifclkctrl,
b56e71e2 103 &cmper->qspiclkctrl,
3b34ac13
LV
104 0
105 };
106
107 do_enable_clocks(clk_domains, clk_modules_explicit_en, 1);
0d54cb92
LV
108
109 /* Select the Master osc clk as Timer2 clock source */
110 writel(0x1, &cmdpll->clktimer2clk);
3b34ac13 111}