Hi! > > On Thu, Jul 06, 2017 at 02:00:18AM +0300, Sakari Ailus wrote: > > > Check that we do have a valid port in an endpoint, return an error if not. > > > > > > Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> > > > > Reviewed-by: Sebastian Reichel <sebastian.reichel@xxxxxxxxxxxxxxx> > > Thanks for the reviews, Sebastian and Pavel! > > I'll send a pull request on these for 4.14 once we have -rc1 in the media > tree. I can update my patches when updated ccp2 branch is ready. And actually, I'd quite like to get rest of support ready for 4.14, too. I believe we are close enough. I re-checked, and it seems to work w/o the "smiapp-pll: Take existing divisor into account in minimum divisor check" patch; so with "omap3isp: add CSI1 support" plus the other ccp2 patches, plus dts changes, we should be ok. Best regards, Pavel commit eba2751794239780efb256ce7079294a4d4c6e74 Author: Pavel <pavel@xxxxxx> Date: Mon Feb 13 21:18:27 2017 +0100 From: Sakari Ailus <sakari.ailus@xxxxxx> Required added multiplier (and divisor) calculation did not take into account the existing divisor when checking the values against the minimum divisor. Do just that. Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxx> Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@xxxxxxxxx> Signed-off-by: Pavel Machek <pavel@xxxxxx> diff --git a/drivers/media/i2c/smiapp-pll.c b/drivers/media/i2c/smiapp-pll.c index 771db56..0ada972 100644 --- a/drivers/media/i2c/smiapp-pll.c +++ b/drivers/media/i2c/smiapp-pll.c @@ -227,7 +227,8 @@ static int __smiapp_pll_calculate( more_mul_factor = lcm(div, pll->pre_pll_clk_div) / div; dev_dbg(dev, "more_mul_factor: %u\n", more_mul_factor); - more_mul_factor = lcm(more_mul_factor, op_limits->min_sys_clk_div); + more_mul_factor = lcm(more_mul_factor, + DIV_ROUND_UP(op_limits->min_sys_clk_div, div)); dev_dbg(dev, "more_mul_factor: min_op_sys_clk_div: %d\n", more_mul_factor); i = roundup(more_mul_min, more_mul_factor); -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
Attachment:
signature.asc
Description: Digital signature