From patchwork Tue Jan 15 13:32:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Afzal Mohammed X-Patchwork-Id: 1978081 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 408903FE1B for ; Tue, 15 Jan 2013 13:32:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756270Ab3AONbe (ORCPT ); Tue, 15 Jan 2013 08:31:34 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:44441 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757108Ab3AONbb (ORCPT ); Tue, 15 Jan 2013 08:31:31 -0500 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id r0FDVSFg019440; Tue, 15 Jan 2013 07:31:28 -0600 Received: from DBDE70.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id r0FDVR8r004994; Tue, 15 Jan 2013 19:01:27 +0530 (IST) Received: from dbdp32.itg.ti.com (172.24.170.251) by dbde70.ent.ti.com (172.24.170.148) with Microsoft SMTP Server id 14.1.323.3; Tue, 15 Jan 2013 19:01:27 +0530 Received: from ucmsshproxy.india.ext.ti.com (dbdp20.itg.ti.com [172.24.170.38]) by dbdp32.itg.ti.com (8.13.8/8.13.8) with SMTP id r0FDVRGD003053; Tue, 15 Jan 2013 19:01:27 +0530 Received: from symphony.india.ext.ti.com (unknown [192.168.247.13]) by ucmsshproxy.india.ext.ti.com (Postfix) with ESMTP id 07CA7158002; Tue, 15 Jan 2013 19:01:24 +0530 (IST) Received: from ubuntu-psp-linux.india.ext.ti.com (ubuntu-psp-linux [192.168.247.46]) by symphony.india.ext.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id r0FDVNR02773; Tue, 15 Jan 2013 19:01:23 +0530 (IST) From: Afzal Mohammed To: Florian Tobias Schandinat , Tomi Valkeinen , Sekhar Nori , , , Subject: [PATCH v3 09/10] video: da8xx-fb: report correct pixclock Date: Tue, 15 Jan 2013 19:02:28 +0530 Message-ID: <0afcc9a2b298874ec1402db6906e0069fd072e45.1358250489.git.afzal@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Update "var" pixclock with the value that is configurable in hardware. This lets user know the actual pixclock. Signed-off-by: Afzal Mohammed --- drivers/video/da8xx-fb.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c index a5341d0..0f73c76 100644 --- a/drivers/video/da8xx-fb.c +++ b/drivers/video/da8xx-fb.c @@ -686,6 +686,15 @@ static inline unsigned da8xx_fb_calc_clk_divider(struct da8xx_fb_par *par, return par->lcd_fck_rate / (PICOS2KHZ(pixclock) * 1000); } +static inline unsigned da8xx_fb_round_clk(struct da8xx_fb_par *par, + unsigned pixclock) +{ + unsigned div; + + div = da8xx_fb_calc_clk_divider(par, pixclock); + return KHZ2PICOS(par->lcd_fck_rate / (1000 * div)); +} + static inline void da8xx_fb_config_clk_divider(unsigned div) { /* Configure the LCD clock divisor. */ @@ -962,6 +971,8 @@ static int fb_check_var(struct fb_var_screeninfo *var, if (var->yres + var->yoffset > var->yres_virtual) var->yoffset = var->yres_virtual - var->yres; + var->pixclock = da8xx_fb_round_clk(par, var->pixclock); + return err; }