clock.c 10.2 KB
Newer Older
1 2 3
/*
 * arch/sh/kernel/cpu/clock.c - SuperH clock framework
 *
4
 *  Copyright (C) 2005 - 2009  Paul Mundt
5 6 7
 *
 * This clock framework is derived from the OMAP version by:
 *
8
 *	Copyright (C) 2004 - 2008 Nokia Corporation
9 10
 *	Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
 *
P
Paul Mundt 已提交
11 12
 *  Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com>
 *
13 14 15 16 17 18 19
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
20
#include <linux/mutex.h>
21
#include <linux/list.h>
22 23
#include <linux/kobject.h>
#include <linux/sysdev.h>
24 25
#include <linux/seq_file.h>
#include <linux/err.h>
P
Paul Mundt 已提交
26
#include <linux/platform_device.h>
27
#include <linux/proc_fs.h>
28 29 30 31 32
#include <asm/clock.h>
#include <asm/timer.h>

static LIST_HEAD(clock_list);
static DEFINE_SPINLOCK(clock_lock);
33
static DEFINE_MUTEX(clock_list_sem);
34 35 36 37 38 39 40 41 42 43 44 45

/*
 * Each subtype is expected to define the init routines for these clocks,
 * as each subtype (or processor family) will have these clocks at the
 * very least. These are all provided through the CPG, which even some of
 * the more quirky parts (such as ST40, SH4-202, etc.) still have.
 *
 * The processor-specific code is expected to register any additional
 * clock sources that are of interest.
 */
static struct clk master_clk = {
	.name		= "master_clk",
46
	.flags		= CLK_ENABLE_ON_INIT,
47 48 49 50 51 52
	.rate		= CONFIG_SH_PCLK_FREQ,
};

static struct clk module_clk = {
	.name		= "module_clk",
	.parent		= &master_clk,
53
	.flags		= CLK_ENABLE_ON_INIT,
54 55 56 57 58
};

static struct clk bus_clk = {
	.name		= "bus_clk",
	.parent		= &master_clk,
59
	.flags		= CLK_ENABLE_ON_INIT,
60 61 62 63 64
};

static struct clk cpu_clk = {
	.name		= "cpu_clk",
	.parent		= &master_clk,
65
	.flags		= CLK_ENABLE_ON_INIT,
66 67 68 69 70 71 72 73 74 75 76 77
};

/*
 * The ordering of these clocks matters, do not change it.
 */
static struct clk *onchip_clocks[] = {
	&master_clk,
	&module_clk,
	&bus_clk,
	&cpu_clk,
};

78 79 80 81 82 83
/* Used for clocks that always have same value as the parent clock */
unsigned long followparent_recalc(struct clk *clk)
{
	return clk->parent->rate;
}

84
/* Propagate rate to children */
85
void propagate_rate(struct clk *tclk)
86 87 88
{
	struct clk *clkp;

89 90
	list_for_each_entry(clkp, &tclk->children, sibling) {
		if (clkp->ops->recalc)
91
			clkp->rate = clkp->ops->recalc(clkp);
92
		propagate_rate(clkp);
93 94 95
	}
}

96
static void __clk_disable(struct clk *clk)
97
{
98 99 100 101 102
	if (clk->usecount == 0) {
		printk(KERN_ERR "Trying disable clock %s with 0 usecount\n",
		       clk->name);
		WARN_ON(1);
		return;
103
	}
104

105 106 107 108 109 110
	if (!(--clk->usecount)) {
		if (likely(clk->ops && clk->ops->disable))
			clk->ops->disable(clk);
		if (likely(clk->parent))
			__clk_disable(clk->parent);
	}
111 112
}

113
void clk_disable(struct clk *clk)
114 115 116
{
	unsigned long flags;

117
	if (!clk)
118
		return;
119

120
	spin_lock_irqsave(&clock_lock, flags);
121
	__clk_disable(clk);
122 123
	spin_unlock_irqrestore(&clock_lock, flags);
}
124
EXPORT_SYMBOL_GPL(clk_disable);
125

126
static int __clk_enable(struct clk *clk)
127
{
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
	int ret = 0;

	if (clk->usecount++ == 0) {
		if (clk->parent) {
			ret = __clk_enable(clk->parent);
			if (unlikely(ret))
				goto err;
		}

		if (clk->ops && clk->ops->enable) {
			ret = clk->ops->enable(clk);
			if (ret) {
				if (clk->parent)
					__clk_disable(clk->parent);
				goto err;
			}
		}
145
	}
146 147 148 149 150

	return ret;
err:
	clk->usecount--;
	return ret;
151 152
}

153
int clk_enable(struct clk *clk)
154 155
{
	unsigned long flags;
156
	int ret;
157

158
	if (!clk)
159
		return -EINVAL;
160

161
	spin_lock_irqsave(&clock_lock, flags);
162
	ret = __clk_enable(clk);
163
	spin_unlock_irqrestore(&clock_lock, flags);
164 165

	return ret;
166
}
167
EXPORT_SYMBOL_GPL(clk_enable);
168

169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
static LIST_HEAD(root_clks);

/**
 * recalculate_root_clocks - recalculate and propagate all root clocks
 *
 * Recalculates all root clocks (clocks with no parent), which if the
 * clock's .recalc is set correctly, should also propagate their rates.
 * Called at init.
 */
void recalculate_root_clocks(void)
{
	struct clk *clkp;

	list_for_each_entry(clkp, &root_clks, sibling) {
		if (clkp->ops->recalc)
			clkp->rate = clkp->ops->recalc(clkp);
		propagate_rate(clkp);
	}
}

189 190
int clk_register(struct clk *clk)
{
191 192 193 194 195 196 197 198 199
	if (clk == NULL || IS_ERR(clk))
		return -EINVAL;

	/*
	 * trap out already registered clocks
	 */
	if (clk->node.next || clk->node.prev)
		return 0;

200
	mutex_lock(&clock_list_sem);
201

202
	INIT_LIST_HEAD(&clk->children);
203
	clk->usecount = 0;
204 205 206 207 208 209

	if (clk->parent)
		list_add(&clk->sibling, &clk->parent->children);
	else
		list_add(&clk->sibling, &root_clks);

210
	list_add(&clk->node, &clock_list);
211 212
	if (clk->ops->init)
		clk->ops->init(clk);
213
	mutex_unlock(&clock_list_sem);
214 215 216

	return 0;
}
217
EXPORT_SYMBOL_GPL(clk_register);
218 219 220

void clk_unregister(struct clk *clk)
{
221
	mutex_lock(&clock_list_sem);
222
	list_del(&clk->sibling);
223
	list_del(&clk->node);
224
	mutex_unlock(&clock_list_sem);
225
}
226
EXPORT_SYMBOL_GPL(clk_unregister);
227

228 229 230 231 232 233 234 235 236
static void clk_enable_init_clocks(void)
{
	struct clk *clkp;

	list_for_each_entry(clkp, &clock_list, node)
		if (clkp->flags & CLK_ENABLE_ON_INIT)
			clk_enable(clkp);
}

237
unsigned long clk_get_rate(struct clk *clk)
238 239 240
{
	return clk->rate;
}
241
EXPORT_SYMBOL_GPL(clk_get_rate);
242 243

int clk_set_rate(struct clk *clk, unsigned long rate)
244 245 246
{
	return clk_set_rate_ex(clk, rate, 0);
}
247
EXPORT_SYMBOL_GPL(clk_set_rate);
248 249

int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id)
250 251 252 253 254 255 256
{
	int ret = -EOPNOTSUPP;

	if (likely(clk->ops && clk->ops->set_rate)) {
		unsigned long flags;

		spin_lock_irqsave(&clock_lock, flags);
257
		ret = clk->ops->set_rate(clk, rate, algo_id);
258 259 260 261 262
		if (ret == 0) {
			if (clk->ops->recalc)
				clk->rate = clk->ops->recalc(clk);
			propagate_rate(clk);
		}
263 264 265 266 267
		spin_unlock_irqrestore(&clock_lock, flags);
	}

	return ret;
}
268
EXPORT_SYMBOL_GPL(clk_set_rate_ex);
269 270 271

void clk_recalc_rate(struct clk *clk)
{
272
	unsigned long flags;
273

274 275
	if (!clk->ops->recalc)
		return;
276

277 278 279 280
	spin_lock_irqsave(&clock_lock, flags);
	clk->rate = clk->ops->recalc(clk);
	propagate_rate(clk);
	spin_unlock_irqrestore(&clock_lock, flags);
281
}
282
EXPORT_SYMBOL_GPL(clk_recalc_rate);
283

284 285
int clk_set_parent(struct clk *clk, struct clk *parent)
{
286
	unsigned long flags;
287 288 289 290 291
	int ret = -EINVAL;

	if (!parent || !clk)
		return ret;

292 293 294 295 296 297 298 299 300 301 302 303
	spin_lock_irqsave(&clock_lock, flags);
	if (clk->usecount == 0) {
		if (clk->ops->set_parent)
			ret = clk->ops->set_parent(clk, parent);
		if (ret == 0) {
			if (clk->ops->recalc)
				clk->rate = clk->ops->recalc(clk);
			propagate_rate(clk);
		}
	} else
		ret = -EBUSY;
	spin_unlock_irqrestore(&clock_lock, flags);
304 305 306 307 308 309 310 311 312 313 314

	return ret;
}
EXPORT_SYMBOL_GPL(clk_set_parent);

struct clk *clk_get_parent(struct clk *clk)
{
	return clk->parent;
}
EXPORT_SYMBOL_GPL(clk_get_parent);

315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
long clk_round_rate(struct clk *clk, unsigned long rate)
{
	if (likely(clk->ops && clk->ops->round_rate)) {
		unsigned long flags, rounded;

		spin_lock_irqsave(&clock_lock, flags);
		rounded = clk->ops->round_rate(clk, rate);
		spin_unlock_irqrestore(&clock_lock, flags);

		return rounded;
	}

	return clk_get_rate(clk);
}
EXPORT_SYMBOL_GPL(clk_round_rate);

P
Paul Mundt 已提交
331 332 333 334 335
/*
 * Returns a clock. Note that we first try to use device id on the bus
 * and clock name. If this fails, we try to use clock name only.
 */
struct clk *clk_get(struct device *dev, const char *id)
336 337
{
	struct clk *p, *clk = ERR_PTR(-ENOENT);
P
Paul Mundt 已提交
338 339 340 341 342 343
	int idno;

	if (dev == NULL || dev->bus != &platform_bus_type)
		idno = -1;
	else
		idno = to_platform_device(dev)->id;
344

345
	mutex_lock(&clock_list_sem);
P
Paul Mundt 已提交
346 347 348 349 350 351 352 353
	list_for_each_entry(p, &clock_list, node) {
		if (p->id == idno &&
		    strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
			clk = p;
			goto found;
		}
	}

354 355 356 357 358 359
	list_for_each_entry(p, &clock_list, node) {
		if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
			clk = p;
			break;
		}
	}
P
Paul Mundt 已提交
360 361

found:
362
	mutex_unlock(&clock_list_sem);
363 364 365

	return clk;
}
366
EXPORT_SYMBOL_GPL(clk_get);
367 368 369 370 371 372

void clk_put(struct clk *clk)
{
	if (clk && !IS_ERR(clk))
		module_put(clk->owner);
}
373
EXPORT_SYMBOL_GPL(clk_put);
374 375 376 377 378 379

void __init __attribute__ ((weak))
arch_init_clk_ops(struct clk_ops **ops, int type)
{
}

P
Paul Mundt 已提交
380
int __init __attribute__ ((weak))
381 382
arch_clk_init(void)
{
P
Paul Mundt 已提交
383
	return 0;
384 385
}

386 387 388 389 390 391 392 393 394
static int show_clocks(char *buf, char **start, off_t off,
		       int len, int *eof, void *data)
{
	struct clk *clk;
	char *p = buf;

	list_for_each_entry_reverse(clk, &clock_list, node) {
		unsigned long rate = clk_get_rate(clk);

395 396
		p += sprintf(p, "%-12s\t: %ld.%02ldMHz\t%s\n", clk->name,
			     rate / 1000000, (rate % 1000000) / 10000,
397
			      (clk->usecount > 0) ?  "enabled" : "disabled");
398 399 400 401 402
	}

	return p - buf;
}

403 404 405 406 407 408 409 410 411
#ifdef CONFIG_PM
static int clks_sysdev_suspend(struct sys_device *dev, pm_message_t state)
{
	static pm_message_t prev_state;
	struct clk *clkp;

	switch (state.event) {
	case PM_EVENT_ON:
		/* Resumeing from hibernation */
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
		if (prev_state.event != PM_EVENT_FREEZE)
			break;

		list_for_each_entry(clkp, &clock_list, node) {
			if (likely(clkp->ops)) {
				unsigned long rate = clkp->rate;

				if (likely(clkp->ops->set_parent))
					clkp->ops->set_parent(clkp,
						clkp->parent);
				if (likely(clkp->ops->set_rate))
					clkp->ops->set_rate(clkp,
						rate, NO_CHANGE);
				else if (likely(clkp->ops->recalc))
					clkp->rate = clkp->ops->recalc(clkp);
			}
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
		}
		break;
	case PM_EVENT_FREEZE:
		break;
	case PM_EVENT_SUSPEND:
		break;
	}

	prev_state = state;
	return 0;
}

static int clks_sysdev_resume(struct sys_device *dev)
{
	return clks_sysdev_suspend(dev, PMSG_ON);
}

static struct sysdev_class clks_sysdev_class = {
	.name = "clks",
};

static struct sysdev_driver clks_sysdev_driver = {
	.suspend = clks_sysdev_suspend,
	.resume = clks_sysdev_resume,
};

static struct sys_device clks_sysdev_dev = {
	.cls = &clks_sysdev_class,
};

static int __init clk_sysdev_init(void)
{
	sysdev_class_register(&clks_sysdev_class);
	sysdev_driver_register(&clks_sysdev_class, &clks_sysdev_driver);
	sysdev_register(&clks_sysdev_dev);

	return 0;
}
subsys_initcall(clk_sysdev_init);
#endif

469 470 471 472
int __init clk_init(void)
{
	int i, ret = 0;

P
Paul Mundt 已提交
473
	BUG_ON(!master_clk.rate);
474 475 476 477 478 479 480 481

	for (i = 0; i < ARRAY_SIZE(onchip_clocks); i++) {
		struct clk *clk = onchip_clocks[i];

		arch_init_clk_ops(&clk->ops, i);
		ret |= clk_register(clk);
	}

P
Paul Mundt 已提交
482
	ret |= arch_clk_init();
483

484
	/* Kick the child clocks.. */
485
	recalculate_root_clocks();
486

487 488 489
	/* Enable the necessary init clocks */
	clk_enable_init_clocks();

490 491 492
	return ret;
}

493
static int __init clk_proc_init(void)
494
{
495 496 497 498 499
	struct proc_dir_entry *p;
	p = create_proc_read_entry("clocks", S_IRUSR, NULL,
				   show_clocks, NULL);
	if (unlikely(!p))
		return -EINVAL;
500 501 502

	return 0;
}
503
subsys_initcall(clk_proc_init);