blob: ebaa7cc0e9957b63905f04f5444f81d28f043aa4 [file] [log] [blame]
John Crispin3f0a06b2013-01-20 22:01:29 +01001/*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published
4 * by the Free Software Foundation.
5 *
6 * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
John Crispin97b92102016-05-05 09:57:56 +02007 * Copyright (C) 2013 John Crispin <john@phrozen.org>
John Crispin3f0a06b2013-01-20 22:01:29 +01008 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/clkdev.h>
13#include <linux/clk.h>
14
15#include <asm/time.h>
16
17#include "common.h"
18
19struct clk {
20 struct clk_lookup cl;
21 unsigned long rate;
22};
23
24void ralink_clk_add(const char *dev, unsigned long rate)
25{
26 struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL);
27
28 if (!clk)
Ralf Baechlef7777dc2013-09-18 16:05:26 +020029 panic("failed to add clock");
John Crispin3f0a06b2013-01-20 22:01:29 +010030
31 clk->cl.dev_id = dev;
32 clk->cl.clk = clk;
33
34 clk->rate = rate;
35
36 clkdev_add(&clk->cl);
37}
38
39/*
40 * Linux clock API
41 */
42int clk_enable(struct clk *clk)
43{
44 return 0;
45}
46EXPORT_SYMBOL_GPL(clk_enable);
47
48void clk_disable(struct clk *clk)
49{
50}
51EXPORT_SYMBOL_GPL(clk_disable);
52
53unsigned long clk_get_rate(struct clk *clk)
54{
55 return clk->rate;
56}
57EXPORT_SYMBOL_GPL(clk_get_rate);
58
John Crispina8b62042014-03-16 04:38:07 +000059int clk_set_rate(struct clk *clk, unsigned long rate)
60{
61 return -1;
62}
63EXPORT_SYMBOL_GPL(clk_set_rate);
64
John Crispin3f0a06b2013-01-20 22:01:29 +010065void __init plat_time_init(void)
66{
67 struct clk *clk;
68
69 ralink_of_remap();
70
71 ralink_clk_init();
72 clk = clk_get_sys("cpu", NULL);
73 if (IS_ERR(clk))
74 panic("unable to get CPU clock, err=%ld", PTR_ERR(clk));
75 pr_info("CPU Clock: %ldMHz\n", clk_get_rate(clk) / 1000000);
76 mips_hpt_frequency = clk_get_rate(clk) / 2;
77 clk_put(clk);
Marc Zyngier3722ed22015-09-28 15:49:18 +010078 clocksource_probe();
John Crispin3f0a06b2013-01-20 22:01:29 +010079}