blob: f591affebf7bc1b8ffd3d37db1539c6232703f33 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ian Campbell643cf0e2014-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 Campbell643cf0e2014-05-05 11:52:23 +01008 */
9
10#include <common.h>
11#include <asm/io.h>
12#include <asm/arch/clock.h>
13#include <asm/arch/gpio.h>
Hans de Goedea93b0fe2016-03-16 20:57:28 +010014#include <asm/arch/prcm.h>
Philipp Tomsichea1af9f2016-10-28 18:21:29 +080015#include <asm/arch/gtbus.h>
Ian Campbell643cf0e2014-05-05 11:52:23 +010016#include <asm/arch/sys_proto.h>
17
Chen-Yu Tsaied805842016-01-06 15:13:07 +080018__weak void clock_init_sec(void)
19{
20}
21
Philipp Tomsichea1af9f2016-10-28 18:21:29 +080022__weak void gtbus_init(void)
23{
24}
25
Ian Campbell643cf0e2014-05-05 11:52:23 +010026int clock_init(void)
27{
28#ifdef CONFIG_SPL_BUILD
29 clock_init_safe();
Philipp Tomsichea1af9f2016-10-28 18:21:29 +080030 gtbus_init();
Ian Campbell643cf0e2014-05-05 11:52:23 +010031#endif
32 clock_init_uart();
Chen-Yu Tsaied805842016-01-06 15:13:07 +080033 clock_init_sec();
Ian Campbell643cf0e2014-05-05 11:52:23 +010034
35 return 0;
36}
Hans de Goedea93b0fe2016-03-16 20:57:28 +010037
38/* These functions are shared between various SoCs so put them here. */
39#if defined CONFIG_SUNXI_GEN_SUN6I && !defined CONFIG_MACH_SUN9I
40int clock_twi_onoff(int port, int state)
41{
42 struct sunxi_ccm_reg *const ccm =
43 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
44
45 if (port == 5) {
46 if (state)
47 prcm_apb0_enable(
48 PRCM_APB0_GATE_PIO | PRCM_APB0_GATE_I2C);
49 else
50 prcm_apb0_disable(
51 PRCM_APB0_GATE_PIO | PRCM_APB0_GATE_I2C);
52 return 0;
53 }
54
55 /* set the apb clock gate and reset for twi */
56 if (state) {
57 setbits_le32(&ccm->apb2_gate,
58 CLK_GATE_OPEN << (APB2_GATE_TWI_SHIFT + port));
59 setbits_le32(&ccm->apb2_reset_cfg,
60 1 << (APB2_RESET_TWI_SHIFT + port));
61 } else {
62 clrbits_le32(&ccm->apb2_reset_cfg,
63 1 << (APB2_RESET_TWI_SHIFT + port));
64 clrbits_le32(&ccm->apb2_gate,
65 CLK_GATE_OPEN << (APB2_GATE_TWI_SHIFT + port));
66 }
67
68 return 0;
69}
70#endif