blob: 9b613426e968ab6a0e36fdcb52b7c87ac076253b [file] [log] [blame]
Alexandru M Stan89bf26c2014-11-26 17:30:27 -08001/*
2 * Copyright 2014 Google, Inc
3 * Author: Alexandru M Stan <amstan@chromium.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/slab.h>
Stephen Boydf684ff82015-06-19 15:00:46 -070017#include <linux/clk.h>
Alexandru M Stan89bf26c2014-11-26 17:30:27 -080018#include <linux/clk-provider.h>
Heiko Stuebner7c494ad2015-07-05 11:00:15 +020019#include <linux/io.h>
20#include <linux/kernel.h>
Alexandru M Stan89bf26c2014-11-26 17:30:27 -080021#include "clk.h"
22
23struct rockchip_mmc_clock {
24 struct clk_hw hw;
25 void __iomem *reg;
26 int id;
27 int shift;
28};
29
30#define to_mmc_clock(_hw) container_of(_hw, struct rockchip_mmc_clock, hw)
31
32#define RK3288_MMC_CLKGEN_DIV 2
33
34static unsigned long rockchip_mmc_recalc(struct clk_hw *hw,
35 unsigned long parent_rate)
36{
37 return parent_rate / RK3288_MMC_CLKGEN_DIV;
38}
39
40#define ROCKCHIP_MMC_DELAY_SEL BIT(10)
41#define ROCKCHIP_MMC_DEGREE_MASK 0x3
42#define ROCKCHIP_MMC_DELAYNUM_OFFSET 2
43#define ROCKCHIP_MMC_DELAYNUM_MASK (0xff << ROCKCHIP_MMC_DELAYNUM_OFFSET)
44
45#define PSECS_PER_SEC 1000000000000LL
46
47/*
48 * Each fine delay is between 40ps-80ps. Assume each fine delay is 60ps to
49 * simplify calculations. So 45degs could be anywhere between 33deg and 66deg.
50 */
51#define ROCKCHIP_MMC_DELAY_ELEMENT_PSEC 60
52
53static int rockchip_mmc_get_phase(struct clk_hw *hw)
54{
55 struct rockchip_mmc_clock *mmc_clock = to_mmc_clock(hw);
56 unsigned long rate = clk_get_rate(hw->clk);
57 u32 raw_value;
58 u16 degrees;
59 u32 delay_num = 0;
60
61 raw_value = readl(mmc_clock->reg) >> (mmc_clock->shift);
62
63 degrees = (raw_value & ROCKCHIP_MMC_DEGREE_MASK) * 90;
64
65 if (raw_value & ROCKCHIP_MMC_DELAY_SEL) {
66 /* degrees/delaynum * 10000 */
67 unsigned long factor = (ROCKCHIP_MMC_DELAY_ELEMENT_PSEC / 10) *
68 36 * (rate / 1000000);
69
70 delay_num = (raw_value & ROCKCHIP_MMC_DELAYNUM_MASK);
71 delay_num >>= ROCKCHIP_MMC_DELAYNUM_OFFSET;
72 degrees += delay_num * factor / 10000;
73 }
74
75 return degrees % 360;
76}
77
78static int rockchip_mmc_set_phase(struct clk_hw *hw, int degrees)
79{
80 struct rockchip_mmc_clock *mmc_clock = to_mmc_clock(hw);
81 unsigned long rate = clk_get_rate(hw->clk);
82 u8 nineties, remainder;
83 u8 delay_num;
84 u32 raw_value;
85 u64 delay;
86
87 /* allow 22 to be 22.5 */
88 degrees++;
89 /* floor to 22.5 increment */
90 degrees -= ((degrees) * 10 % 225) / 10;
91
92 nineties = degrees / 90;
93 /* 22.5 multiples */
94 remainder = (degrees % 90) / 22;
95
96 delay = PSECS_PER_SEC;
97 do_div(delay, rate);
98 /* / 360 / 22.5 */
99 do_div(delay, 16);
100 do_div(delay, ROCKCHIP_MMC_DELAY_ELEMENT_PSEC);
101
102 delay *= remainder;
103 delay_num = (u8) min(delay, 255ULL);
104
105 raw_value = delay_num ? ROCKCHIP_MMC_DELAY_SEL : 0;
106 raw_value |= delay_num << ROCKCHIP_MMC_DELAYNUM_OFFSET;
107 raw_value |= nineties;
108 writel(HIWORD_UPDATE(raw_value, 0x07ff, mmc_clock->shift), mmc_clock->reg);
109
110 pr_debug("%s->set_phase(%d) delay_nums=%u reg[0x%p]=0x%03x actual_degrees=%d\n",
Stephen Boyd836ee0f2015-08-12 11:42:23 -0700111 clk_hw_get_name(hw), degrees, delay_num,
Alexandru M Stan89bf26c2014-11-26 17:30:27 -0800112 mmc_clock->reg, raw_value>>(mmc_clock->shift),
113 rockchip_mmc_get_phase(hw)
114 );
115
116 return 0;
117}
118
119static const struct clk_ops rockchip_mmc_clk_ops = {
120 .recalc_rate = rockchip_mmc_recalc,
121 .get_phase = rockchip_mmc_get_phase,
122 .set_phase = rockchip_mmc_set_phase,
123};
124
125struct clk *rockchip_clk_register_mmc(const char *name,
Uwe Kleine-König4a1caed2015-05-28 10:45:51 +0200126 const char *const *parent_names, u8 num_parents,
Alexandru M Stan89bf26c2014-11-26 17:30:27 -0800127 void __iomem *reg, int shift)
128{
129 struct clk_init_data init;
130 struct rockchip_mmc_clock *mmc_clock;
131 struct clk *clk;
132
133 mmc_clock = kmalloc(sizeof(*mmc_clock), GFP_KERNEL);
134 if (!mmc_clock)
135 return NULL;
136
Heiko Stuebner7c494ad2015-07-05 11:00:15 +0200137 init.name = name;
Alexandru M Stan89bf26c2014-11-26 17:30:27 -0800138 init.num_parents = num_parents;
139 init.parent_names = parent_names;
140 init.ops = &rockchip_mmc_clk_ops;
141
142 mmc_clock->hw.init = &init;
143 mmc_clock->reg = reg;
144 mmc_clock->shift = shift;
145
Alexandru M Stan89bf26c2014-11-26 17:30:27 -0800146 clk = clk_register(NULL, &mmc_clock->hw);
147 if (IS_ERR(clk))
148 goto err_free;
149
150 return clk;
151
152err_free:
153 kfree(mmc_clock);
154 return NULL;
155}