2 * rl6231.c - RL6231 class device shared support
4 * Copyright 2014 Realtek Semiconductor Corp.
6 * Author: Oder Chiou <oder_chiou@realtek.com>
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.
13 #include <linux/module.h>
14 #include <linux/regmap.h>
19 * rl6231_get_pre_div - Return the value of pre divider.
21 * @map: map for setting.
25 * Return the value of pre divider from given register value.
26 * Return negative error code for unexpected register value.
28 int rl6231_get_pre_div(struct regmap
*map
, unsigned int reg
, int sft
)
32 regmap_read(map
, reg
, &val
);
34 val
= (val
>> sft
) & 0x7;
62 EXPORT_SYMBOL_GPL(rl6231_get_pre_div
);
65 * rl6231_calc_dmic_clk - Calculate the frequency divider parameter of dmic.
67 * @rate: base clock rate.
69 * Choose divider parameter that gives the highest possible DMIC frequency in
72 int rl6231_calc_dmic_clk(int rate
)
74 static const int div
[] = {2, 3, 4, 6, 8, 12};
77 if (rate
< 1000000 * div
[0]) {
78 pr_warn("Base clock rate %d is too low\n", rate
);
82 for (i
= 0; i
< ARRAY_SIZE(div
); i
++) {
83 if ((div
[i
] % 3) == 0)
85 /* find divider that gives DMIC frequency below 3.072MHz */
86 if (3072000 * div
[i
] >= rate
)
90 pr_warn("Base clock rate %d is too high\n", rate
);
93 EXPORT_SYMBOL_GPL(rl6231_calc_dmic_clk
);
104 static const struct pll_calc_map pll_preset_table
[] = {
105 {19200000, 4096000, 23, 14, 1, false},
106 {19200000, 24576000, 3, 30, 3, false},
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.
115 * Calcualte M/N/K code to configure PLL for codec.
117 * Returns 0 for success or negative error code.
119 int rl6231_pll_calc(const unsigned int freq_in
,
120 const unsigned int freq_out
, struct rl6231_pll_code
*pll_code
)
122 int max_n
= RL6231_PLL_N_MAX
, max_m
= RL6231_PLL_M_MAX
;
123 int i
, k
, red
, n_t
, pll_out
, in_t
, out_t
;
124 int n
= 0, m
= 0, m_t
= 0;
125 int red_t
= abs(freq_out
- freq_in
);
128 if (RL6231_PLL_INP_MAX
< freq_in
|| RL6231_PLL_INP_MIN
> freq_in
)
131 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");
143 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);
151 if (in_t
== pll_out
) {
156 red
= abs(in_t
- pll_out
);
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
);
178 pr_debug("Only get approximation about PLL\n");
182 pll_code
->m_bp
= bypass
;
183 pll_code
->m_code
= m
;
184 pll_code
->n_code
= n
;
185 pll_code
->k_code
= k
;
188 EXPORT_SYMBOL_GPL(rl6231_pll_calc
);
190 int rl6231_get_clk_info(int sclk
, int rate
)
193 static const int pd
[] = {1, 2, 3, 4, 6, 8, 12, 16};
195 if (sclk
<= 0 || rate
<= 0)
199 for (i
= 0; i
< ARRAY_SIZE(pd
); i
++)
200 if (sclk
== rate
* pd
[i
])
205 EXPORT_SYMBOL_GPL(rl6231_get_clk_info
);
207 MODULE_DESCRIPTION("RL6231 class device shared support");
208 MODULE_AUTHOR("Oder Chiou <oder_chiou@realtek.com>");
209 MODULE_LICENSE("GPL v2");