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/device.h>
17 #include <linux/string.h>
18 #include <linux/list.h>
20 #include <mach/chip.h>
25 static LIST_HEAD(at32_clock_list
);
27 static DEFINE_SPINLOCK(clk_lock
);
28 static DEFINE_SPINLOCK(clk_list_lock
);
30 void at32_clk_register(struct clk
*clk
)
32 spin_lock(&clk_list_lock
);
33 /* add the new item to the end of the list */
34 list_add_tail(&clk
->list
, &at32_clock_list
);
35 spin_unlock(&clk_list_lock
);
38 struct clk
*clk_get(struct device
*dev
, const char *id
)
42 spin_lock(&clk_list_lock
);
44 list_for_each_entry(clk
, &at32_clock_list
, list
) {
45 if (clk
->dev
== dev
&& strcmp(id
, clk
->name
) == 0) {
46 spin_unlock(&clk_list_lock
);
51 spin_unlock(&clk_list_lock
);
52 return ERR_PTR(-ENOENT
);
54 EXPORT_SYMBOL(clk_get
);
56 void clk_put(struct clk
*clk
)
58 /* clocks are static for now, we can't free them */
60 EXPORT_SYMBOL(clk_put
);
62 static void __clk_enable(struct clk
*clk
)
65 __clk_enable(clk
->parent
);
66 if (clk
->users
++ == 0 && clk
->mode
)
70 int clk_enable(struct clk
*clk
)
74 spin_lock_irqsave(&clk_lock
, flags
);
76 spin_unlock_irqrestore(&clk_lock
, flags
);
80 EXPORT_SYMBOL(clk_enable
);
82 static void __clk_disable(struct clk
*clk
)
84 if (clk
->users
== 0) {
85 printk(KERN_ERR
"%s: mismatched disable\n", clk
->name
);
90 if (--clk
->users
== 0 && clk
->mode
)
93 __clk_disable(clk
->parent
);
96 void clk_disable(struct clk
*clk
)
100 spin_lock_irqsave(&clk_lock
, flags
);
102 spin_unlock_irqrestore(&clk_lock
, flags
);
104 EXPORT_SYMBOL(clk_disable
);
106 unsigned long clk_get_rate(struct clk
*clk
)
111 spin_lock_irqsave(&clk_lock
, flags
);
112 rate
= clk
->get_rate(clk
);
113 spin_unlock_irqrestore(&clk_lock
, flags
);
117 EXPORT_SYMBOL(clk_get_rate
);
119 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
121 unsigned long flags
, actual_rate
;
126 spin_lock_irqsave(&clk_lock
, flags
);
127 actual_rate
= clk
->set_rate(clk
, rate
, 0);
128 spin_unlock_irqrestore(&clk_lock
, flags
);
132 EXPORT_SYMBOL(clk_round_rate
);
134 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
142 spin_lock_irqsave(&clk_lock
, flags
);
143 ret
= clk
->set_rate(clk
, rate
, 1);
144 spin_unlock_irqrestore(&clk_lock
, flags
);
146 return (ret
< 0) ? ret
: 0;
148 EXPORT_SYMBOL(clk_set_rate
);
150 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
155 if (!clk
->set_parent
)
158 spin_lock_irqsave(&clk_lock
, flags
);
159 ret
= clk
->set_parent(clk
, parent
);
160 spin_unlock_irqrestore(&clk_lock
, flags
);
164 EXPORT_SYMBOL(clk_set_parent
);
166 struct clk
*clk_get_parent(struct clk
*clk
)
170 EXPORT_SYMBOL(clk_get_parent
);
174 #ifdef CONFIG_DEBUG_FS
176 /* /sys/kernel/debug/at32ap_clk */
178 #include <linux/io.h>
179 #include <linux/debugfs.h>
180 #include <linux/seq_file.h>
193 dump_clock(struct clk
*parent
, struct clkinf
*r
)
195 unsigned nest
= r
->nest
;
196 char buf
[16 + NEST_MAX
];
200 /* skip clocks coupled to devices that aren't registered */
201 if (parent
->dev
&& !dev_name(parent
->dev
) && !parent
->users
)
204 /* <nest spaces> name <pad to end> */
205 memset(buf
, ' ', sizeof(buf
) - 1);
206 buf
[sizeof(buf
) - 1] = 0;
207 i
= strlen(parent
->name
);
208 memcpy(buf
+ nest
, parent
->name
,
209 min(i
, (unsigned)(sizeof(buf
) - 1 - nest
)));
211 seq_printf(r
->s
, "%s%c users=%2d %-3s %9ld Hz",
212 buf
, parent
->set_parent
? '*' : ' ',
214 parent
->users
? "on" : "off", /* NOTE: not-paranoid!! */
215 clk_get_rate(parent
));
217 seq_printf(r
->s
, ", for %s", dev_name(parent
->dev
));
218 seq_printf(r
->s
, "\n");
220 /* cost of this scan is small, but not linear... */
221 r
->nest
= nest
+ NEST_DELTA
;
223 list_for_each_entry(clk
, &at32_clock_list
, list
) {
224 if (clk
->parent
== parent
)
230 static int clk_show(struct seq_file
*s
, void *unused
)
236 /* show all the power manager registers */
237 seq_printf(s
, "MCCTRL = %8x\n", pm_readl(MCCTRL
));
238 seq_printf(s
, "CKSEL = %8x\n", pm_readl(CKSEL
));
239 seq_printf(s
, "CPUMASK = %8x\n", pm_readl(CPU_MASK
));
240 seq_printf(s
, "HSBMASK = %8x\n", pm_readl(HSB_MASK
));
241 seq_printf(s
, "PBAMASK = %8x\n", pm_readl(PBA_MASK
));
242 seq_printf(s
, "PBBMASK = %8x\n", pm_readl(PBB_MASK
));
243 seq_printf(s
, "PLL0 = %8x\n", pm_readl(PLL0
));
244 seq_printf(s
, "PLL1 = %8x\n", pm_readl(PLL1
));
245 seq_printf(s
, "IMR = %8x\n", pm_readl(IMR
));
246 for (i
= 0; i
< 8; i
++) {
249 seq_printf(s
, "GCCTRL%d = %8x\n", i
, pm_readl(GCCTRL(i
)));
256 /* protected from changes on the list while dumping */
257 spin_lock(&clk_list_lock
);
259 /* show clock tree as derived from the three oscillators */
260 clk
= clk_get(NULL
, "osc32k");
264 clk
= clk_get(NULL
, "osc0");
268 clk
= clk_get(NULL
, "osc1");
272 spin_unlock(&clk_list_lock
);
277 static int clk_open(struct inode
*inode
, struct file
*file
)
279 return single_open(file
, clk_show
, NULL
);
282 static const struct file_operations clk_operations
= {
286 .release
= single_release
,
289 static int __init
clk_debugfs_init(void)
291 (void) debugfs_create_file("at32ap_clk", S_IFREG
| S_IRUGO
,
292 NULL
, NULL
, &clk_operations
);
296 postcore_initcall(clk_debugfs_init
);