blob: 7b447d0b173a8c1860c2ff2b08a51e790887fb41 [file] [log] [blame]
Oder Chiou49ef7922014-05-20 15:01:53 +08001/*
2 * rl6231.c - RL6231 class device shared support
3 *
4 * Copyright 2014 Realtek Semiconductor Corp.
5 *
6 * Author: Oder Chiou <oder_chiou@realtek.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
Oder Chiou00a6d6e52015-08-05 10:03:18 +080014#include <linux/regmap.h>
Oder Chiou49ef7922014-05-20 15:01:53 +080015
16#include "rl6231.h"
17
18/**
Oder Chiou00a6d6e52015-08-05 10:03:18 +080019 * rl6231_get_pre_div - Return the value of pre divider.
20 *
21 * @map: map for setting.
22 * @reg: register.
23 * @sft: shift.
24 *
25 * Return the value of pre divider from given register value.
26 * Return negative error code for unexpected register value.
27 */
28int rl6231_get_pre_div(struct regmap *map, unsigned int reg, int sft)
29{
30 int pd, val;
31
32 regmap_read(map, reg, &val);
33
34 val = (val >> sft) & 0x7;
35
36 switch (val) {
37 case 0:
38 case 1:
39 case 2:
40 case 3:
41 pd = val + 1;
42 break;
43 case 4:
44 pd = 6;
45 break;
46 case 5:
47 pd = 8;
48 break;
49 case 6:
50 pd = 12;
51 break;
52 case 7:
53 pd = 16;
54 break;
55 default:
56 pd = -EINVAL;
57 break;
58 }
59
60 return pd;
61}
62EXPORT_SYMBOL_GPL(rl6231_get_pre_div);
63
64/**
Anatol Pomozovac1125d2015-08-05 14:58:33 -070065 * rl6231_calc_dmic_clk - Calculate the frequency divider parameter of dmic.
Oder Chiou49ef7922014-05-20 15:01:53 +080066 *
67 * @rate: base clock rate.
68 *
Anatol Pomozovac1125d2015-08-05 14:58:33 -070069 * Choose divider parameter that gives the highest possible DMIC frequency in
70 * 1MHz - 3MHz range.
Oder Chiou49ef7922014-05-20 15:01:53 +080071 */
72int rl6231_calc_dmic_clk(int rate)
73{
Anatol Pomozovac1125d2015-08-05 14:58:33 -070074 int div[] = {2, 3, 4, 6, 8, 12};
75 int i;
Oder Chiou49ef7922014-05-20 15:01:53 +080076
Anatol Pomozovac1125d2015-08-05 14:58:33 -070077 if (rate < 1000000 * div[0]) {
78 pr_warn("Base clock rate %d is too low\n", rate);
79 return -EINVAL;
Oder Chiou49ef7922014-05-20 15:01:53 +080080 }
81
Anatol Pomozovac1125d2015-08-05 14:58:33 -070082 for (i = 0; i < ARRAY_SIZE(div); i++) {
Bard Liao2f64b6e2015-11-10 14:40:55 +080083 if ((div[i] % 3) == 0)
84 continue;
John Lin7336dce2015-11-16 14:41:07 +080085 /* find divider that gives DMIC frequency below 3.072MHz */
86 if (3072000 * div[i] >= rate)
Anatol Pomozovac1125d2015-08-05 14:58:33 -070087 return i;
88 }
89
90 pr_warn("Base clock rate %d is too high\n", rate);
91 return -EINVAL;
Oder Chiou49ef7922014-05-20 15:01:53 +080092}
93EXPORT_SYMBOL_GPL(rl6231_calc_dmic_clk);
94
Bard Liao213213d2015-07-22 13:09:15 +080095struct pll_calc_map {
96 unsigned int pll_in;
97 unsigned int pll_out;
98 int k;
99 int n;
100 int m;
101 bool m_bp;
102};
103
104static const struct pll_calc_map pll_preset_table[] = {
Bard Liao59b01132016-11-15 15:25:50 +0800105 {19200000, 4096000, 23, 14, 1, false},
Bard Liao213213d2015-07-22 13:09:15 +0800106 {19200000, 24576000, 3, 30, 3, false},
107};
108
Oder Chiou71c7a2d2014-05-20 15:01:54 +0800109/**
110 * rl6231_pll_calc - Calcualte PLL M/N/K code.
111 * @freq_in: external clock provided to codec.
112 * @freq_out: target clock which codec works on.
113 * @pll_code: Pointer to structure with M, N, K and bypass flag.
114 *
115 * Calcualte M/N/K code to configure PLL for codec.
116 *
117 * Returns 0 for success or negative error code.
118 */
119int rl6231_pll_calc(const unsigned int freq_in,
120 const unsigned int freq_out, struct rl6231_pll_code *pll_code)
121{
122 int max_n = RL6231_PLL_N_MAX, max_m = RL6231_PLL_M_MAX;
Bard Liao213213d2015-07-22 13:09:15 +0800123 int i, k, red, n_t, pll_out, in_t, out_t;
Oder Chiou71c7a2d2014-05-20 15:01:54 +0800124 int n = 0, m = 0, m_t = 0;
125 int red_t = abs(freq_out - freq_in);
126 bool bypass = false;
127
128 if (RL6231_PLL_INP_MAX < freq_in || RL6231_PLL_INP_MIN > freq_in)
129 return -EINVAL;
130
Bard Liao213213d2015-07-22 13:09:15 +0800131 for (i = 0; i < ARRAY_SIZE(pll_preset_table); i++) {
132 if (freq_in == pll_preset_table[i].pll_in &&
133 freq_out == pll_preset_table[i].pll_out) {
134 k = pll_preset_table[i].k;
135 m = pll_preset_table[i].m;
136 n = pll_preset_table[i].n;
137 bypass = pll_preset_table[i].m_bp;
138 pr_debug("Use preset PLL parameter table\n");
139 goto code_find;
140 }
141 }
142
Oder Chiou71c7a2d2014-05-20 15:01:54 +0800143 k = 100000000 / freq_out - 2;
144 if (k > RL6231_PLL_K_MAX)
145 k = RL6231_PLL_K_MAX;
146 for (n_t = 0; n_t <= max_n; n_t++) {
147 in_t = freq_in / (k + 2);
148 pll_out = freq_out / (n_t + 2);
149 if (in_t < 0)
150 continue;
151 if (in_t == pll_out) {
152 bypass = true;
153 n = n_t;
154 goto code_find;
155 }
156 red = abs(in_t - pll_out);
157 if (red < red_t) {
158 bypass = true;
159 n = n_t;
160 m = m_t;
161 if (red == 0)
162 goto code_find;
163 red_t = red;
164 }
165 for (m_t = 0; m_t <= max_m; m_t++) {
166 out_t = in_t / (m_t + 2);
167 red = abs(out_t - pll_out);
168 if (red < red_t) {
169 bypass = false;
170 n = n_t;
171 m = m_t;
172 if (red == 0)
173 goto code_find;
174 red_t = red;
175 }
176 }
177 }
178 pr_debug("Only get approximation about PLL\n");
179
180code_find:
181
182 pll_code->m_bp = bypass;
183 pll_code->m_code = m;
184 pll_code->n_code = n;
185 pll_code->k_code = k;
186 return 0;
187}
188EXPORT_SYMBOL_GPL(rl6231_pll_calc);
189
Oder Chioud92950e2014-05-20 15:01:55 +0800190int rl6231_get_clk_info(int sclk, int rate)
191{
192 int i, pd[] = {1, 2, 3, 4, 6, 8, 12, 16};
193
194 if (sclk <= 0 || rate <= 0)
195 return -EINVAL;
196
197 rate = rate << 8;
198 for (i = 0; i < ARRAY_SIZE(pd); i++)
199 if (sclk == rate * pd[i])
200 return i;
201
202 return -EINVAL;
203}
204EXPORT_SYMBOL_GPL(rl6231_get_clk_info);
205
Oder Chiou49ef7922014-05-20 15:01:53 +0800206MODULE_DESCRIPTION("RL6231 class device shared support");
207MODULE_AUTHOR("Oder Chiou <oder_chiou@realtek.com>");
208MODULE_LICENSE("GPL v2");