2 * arch/arm/mach-pnx4008/clock.h
4 * Clock control driver for PNX4008 - internal header file
6 * Author: Vitaly Wool <source@mvista.com>
8 * 2006 (c) MontaVista Software, Inc. This file is licensed under
9 * the terms of the GNU General Public License version 2. This program
10 * is licensed "as is" without any warranty of any kind, whether express
13 #ifndef __ARCH_ARM_PNX4008_CLOCK_H__
14 #define __ARCH_ARM_PNX4008_CLOCK_H__
19 struct clk
*propagate_next
;
29 u32 parent_switch_reg
;
30 u32(*round_rate
) (struct clk
*, u32
);
31 int (*set_rate
) (struct clk
*, u32
);
32 int (*set_parent
) (struct clk
* clk
, struct clk
* parent
);
33 int (*enable
)(struct clk
*);
34 void (*disable
)(struct clk
*);
38 #define RATE_PROPAGATES (1<<0)
39 #define NEEDS_INITIALIZATION (1<<1)
40 #define PARENT_SET_RATE (1<<2)
41 #define FIXED_RATE (1<<3)