2014-04-04 17:16:53 +00:00
|
|
|
/*
|
|
|
|
* keystone2: common clock header file
|
|
|
|
*
|
|
|
|
* (C) Copyright 2012-2014
|
|
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARCH_CLOCK_H
|
|
|
|
#define __ASM_ARCH_CLOCK_H
|
|
|
|
|
2014-07-09 20:44:47 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2014-04-04 17:16:53 +00:00
|
|
|
#ifdef CONFIG_SOC_K2HK
|
|
|
|
#include <asm/arch/clock-k2hk.h>
|
|
|
|
#endif
|
|
|
|
|
2014-07-15 21:59:23 +00:00
|
|
|
#ifdef CONFIG_SOC_K2E
|
|
|
|
#include <asm/arch/clock-k2e.h>
|
|
|
|
#endif
|
|
|
|
|
2014-07-09 20:44:47 +00:00
|
|
|
#define MAIN_PLL CORE_PLL
|
|
|
|
|
|
|
|
#include <asm/types.h>
|
|
|
|
|
|
|
|
struct keystone_pll_regs {
|
|
|
|
u32 reg0;
|
|
|
|
u32 reg1;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* PLL configuration data */
|
|
|
|
struct pll_init_data {
|
|
|
|
int pll;
|
|
|
|
int pll_m; /* PLL Multiplier */
|
|
|
|
int pll_d; /* PLL divider */
|
|
|
|
int pll_od; /* PLL output divider */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct keystone_pll_regs keystone_pll_regs[];
|
|
|
|
|
|
|
|
void init_plls(int num_pll, struct pll_init_data *config);
|
|
|
|
void init_pll(const struct pll_init_data *data);
|
|
|
|
unsigned long clk_get_rate(unsigned int clk);
|
|
|
|
unsigned long clk_round_rate(unsigned int clk, unsigned long hz);
|
|
|
|
int clk_set_rate(unsigned int clk, unsigned long hz);
|
|
|
|
|
|
|
|
#endif
|
2014-04-04 17:16:53 +00:00
|
|
|
#endif
|