Merge branch 'for-2.6.40' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-omap2 / clkt2xxx_dpll.c
blob1502a7bc20bb2dbaa67a129c1aa5e18cb1d389f3
1 /*
2 * OMAP2-specific DPLL control functions
4 * Copyright (C) 2011 Nokia Corporation
5 * Paul Walmsley
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/clk.h>
15 #include <linux/io.h>
17 #include <plat/clock.h>
19 #include "clock.h"
20 #include "cm2xxx_3xxx.h"
21 #include "cm-regbits-24xx.h"
23 /* Private functions */
25 /**
26 * _allow_idle - enable DPLL autoidle bits
27 * @clk: struct clk * of the DPLL to operate on
29 * Enable DPLL automatic idle control. The DPLL will enter low-power
30 * stop when its downstream clocks are gated. No return value.
31 * REVISIT: DPLL can optionally enter low-power bypass by writing 0x1
32 * instead. Add some mechanism to optionally enter this mode.
34 static void _allow_idle(struct clk *clk)
36 if (!clk || !clk->dpll_data)
37 return;
39 omap2xxx_cm_set_dpll_auto_low_power_stop();
42 /**
43 * _deny_idle - prevent DPLL from automatically idling
44 * @clk: struct clk * of the DPLL to operate on
46 * Disable DPLL automatic idle control. No return value.
48 static void _deny_idle(struct clk *clk)
50 if (!clk || !clk->dpll_data)
51 return;
53 omap2xxx_cm_set_dpll_disable_autoidle();
57 /* Public data */
59 const struct clkops clkops_omap2xxx_dpll_ops = {
60 .allow_idle = _allow_idle,
61 .deny_idle = _deny_idle,