blob: b6c68c94f67c8f8bd6d9cdf9f756d992a12c1deb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ian Campbell49aeca32014-05-05 11:52:23 +01002/*
3 * (C) Copyright 2007-2012
4 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
5 * Tom Cubie <tangliang@allwinnertech.com>
6 *
7 * (C) Copyright 2013 Luke Kenneth Casson Leighton <lkcl@lkcl.net>
Ian Campbell49aeca32014-05-05 11:52:23 +01008 */
9
Ian Campbell49aeca32014-05-05 11:52:23 +010010#include <asm/io.h>
11#include <asm/arch/clock.h>
Hans de Goede79696772016-03-16 20:57:28 +010012#include <asm/arch/prcm.h>
Philipp Tomsich3015e042016-10-28 18:21:29 +080013#include <asm/arch/gtbus.h>
Ian Campbell49aeca32014-05-05 11:52:23 +010014#include <asm/arch/sys_proto.h>
15
Chen-Yu Tsai6daddfe2016-01-06 15:13:07 +080016__weak void clock_init_sec(void)
17{
18}
19
Philipp Tomsich3015e042016-10-28 18:21:29 +080020__weak void gtbus_init(void)
21{
22}
23
Ian Campbell49aeca32014-05-05 11:52:23 +010024int clock_init(void)
25{
26#ifdef CONFIG_SPL_BUILD
27 clock_init_safe();
Philipp Tomsich3015e042016-10-28 18:21:29 +080028 gtbus_init();
Ian Campbell49aeca32014-05-05 11:52:23 +010029#endif
30 clock_init_uart();
Chen-Yu Tsai6daddfe2016-01-06 15:13:07 +080031 clock_init_sec();
Ian Campbell49aeca32014-05-05 11:52:23 +010032
33 return 0;
34}
Hans de Goede79696772016-03-16 20:57:28 +010035
36/* These functions are shared between various SoCs so put them here. */
Icenowy Zheng8f2d1c02022-01-29 10:23:07 -050037#if defined CONFIG_SUNXI_GEN_SUN6I && !defined CONFIG_MACH_SUN9I && \
38 !defined CONFIG_MACH_SUNIV
Hans de Goede79696772016-03-16 20:57:28 +010039int clock_twi_onoff(int port, int state)
40{
41 struct sunxi_ccm_reg *const ccm =
42 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
43
44 if (port == 5) {
45 if (state)
46 prcm_apb0_enable(
47 PRCM_APB0_GATE_PIO | PRCM_APB0_GATE_I2C);
48 else
49 prcm_apb0_disable(
50 PRCM_APB0_GATE_PIO | PRCM_APB0_GATE_I2C);
51 return 0;
52 }
53
54 /* set the apb clock gate and reset for twi */
55 if (state) {
56 setbits_le32(&ccm->apb2_gate,
57 CLK_GATE_OPEN << (APB2_GATE_TWI_SHIFT + port));
58 setbits_le32(&ccm->apb2_reset_cfg,
59 1 << (APB2_RESET_TWI_SHIFT + port));
60 } else {
61 clrbits_le32(&ccm->apb2_reset_cfg,
62 1 << (APB2_RESET_TWI_SHIFT + port));
63 clrbits_le32(&ccm->apb2_gate,
64 CLK_GATE_OPEN << (APB2_GATE_TWI_SHIFT + port));
65 }
66
67 return 0;
68}
69#endif