* [PATCH] video: add PXA3xx accelerator ID [v2]
@ 2009-09-10 13:26 Daniel Mack
2009-09-10 13:31 ` Guennadi Liakhovetski
0 siblings, 1 reply; 5+ messages in thread
From: Daniel Mack @ 2009-09-10 13:26 UTC (permalink / raw)
To: linux-arm-kernel
Ok, here goes a new patch as just discussed.
Does that look good to everyone?
Thanks,
Daniel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] video: add PXA3xx accelerator ID [v2]
2009-09-10 13:26 [PATCH] video: add PXA3xx accelerator ID [v2] Daniel Mack
@ 2009-09-10 13:31 ` Guennadi Liakhovetski
2009-09-10 13:33 ` Daniel Mack
2009-09-11 16:12 ` Eric Miao
0 siblings, 2 replies; 5+ messages in thread
From: Guennadi Liakhovetski @ 2009-09-10 13:31 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, 10 Sep 2009, Daniel Mack wrote:
> Ok, here goes a new patch as just discussed.
> Does that look good to everyone?
>
> Thanks,
> Daniel
>
> >From 32b1fa824cd78f9ba6169b90c5d01870de05c86f Mon Sep 17 00:00:00 2001
> From: Daniel Mack <daniel@caiaq.de>
> Date: Mon, 20 Jul 2009 11:18:43 +0200
> Subject: [PATCH] video: add PXA3xx accelerator ID
>
> Add ID 99 for PXA3xx frame buffers and report it in the pxa frame buffer
> conditionally, depending on a new flag in struct pxafb_mach_info.
>
> Signed-off-by: Daniel Mack <daniel@caiaq.de>
> Cc: Eric Miao <eric.miao@marvell.com>
> Cc: linux-fbdev-devel at lists.sourceforge.net
> Cc: Dennis Oliver Kropp <dok@directfb.org>
> Cc: Sven Neumann <s.neumann@raumfeld.com>
> ---
> arch/arm/mach-pxa/include/mach/pxafb.h | 3 ++-
> drivers/video/pxafb.c | 3 +++
> include/linux/fb.h | 1 +
> 3 files changed, 6 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-pxa/include/mach/pxafb.h b/arch/arm/mach-pxa/include/mach/pxafb.h
> index 6932720..f73061c 100644
> --- a/arch/arm/mach-pxa/include/mach/pxafb.h
> +++ b/arch/arm/mach-pxa/include/mach/pxafb.h
> @@ -118,7 +118,8 @@ struct pxafb_mach_info {
> u_int fixed_modes:1,
> cmap_inverse:1,
> cmap_static:1,
> - unused:29;
> + acceleration_enabled:1,
> + unused:28;
>
> /* The following should be defined in LCCR0
> * LCCR0_Act or LCCR0_Pas Active or Passive
> diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c
> index 3951cc5..b65cc2d 100644
> --- a/drivers/video/pxafb.c
> +++ b/drivers/video/pxafb.c
> @@ -2083,6 +2083,9 @@ static int __devinit pxafb_probe(struct platform_device *dev)
> goto failed;
> }
>
> + if (cpu_is_pxa3xx() && inf->acceleration_enabled)
> + fbi->fb.fix.accel = FB_ACCEL_PXA3XX;
> +
Ok, now remove 'cpu_is_pxa3xx() && ' above and you should be good to go:-)
What if tomorrow pxa4xx comes (ok, Eric will disagree, but wtill:-))
> fbi->backlight_power = inf->pxafb_backlight_power;
> fbi->lcd_power = inf->pxafb_lcd_power;
>
> diff --git a/include/linux/fb.h b/include/linux/fb.h
> index f847df9..a34bdf5 100644
> --- a/include/linux/fb.h
> +++ b/include/linux/fb.h
> @@ -133,6 +133,7 @@ struct dentry;
> #define FB_ACCEL_NEOMAGIC_NM2230 96 /* NeoMagic NM2230 */
> #define FB_ACCEL_NEOMAGIC_NM2360 97 /* NeoMagic NM2360 */
> #define FB_ACCEL_NEOMAGIC_NM2380 98 /* NeoMagic NM2380 */
> +#define FB_ACCEL_PXA3XX 99 /* PXA3xx */
>
> #define FB_ACCEL_SAVAGE4 0x80 /* S3 Savage4 */
> #define FB_ACCEL_SAVAGE3D 0x81 /* S3 Savage3D */
> --
> 1.6.3.3
>
Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] video: add PXA3xx accelerator ID [v2]
2009-09-10 13:31 ` Guennadi Liakhovetski
@ 2009-09-10 13:33 ` Daniel Mack
2009-09-11 15:20 ` Daniel Mack
2009-09-11 16:12 ` Eric Miao
1 sibling, 1 reply; 5+ messages in thread
From: Daniel Mack @ 2009-09-10 13:33 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Sep 10, 2009 at 03:31:34PM +0200, Guennadi Liakhovetski wrote:
> > + if (cpu_is_pxa3xx() && inf->acceleration_enabled)
> > + fbi->fb.fix.accel = FB_ACCEL_PXA3XX;
> > +
>
> Ok, now remove 'cpu_is_pxa3xx() && ' above and you should be good to go:-)
> What if tomorrow pxa4xx comes (ok, Eric will disagree, but wtill:-))
Don't know. I left it in there intentionally, but I'm fine to remove it.
Or Eric does it when applying ;) Eric?
Daniel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] video: add PXA3xx accelerator ID [v2]
2009-09-10 13:33 ` Daniel Mack
@ 2009-09-11 15:20 ` Daniel Mack
0 siblings, 0 replies; 5+ messages in thread
From: Daniel Mack @ 2009-09-11 15:20 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Sep 10, 2009 at 03:33:27PM +0200, Daniel Mack wrote:
> On Thu, Sep 10, 2009 at 03:31:34PM +0200, Guennadi Liakhovetski wrote:
> > > + if (cpu_is_pxa3xx() && inf->acceleration_enabled)
> > > + fbi->fb.fix.accel = FB_ACCEL_PXA3XX;
> > > +
> >
> > Ok, now remove 'cpu_is_pxa3xx() && ' above and you should be good to go:-)
> > What if tomorrow pxa4xx comes (ok, Eric will disagree, but wtill:-))
>
> Don't know. I left it in there intentionally, but I'm fine to remove it.
> Or Eric does it when applying ;) Eric?
What I was considering are cases where a kernel binary that works on
both PXA3xx and other PXAs shares the same pxafb_mach_info struct across
different board support code. The accel flag would then be set for wrong
platforms.
But this might be academic, that's why I don't have a strong opinion on
that :)
Daniel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] video: add PXA3xx accelerator ID [v2]
2009-09-10 13:31 ` Guennadi Liakhovetski
2009-09-10 13:33 ` Daniel Mack
@ 2009-09-11 16:12 ` Eric Miao
1 sibling, 0 replies; 5+ messages in thread
From: Eric Miao @ 2009-09-11 16:12 UTC (permalink / raw)
To: linux-arm-kernel
> Ok, now remove 'cpu_is_pxa3xx() && ' above and you should be good to go:-)
> What if tomorrow pxa4xx comes (ok, Eric will disagree, but wtill:-))
It is not likely to be pxa4xx, (chinese people don't like '4', and there are
a lot chinese in Marvell, Shhh..... don't let them know I said this ;-)
Still, I guess having a cpu_is_pxa3xx() should be OK here.
>
>> ? ? ? fbi->backlight_power = inf->pxafb_backlight_power;
>> ? ? ? fbi->lcd_power = inf->pxafb_lcd_power;
>>
>> diff --git a/include/linux/fb.h b/include/linux/fb.h
>> index f847df9..a34bdf5 100644
>> --- a/include/linux/fb.h
>> +++ b/include/linux/fb.h
>> @@ -133,6 +133,7 @@ struct dentry;
>> ?#define FB_ACCEL_NEOMAGIC_NM2230 96 ?/* NeoMagic NM2230 ? ? ? ? ? ? ?*/
>> ?#define FB_ACCEL_NEOMAGIC_NM2360 97 ?/* NeoMagic NM2360 ? ? ? ? ? ? ?*/
>> ?#define FB_ACCEL_NEOMAGIC_NM2380 98 ?/* NeoMagic NM2380 ? ? ? ? ? ? ?*/
>> +#define FB_ACCEL_PXA3XX ? ? ? ? ? ? ? 99 ? ? /* PXA3xx ? ? ? ? ? ? ? ? ? ? ? */
>>
>> ?#define FB_ACCEL_SAVAGE4 ? ? ? ?0x80 /* S3 Savage4 ? ? ? ? ? ? ? ? ? */
>> ?#define FB_ACCEL_SAVAGE3D ? ? ? 0x81 /* S3 Savage3D ? ? ? ? ? ? ? ? ?*/
>> --
>> 1.6.3.3
>>
>
> Thanks
> Guennadi
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-09-11 16:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-10 13:26 [PATCH] video: add PXA3xx accelerator ID [v2] Daniel Mack
2009-09-10 13:31 ` Guennadi Liakhovetski
2009-09-10 13:33 ` Daniel Mack
2009-09-11 15:20 ` Daniel Mack
2009-09-11 16:12 ` Eric Miao
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).