USB: serial: option: reimplement interface masking
[linux/fpc-iii.git] / arch / arm / mach-sa1100 / clock.c
blobb2eb3d232e39888fedbc7e6114a692a093648234
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * linux/arch/arm/mach-sa1100/clock.c
4 */
5 #include <linux/module.h>
6 #include <linux/kernel.h>
7 #include <linux/device.h>
8 #include <linux/list.h>
9 #include <linux/errno.h>
10 #include <linux/err.h>
11 #include <linux/string.h>
12 #include <linux/clk.h>
13 #include <linux/spinlock.h>
14 #include <linux/mutex.h>
15 #include <linux/io.h>
16 #include <linux/clkdev.h>
18 #include <mach/hardware.h>
19 #include <mach/generic.h>
21 struct clkops {
22 void (*enable)(struct clk *);
23 void (*disable)(struct clk *);
24 unsigned long (*get_rate)(struct clk *);
27 struct clk {
28 const struct clkops *ops;
29 unsigned int enabled;
32 #define DEFINE_CLK(_name, _ops) \
33 struct clk clk_##_name = { \
34 .ops = _ops, \
37 static DEFINE_SPINLOCK(clocks_lock);
39 /* Dummy clk routine to build generic kernel parts that may be using them */
40 long clk_round_rate(struct clk *clk, unsigned long rate)
42 return clk_get_rate(clk);
44 EXPORT_SYMBOL(clk_round_rate);
46 int clk_set_rate(struct clk *clk, unsigned long rate)
48 return 0;
50 EXPORT_SYMBOL(clk_set_rate);
52 int clk_set_parent(struct clk *clk, struct clk *parent)
54 return 0;
56 EXPORT_SYMBOL(clk_set_parent);
58 struct clk *clk_get_parent(struct clk *clk)
60 return NULL;
62 EXPORT_SYMBOL(clk_get_parent);
64 static void clk_gpio27_enable(struct clk *clk)
67 * First, set up the 3.6864MHz clock on GPIO 27 for the SA-1111:
68 * (SA-1110 Developer's Manual, section 9.1.2.1)
70 GAFR |= GPIO_32_768kHz;
71 GPDR |= GPIO_32_768kHz;
72 TUCR = TUCR_3_6864MHz;
75 static void clk_gpio27_disable(struct clk *clk)
77 TUCR = 0;
78 GPDR &= ~GPIO_32_768kHz;
79 GAFR &= ~GPIO_32_768kHz;
82 static void clk_cpu_enable(struct clk *clk)
86 static void clk_cpu_disable(struct clk *clk)
90 static unsigned long clk_cpu_get_rate(struct clk *clk)
92 return sa11x0_getspeed(0) * 1000;
95 int clk_enable(struct clk *clk)
97 unsigned long flags;
99 if (clk) {
100 spin_lock_irqsave(&clocks_lock, flags);
101 if (clk->enabled++ == 0)
102 clk->ops->enable(clk);
103 spin_unlock_irqrestore(&clocks_lock, flags);
106 return 0;
108 EXPORT_SYMBOL(clk_enable);
110 void clk_disable(struct clk *clk)
112 unsigned long flags;
114 if (clk) {
115 WARN_ON(clk->enabled == 0);
116 spin_lock_irqsave(&clocks_lock, flags);
117 if (--clk->enabled == 0)
118 clk->ops->disable(clk);
119 spin_unlock_irqrestore(&clocks_lock, flags);
122 EXPORT_SYMBOL(clk_disable);
124 unsigned long clk_get_rate(struct clk *clk)
126 if (clk && clk->ops && clk->ops->get_rate)
127 return clk->ops->get_rate(clk);
129 return 0;
131 EXPORT_SYMBOL(clk_get_rate);
133 const struct clkops clk_gpio27_ops = {
134 .enable = clk_gpio27_enable,
135 .disable = clk_gpio27_disable,
138 const struct clkops clk_cpu_ops = {
139 .enable = clk_cpu_enable,
140 .disable = clk_cpu_disable,
141 .get_rate = clk_cpu_get_rate,
144 static DEFINE_CLK(gpio27, &clk_gpio27_ops);
146 static DEFINE_CLK(cpu, &clk_cpu_ops);
148 static unsigned long clk_36864_get_rate(struct clk *clk)
150 return 3686400;
153 static struct clkops clk_36864_ops = {
154 .enable = clk_cpu_enable,
155 .disable = clk_cpu_disable,
156 .get_rate = clk_36864_get_rate,
159 static DEFINE_CLK(36864, &clk_36864_ops);
161 static struct clk_lookup sa11xx_clkregs[] = {
162 CLKDEV_INIT("sa1111.0", NULL, &clk_gpio27),
163 CLKDEV_INIT("sa1100-rtc", NULL, NULL),
164 CLKDEV_INIT("sa11x0-fb", NULL, &clk_cpu),
165 CLKDEV_INIT("sa11x0-pcmcia", NULL, &clk_cpu),
166 /* sa1111 names devices using internal offsets, PCMCIA is at 0x1800 */
167 CLKDEV_INIT("1800", NULL, &clk_cpu),
168 CLKDEV_INIT(NULL, "OSTIMER0", &clk_36864),
171 int __init sa11xx_clk_init(void)
173 clkdev_add_table(sa11xx_clkregs, ARRAY_SIZE(sa11xx_clkregs));
174 return 0;