clock.c 11.6 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
 *  With clkdev bits:
 *
 *	Copyright (C) 2008 Russell King.
 *
17 18 19 20 21 22 23
 * 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>
24
#include <linux/mutex.h>
25
#include <linux/list.h>
26 27
#include <linux/kobject.h>
#include <linux/sysdev.h>
28 29
#include <linux/seq_file.h>
#include <linux/err.h>
P
Paul Mundt 已提交
30
#include <linux/platform_device.h>
31
#include <linux/proc_fs.h>
32 33 34 35
#include <asm/clock.h>

static LIST_HEAD(clock_list);
static DEFINE_SPINLOCK(clock_lock);
36
static DEFINE_MUTEX(clock_list_sem);
37 38 39 40 41 42 43 44 45 46 47 48

/*
 * 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",
49
	.flags		= CLK_ENABLE_ON_INIT,
50 51 52
	.rate		= CONFIG_SH_PCLK_FREQ,
};

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

static struct clk bus_clk = {
	.name		= "bus_clk",
	.parent		= &master_clk,
62
	.flags		= CLK_ENABLE_ON_INIT,
63 64 65 66 67
};

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

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

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

87 88 89 90 91 92 93 94 95 96 97 98 99
int clk_reparent(struct clk *child, struct clk *parent)
{
	list_del_init(&child->sibling);
	if (parent)
		list_add(&child->sibling, &parent->children);
	child->parent = parent;

	/* now do the debugfs renaming to reattach the child
	   to the proper parent */

	return 0;
}

100
/* Propagate rate to children */
101
void propagate_rate(struct clk *tclk)
102 103 104
{
	struct clk *clkp;

105 106
	list_for_each_entry(clkp, &tclk->children, sibling) {
		if (clkp->ops->recalc)
107
			clkp->rate = clkp->ops->recalc(clkp);
108
		propagate_rate(clkp);
109 110 111
	}
}

112
static void __clk_disable(struct clk *clk)
113
{
114 115 116 117 118
	if (clk->usecount == 0) {
		printk(KERN_ERR "Trying disable clock %s with 0 usecount\n",
		       clk->name);
		WARN_ON(1);
		return;
119
	}
120

121 122 123 124 125 126
	if (!(--clk->usecount)) {
		if (likely(clk->ops && clk->ops->disable))
			clk->ops->disable(clk);
		if (likely(clk->parent))
			__clk_disable(clk->parent);
	}
127 128
}

129
void clk_disable(struct clk *clk)
130 131 132
{
	unsigned long flags;

133
	if (!clk)
134
		return;
135

136
	spin_lock_irqsave(&clock_lock, flags);
137
	__clk_disable(clk);
138 139
	spin_unlock_irqrestore(&clock_lock, flags);
}
140
EXPORT_SYMBOL_GPL(clk_disable);
141

142
static int __clk_enable(struct clk *clk)
143
{
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
	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;
			}
		}
161
	}
162 163 164 165 166

	return ret;
err:
	clk->usecount--;
	return ret;
167 168
}

169
int clk_enable(struct clk *clk)
170 171
{
	unsigned long flags;
172
	int ret;
173

174
	if (!clk)
175
		return -EINVAL;
176

177
	spin_lock_irqsave(&clock_lock, flags);
178
	ret = __clk_enable(clk);
179
	spin_unlock_irqrestore(&clock_lock, flags);
180 181

	return ret;
182
}
183
EXPORT_SYMBOL_GPL(clk_enable);
184

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
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);
	}
}

205 206
int clk_register(struct clk *clk)
{
207 208 209 210 211 212 213 214 215
	if (clk == NULL || IS_ERR(clk))
		return -EINVAL;

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

216
	mutex_lock(&clock_list_sem);
217

218
	INIT_LIST_HEAD(&clk->children);
219
	clk->usecount = 0;
220 221 222 223 224 225

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

226
	list_add(&clk->node, &clock_list);
227 228
	if (clk->ops->init)
		clk->ops->init(clk);
229
	mutex_unlock(&clock_list_sem);
230 231 232

	return 0;
}
233
EXPORT_SYMBOL_GPL(clk_register);
234 235 236

void clk_unregister(struct clk *clk)
{
237
	mutex_lock(&clock_list_sem);
238
	list_del(&clk->sibling);
239
	list_del(&clk->node);
240
	mutex_unlock(&clock_list_sem);
241
}
242
EXPORT_SYMBOL_GPL(clk_unregister);
243

244 245 246 247 248 249 250 251 252
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);
}

253
unsigned long clk_get_rate(struct clk *clk)
254 255 256
{
	return clk->rate;
}
257
EXPORT_SYMBOL_GPL(clk_get_rate);
258 259

int clk_set_rate(struct clk *clk, unsigned long rate)
260 261 262
{
	return clk_set_rate_ex(clk, rate, 0);
}
263
EXPORT_SYMBOL_GPL(clk_set_rate);
264 265

int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id)
266 267 268 269 270 271 272
{
	int ret = -EOPNOTSUPP;

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

		spin_lock_irqsave(&clock_lock, flags);
273
		ret = clk->ops->set_rate(clk, rate, algo_id);
274 275 276 277 278
		if (ret == 0) {
			if (clk->ops->recalc)
				clk->rate = clk->ops->recalc(clk);
			propagate_rate(clk);
		}
279 280 281 282 283
		spin_unlock_irqrestore(&clock_lock, flags);
	}

	return ret;
}
284
EXPORT_SYMBOL_GPL(clk_set_rate_ex);
285

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

	if (!parent || !clk)
		return ret;
293 294
	if (clk->parent == parent)
		return 0;
295

296 297 298 299
	spin_lock_irqsave(&clock_lock, flags);
	if (clk->usecount == 0) {
		if (clk->ops->set_parent)
			ret = clk->ops->set_parent(clk, parent);
300 301 302
		else
			ret = clk_reparent(clk, parent);

303
		if (ret == 0) {
304 305
			pr_debug("clock: set parent of %s to %s (new rate %ld)\n",
				 clk->name, clk->parent->name, clk->rate);
306 307 308 309 310 311 312
			if (clk->ops->recalc)
				clk->rate = clk->ops->recalc(clk);
			propagate_rate(clk);
		}
	} else
		ret = -EBUSY;
	spin_unlock_irqrestore(&clock_lock, flags);
313 314 315 316 317 318 319 320 321 322 323

	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);

324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
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);

340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
/*
 * Find the correct struct clk for the device and connection ID.
 * We do slightly fuzzy matching here:
 *  An entry with a NULL ID is assumed to be a wildcard.
 *  If an entry has a device ID, it must match
 *  If an entry has a connection ID, it must match
 * Then we take the most specific entry - with the following
 * order of precidence: dev+con > dev only > con only.
 */
static struct clk *clk_find(const char *dev_id, const char *con_id)
{
	struct clk_lookup *p;
	struct clk *clk = NULL;
	int match, best = 0;

	list_for_each_entry(p, &clock_list, node) {
		match = 0;
		if (p->dev_id) {
			if (!dev_id || strcmp(p->dev_id, dev_id))
				continue;
			match += 2;
		}
		if (p->con_id) {
			if (!con_id || strcmp(p->con_id, con_id))
				continue;
			match += 1;
		}
		if (match == 0)
			continue;

		if (match > best) {
			clk = p->clk;
			best = match;
		}
	}
	return clk;
}

struct clk *clk_get_sys(const char *dev_id, const char *con_id)
{
	struct clk *clk;

	mutex_lock(&clock_list_sem);
	clk = clk_find(dev_id, con_id);
	mutex_unlock(&clock_list_sem);

	return clk ? clk : ERR_PTR(-ENOENT);
}
EXPORT_SYMBOL_GPL(clk_get_sys);

P
Paul Mundt 已提交
390 391 392 393 394
/*
 * 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)
395
{
396
	const char *dev_id = dev ? dev_name(dev) : NULL;
397
	struct clk *p, *clk = ERR_PTR(-ENOENT);
P
Paul Mundt 已提交
398 399
	int idno;

400
	clk = clk_get_sys(dev_id, id);
401
	if (clk && !IS_ERR(clk))
402 403
		return clk;

P
Paul Mundt 已提交
404 405 406 407
	if (dev == NULL || dev->bus != &platform_bus_type)
		idno = -1;
	else
		idno = to_platform_device(dev)->id;
408

409
	mutex_lock(&clock_list_sem);
P
Paul Mundt 已提交
410 411 412 413 414 415 416 417
	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;
		}
	}

418 419 420 421 422 423
	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 已提交
424 425

found:
426
	mutex_unlock(&clock_list_sem);
427 428 429

	return clk;
}
430
EXPORT_SYMBOL_GPL(clk_get);
431 432 433 434 435 436

void clk_put(struct clk *clk)
{
	if (clk && !IS_ERR(clk))
		module_put(clk->owner);
}
437
EXPORT_SYMBOL_GPL(clk_put);
438

439
int __init __weak arch_clk_init(void)
440
{
P
Paul Mundt 已提交
441
	return 0;
442 443
}

444 445 446 447 448 449 450 451 452
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);

453 454
		p += sprintf(p, "%-12s\t: %ld.%02ldMHz\t%s\n", clk->name,
			     rate / 1000000, (rate % 1000000) / 10000,
455
			      (clk->usecount > 0) ?  "enabled" : "disabled");
456 457 458 459 460
	}

	return p - buf;
}

461 462 463 464 465 466 467 468 469
#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 */
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
		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);
			}
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
		}
		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

527 528 529 530
int __init clk_init(void)
{
	int i, ret = 0;

P
Paul Mundt 已提交
531
	BUG_ON(!master_clk.rate);
532 533 534 535 536 537 538 539

	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 已提交
540
	ret |= arch_clk_init();
541

542
	/* Kick the child clocks.. */
543
	recalculate_root_clocks();
544

545 546 547
	/* Enable the necessary init clocks */
	clk_enable_init_clocks();

548 549 550
	return ret;
}

551
static int __init clk_proc_init(void)
552
{
553 554 555 556 557
	struct proc_dir_entry *p;
	p = create_proc_read_entry("clocks", S_IRUSR, NULL,
				   show_clocks, NULL);
	if (unlikely(!p))
		return -EINVAL;
558 559 560

	return 0;
}
561
subsys_initcall(clk_proc_init);