Merge branch 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / arch / arm / mach-sa1100 / clock.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
97d654f8
RK
2/*
3 * linux/arch/arm/mach-sa1100/clock.c
4 */
5#include <linux/module.h>
6#include <linux/kernel.h>
5e1dbdb4 7#include <linux/device.h>
97d654f8
RK
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>
d0a9d75b 14#include <linux/mutex.h>
4a8f8340
JZ
15#include <linux/io.h>
16#include <linux/clkdev.h>
97d654f8 17
a09e64fb 18#include <mach/hardware.h>
4faee128 19#include <mach/generic.h>
97d654f8 20
4a8f8340
JZ
21struct clkops {
22 void (*enable)(struct clk *);
23 void (*disable)(struct clk *);
4faee128 24 unsigned long (*get_rate)(struct clk *);
4a8f8340
JZ
25};
26
97d654f8 27struct clk {
4a8f8340 28 const struct clkops *ops;
97d654f8 29 unsigned int enabled;
97d654f8
RK
30};
31
4a8f8340
JZ
32#define DEFINE_CLK(_name, _ops) \
33struct clk clk_##_name = { \
34 .ops = _ops, \
35 }
36
37static DEFINE_SPINLOCK(clocks_lock);
38
77a374c2
AB
39/* Dummy clk routine to build generic kernel parts that may be using them */
40long clk_round_rate(struct clk *clk, unsigned long rate)
41{
42 return clk_get_rate(clk);
43}
44EXPORT_SYMBOL(clk_round_rate);
45
46int clk_set_rate(struct clk *clk, unsigned long rate)
47{
48 return 0;
49}
50EXPORT_SYMBOL(clk_set_rate);
51
52int clk_set_parent(struct clk *clk, struct clk *parent)
53{
54 return 0;
55}
56EXPORT_SYMBOL(clk_set_parent);
57
58struct clk *clk_get_parent(struct clk *clk)
59{
60 return NULL;
61}
62EXPORT_SYMBOL(clk_get_parent);
63
4a8f8340 64static void clk_gpio27_enable(struct clk *clk)
5e1dbdb4
RK
65{
66 /*
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)
69 */
70 GAFR |= GPIO_32_768kHz;
71 GPDR |= GPIO_32_768kHz;
72 TUCR = TUCR_3_6864MHz;
73}
74
4a8f8340 75static void clk_gpio27_disable(struct clk *clk)
5e1dbdb4
RK
76{
77 TUCR = 0;
78 GPDR &= ~GPIO_32_768kHz;
79 GAFR &= ~GPIO_32_768kHz;
80}
81
4faee128
DES
82static void clk_cpu_enable(struct clk *clk)
83{
84}
85
86static void clk_cpu_disable(struct clk *clk)
87{
88}
89
90static unsigned long clk_cpu_get_rate(struct clk *clk)
91{
92 return sa11x0_getspeed(0) * 1000;
93}
94
97d654f8
RK
95int clk_enable(struct clk *clk)
96{
97 unsigned long flags;
98
4a8f8340
JZ
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);
104 }
105
97d654f8
RK
106 return 0;
107}
108EXPORT_SYMBOL(clk_enable);
109
110void clk_disable(struct clk *clk)
111{
112 unsigned long flags;
113
4a8f8340
JZ
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);
120 }
97d654f8
RK
121}
122EXPORT_SYMBOL(clk_disable);
123
4faee128
DES
124unsigned long clk_get_rate(struct clk *clk)
125{
126 if (clk && clk->ops && clk->ops->get_rate)
127 return clk->ops->get_rate(clk);
128
129 return 0;
130}
131EXPORT_SYMBOL(clk_get_rate);
132
4a8f8340
JZ
133const struct clkops clk_gpio27_ops = {
134 .enable = clk_gpio27_enable,
135 .disable = clk_gpio27_disable,
136};
137
4faee128
DES
138const struct clkops clk_cpu_ops = {
139 .enable = clk_cpu_enable,
140 .disable = clk_cpu_disable,
141 .get_rate = clk_cpu_get_rate,
142};
143
4a8f8340
JZ
144static DEFINE_CLK(gpio27, &clk_gpio27_ops);
145
4faee128
DES
146static DEFINE_CLK(cpu, &clk_cpu_ops);
147
ee3a4020
DES
148static unsigned long clk_36864_get_rate(struct clk *clk)
149{
150 return 3686400;
151}
152
153static struct clkops clk_36864_ops = {
02ba38a5
RK
154 .enable = clk_cpu_enable,
155 .disable = clk_cpu_disable,
ee3a4020
DES
156 .get_rate = clk_36864_get_rate,
157};
158
159static DEFINE_CLK(36864, &clk_36864_ops);
160
4a8f8340
JZ
161static struct clk_lookup sa11xx_clkregs[] = {
162 CLKDEV_INIT("sa1111.0", NULL, &clk_gpio27),
163 CLKDEV_INIT("sa1100-rtc", NULL, NULL),
4faee128
DES
164 CLKDEV_INIT("sa11x0-fb", NULL, &clk_cpu),
165 CLKDEV_INIT("sa11x0-pcmcia", NULL, &clk_cpu),
0920ca10
RK
166 CLKDEV_INIT("sa11x0-pcmcia.0", NULL, &clk_cpu),
167 CLKDEV_INIT("sa11x0-pcmcia.1", NULL, &clk_cpu),
7faf6d1a
DES
168 /* sa1111 names devices using internal offsets, PCMCIA is at 0x1800 */
169 CLKDEV_INIT("1800", NULL, &clk_cpu),
ee3a4020 170 CLKDEV_INIT(NULL, "OSTIMER0", &clk_36864),
4a8f8340
JZ
171};
172
198b51e8 173int __init sa11xx_clk_init(void)
97d654f8 174{
4a8f8340
JZ
175 clkdev_add_table(sa11xx_clkregs, ARRAY_SIZE(sa11xx_clkregs));
176 return 0;
97d654f8 177}