diff options
author | InKi Dae <inki.dae@samsung.com> | 2010-08-10 21:02:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 11:59:09 -0400 |
commit | ad04490a171915737c9b99d2fa5cb813830f24c1 (patch) | |
tree | be12ab706d2f68be30d8169ffaa2c5f3f8616fca /arch/arm/plat-samsung | |
parent | 45649fdb54c2e3feb59a8648608ed601511f2098 (diff) |
s3c-fb: add default window feature.
s5pv210 has five window layers (window0 ~ 4), among them, window0 ~ 2
could be used for local path with fimc(capture device) and fimd writeback
feature so this patch makes default window layer for UI to be set at
machine code.
Signed-off-by: InKi Dae <inki.dae@samsung.com>
Reviewed-by: KyungMin Park <kyungmin.park.samsung.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Pawel Osciak <p.osciak@samsung.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm/plat-samsung')
-rw-r--r-- | arch/arm/plat-samsung/include/plat/fb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/include/plat/fb.h b/arch/arm/plat-samsung/include/plat/fb.h index 27d3b497b55b..cb3ca3adc685 100644 --- a/arch/arm/plat-samsung/include/plat/fb.h +++ b/arch/arm/plat-samsung/include/plat/fb.h | |||
@@ -42,6 +42,7 @@ struct s3c_fb_pd_win { | |||
42 | * @setup_gpio: Setup the external GPIO pins to the right state to transfer | 42 | * @setup_gpio: Setup the external GPIO pins to the right state to transfer |
43 | * the data from the display system to the connected display | 43 | * the data from the display system to the connected display |
44 | * device. | 44 | * device. |
45 | * @default_win: default window layer number to be used for UI layer. | ||
45 | * @vidcon0: The base vidcon0 values to control the panel data format. | 46 | * @vidcon0: The base vidcon0 values to control the panel data format. |
46 | * @vidcon1: The base vidcon1 values to control the panel data output. | 47 | * @vidcon1: The base vidcon1 values to control the panel data output. |
47 | * @win: The setup data for each hardware window, or NULL for unused. | 48 | * @win: The setup data for each hardware window, or NULL for unused. |
@@ -58,6 +59,8 @@ struct s3c_fb_platdata { | |||
58 | 59 | ||
59 | struct s3c_fb_pd_win *win[S3C_FB_MAX_WIN]; | 60 | struct s3c_fb_pd_win *win[S3C_FB_MAX_WIN]; |
60 | 61 | ||
62 | u32 default_win; | ||
63 | |||
61 | u32 vidcon0; | 64 | u32 vidcon0; |
62 | u32 vidcon1; | 65 | u32 vidcon1; |
63 | }; | 66 | }; |