blob: a217061beee3fe0b6b57a1b06a663d0de5d4850f [file] [log] [blame]
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +08001/*
2 * Copyright (C) 2006 - 2008 Lemote Inc. & Insititute of Computing Technology
3 * Author: Yanhua, yanh@lemote.com
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
8 */
Ralf Baechle95cf1462012-08-01 17:15:32 +02009#include <linux/clk.h>
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080010#include <linux/cpufreq.h>
Ralf Baechle95cf1462012-08-01 17:15:32 +020011#include <linux/errno.h>
12#include <linux/export.h>
Ralf Baechle95cf1462012-08-01 17:15:32 +020013#include <linux/list.h>
14#include <linux/mutex.h>
15#include <linux/spinlock.h>
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080016
17#include <asm/clock.h>
Ralf Baechle95cf1462012-08-01 17:15:32 +020018#include <asm/mach-loongson/loongson.h>
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080019
20static LIST_HEAD(clock_list);
21static DEFINE_SPINLOCK(clock_lock);
22static DEFINE_MUTEX(clock_list_sem);
23
24/* Minimum CLK support */
25enum {
26 DC_ZERO, DC_25PT = 2, DC_37PT, DC_50PT, DC_62PT, DC_75PT,
27 DC_87PT, DC_DISABLE, DC_RESV
28};
29
30struct cpufreq_frequency_table loongson2_clockmod_table[] = {
Viresh Kumar7f4b0462014-03-28 19:11:47 +053031 {0, DC_RESV, CPUFREQ_ENTRY_INVALID},
32 {0, DC_ZERO, CPUFREQ_ENTRY_INVALID},
33 {0, DC_25PT, 0},
34 {0, DC_37PT, 0},
35 {0, DC_50PT, 0},
36 {0, DC_62PT, 0},
37 {0, DC_75PT, 0},
38 {0, DC_87PT, 0},
39 {0, DC_DISABLE, 0},
40 {0, DC_RESV, CPUFREQ_TABLE_END},
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080041};
42EXPORT_SYMBOL_GPL(loongson2_clockmod_table);
43
44static struct clk cpu_clk = {
45 .name = "cpu_clk",
46 .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES,
47 .rate = 800000000,
48};
49
50struct clk *clk_get(struct device *dev, const char *id)
51{
52 return &cpu_clk;
53}
54EXPORT_SYMBOL(clk_get);
55
56static void propagate_rate(struct clk *clk)
57{
58 struct clk *clkp;
59
60 list_for_each_entry(clkp, &clock_list, node) {
61 if (likely(clkp->parent != clk))
62 continue;
63 if (likely(clkp->ops && clkp->ops->recalc))
64 clkp->ops->recalc(clkp);
65 if (unlikely(clkp->flags & CLK_RATE_PROPAGATES))
66 propagate_rate(clkp);
67 }
68}
69
70int clk_enable(struct clk *clk)
71{
72 return 0;
73}
74EXPORT_SYMBOL(clk_enable);
75
76void clk_disable(struct clk *clk)
77{
78}
79EXPORT_SYMBOL(clk_disable);
80
81unsigned long clk_get_rate(struct clk *clk)
82{
83 return (unsigned long)clk->rate;
84}
85EXPORT_SYMBOL(clk_get_rate);
86
87void clk_put(struct clk *clk)
88{
89}
90EXPORT_SYMBOL(clk_put);
91
92int clk_set_rate(struct clk *clk, unsigned long rate)
93{
Stratos Karafotis4966ee42014-04-25 23:16:25 +030094 struct cpufreq_frequency_table *pos;
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080095 int ret = 0;
96 int regval;
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080097
98 if (likely(clk->ops && clk->ops->set_rate)) {
99 unsigned long flags;
100
101 spin_lock_irqsave(&clock_lock, flags);
Ralf Baechle95cf1462012-08-01 17:15:32 +0200102 ret = clk->ops->set_rate(clk, rate, 0);
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +0800103 spin_unlock_irqrestore(&clock_lock, flags);
104 }
105
106 if (unlikely(clk->flags & CLK_RATE_PROPAGATES))
107 propagate_rate(clk);
108
Stratos Karafotis4966ee42014-04-25 23:16:25 +0300109 cpufreq_for_each_valid_entry(pos, loongson2_clockmod_table)
110 if (rate == pos->frequency)
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +0800111 break;
Stratos Karafotis4966ee42014-04-25 23:16:25 +0300112 if (rate != pos->frequency)
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +0800113 return -ENOTSUPP;
114
115 clk->rate = rate;
116
Huacai Chen140e39c2014-06-26 11:41:27 +0800117 regval = LOONGSON_CHIPCFG(0);
Stratos Karafotis4966ee42014-04-25 23:16:25 +0300118 regval = (regval & ~0x7) | (pos->driver_data - 1);
Huacai Chen140e39c2014-06-26 11:41:27 +0800119 LOONGSON_CHIPCFG(0) = regval;
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +0800120
121 return ret;
122}
Ralf Baechle95cf1462012-08-01 17:15:32 +0200123EXPORT_SYMBOL_GPL(clk_set_rate);
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +0800124
125long clk_round_rate(struct clk *clk, unsigned long rate)
126{
127 if (likely(clk->ops && clk->ops->round_rate)) {
128 unsigned long flags, rounded;
129
130 spin_lock_irqsave(&clock_lock, flags);
131 rounded = clk->ops->round_rate(clk, rate);
132 spin_unlock_irqrestore(&clock_lock, flags);
133
134 return rounded;
135 }
136
137 return rate;
138}
139EXPORT_SYMBOL_GPL(clk_round_rate);