diff options
author | Roland Stigge <stigge@antcom.de> | 2012-08-26 10:30:37 -0400 |
---|---|---|
committer | Roland Stigge <stigge@antcom.de> | 2012-08-26 10:30:37 -0400 |
commit | d684f05f2d55655eee93d86974e9271010aaed09 (patch) | |
tree | 291edb04ccf39fb274ce08bca0dca3b5985315a5 /arch/arm/mach-pnx4008/clock.h | |
parent | fea7a08acb13524b47711625eebea40a0ede69a0 (diff) |
ARM: mach-pnx4008: Remove architecture
This patch removes the ARM architecture mach-pnx4008. No direct support or user
feedback since 2006. Acknowledgements from NXP/Philips and Linux arm-soc
maintainers.
Signed-off-by: Roland Stigge <stigge@antcom.de>
Diffstat (limited to 'arch/arm/mach-pnx4008/clock.h')
-rw-r--r-- | arch/arm/mach-pnx4008/clock.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/arch/arm/mach-pnx4008/clock.h b/arch/arm/mach-pnx4008/clock.h deleted file mode 100644 index 39720d6c0d01..000000000000 --- a/arch/arm/mach-pnx4008/clock.h +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-pnx4008/clock.h | ||
3 | * | ||
4 | * Clock control driver for PNX4008 - internal header file | ||
5 | * | ||
6 | * Author: Vitaly Wool <source@mvista.com> | ||
7 | * | ||
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 | ||
11 | * or implied. | ||
12 | */ | ||
13 | #ifndef __ARCH_ARM_PNX4008_CLOCK_H__ | ||
14 | #define __ARCH_ARM_PNX4008_CLOCK_H__ | ||
15 | |||
16 | struct clk { | ||
17 | const char *name; | ||
18 | struct clk *parent; | ||
19 | struct clk *propagate_next; | ||
20 | u32 rate; | ||
21 | u32 user_rate; | ||
22 | s8 usecount; | ||
23 | u32 flags; | ||
24 | u32 scale_reg; | ||
25 | u8 enable_shift; | ||
26 | u32 enable_reg; | ||
27 | u8 enable_shift1; | ||
28 | u32 enable_reg1; | ||
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 *); | ||
35 | }; | ||
36 | |||
37 | /* Flags */ | ||
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) | ||
42 | |||
43 | #endif | ||