We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5723879 commit 52b1429Copy full SHA for 52b1429
drivers/clk/sunxi-ng/ccu-sun50i-a64.c
@@ -171,11 +171,13 @@ static struct ccu_nkm pll_mipi_clk = {
171
* user manual, and by experiments the PLL doesn't work without
172
* these bits toggled.
173
*/
174
- .enable = BIT(31) | BIT(23) | BIT(22),
175
- .lock = BIT(28),
176
- .n = _SUNXI_CCU_MULT(8, 4),
177
- .k = _SUNXI_CCU_MULT_MIN(4, 2, 2),
178
- .m = _SUNXI_CCU_DIV(0, 4),
+ .enable = BIT(31) | BIT(23) | BIT(22),
+ .lock = BIT(28),
+ .n = _SUNXI_CCU_MULT(8, 4),
+ .k = _SUNXI_CCU_MULT_MIN(4, 2, 2),
+ .m = _SUNXI_CCU_DIV(0, 4),
179
+ .max_m_n_ratio = 3,
180
+ .min_parent_m_ratio = 24000000,
181
.common = {
182
.reg = 0x040,
183
.hw.init = CLK_HW_INIT("pll-mipi", "pll-video0",
0 commit comments