2008-01-31 21:15:53 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007
|
2011-10-31 23:00:39 +00:00
|
|
|
* Stelian Pop <stelian@popies.net>
|
2008-01-31 21:15:53 +00:00
|
|
|
* Lead Tech Design <www.leadtechdesign.com>
|
2009-04-16 19:30:44 +00:00
|
|
|
* Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
|
2008-01-31 21:15:53 +00:00
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-01-31 21:15:53 +00:00
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARM_ARCH_CLK_H__
|
|
|
|
#define __ASM_ARM_ARCH_CLK_H__
|
|
|
|
|
|
|
|
#include <asm/arch/hardware.h>
|
2011-06-12 01:49:11 +00:00
|
|
|
#include <asm/global_data.h>
|
2008-01-31 21:15:53 +00:00
|
|
|
|
2011-06-12 01:49:11 +00:00
|
|
|
static inline unsigned long get_cpu_clk_rate(void)
|
|
|
|
{
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2012-12-13 20:48:31 +00:00
|
|
|
return gd->arch.cpu_clk_rate_hz;
|
2011-06-12 01:49:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long get_main_clk_rate(void)
|
|
|
|
{
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2012-12-13 20:48:31 +00:00
|
|
|
return gd->arch.main_clk_rate_hz;
|
2011-06-12 01:49:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long get_mck_clk_rate(void)
|
|
|
|
{
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2012-12-13 20:48:31 +00:00
|
|
|
return gd->arch.mck_rate_hz;
|
2011-06-12 01:49:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long get_plla_clk_rate(void)
|
|
|
|
{
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2012-12-13 20:48:31 +00:00
|
|
|
return gd->arch.plla_rate_hz;
|
2011-06-12 01:49:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long get_pllb_clk_rate(void)
|
|
|
|
{
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2012-12-13 20:48:31 +00:00
|
|
|
return gd->arch.pllb_rate_hz;
|
2011-06-12 01:49:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32 get_pllb_init(void)
|
|
|
|
{
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2012-12-13 20:48:31 +00:00
|
|
|
return gd->arch.at91_pllb_usb_init;
|
2011-06-12 01:49:11 +00:00
|
|
|
}
|
2009-04-16 19:30:44 +00:00
|
|
|
|
2008-01-31 21:15:53 +00:00
|
|
|
static inline unsigned long get_macb_pclk_rate(unsigned int dev_id)
|
|
|
|
{
|
2009-04-16 19:30:44 +00:00
|
|
|
return get_mck_clk_rate();
|
2008-01-31 21:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long get_usart_clk_rate(unsigned int dev_id)
|
|
|
|
{
|
2009-04-16 19:30:44 +00:00
|
|
|
return get_mck_clk_rate();
|
2008-01-31 21:15:53 +00:00
|
|
|
}
|
|
|
|
|
2008-05-09 19:57:18 +00:00
|
|
|
static inline unsigned long get_lcdc_clk_rate(unsigned int dev_id)
|
|
|
|
{
|
2009-04-16 19:30:44 +00:00
|
|
|
return get_mck_clk_rate();
|
2008-05-09 19:57:18 +00:00
|
|
|
}
|
|
|
|
|
2009-07-09 08:16:29 +00:00
|
|
|
static inline unsigned long get_spi_clk_rate(unsigned int dev_id)
|
|
|
|
{
|
|
|
|
return get_mck_clk_rate();
|
|
|
|
}
|
|
|
|
|
2009-04-16 19:30:44 +00:00
|
|
|
static inline unsigned long get_twi_clk_rate(unsigned int dev_id)
|
|
|
|
{
|
|
|
|
return get_mck_clk_rate();
|
|
|
|
}
|
2008-05-09 19:57:18 +00:00
|
|
|
|
2010-08-13 08:31:06 +00:00
|
|
|
static inline unsigned long get_mci_clk_rate(void)
|
|
|
|
{
|
|
|
|
return get_mck_clk_rate();
|
|
|
|
}
|
|
|
|
|
2009-04-16 19:30:44 +00:00
|
|
|
int at91_clock_init(unsigned long main_clock);
|
2013-05-12 22:40:54 +00:00
|
|
|
void at91_periph_clk_enable(int id);
|
2008-01-31 21:15:53 +00:00
|
|
|
#endif /* __ASM_ARM_ARCH_CLK_H__ */
|