2 * Clock management for AT32AP CPUs
4 * Copyright (C) 2006 Atmel Corporation
6 * Based on arch/arm/mach-at91rm9200/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>
21 static spinlock_t clk_lock
= SPIN_LOCK_UNLOCKED
;
23 struct clk
*clk_get(struct device
*dev
, const char *id
)
27 for (i
= 0; i
< at32_nr_clocks
; i
++) {
28 struct clk
*clk
= at32_clock_list
[i
];
30 if (clk
->dev
== dev
&& strcmp(id
, clk
->name
) == 0)
34 return ERR_PTR(-ENOENT
);
36 EXPORT_SYMBOL(clk_get
);
38 void clk_put(struct clk
*clk
)
40 /* clocks are static for now, we can't free them */
42 EXPORT_SYMBOL(clk_put
);
44 static void __clk_enable(struct clk
*clk
)
47 __clk_enable(clk
->parent
);
48 if (clk
->users
++ == 0 && clk
->mode
)
52 int clk_enable(struct clk
*clk
)
56 spin_lock_irqsave(&clk_lock
, flags
);
58 spin_unlock_irqrestore(&clk_lock
, flags
);
62 EXPORT_SYMBOL(clk_enable
);
64 static void __clk_disable(struct clk
*clk
)
66 BUG_ON(clk
->users
== 0);
68 if (--clk
->users
== 0 && clk
->mode
)
71 __clk_disable(clk
->parent
);
74 void clk_disable(struct clk
*clk
)
78 spin_lock_irqsave(&clk_lock
, flags
);
80 spin_unlock_irqrestore(&clk_lock
, flags
);
82 EXPORT_SYMBOL(clk_disable
);
84 unsigned long clk_get_rate(struct clk
*clk
)
89 spin_lock_irqsave(&clk_lock
, flags
);
90 rate
= clk
->get_rate(clk
);
91 spin_unlock_irqrestore(&clk_lock
, flags
);
95 EXPORT_SYMBOL(clk_get_rate
);
97 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
99 unsigned long flags
, actual_rate
;
104 spin_lock_irqsave(&clk_lock
, flags
);
105 actual_rate
= clk
->set_rate(clk
, rate
, 0);
106 spin_unlock_irqrestore(&clk_lock
, flags
);
110 EXPORT_SYMBOL(clk_round_rate
);
112 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
120 spin_lock_irqsave(&clk_lock
, flags
);
121 ret
= clk
->set_rate(clk
, rate
, 1);
122 spin_unlock_irqrestore(&clk_lock
, flags
);
124 return (ret
< 0) ? ret
: 0;
126 EXPORT_SYMBOL(clk_set_rate
);
128 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
133 if (!clk
->set_parent
)
136 spin_lock_irqsave(&clk_lock
, flags
);
137 ret
= clk
->set_parent(clk
, parent
);
138 spin_unlock_irqrestore(&clk_lock
, flags
);
142 EXPORT_SYMBOL(clk_set_parent
);
144 struct clk
*clk_get_parent(struct clk
*clk
)
148 EXPORT_SYMBOL(clk_get_parent
);