| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  linux/arch/arm/mach-omap1/clock.c | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-02-22 22:09:26 -07:00
										 |  |  |  *  Copyright (C) 2004 - 2005, 2009-2010 Nokia Corporation | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  |  *  Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Modified to use omap shared clock framework by | 
					
						
							|  |  |  |  *  Tony Lindgren <tony@atomide.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							| 
									
										
										
										
											2012-09-27 10:33:33 -06:00
										 |  |  | #include <linux/export.h>
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | #include <linux/list.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <linux/err.h>
 | 
					
						
							| 
									
										
										
										
											2012-02-24 10:34:35 -08:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2006-01-07 16:15:52 +00:00
										 |  |  | #include <linux/clk.h>
 | 
					
						
							| 
									
										
										
										
											2010-11-17 10:04:33 +01:00
										 |  |  | #include <linux/clkdev.h>
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 13:27:20 +03:00
										 |  |  | #include <asm/mach-types.h>
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-24 10:34:35 -08:00
										 |  |  | #include <mach/hardware.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-24 15:05:45 -07:00
										 |  |  | #include "soc.h"
 | 
					
						
							| 
									
										
										
										
											2012-02-24 10:34:34 -08:00
										 |  |  | #include "iomap.h"
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | #include "clock.h"
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | #include "opp.h"
 | 
					
						
							| 
									
										
										
										
											2012-10-29 13:54:06 -07:00
										 |  |  | #include "sram.h"
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | __u32 arm_idlect1_mask; | 
					
						
							|  |  |  | struct clk *api_ck_p, *ck_dpll1_p, *ck_ref_p; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-27 10:33:33 -06:00
										 |  |  | static LIST_HEAD(clocks); | 
					
						
							|  |  |  | static DEFINE_MUTEX(clocks_mutex); | 
					
						
							|  |  |  | static DEFINE_SPINLOCK(clockfw_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 16:34:28 -06:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  |  * Omap1 specific clock functions | 
					
						
							| 
									
										
										
										
											2010-07-26 16:34:28 -06:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | unsigned long omap1_uart_recalc(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 	unsigned int val = __raw_readl(clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2009-02-12 10:12:59 +00:00
										 |  |  | 	return val & clk->enable_bit ? 48000000 : 12000000; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | unsigned long omap1_sossi_recalc(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2007-03-05 17:22:58 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	u32 div = omap_readl(MOD_CONF_CTRL_1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	div = (div >> 17) & 0x7; | 
					
						
							|  |  |  | 	div++; | 
					
						
							| 
									
										
										
										
											2009-02-12 10:12:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return clk->parent->rate / div; | 
					
						
							| 
									
										
										
										
											2007-03-05 17:22:58 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | static void omap1_clk_allow_idle(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct arm_idlect1_clk * iclk = (struct arm_idlect1_clk *)clk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(clk->flags & CLOCK_IDLE_CONTROL)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (iclk->no_idle_count > 0 && !(--iclk->no_idle_count)) | 
					
						
							|  |  |  | 		arm_idlect1_mask |= 1 << iclk->idlect_shift; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void omap1_clk_deny_idle(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct arm_idlect1_clk * iclk = (struct arm_idlect1_clk *)clk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(clk->flags & CLOCK_IDLE_CONTROL)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (iclk->no_idle_count++ == 0) | 
					
						
							|  |  |  | 		arm_idlect1_mask &= ~(1 << iclk->idlect_shift); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static __u16 verify_ckctl_value(__u16 newval) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* This function checks for following limitations set
 | 
					
						
							|  |  |  | 	 * by the hardware (all conditions must be true): | 
					
						
							|  |  |  | 	 * DSPMMU_CK == DSP_CK  or  DSPMMU_CK == DSP_CK/2 | 
					
						
							|  |  |  | 	 * ARM_CK >= TC_CK | 
					
						
							|  |  |  | 	 * DSP_CK >= TC_CK | 
					
						
							|  |  |  | 	 * DSPMMU_CK >= TC_CK | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * In addition following rules are enforced: | 
					
						
							|  |  |  | 	 * LCD_CK <= TC_CK | 
					
						
							|  |  |  | 	 * ARMPER_CK <= TC_CK | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * However, maximum frequencies are not checked for! | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	__u8 per_exp; | 
					
						
							|  |  |  | 	__u8 lcd_exp; | 
					
						
							|  |  |  | 	__u8 arm_exp; | 
					
						
							|  |  |  | 	__u8 dsp_exp; | 
					
						
							|  |  |  | 	__u8 tc_exp; | 
					
						
							|  |  |  | 	__u8 dspmmu_exp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	per_exp = (newval >> CKCTL_PERDIV_OFFSET) & 3; | 
					
						
							|  |  |  | 	lcd_exp = (newval >> CKCTL_LCDDIV_OFFSET) & 3; | 
					
						
							|  |  |  | 	arm_exp = (newval >> CKCTL_ARMDIV_OFFSET) & 3; | 
					
						
							|  |  |  | 	dsp_exp = (newval >> CKCTL_DSPDIV_OFFSET) & 3; | 
					
						
							|  |  |  | 	tc_exp = (newval >> CKCTL_TCDIV_OFFSET) & 3; | 
					
						
							|  |  |  | 	dspmmu_exp = (newval >> CKCTL_DSPMMUDIV_OFFSET) & 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dspmmu_exp < dsp_exp) | 
					
						
							|  |  |  | 		dspmmu_exp = dsp_exp; | 
					
						
							|  |  |  | 	if (dspmmu_exp > dsp_exp+1) | 
					
						
							|  |  |  | 		dspmmu_exp = dsp_exp+1; | 
					
						
							|  |  |  | 	if (tc_exp < arm_exp) | 
					
						
							|  |  |  | 		tc_exp = arm_exp; | 
					
						
							|  |  |  | 	if (tc_exp < dspmmu_exp) | 
					
						
							|  |  |  | 		tc_exp = dspmmu_exp; | 
					
						
							|  |  |  | 	if (tc_exp > lcd_exp) | 
					
						
							|  |  |  | 		lcd_exp = tc_exp; | 
					
						
							|  |  |  | 	if (tc_exp > per_exp) | 
					
						
							|  |  |  | 		per_exp = tc_exp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	newval &= 0xf000; | 
					
						
							|  |  |  | 	newval |= per_exp << CKCTL_PERDIV_OFFSET; | 
					
						
							|  |  |  | 	newval |= lcd_exp << CKCTL_LCDDIV_OFFSET; | 
					
						
							|  |  |  | 	newval |= arm_exp << CKCTL_ARMDIV_OFFSET; | 
					
						
							|  |  |  | 	newval |= dsp_exp << CKCTL_DSPDIV_OFFSET; | 
					
						
							|  |  |  | 	newval |= tc_exp << CKCTL_TCDIV_OFFSET; | 
					
						
							|  |  |  | 	newval |= dspmmu_exp << CKCTL_DSPMMUDIV_OFFSET; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return newval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int calc_dsor_exp(struct clk *clk, unsigned long rate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* Note: If target frequency is too low, this function will return 4,
 | 
					
						
							|  |  |  | 	 * which is invalid value. Caller must check for this value and act | 
					
						
							|  |  |  | 	 * accordingly. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Note: This function does not check for following limitations set | 
					
						
							|  |  |  | 	 * by the hardware (all conditions must be true): | 
					
						
							|  |  |  | 	 * DSPMMU_CK == DSP_CK  or  DSPMMU_CK == DSP_CK/2 | 
					
						
							|  |  |  | 	 * ARM_CK >= TC_CK | 
					
						
							|  |  |  | 	 * DSP_CK >= TC_CK | 
					
						
							|  |  |  | 	 * DSPMMU_CK >= TC_CK | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	unsigned long realrate; | 
					
						
							|  |  |  | 	struct clk * parent; | 
					
						
							|  |  |  | 	unsigned  dsor_exp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	parent = clk->parent; | 
					
						
							| 
									
										
										
										
											2008-09-05 15:10:27 +01:00
										 |  |  | 	if (unlikely(parent == NULL)) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	realrate = parent->rate; | 
					
						
							|  |  |  | 	for (dsor_exp=0; dsor_exp<4; dsor_exp++) { | 
					
						
							|  |  |  | 		if (realrate <= rate) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		realrate /= 2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return dsor_exp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | unsigned long omap1_ckctl_recalc(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* Calculate divisor encoded as 2-bit exponent */ | 
					
						
							| 
									
										
										
										
											2009-02-12 10:12:59 +00:00
										 |  |  | 	int dsor = 1 << (3 & (omap_readw(ARM_CKCTL) >> clk->rate_offset)); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-12 10:12:59 +00:00
										 |  |  | 	return clk->parent->rate / dsor; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | unsigned long omap1_ckctl_recalc_dsp_domain(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int dsor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Calculate divisor encoded as 2-bit exponent
 | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * The clock control bits are in DSP domain, | 
					
						
							|  |  |  | 	 * so api_ck is needed for access. | 
					
						
							|  |  |  | 	 * Note that DSP_CKCTL virt addr = phys addr, so | 
					
						
							|  |  |  | 	 * we must use __raw_readw() instead of omap_readw(). | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 	omap1_clk_enable(api_ck_p); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	dsor = 1 << (3 & (__raw_readw(DSP_CKCTL) >> clk->rate_offset)); | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 	omap1_clk_disable(api_ck_p); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-12 10:12:59 +00:00
										 |  |  | 	return clk->parent->rate / dsor; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* MPU virtual clock functions */ | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | int omap1_select_table_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* Find the highest supported frequency <= rate and switch to it */ | 
					
						
							|  |  |  | 	struct mpu_rate * ptr; | 
					
						
							| 
									
										
										
										
											2012-04-13 06:34:32 -06:00
										 |  |  | 	unsigned long ref_rate; | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 17:30:55 -07:00
										 |  |  | 	ref_rate = ck_ref_p->rate; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 	for (ptr = omap1_rate_table; ptr->rate; ptr++) { | 
					
						
							| 
									
										
										
										
											2011-12-08 18:01:41 -08:00
										 |  |  | 		if (!(ptr->flags & cpu_mask)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 		if (ptr->xtal != ref_rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Can check only after xtal frequency check */ | 
					
						
							|  |  |  | 		if (ptr->rate <= rate) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ptr->rate) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * In most cases we should not need to reprogram DPLL. | 
					
						
							|  |  |  | 	 * Reprogramming the DPLL is tricky, it must be done from SRAM. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-12-01 22:16:26 +01:00
										 |  |  | 	omap_sram_reprogram_clock(ptr->dpllctl_val, ptr->ckctl_val); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 	/* XXX Do we need to recalculate the tree below DPLL1 at this point? */ | 
					
						
							|  |  |  | 	ck_dpll1_p->rate = ptr->pll_rate; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | int omap1_clk_set_rate_dsp_domain(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-02-08 16:07:46 +00:00
										 |  |  | 	int dsor_exp; | 
					
						
							|  |  |  | 	u16 regval; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-08 16:07:46 +00:00
										 |  |  | 	dsor_exp = calc_dsor_exp(clk, rate); | 
					
						
							|  |  |  | 	if (dsor_exp > 3) | 
					
						
							|  |  |  | 		dsor_exp = -EINVAL; | 
					
						
							|  |  |  | 	if (dsor_exp < 0) | 
					
						
							|  |  |  | 		return dsor_exp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regval = __raw_readw(DSP_CKCTL); | 
					
						
							|  |  |  | 	regval &= ~(3 << clk->rate_offset); | 
					
						
							|  |  |  | 	regval |= dsor_exp << clk->rate_offset; | 
					
						
							|  |  |  | 	__raw_writew(regval, DSP_CKCTL); | 
					
						
							|  |  |  | 	clk->rate = clk->parent->rate / (1 << dsor_exp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | long omap1_clk_round_rate_ckctl_arm(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2009-02-08 16:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int dsor_exp = calc_dsor_exp(clk, rate); | 
					
						
							|  |  |  | 	if (dsor_exp < 0) | 
					
						
							|  |  |  | 		return dsor_exp; | 
					
						
							|  |  |  | 	if (dsor_exp > 3) | 
					
						
							|  |  |  | 		dsor_exp = 3; | 
					
						
							|  |  |  | 	return clk->parent->rate / (1 << dsor_exp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | int omap1_clk_set_rate_ckctl_arm(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2009-02-08 16:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int dsor_exp; | 
					
						
							|  |  |  | 	u16 regval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dsor_exp = calc_dsor_exp(clk, rate); | 
					
						
							|  |  |  | 	if (dsor_exp > 3) | 
					
						
							|  |  |  | 		dsor_exp = -EINVAL; | 
					
						
							|  |  |  | 	if (dsor_exp < 0) | 
					
						
							|  |  |  | 		return dsor_exp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regval = omap_readw(ARM_CKCTL); | 
					
						
							|  |  |  | 	regval &= ~(3 << clk->rate_offset); | 
					
						
							|  |  |  | 	regval |= dsor_exp << clk->rate_offset; | 
					
						
							|  |  |  | 	regval = verify_ckctl_value(regval); | 
					
						
							|  |  |  | 	omap_writew(regval, ARM_CKCTL); | 
					
						
							|  |  |  | 	clk->rate = clk->parent->rate / (1 << dsor_exp); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | long omap1_round_to_table_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* Find the highest supported frequency <= rate */ | 
					
						
							|  |  |  | 	struct mpu_rate * ptr; | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 	long highest_rate; | 
					
						
							|  |  |  | 	unsigned long ref_rate; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 17:30:55 -07:00
										 |  |  | 	ref_rate = ck_ref_p->rate; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	highest_rate = -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 	for (ptr = omap1_rate_table; ptr->rate; ptr++) { | 
					
						
							| 
									
										
										
										
											2011-12-08 18:01:41 -08:00
										 |  |  | 		if (!(ptr->flags & cpu_mask)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | 		if (ptr->xtal != ref_rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		highest_rate = ptr->rate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Can check only after xtal frequency check */ | 
					
						
							|  |  |  | 		if (ptr->rate <= rate) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return highest_rate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned calc_ext_dsor(unsigned long rate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned dsor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* MCLK and BCLK divisor selection is not linear:
 | 
					
						
							|  |  |  | 	 * freq = 96MHz / dsor | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * RATIO_SEL range: dsor <-> RATIO_SEL | 
					
						
							|  |  |  | 	 * 0..6: (RATIO_SEL+2) <-> (dsor-2) | 
					
						
							|  |  |  | 	 * 6..48:  (8+(RATIO_SEL-6)*2) <-> ((dsor-8)/2+6) | 
					
						
							|  |  |  | 	 * Minimum dsor is 2 and maximum is 96. Odd divisors starting from 9 | 
					
						
							|  |  |  | 	 * can not be used. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	for (dsor = 2; dsor < 96; ++dsor) { | 
					
						
							|  |  |  | 		if ((dsor & 1) && dsor > 8) | 
					
						
							| 
									
										
										
										
											2006-04-02 17:46:20 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		if (rate >= 96000000 / dsor) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return dsor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | /* XXX Only needed on 1510 */ | 
					
						
							|  |  |  | int omap1_set_uart_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned int val; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 	val = __raw_readl(clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	if (rate == 12000000) | 
					
						
							|  |  |  | 		val &= ~(1 << clk->enable_bit); | 
					
						
							|  |  |  | 	else if (rate == 48000000) | 
					
						
							|  |  |  | 		val |= (1 << clk->enable_bit); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 	__raw_writel(val, clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	clk->rate = rate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* External clock (MCLK & BCLK) functions */ | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | int omap1_set_ext_clk_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned dsor; | 
					
						
							|  |  |  | 	__u16 ratio_bits; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dsor = calc_ext_dsor(rate); | 
					
						
							|  |  |  | 	clk->rate = 96000000 / dsor; | 
					
						
							|  |  |  | 	if (dsor > 8) | 
					
						
							|  |  |  | 		ratio_bits = ((dsor - 8) / 2 + 6) << 2; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		ratio_bits = (dsor - 2) << 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 	ratio_bits |= __raw_readw(clk->enable_reg) & ~0xfd; | 
					
						
							|  |  |  | 	__raw_writew(ratio_bits, clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | int omap1_set_sossi_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2007-03-05 17:22:58 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	u32 l; | 
					
						
							|  |  |  | 	int div; | 
					
						
							|  |  |  | 	unsigned long p_rate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p_rate = clk->parent->rate; | 
					
						
							|  |  |  | 	/* Round towards slower frequency */ | 
					
						
							|  |  |  | 	div = (p_rate + rate - 1) / rate; | 
					
						
							|  |  |  | 	div--; | 
					
						
							|  |  |  | 	if (div < 0 || div > 7) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	l = omap_readl(MOD_CONF_CTRL_1); | 
					
						
							|  |  |  | 	l &= ~(7 << 17); | 
					
						
							|  |  |  | 	l |= div << 17; | 
					
						
							|  |  |  | 	omap_writel(l, MOD_CONF_CTRL_1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clk->rate = p_rate / (div + 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | long omap1_round_ext_clk_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 96000000 / calc_ext_dsor(rate); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | void omap1_init_ext_clk(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned dsor; | 
					
						
							|  |  |  | 	__u16 ratio_bits; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Determine current rate and ensure clock is based on 96MHz APLL */ | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 	ratio_bits = __raw_readw(clk->enable_reg) & ~1; | 
					
						
							|  |  |  | 	__raw_writew(ratio_bits, clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ratio_bits = (ratio_bits & 0xfc) >> 2; | 
					
						
							|  |  |  | 	if (ratio_bits > 6) | 
					
						
							|  |  |  | 		dsor = (ratio_bits - 6) * 2 + 8; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		dsor = ratio_bits + 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clk-> rate = 96000000 / dsor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | int omap1_clk_enable(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret = 0; | 
					
						
							| 
									
										
										
										
											2009-04-05 12:27:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	if (clk->usecount++ == 0) { | 
					
						
							| 
									
										
										
										
											2009-04-05 12:27:24 +01:00
										 |  |  | 		if (clk->parent) { | 
					
						
							| 
									
										
										
										
											2006-01-17 15:30:42 -08:00
										 |  |  | 			ret = omap1_clk_enable(clk->parent); | 
					
						
							| 
									
										
										
										
											2009-04-05 12:27:24 +01:00
										 |  |  | 			if (ret) | 
					
						
							|  |  |  | 				goto err; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (clk->flags & CLOCK_NO_IDLE_PARENT) | 
					
						
							| 
									
										
										
										
											2006-12-06 17:13:51 -08:00
										 |  |  | 				omap1_clk_deny_idle(clk->parent); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 14:02:46 +00:00
										 |  |  | 		ret = clk->ops->enable(clk); | 
					
						
							| 
									
										
										
										
											2009-04-05 12:27:24 +01:00
										 |  |  | 		if (ret) { | 
					
						
							|  |  |  | 			if (clk->parent) | 
					
						
							|  |  |  | 				omap1_clk_disable(clk->parent); | 
					
						
							|  |  |  | 			goto err; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-04-05 12:27:24 +01:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-05 12:27:24 +01:00
										 |  |  | err: | 
					
						
							|  |  |  | 	clk->usecount--; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | void omap1_clk_disable(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (clk->usecount > 0 && !(--clk->usecount)) { | 
					
						
							| 
									
										
										
										
											2008-11-04 14:02:46 +00:00
										 |  |  | 		clk->ops->disable(clk); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		if (likely(clk->parent)) { | 
					
						
							| 
									
										
										
										
											2006-01-17 15:30:42 -08:00
										 |  |  | 			omap1_clk_disable(clk->parent); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 			if (clk->flags & CLOCK_NO_IDLE_PARENT) | 
					
						
							| 
									
										
										
										
											2006-12-06 17:13:51 -08:00
										 |  |  | 				omap1_clk_allow_idle(clk->parent); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-17 15:30:42 -08:00
										 |  |  | static int omap1_clk_enable_generic(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	__u16 regval16; | 
					
						
							|  |  |  | 	__u32 regval32; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-05 15:10:27 +01:00
										 |  |  | 	if (unlikely(clk->enable_reg == NULL)) { | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		printk(KERN_ERR "clock.c: Enable for %s without enable code\n", | 
					
						
							|  |  |  | 		       clk->name); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:13:51 -08:00
										 |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk->flags & ENABLE_REG_32BIT) { | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 		regval32 = __raw_readl(clk->enable_reg); | 
					
						
							|  |  |  | 		regval32 |= (1 << clk->enable_bit); | 
					
						
							|  |  |  | 		__raw_writel(regval32, clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 		regval16 = __raw_readw(clk->enable_reg); | 
					
						
							|  |  |  | 		regval16 |= (1 << clk->enable_bit); | 
					
						
							|  |  |  | 		__raw_writew(regval16, clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:13:51 -08:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-17 15:30:42 -08:00
										 |  |  | static void omap1_clk_disable_generic(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	__u16 regval16; | 
					
						
							|  |  |  | 	__u32 regval32; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-05 15:10:27 +01:00
										 |  |  | 	if (clk->enable_reg == NULL) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk->flags & ENABLE_REG_32BIT) { | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 		regval32 = __raw_readl(clk->enable_reg); | 
					
						
							|  |  |  | 		regval32 &= ~(1 << clk->enable_bit); | 
					
						
							|  |  |  | 		__raw_writel(regval32, clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 		regval16 = __raw_readw(clk->enable_reg); | 
					
						
							|  |  |  | 		regval16 &= ~(1 << clk->enable_bit); | 
					
						
							|  |  |  | 		__raw_writew(regval16, clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | const struct clkops clkops_generic = { | 
					
						
							|  |  |  | 	.enable		= omap1_clk_enable_generic, | 
					
						
							|  |  |  | 	.disable	= omap1_clk_disable_generic, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int omap1_clk_enable_dsp_domain(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int retval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	retval = omap1_clk_enable(api_ck_p); | 
					
						
							|  |  |  | 	if (!retval) { | 
					
						
							|  |  |  | 		retval = omap1_clk_enable_generic(clk); | 
					
						
							|  |  |  | 		omap1_clk_disable(api_ck_p); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void omap1_clk_disable_dsp_domain(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (omap1_clk_enable(api_ck_p) == 0) { | 
					
						
							|  |  |  | 		omap1_clk_disable_generic(clk); | 
					
						
							|  |  |  | 		omap1_clk_disable(api_ck_p); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const struct clkops clkops_dspck = { | 
					
						
							|  |  |  | 	.enable		= omap1_clk_enable_dsp_domain, | 
					
						
							|  |  |  | 	.disable	= omap1_clk_disable_dsp_domain, | 
					
						
							| 
									
										
										
										
											2008-11-04 14:02:46 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 16:34:28 -06:00
										 |  |  | /* XXX SYSC register handling does not belong in the clock framework */ | 
					
						
							|  |  |  | static int omap1_clk_enable_uart_functional_16xx(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 	struct uart_clk *uclk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = omap1_clk_enable_generic(clk); | 
					
						
							|  |  |  | 	if (ret == 0) { | 
					
						
							|  |  |  | 		/* Set smart idle acknowledgement mode */ | 
					
						
							|  |  |  | 		uclk = (struct uart_clk *)clk; | 
					
						
							|  |  |  | 		omap_writeb((omap_readb(uclk->sysc_addr) & ~0x10) | 8, | 
					
						
							|  |  |  | 			    uclk->sysc_addr); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 16:34:28 -06:00
										 |  |  | /* XXX SYSC register handling does not belong in the clock framework */ | 
					
						
							|  |  |  | static void omap1_clk_disable_uart_functional_16xx(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct uart_clk *uclk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Set force idle acknowledgement mode */ | 
					
						
							|  |  |  | 	uclk = (struct uart_clk *)clk; | 
					
						
							|  |  |  | 	omap_writeb((omap_readb(uclk->sysc_addr) & ~0x18), uclk->sysc_addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	omap1_clk_disable_generic(clk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 16:34:28 -06:00
										 |  |  | /* XXX SYSC register handling does not belong in the clock framework */ | 
					
						
							|  |  |  | const struct clkops clkops_uart_16xx = { | 
					
						
							|  |  |  | 	.enable		= omap1_clk_enable_uart_functional_16xx, | 
					
						
							|  |  |  | 	.disable	= omap1_clk_disable_uart_functional_16xx, | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | long omap1_clk_round_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-05 15:10:27 +01:00
										 |  |  | 	if (clk->round_rate != NULL) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 		return clk->round_rate(clk, rate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return clk->rate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 16:29:38 -07:00
										 |  |  | int omap1_clk_set_rate(struct clk *clk, unsigned long rate) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int  ret = -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk->set_rate) | 
					
						
							|  |  |  | 		ret = clk->set_rate(clk, rate); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 16:34:28 -06:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  |  * Omap1 clock reset and init functions | 
					
						
							| 
									
										
										
										
											2010-07-26 16:34:28 -06:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_OMAP_RESET_CLOCKS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-20 12:31:04 -06:00
										 |  |  | void omap1_clk_disable_unused(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	__u32 regval32; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 13:27:20 +03:00
										 |  |  | 	/* Clocks in the DSP domain need api_ck. Just assume bootloader
 | 
					
						
							|  |  |  | 	 * has not enabled any DSP clocks */ | 
					
						
							| 
									
										
										
										
											2008-09-05 15:46:19 +01:00
										 |  |  | 	if (clk->enable_reg == DSP_IDLECT2) { | 
					
						
							| 
									
										
										
										
											2012-07-26 00:54:26 -06:00
										 |  |  | 		pr_info("Skipping reset check for DSP domain clock \"%s\"\n", | 
					
						
							|  |  |  | 			clk->name); | 
					
						
							| 
									
										
										
										
											2006-09-25 13:27:20 +03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 13:27:20 +03:00
										 |  |  | 	/* Is the clock already disabled? */ | 
					
						
							| 
									
										
										
										
											2009-01-28 12:18:48 -07:00
										 |  |  | 	if (clk->flags & ENABLE_REG_32BIT) | 
					
						
							|  |  |  | 		regval32 = __raw_readl(clk->enable_reg); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		regval32 = __raw_readw(clk->enable_reg); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 13:27:20 +03:00
										 |  |  | 	if ((regval32 & (1 << clk->enable_bit)) == 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 13:27:20 +03:00
										 |  |  | 	printk(KERN_INFO "Disabling unused clock \"%s\"... ", clk->name); | 
					
						
							| 
									
										
										
										
											2008-11-04 14:02:46 +00:00
										 |  |  | 	clk->ops->disable(clk); | 
					
						
							| 
									
										
										
										
											2006-09-25 13:27:20 +03:00
										 |  |  | 	printk(" done\n"); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-09-27 10:33:33 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int clk_enable(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk == NULL || IS_ERR(clk)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 	ret = omap1_clk_enable(clk); | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_enable); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void clk_disable(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk == NULL || IS_ERR(clk)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 	if (clk->usecount == 0) { | 
					
						
							|  |  |  | 		pr_err("Trying disable clock %s with 0 usecount\n", | 
					
						
							|  |  |  | 		       clk->name); | 
					
						
							|  |  |  | 		WARN_ON(1); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	omap1_clk_disable(clk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_disable); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unsigned long clk_get_rate(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	unsigned long ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk == NULL || IS_ERR(clk)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 	ret = clk->rate; | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_get_rate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Optional clock functions defined in include/linux/clk.h | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | long clk_round_rate(struct clk *clk, unsigned long rate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	long ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk == NULL || IS_ERR(clk)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 	ret = omap1_clk_round_rate(clk, rate); | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_round_rate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int clk_set_rate(struct clk *clk, unsigned long rate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	int ret = -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (clk == NULL || IS_ERR(clk)) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 	ret = omap1_clk_set_rate(clk, rate); | 
					
						
							|  |  |  | 	if (ret == 0) | 
					
						
							|  |  |  | 		propagate_rate(clk); | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_set_rate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int clk_set_parent(struct clk *clk, struct clk *parent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	WARN_ONCE(1, "clk_set_parent() not implemented for OMAP1\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return -EINVAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_set_parent); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct clk *clk_get_parent(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return clk->parent; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_get_parent); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * OMAP specific clock functions shared between omap1 and omap2 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int __initdata mpurate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * By default we use the rate set by the bootloader. | 
					
						
							|  |  |  |  * You can override this with mpurate= cmdline option. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int __init omap_clk_setup(char *str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	get_option(&str, &mpurate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!mpurate) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mpurate < 1000) | 
					
						
							|  |  |  | 		mpurate *= 1000000; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | __setup("mpurate=", omap_clk_setup); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Used for clocks that always have same value as the parent clock */ | 
					
						
							|  |  |  | unsigned long followparent_recalc(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return clk->parent->rate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Used for clocks that have the same value as the parent clock, | 
					
						
							|  |  |  |  * divided by some factor | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | unsigned long omap_fixed_divisor_recalc(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	WARN_ON(!clk->fixed_div); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return clk->parent->rate / clk->fixed_div; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void clk_reparent(struct clk *child, struct clk *parent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	list_del_init(&child->sibling); | 
					
						
							|  |  |  | 	if (parent) | 
					
						
							|  |  |  | 		list_add(&child->sibling, &parent->children); | 
					
						
							|  |  |  | 	child->parent = parent; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* now do the debugfs renaming to reattach the child
 | 
					
						
							|  |  |  | 	   to the proper parent */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Propagate rate to children */ | 
					
						
							|  |  |  | void propagate_rate(struct clk *tclk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *clkp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(clkp, &tclk->children, sibling) { | 
					
						
							|  |  |  | 		if (clkp->recalc) | 
					
						
							|  |  |  | 			clkp->rate = clkp->recalc(clkp); | 
					
						
							|  |  |  | 		propagate_rate(clkp); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static LIST_HEAD(root_clks); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * recalculate_root_clocks - recalculate and propagate all root clocks | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Recalculates all root clocks (clocks with no parent), which if the | 
					
						
							|  |  |  |  * clock's .recalc is set correctly, should also propagate their rates. | 
					
						
							|  |  |  |  * Called at init. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void recalculate_root_clocks(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *clkp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(clkp, &root_clks, sibling) { | 
					
						
							|  |  |  | 		if (clkp->recalc) | 
					
						
							|  |  |  | 			clkp->rate = clkp->recalc(clkp); | 
					
						
							|  |  |  | 		propagate_rate(clkp); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * clk_preinit - initialize any fields in the struct clk before clk init | 
					
						
							|  |  |  |  * @clk: struct clk * to initialize | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Initialize any struct clk fields needed before normal clk initialization | 
					
						
							|  |  |  |  * can run.  No return value. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void clk_preinit(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	INIT_LIST_HEAD(&clk->children); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int clk_register(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (clk == NULL || IS_ERR(clk)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * trap out already registered clocks | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (clk->node.next || clk->node.prev) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&clocks_mutex); | 
					
						
							|  |  |  | 	if (clk->parent) | 
					
						
							|  |  |  | 		list_add(&clk->sibling, &clk->parent->children); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		list_add(&clk->sibling, &root_clks); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_add(&clk->node, &clocks); | 
					
						
							|  |  |  | 	if (clk->init) | 
					
						
							|  |  |  | 		clk->init(clk); | 
					
						
							|  |  |  | 	mutex_unlock(&clocks_mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_register); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void clk_unregister(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (clk == NULL || IS_ERR(clk)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&clocks_mutex); | 
					
						
							|  |  |  | 	list_del(&clk->sibling); | 
					
						
							|  |  |  | 	list_del(&clk->node); | 
					
						
							|  |  |  | 	mutex_unlock(&clocks_mutex); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(clk_unregister); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void clk_enable_init_clocks(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *clkp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(clkp, &clocks, node) | 
					
						
							|  |  |  | 		if (clkp->flags & ENABLE_ON_INIT) | 
					
						
							|  |  |  | 			clk_enable(clkp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * omap_clk_get_by_name - locate OMAP struct clk by its name | 
					
						
							|  |  |  |  * @name: name of the struct clk to locate | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Locate an OMAP struct clk by its name.  Assumes that struct clk | 
					
						
							|  |  |  |  * names are unique.  Returns NULL if not found or a pointer to the | 
					
						
							|  |  |  |  * struct clk if found. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct clk *omap_clk_get_by_name(const char *name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *c; | 
					
						
							|  |  |  | 	struct clk *ret = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&clocks_mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(c, &clocks, node) { | 
					
						
							|  |  |  | 		if (!strcmp(c->name, name)) { | 
					
						
							|  |  |  | 			ret = c; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_unlock(&clocks_mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int omap_clk_enable_autoidle_all(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *c; | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(c, &clocks, node) | 
					
						
							|  |  |  | 		if (c->ops->allow_idle) | 
					
						
							|  |  |  | 			c->ops->allow_idle(c); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int omap_clk_disable_autoidle_all(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *c; | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(c, &clocks, node) | 
					
						
							|  |  |  | 		if (c->ops->deny_idle) | 
					
						
							|  |  |  | 			c->ops->deny_idle(c); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Low level helpers | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int clkll_enable_null(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void clkll_disable_null(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const struct clkops clkops_null = { | 
					
						
							|  |  |  | 	.enable		= clkll_enable_null, | 
					
						
							|  |  |  | 	.disable	= clkll_disable_null, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Dummy clock | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Used for clock aliases that are needed on some OMAPs, but not others | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct clk dummy_ck = { | 
					
						
							|  |  |  | 	.name	= "dummy", | 
					
						
							|  |  |  | 	.ops	= &clkops_null, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_OMAP_RESET_CLOCKS
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Disable any unused clocks left on by the bootloader | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int __init clk_disable_unused(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *ck; | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pr_info("clock: disabling unused clocks to save power\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&clockfw_lock, flags); | 
					
						
							|  |  |  | 	list_for_each_entry(ck, &clocks, node) { | 
					
						
							|  |  |  | 		if (ck->ops == &clkops_null) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (ck->usecount > 0 || !ck->enable_reg) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		omap1_clk_disable_unused(ck); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&clockfw_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | late_initcall(clk_disable_unused); | 
					
						
							|  |  |  | late_initcall(omap_clk_enable_autoidle_all); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *	debugfs support to trace clock tree hierarchy and attributes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/debugfs.h>
 | 
					
						
							|  |  |  | #include <linux/seq_file.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct dentry *clk_debugfs_root; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int clk_dbg_show_summary(struct seq_file *s, void *unused) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *c; | 
					
						
							|  |  |  | 	struct clk *pa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&clocks_mutex); | 
					
						
							|  |  |  | 	seq_printf(s, "%-30s %-30s %-10s %s\n", | 
					
						
							|  |  |  | 		   "clock-name", "parent-name", "rate", "use-count"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(c, &clocks, node) { | 
					
						
							|  |  |  | 		pa = c->parent; | 
					
						
							|  |  |  | 		seq_printf(s, "%-30s %-30s %-10lu %d\n", | 
					
						
							|  |  |  | 			   c->name, pa ? pa->name : "none", c->rate, | 
					
						
							|  |  |  | 			   c->usecount); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	mutex_unlock(&clocks_mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int clk_dbg_open(struct inode *inode, struct file *file) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return single_open(file, clk_dbg_show_summary, inode->i_private); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct file_operations debug_clock_fops = { | 
					
						
							|  |  |  | 	.open           = clk_dbg_open, | 
					
						
							|  |  |  | 	.read           = seq_read, | 
					
						
							|  |  |  | 	.llseek         = seq_lseek, | 
					
						
							|  |  |  | 	.release        = single_release, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int clk_debugfs_register_one(struct clk *c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	struct dentry *d; | 
					
						
							|  |  |  | 	struct clk *pa = c->parent; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d = debugfs_create_dir(c->name, pa ? pa->dent : clk_debugfs_root); | 
					
						
							|  |  |  | 	if (!d) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	c->dent = d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount); | 
					
						
							|  |  |  | 	if (!d) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate); | 
					
						
							|  |  |  | 	if (!d) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags); | 
					
						
							|  |  |  | 	if (!d) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_out: | 
					
						
							|  |  |  | 	debugfs_remove_recursive(c->dent); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int clk_debugfs_register(struct clk *c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	struct clk *pa = c->parent; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pa && !pa->dent) { | 
					
						
							|  |  |  | 		err = clk_debugfs_register(pa); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!c->dent) { | 
					
						
							|  |  |  | 		err = clk_debugfs_register_one(c); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init clk_debugfs_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct clk *c; | 
					
						
							|  |  |  | 	struct dentry *d; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d = debugfs_create_dir("clock", NULL); | 
					
						
							|  |  |  | 	if (!d) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	clk_debugfs_root = d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(c, &clocks, node) { | 
					
						
							|  |  |  | 		err = clk_debugfs_register(c); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto err_out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d = debugfs_create_file("summary", S_IRUGO, | 
					
						
							|  |  |  | 		d, NULL, &debug_clock_fops); | 
					
						
							|  |  |  | 	if (!d) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | err_out: | 
					
						
							|  |  |  | 	debugfs_remove_recursive(clk_debugfs_root); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | late_initcall(clk_debugfs_init); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */
 |