* [PATCH v3] video: imxfb: Fix the maximum value for yres
@ 2010-12-24 12:28 Fabio Estevam
2010-12-27 13:56 ` Janorkar, Mayuresh
2011-01-06 6:44 ` Paul Mundt
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2010-12-24 12:28 UTC (permalink / raw)
To: linux-arm-kernel
MX27 and MX25 have 10 bits in the YMAX field of LCDC Size Register.
Fix the maximum value for yres.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v2:
- Perform run-time detection of CPU time
Changes since v1:
- factor out SIZE_YMAX definition
drivers/video/imxfb.c | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/drivers/video/imxfb.c b/drivers/video/imxfb.c
index 5c363d0..1ab2c25 100644
--- a/drivers/video/imxfb.c
+++ b/drivers/video/imxfb.c
@@ -53,11 +53,8 @@
#define LCDC_SIZE 0x04
#define SIZE_XMAX(x) ((((x) >> 4) & 0x3f) << 20)
-#ifdef CONFIG_ARCH_MX1
-#define SIZE_YMAX(y) ((y) & 0x1ff)
-#else
-#define SIZE_YMAX(y) ((y) & 0x3ff)
-#endif
+#define YMAX_MASK (cpu_is_mx1() ? 0x1ff : 0x3ff)
+#define SIZE_YMAX(y) ((y) & YMAX_MASK)
#define LCDC_VPW 0x08
#define VPW_VPW(x) ((x) & 0x3ff)
@@ -623,7 +620,7 @@ static int imxfb_activate_var(struct fb_var_screeninfo *var, struct fb_info *inf
if (var->right_margin > 255)
printk(KERN_ERR "%s: invalid right_margin %d\n",
info->fix.id, var->right_margin);
- if (var->yres < 1 || var->yres > 511)
+ if (var->yres < 1 || var->yres > YMAX_MASK)
printk(KERN_ERR "%s: invalid yres %d\n",
info->fix.id, var->yres);
if (var->vsync_len > 100)
--
1.6.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [PATCH v3] video: imxfb: Fix the maximum value for yres
2010-12-24 12:28 [PATCH v3] video: imxfb: Fix the maximum value for yres Fabio Estevam
@ 2010-12-27 13:56 ` Janorkar, Mayuresh
2011-01-06 6:44 ` Paul Mundt
1 sibling, 0 replies; 3+ messages in thread
From: Janorkar, Mayuresh @ 2010-12-27 13:56 UTC (permalink / raw)
To: linux-arm-kernel
Fabio,
________________________________________
> From: linux-fbdev-owner@vger.kernel.org [linux-fbdev-owner@vger.kernel.org] On Behalf Of Fabio Estevam [fabio.estevam@freescale.com]
> Sent: Friday, December 24, 2010 5:58 PM
> To: linux-fbdev@vger.kernel.org
> Cc: kernel@pengutronix.de; linux-arm-kernel@lists.infradead.org; lethal@linux-sh.org; Fabio Estevam
> Subject: [PATCH v3] video: imxfb: Fix the maximum value for yres
>
>MX27 and MX25 have 10 bits in the YMAX field of LCDC Size Register.
>
>Fix the maximum value for yres.
>
>Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
>---
>Changes since v2:
>- Perform run-time detection of CPU time
>
>Changes since v1:
>- factor out SIZE_YMAX definition
> drivers/video/imxfb.c | 9 +++------
> 1 files changed, 3 insertions(+), 6 deletions(-)
>
>diff --git a/drivers/video/imxfb.c b/drivers/video/imxfb.c
>index 5c363d0..1ab2c25 100644
>--- a/drivers/video/imxfb.c
>+++ b/drivers/video/imxfb.c
>@@ -53,11 +53,8 @@
>#define LCDC_SIZE 0x04
>#define SIZE_XMAX(x) ((((x) >> 4) & 0x3f) << 20)
>
>-#ifdef CONFIG_ARCH_MX1
>-#define SIZE_YMAX(y) ((y) & 0x1ff)
>-#else
>-#define SIZE_YMAX(y) ((y) & 0x3ff)
>-#endif
>+#define YMAX_MASK (cpu_is_mx1() ? 0x1ff : 0x3ff)
>+#define SIZE_YMAX(y) ((y) & YMAX_MASK)
>
>#define LCDC_VPW 0x08
> #define VPW_VPW(x) ((x) & 0x3ff)
> @@ -623,7 +620,7 @@ static int imxfb_activate_var(struct fb_var_screeninfo *var, struct fb_info *inf
> if (var->right_margin > 255)
> printk(KERN_ERR "%s: invalid right_margin %d\n",
> info->fix.id, var->right_margin);
>- if (var->yres < 1 || var->yres > 511)
>+ if (var->yres < 1 || var->yres > YMAX_MASK)
[Mayuresh]: If minimum value of yres_mask is 1 then you please define YMIN_MASK to be 1
This would make your code more readable.
> printk(KERN_ERR "%s: invalid yres %d\n",
> info->fix.id, var->yres);
> if (var->vsync_len > 100)
>--
> 1.6.0.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] video: imxfb: Fix the maximum value for yres
2010-12-24 12:28 [PATCH v3] video: imxfb: Fix the maximum value for yres Fabio Estevam
2010-12-27 13:56 ` Janorkar, Mayuresh
@ 2011-01-06 6:44 ` Paul Mundt
1 sibling, 0 replies; 3+ messages in thread
From: Paul Mundt @ 2011-01-06 6:44 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Dec 24, 2010 at 10:28:24AM -0200, Fabio Estevam wrote:
> MX27 and MX25 have 10 bits in the YMAX field of LCDC Size Register.
>
> Fix the maximum value for yres.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-01-06 6:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-24 12:28 [PATCH v3] video: imxfb: Fix the maximum value for yres Fabio Estevam
2010-12-27 13:56 ` Janorkar, Mayuresh
2011-01-06 6:44 ` Paul Mundt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).