Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 1 | /* |
Ralf Baechle | 0bb383a | 2015-07-07 20:56:04 +0200 | [diff] [blame] | 2 | * Copyright (C) 2006 - 2008 Lemote Inc. & Institute of Computing Technology |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 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 Baechle | 95cf1468 | 2012-08-01 17:15:32 +0200 | [diff] [blame] | 9 | #include <linux/clk.h> |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 10 | #include <linux/cpufreq.h> |
Ralf Baechle | 95cf1468 | 2012-08-01 17:15:32 +0200 | [diff] [blame] | 11 | #include <linux/errno.h> |
| 12 | #include <linux/export.h> |
Ralf Baechle | 95cf1468 | 2012-08-01 17:15:32 +0200 | [diff] [blame] | 13 | #include <linux/list.h> |
| 14 | #include <linux/mutex.h> |
| 15 | #include <linux/spinlock.h> |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 16 | |
| 17 | #include <asm/clock.h> |
Jiaxun Yang | 71e2f4d | 2019-10-20 22:43:14 +0800 | [diff] [blame] | 18 | #include <asm/mach-loongson2ef/loongson.h> |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 19 | |
| 20 | static LIST_HEAD(clock_list); |
| 21 | static DEFINE_SPINLOCK(clock_lock); |
| 22 | static DEFINE_MUTEX(clock_list_sem); |
| 23 | |
| 24 | /* Minimum CLK support */ |
| 25 | enum { |
| 26 | DC_ZERO, DC_25PT = 2, DC_37PT, DC_50PT, DC_62PT, DC_75PT, |
| 27 | DC_87PT, DC_DISABLE, DC_RESV |
| 28 | }; |
| 29 | |
| 30 | struct cpufreq_frequency_table loongson2_clockmod_table[] = { |
Viresh Kumar | 7f4b046 | 2014-03-28 19:11:47 +0530 | [diff] [blame] | 31 | {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 Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 41 | }; |
| 42 | EXPORT_SYMBOL_GPL(loongson2_clockmod_table); |
| 43 | |
| 44 | static struct clk cpu_clk = { |
| 45 | .name = "cpu_clk", |
| 46 | .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES, |
| 47 | .rate = 800000000, |
| 48 | }; |
| 49 | |
| 50 | struct clk *clk_get(struct device *dev, const char *id) |
| 51 | { |
| 52 | return &cpu_clk; |
| 53 | } |
| 54 | EXPORT_SYMBOL(clk_get); |
| 55 | |
| 56 | static 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 | |
| 70 | int clk_enable(struct clk *clk) |
| 71 | { |
| 72 | return 0; |
| 73 | } |
| 74 | EXPORT_SYMBOL(clk_enable); |
| 75 | |
| 76 | void clk_disable(struct clk *clk) |
| 77 | { |
| 78 | } |
| 79 | EXPORT_SYMBOL(clk_disable); |
| 80 | |
| 81 | unsigned long clk_get_rate(struct clk *clk) |
| 82 | { |
Jonas Gorski | 386787b | 2017-07-18 12:17:28 +0200 | [diff] [blame] | 83 | if (!clk) |
| 84 | return 0; |
| 85 | |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 86 | return (unsigned long)clk->rate; |
| 87 | } |
| 88 | EXPORT_SYMBOL(clk_get_rate); |
| 89 | |
| 90 | void clk_put(struct clk *clk) |
| 91 | { |
| 92 | } |
| 93 | EXPORT_SYMBOL(clk_put); |
| 94 | |
| 95 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 96 | { |
Aaro Koskinen | aa08ed5 | 2014-09-21 15:38:43 +0300 | [diff] [blame] | 97 | unsigned int rate_khz = rate / 1000; |
Stratos Karafotis | 4966ee4 | 2014-04-25 23:16:25 +0300 | [diff] [blame] | 98 | struct cpufreq_frequency_table *pos; |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 99 | int ret = 0; |
| 100 | int regval; |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 101 | |
| 102 | if (likely(clk->ops && clk->ops->set_rate)) { |
| 103 | unsigned long flags; |
| 104 | |
| 105 | spin_lock_irqsave(&clock_lock, flags); |
Ralf Baechle | 95cf1468 | 2012-08-01 17:15:32 +0200 | [diff] [blame] | 106 | ret = clk->ops->set_rate(clk, rate, 0); |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 107 | spin_unlock_irqrestore(&clock_lock, flags); |
| 108 | } |
| 109 | |
| 110 | if (unlikely(clk->flags & CLK_RATE_PROPAGATES)) |
| 111 | propagate_rate(clk); |
| 112 | |
Stratos Karafotis | 4966ee4 | 2014-04-25 23:16:25 +0300 | [diff] [blame] | 113 | cpufreq_for_each_valid_entry(pos, loongson2_clockmod_table) |
Aaro Koskinen | aa08ed5 | 2014-09-21 15:38:43 +0300 | [diff] [blame] | 114 | if (rate_khz == pos->frequency) |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 115 | break; |
Aaro Koskinen | aa08ed5 | 2014-09-21 15:38:43 +0300 | [diff] [blame] | 116 | if (rate_khz != pos->frequency) |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 117 | return -ENOTSUPP; |
| 118 | |
| 119 | clk->rate = rate; |
| 120 | |
Jiaxun Yang | 5831fdb | 2019-10-20 22:43:15 +0800 | [diff] [blame] | 121 | regval = readl(LOONGSON_CHIPCFG); |
Stratos Karafotis | 4966ee4 | 2014-04-25 23:16:25 +0300 | [diff] [blame] | 122 | regval = (regval & ~0x7) | (pos->driver_data - 1); |
Jiaxun Yang | 5831fdb | 2019-10-20 22:43:15 +0800 | [diff] [blame] | 123 | writel(regval, LOONGSON_CHIPCFG); |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 124 | |
| 125 | return ret; |
| 126 | } |
Ralf Baechle | 95cf1468 | 2012-08-01 17:15:32 +0200 | [diff] [blame] | 127 | EXPORT_SYMBOL_GPL(clk_set_rate); |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 128 | |
| 129 | long clk_round_rate(struct clk *clk, unsigned long rate) |
| 130 | { |
| 131 | if (likely(clk->ops && clk->ops->round_rate)) { |
| 132 | unsigned long flags, rounded; |
| 133 | |
| 134 | spin_lock_irqsave(&clock_lock, flags); |
| 135 | rounded = clk->ops->round_rate(clk, rate); |
| 136 | spin_unlock_irqrestore(&clock_lock, flags); |
| 137 | |
| 138 | return rounded; |
| 139 | } |
| 140 | |
| 141 | return rate; |
| 142 | } |
| 143 | EXPORT_SYMBOL_GPL(clk_round_rate); |