* [PATCH 1/4] FB: added a structure for CPU interface to linux/fb.h
@ 2010-11-23 7:15 Inki Dae
2010-11-23 16:02 ` Sergei Shtylyov
2010-11-24 1:41 ` Inki Dae
0 siblings, 2 replies; 3+ messages in thread
From: Inki Dae @ 2010-11-23 7:15 UTC (permalink / raw)
To: linux-arm-kernel
RGB or CPU interfaces could be used as display mode but framebuffer
framework doesn't consider CPU interface so I added this structure
because fb_cpumode structure could be used commonly.
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
include/linux/fb.h | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/include/linux/fb.h b/include/linux/fb.h
index 7fca3dc..9b9842c 100644
--- a/include/linux/fb.h
+++ b/include/linux/fb.h
@@ -1147,6 +1147,18 @@ struct fb_videomode {
u32 flag;
};
+struct fb_cpumode {
+ const char *name; /* optional */
+ u32 refresh; /* optional */
+ u32 xres;
+ u32 yres;
+ u32 pixclock;
+ u32 cs_setup;
+ u32 wr_setup;
+ u32 wr_act;
+ u32 wr_hold;
+};
+
extern const char *fb_mode_option;
extern const struct fb_videomode vesa_modes[];
--
1.5.4.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] FB: added a structure for CPU interface to linux/fb.h
2010-11-23 7:15 [PATCH 1/4] FB: added a structure for CPU interface to linux/fb.h Inki Dae
@ 2010-11-23 16:02 ` Sergei Shtylyov
2010-11-24 1:41 ` Inki Dae
1 sibling, 0 replies; 3+ messages in thread
From: Sergei Shtylyov @ 2010-11-23 16:02 UTC (permalink / raw)
To: linux-arm-kernel
Hello.
Inki Dae wrote:
> RGB or CPU interfaces could be used as display mode but framebuffer
> framework doesn't consider CPU interface so I added this structure
> because fb_cpumode structure could be used commonly.
> Signed-off-by: Inki Dae <inki.dae@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> include/linux/fb.h | 12 ++++++++++++
> 1 files changed, 12 insertions(+), 0 deletions(-)
> diff --git a/include/linux/fb.h b/include/linux/fb.h
> index 7fca3dc..9b9842c 100644
> --- a/include/linux/fb.h
> +++ b/include/linux/fb.h
> @@ -1147,6 +1147,18 @@ struct fb_videomode {
> u32 flag;
> };
>
> +struct fb_cpumode {
> + const char *name; /* optional */
> + u32 refresh; /* optional */
> + u32 xres;
> + u32 yres;
I think that those two fields should happily fit into 'u16' type.
> + u32 pixclock;
> + u32 cs_setup;
> + u32 wr_setup;
> + u32 wr_act;
> + u32 wr_hold;
Suspecting the same about the above 4 fields...
WBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH 1/4] FB: added a structure for CPU interface to linux/fb.h
2010-11-23 7:15 [PATCH 1/4] FB: added a structure for CPU interface to linux/fb.h Inki Dae
2010-11-23 16:02 ` Sergei Shtylyov
@ 2010-11-24 1:41 ` Inki Dae
1 sibling, 0 replies; 3+ messages in thread
From: Inki Dae @ 2010-11-24 1:41 UTC (permalink / raw)
To: linux-fbdev
Hello.
Below is my comments
Thank you.
> -----Original Message-----
> From: Sergei Shtylyov [mailto:sshtylyov@mvista.com]
> Sent: Wednesday, November 24, 2010 1:02 AM
> To: Inki Dae
> Cc: linux-fbdev@vger.kernel.org; linux-arm-kernel@lists.infradead.org;
> kyungmin.park@samsung.com; kgene.kim@samsung.com; akpm@linux-
> foundation.org; lethal@linux-sh.org
> Subject: Re: [PATCH 1/4] FB: added a structure for CPU interface to
> linux/fb.h
>
> Hello.
>
> Inki Dae wrote:
>
> > RGB or CPU interfaces could be used as display mode but framebuffer
> > framework doesn't consider CPU interface so I added this structure
> > because fb_cpumode structure could be used commonly.
>
> > Signed-off-by: Inki Dae <inki.dae@samsung.com>
> > Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> > ---
> > include/linux/fb.h | 12 ++++++++++++
> > 1 files changed, 12 insertions(+), 0 deletions(-)
>
> > diff --git a/include/linux/fb.h b/include/linux/fb.h
> > index 7fca3dc..9b9842c 100644
> > --- a/include/linux/fb.h
> > +++ b/include/linux/fb.h
> > @@ -1147,6 +1147,18 @@ struct fb_videomode {
> > u32 flag;
> > };
> >
> > +struct fb_cpumode {
> > + const char *name; /* optional */
> > + u32 refresh; /* optional */
> > + u32 xres;
> > + u32 yres;
>
> I think that those two fields should happily fit into 'u16' type.
>
I agree to your opinion, but I just followed existing struct fb_videomode.
Do you or everybody have any idea for whether changing typef('u32' -> 'u16')
or not?
if it is more better to modify type then I will correct it.
> > + u32 pixclock;
> > + u32 cs_setup;
> > + u32 wr_setup;
> > + u32 wr_act;
> > + u32 wr_hold;
>
> Suspecting the same about the above 4 fields...
>
Same.
> WBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-11-24 1:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-23 7:15 [PATCH 1/4] FB: added a structure for CPU interface to linux/fb.h Inki Dae
2010-11-23 16:02 ` Sergei Shtylyov
2010-11-24 1:41 ` Inki Dae
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).