1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Aptina Sensor PLL Configuration
12 unsigned int ext_clock;
13 unsigned int pix_clock;
20 struct aptina_pll_limits {
21 unsigned int ext_clock_min;
22 unsigned int ext_clock_max;
23 unsigned int int_clock_min;
24 unsigned int int_clock_max;
25 unsigned int out_clock_min;
26 unsigned int out_clock_max;
27 unsigned int pix_clock_max;
39 int aptina_pll_calculate(struct device *dev,
40 const struct aptina_pll_limits *limits,
41 struct aptina_pll *pll);
43 #endif /* __APTINA_PLL_H */