2 * Clock management for AT32AP CPUs
4 * Copyright (C) 2006 Atmel Corporation
6 * Based on arch/arm/mach-at91/clock.c
7 * Copyright (C) 2005 David Brownell
8 * Copyright (C) 2005 Ivan Kokshaysky
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 #include <linux/clk.h>
15 #include <linux/err.h>
16 #include <linux/export.h>
17 #include <linux/device.h>
18 #include <linux/string.h>
19 #include <linux/list.h>
21 #include <mach/chip.h>
26 static LIST_HEAD(at32_clock_list
);
28 static DEFINE_SPINLOCK(clk_lock
);
29 static DEFINE_SPINLOCK(clk_list_lock
);
31 void at32_clk_register(struct clk
*clk
)
33 spin_lock(&clk_list_lock
);
34 /* add the new item to the end of the list */
35 list_add_tail(&clk
->list
, &at32_clock_list
);
36 spin_unlock(&clk_list_lock
);
39 static struct clk
*__clk_get(struct device
*dev
, const char *id
)
43 list_for_each_entry(clk
, &at32_clock_list
, list
) {
44 if (clk
->dev
== dev
&& strcmp(id
, clk
->name
) == 0) {
49 return ERR_PTR(-ENOENT
);
52 struct clk
*clk_get(struct device
*dev
, const char *id
)
56 spin_lock(&clk_list_lock
);
57 clk
= __clk_get(dev
, id
);
58 spin_unlock(&clk_list_lock
);
63 EXPORT_SYMBOL(clk_get
);
65 void clk_put(struct clk
*clk
)
67 /* clocks are static for now, we can't free them */
69 EXPORT_SYMBOL(clk_put
);
71 static void __clk_enable(struct clk
*clk
)
74 __clk_enable(clk
->parent
);
75 if (clk
->users
++ == 0 && clk
->mode
)
79 int clk_enable(struct clk
*clk
)
83 spin_lock_irqsave(&clk_lock
, flags
);
85 spin_unlock_irqrestore(&clk_lock
, flags
);
89 EXPORT_SYMBOL(clk_enable
);
91 static void __clk_disable(struct clk
*clk
)
93 if (clk
->users
== 0) {
94 printk(KERN_ERR
"%s: mismatched disable\n", clk
->name
);
99 if (--clk
->users
== 0 && clk
->mode
)
102 __clk_disable(clk
->parent
);
105 void clk_disable(struct clk
*clk
)
109 spin_lock_irqsave(&clk_lock
, flags
);
111 spin_unlock_irqrestore(&clk_lock
, flags
);
113 EXPORT_SYMBOL(clk_disable
);
115 unsigned long clk_get_rate(struct clk
*clk
)
120 spin_lock_irqsave(&clk_lock
, flags
);
121 rate
= clk
->get_rate(clk
);
122 spin_unlock_irqrestore(&clk_lock
, flags
);
126 EXPORT_SYMBOL(clk_get_rate
);
128 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
130 unsigned long flags
, actual_rate
;
135 spin_lock_irqsave(&clk_lock
, flags
);
136 actual_rate
= clk
->set_rate(clk
, rate
, 0);
137 spin_unlock_irqrestore(&clk_lock
, flags
);
141 EXPORT_SYMBOL(clk_round_rate
);
143 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
151 spin_lock_irqsave(&clk_lock
, flags
);
152 ret
= clk
->set_rate(clk
, rate
, 1);
153 spin_unlock_irqrestore(&clk_lock
, flags
);
155 return (ret
< 0) ? ret
: 0;
157 EXPORT_SYMBOL(clk_set_rate
);
159 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
164 if (!clk
->set_parent
)
167 spin_lock_irqsave(&clk_lock
, flags
);
168 ret
= clk
->set_parent(clk
, parent
);
169 spin_unlock_irqrestore(&clk_lock
, flags
);
173 EXPORT_SYMBOL(clk_set_parent
);
175 struct clk
*clk_get_parent(struct clk
*clk
)
179 EXPORT_SYMBOL(clk_get_parent
);
183 #ifdef CONFIG_DEBUG_FS
185 /* /sys/kernel/debug/at32ap_clk */
187 #include <linux/io.h>
188 #include <linux/debugfs.h>
189 #include <linux/seq_file.h>
202 dump_clock(struct clk
*parent
, struct clkinf
*r
)
204 unsigned nest
= r
->nest
;
205 char buf
[16 + NEST_MAX
];
209 /* skip clocks coupled to devices that aren't registered */
210 if (parent
->dev
&& !dev_name(parent
->dev
) && !parent
->users
)
213 /* <nest spaces> name <pad to end> */
214 memset(buf
, ' ', sizeof(buf
) - 1);
215 buf
[sizeof(buf
) - 1] = 0;
216 i
= strlen(parent
->name
);
217 memcpy(buf
+ nest
, parent
->name
,
218 min(i
, (unsigned)(sizeof(buf
) - 1 - nest
)));
220 seq_printf(r
->s
, "%s%c users=%2d %-3s %9ld Hz",
221 buf
, parent
->set_parent
? '*' : ' ',
223 parent
->users
? "on" : "off", /* NOTE: not-paranoid!! */
224 clk_get_rate(parent
));
226 seq_printf(r
->s
, ", for %s", dev_name(parent
->dev
));
227 seq_printf(r
->s
, "\n");
229 /* cost of this scan is small, but not linear... */
230 r
->nest
= nest
+ NEST_DELTA
;
232 list_for_each_entry(clk
, &at32_clock_list
, list
) {
233 if (clk
->parent
== parent
)
239 static int clk_show(struct seq_file
*s
, void *unused
)
245 /* show all the power manager registers */
246 seq_printf(s
, "MCCTRL = %8x\n", pm_readl(MCCTRL
));
247 seq_printf(s
, "CKSEL = %8x\n", pm_readl(CKSEL
));
248 seq_printf(s
, "CPUMASK = %8x\n", pm_readl(CPU_MASK
));
249 seq_printf(s
, "HSBMASK = %8x\n", pm_readl(HSB_MASK
));
250 seq_printf(s
, "PBAMASK = %8x\n", pm_readl(PBA_MASK
));
251 seq_printf(s
, "PBBMASK = %8x\n", pm_readl(PBB_MASK
));
252 seq_printf(s
, "PLL0 = %8x\n", pm_readl(PLL0
));
253 seq_printf(s
, "PLL1 = %8x\n", pm_readl(PLL1
));
254 seq_printf(s
, "IMR = %8x\n", pm_readl(IMR
));
255 for (i
= 0; i
< 8; i
++) {
258 seq_printf(s
, "GCCTRL%d = %8x\n", i
, pm_readl(GCCTRL(i
)));
265 /* protected from changes on the list while dumping */
266 spin_lock(&clk_list_lock
);
268 /* show clock tree as derived from the three oscillators */
269 clk
= __clk_get(NULL
, "osc32k");
273 clk
= __clk_get(NULL
, "osc0");
277 clk
= __clk_get(NULL
, "osc1");
281 spin_unlock(&clk_list_lock
);
286 static int clk_open(struct inode
*inode
, struct file
*file
)
288 return single_open(file
, clk_show
, NULL
);
291 static const struct file_operations clk_operations
= {
295 .release
= single_release
,
298 static int __init
clk_debugfs_init(void)
300 (void) debugfs_create_file("at32ap_clk", S_IFREG
| S_IRUGO
,
301 NULL
, NULL
, &clk_operations
);
305 postcore_initcall(clk_debugfs_init
);