-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 360066 b: refs/heads/master c: 3f0a06b h: refs/heads/master v: v3
- Loading branch information
John Crispin
committed
Feb 17, 2013
1 parent
d942ada
commit 9c34e55
Showing
2 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7e47cefa69c8ed2c889522ce29fcce73ce8cf08e | ||
refs/heads/master: 3f0a06b0368d25608841843e9d65a7289ad9f14a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published | ||
* by the Free Software Foundation. | ||
* | ||
* Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org> | ||
* Copyright (C) 2013 John Crispin <blogic@openwrt.org> | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/module.h> | ||
#include <linux/clkdev.h> | ||
#include <linux/clk.h> | ||
|
||
#include <asm/time.h> | ||
|
||
#include "common.h" | ||
|
||
struct clk { | ||
struct clk_lookup cl; | ||
unsigned long rate; | ||
}; | ||
|
||
void ralink_clk_add(const char *dev, unsigned long rate) | ||
{ | ||
struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); | ||
|
||
if (!clk) | ||
panic("failed to add clock\n"); | ||
|
||
clk->cl.dev_id = dev; | ||
clk->cl.clk = clk; | ||
|
||
clk->rate = rate; | ||
|
||
clkdev_add(&clk->cl); | ||
} | ||
|
||
/* | ||
* Linux clock API | ||
*/ | ||
int clk_enable(struct clk *clk) | ||
{ | ||
return 0; | ||
} | ||
EXPORT_SYMBOL_GPL(clk_enable); | ||
|
||
void clk_disable(struct clk *clk) | ||
{ | ||
} | ||
EXPORT_SYMBOL_GPL(clk_disable); | ||
|
||
unsigned long clk_get_rate(struct clk *clk) | ||
{ | ||
return clk->rate; | ||
} | ||
EXPORT_SYMBOL_GPL(clk_get_rate); | ||
|
||
void __init plat_time_init(void) | ||
{ | ||
struct clk *clk; | ||
|
||
ralink_of_remap(); | ||
|
||
ralink_clk_init(); | ||
clk = clk_get_sys("cpu", NULL); | ||
if (IS_ERR(clk)) | ||
panic("unable to get CPU clock, err=%ld", PTR_ERR(clk)); | ||
pr_info("CPU Clock: %ldMHz\n", clk_get_rate(clk) / 1000000); | ||
mips_hpt_frequency = clk_get_rate(clk) / 2; | ||
clk_put(clk); | ||
} |