blob: ed3c8c8d91c851fbbebddfcd6dce7be0b169f484 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell Kingf8ce2542006-01-07 16:15:52 +00002 * linux/include/linux/clk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 ARM Limited.
5 * Written by Deep Blue Solutions Limited.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
Todd Poynor686f8c52006-03-25 18:15:24 +000011#ifndef __LINUX_CLK_H
12#define __LINUX_CLK_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Russell Kinged6e3212011-09-22 11:30:50 +010014#include <linux/kernel.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016struct device;
17
18/*
19 * The base API.
20 */
21
22
23/*
24 * struct clk - an machine class defined object / cookie.
25 */
26struct clk;
27
28/**
29 * clk_get - lookup and obtain a reference to a clock producer.
30 * @dev: device for clock "consumer"
Russell Kingea3f4ea2005-04-27 18:19:55 +010031 * @id: clock comsumer ID
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
33 * Returns a struct clk corresponding to the clock producer, or
Russell Kingea3f4ea2005-04-27 18:19:55 +010034 * valid IS_ERR() condition containing errno. The implementation
35 * uses @dev and @id to determine the clock consumer, and thereby
36 * the clock producer. (IOW, @id may be identical strings, but
37 * clk_get may return different clock producers depending on @dev.)
Russell Kingf47fc0a2006-01-03 18:34:20 +000038 *
39 * Drivers must assume that the clock source is not enabled.
Alex Raimondif7ad1602008-10-15 22:02:03 -070040 *
41 * clk_get should not be called from within interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
43struct clk *clk_get(struct device *dev, const char *id);
44
45/**
Stephen Boyda073c2f2012-03-23 15:21:12 -070046 * devm_clk_get - Resource managed clk_get()
47 * @dev: device for clk "consumer"
48 * @id: clk ID.
49 *
50 * Managed clk_get(). Clocks returned from this function are
51 * automatically clk_put() on driver detach.
52 */
53struct clk *devm_clk_get(struct device *dev, const char *id);
54
55/**
Russell Kinged6e3212011-09-22 11:30:50 +010056 * clk_prepare - prepare a clock source
57 * @clk: clock source
58 *
59 * This prepares the clock source for use.
60 *
61 * Must not be called from within atomic context.
62 */
63#ifdef CONFIG_HAVE_CLK_PREPARE
64int clk_prepare(struct clk *clk);
65#else
66static inline int clk_prepare(struct clk *clk)
67{
68 might_sleep();
69 return 0;
70}
71#endif
72
73/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 * clk_enable - inform the system when the clock source should be running.
75 * @clk: clock source
76 *
77 * If the clock can not be enabled/disabled, this should return success.
78 *
Russell Kinged6e3212011-09-22 11:30:50 +010079 * May be called from atomic contexts.
80 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * Returns success (0) or negative errno.
82 */
83int clk_enable(struct clk *clk);
84
85/**
86 * clk_disable - inform the system when the clock source is no longer required.
87 * @clk: clock source
Russell Kingf47fc0a2006-01-03 18:34:20 +000088 *
89 * Inform the system that a clock source is no longer required by
90 * a driver and may be shut down.
91 *
Russell Kinged6e3212011-09-22 11:30:50 +010092 * May be called from atomic contexts.
93 *
Russell Kingf47fc0a2006-01-03 18:34:20 +000094 * Implementation detail: if the clock source is shared between
95 * multiple drivers, clk_enable() calls must be balanced by the
96 * same number of clk_disable() calls for the clock source to be
97 * disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
99void clk_disable(struct clk *clk);
100
Russell Kinged6e3212011-09-22 11:30:50 +0100101
102/**
103 * clk_unprepare - undo preparation of a clock source
104 * @clk: clock source
105 *
106 * This undoes a previously prepared clock. The caller must balance
107 * the number of prepare and unprepare calls.
108 *
109 * Must not be called from within atomic context.
110 */
111#ifdef CONFIG_HAVE_CLK_PREPARE
112void clk_unprepare(struct clk *clk);
113#else
114static inline void clk_unprepare(struct clk *clk)
115{
116 might_sleep();
117}
118#endif
119
Richard Zhao4e302a92011-11-15 14:47:56 +0800120/* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
121static inline int clk_prepare_enable(struct clk *clk)
122{
123 int ret;
124
125 ret = clk_prepare(clk);
126 if (ret)
127 return ret;
128 ret = clk_enable(clk);
129 if (ret)
130 clk_unprepare(clk);
131
132 return ret;
133}
134
135/* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
136static inline void clk_disable_unprepare(struct clk *clk)
137{
138 clk_disable(clk);
139 clk_unprepare(clk);
140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
144 * This is only valid once the clock source has been enabled.
145 * @clk: clock source
146 */
147unsigned long clk_get_rate(struct clk *clk);
148
149/**
150 * clk_put - "free" the clock source
151 * @clk: clock source
Russell Kingf47fc0a2006-01-03 18:34:20 +0000152 *
153 * Note: drivers must ensure that all clk_enable calls made on this
154 * clock source are balanced by clk_disable calls prior to calling
155 * this function.
Alex Raimondif7ad1602008-10-15 22:02:03 -0700156 *
157 * clk_put should not be called from within interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 */
159void clk_put(struct clk *clk);
160
161
162/*
163 * The remaining APIs are optional for machine class support.
164 */
165
166
167/**
168 * clk_round_rate - adjust a rate to the exact rate a clock can provide
169 * @clk: clock source
170 * @rate: desired clock rate in Hz
171 *
172 * Returns rounded clock rate in Hz, or negative errno.
173 */
174long clk_round_rate(struct clk *clk, unsigned long rate);
175
176/**
177 * clk_set_rate - set the clock rate for a clock source
178 * @clk: clock source
179 * @rate: desired clock rate in Hz
180 *
181 * Returns success (0) or negative errno.
182 */
183int clk_set_rate(struct clk *clk, unsigned long rate);
184
185/**
186 * clk_set_parent - set the parent clock source for this clock
187 * @clk: clock source
188 * @parent: parent clock source
189 *
190 * Returns success (0) or negative errno.
191 */
192int clk_set_parent(struct clk *clk, struct clk *parent);
193
194/**
195 * clk_get_parent - get the parent clock source for this clock
196 * @clk: clock source
197 *
198 * Returns struct clk corresponding to parent clock source, or
199 * valid IS_ERR() condition containing errno.
200 */
201struct clk *clk_get_parent(struct clk *clk);
202
Sascha Hauer05fd8e72009-03-07 12:55:49 +0100203/**
204 * clk_get_sys - get a clock based upon the device name
205 * @dev_id: device name
206 * @con_id: connection ID
207 *
208 * Returns a struct clk corresponding to the clock producer, or
209 * valid IS_ERR() condition containing errno. The implementation
210 * uses @dev_id and @con_id to determine the clock consumer, and
211 * thereby the clock producer. In contrast to clk_get() this function
212 * takes the device name instead of the device itself for identification.
213 *
214 * Drivers must assume that the clock source is not enabled.
215 *
216 * clk_get_sys should not be called from within interrupt context.
217 */
218struct clk *clk_get_sys(const char *dev_id, const char *con_id);
219
Tony Lindgrenc0683032009-06-03 17:43:14 +0100220/**
221 * clk_add_alias - add a new clock alias
222 * @alias: name for clock alias
223 * @alias_dev_name: device name
224 * @id: platform specific clock name
225 * @dev: device
226 *
227 * Allows using generic clock names for drivers by adding a new alias.
228 * Assumes clkdev, see clkdev.h for more info.
229 */
230int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
231 struct device *dev);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233#endif