30 lines
635 B
C
30 lines
635 B
C
|
/*
|
||
|
* (C) Copyright 2007-2011
|
||
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
||
|
* Tom Cubie <tangliang@allwinnertech.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef _SUNXI_CLOCK_H
|
||
|
#define _SUNXI_CLOCK_H
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
#define CLK_GATE_OPEN 0x1
|
||
|
#define CLK_GATE_CLOSE 0x0
|
||
|
|
||
|
/* clock control module regs definition */
|
||
|
#include <asm/arch/clock_sun4i.h>
|
||
|
|
||
|
#ifndef __ASSEMBLY__
|
||
|
int clock_init(void);
|
||
|
int clock_twi_onoff(int port, int state);
|
||
|
void clock_set_pll1(unsigned int hz);
|
||
|
unsigned int clock_get_pll6(void);
|
||
|
void clock_init_safe(void);
|
||
|
void clock_init_uart(void);
|
||
|
#endif
|
||
|
|
||
|
#endif /* _SUNXI_CLOCK_H */
|