diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-26 13:02:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-26 13:02:39 -0400 |
commit | 2c518959f082c549d6c6dd9b5380aec40c3eb07f (patch) | |
tree | 163deeedb0532e2c7df805cc052f117b32d33fe3 /arch/arm | |
parent | 4f6876031ee105466f400661a0dd3fa66c4f0c09 (diff) | |
parent | 18016e35d448d35739f8640b51476709c07e95db (diff) |
Merge branch 'for-linus' of git://gitorious.org/linux-omap-dss2/linux
* 'for-linus' of git://gitorious.org/linux-omap-dss2/linux:
OMAP: DSS2: don't power off a panel twice
OMAP: DSS2: OMAPFB: Allow usage of def_vrfb only for omap2,3
OMAP: DSS2: OMAPFB: make VRFB depends on OMAP2,3
OMAP: DSS2: OMAPFB: Allow FB_OMAP2 to build without VRFB
arm/omap: simplify conditional
OMAP: DSS2: DSI: Remove extra iounmap in error path
OMAP: DSS2: Use dss_features framework on DSS2 code
OMAP: DSS2: Introduce dss_features files
video/omap: remove mux.h include
ARM: omap/fb: move get_fbmem_region() to .init.text
ARM: omap/fb: move omapfb_reserve_sram to .init.text
ARM: omap/fb: move omap_init_fb to .init.text
OMAP: DSS2: OMAPFB: swap front and back porches for both hsync and vsync
OMAP: DSS2: make filter coefficient tables human readable
OMAP: DSS2: Add SPI dependency to Kconfig of ACX565AKM panel
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-omap/fb.c | 14 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/display.h | 31 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/vrfb.h | 16 |
3 files changed, 23 insertions, 38 deletions
diff --git a/arch/arm/plat-omap/fb.c b/arch/arm/plat-omap/fb.c index bb78c1532fae..c9e5d7298c40 100644 --- a/arch/arm/plat-omap/fb.c +++ b/arch/arm/plat-omap/fb.c | |||
@@ -96,7 +96,7 @@ static int fbmem_region_reserved(unsigned long start, size_t size) | |||
96 | * Get the region_idx`th region from board config/ATAG and convert it to | 96 | * Get the region_idx`th region from board config/ATAG and convert it to |
97 | * our internal format. | 97 | * our internal format. |
98 | */ | 98 | */ |
99 | static int get_fbmem_region(int region_idx, struct omapfb_mem_region *rg) | 99 | static int __init get_fbmem_region(int region_idx, struct omapfb_mem_region *rg) |
100 | { | 100 | { |
101 | const struct omap_fbmem_config *conf; | 101 | const struct omap_fbmem_config *conf; |
102 | u32 paddr; | 102 | u32 paddr; |
@@ -128,7 +128,7 @@ static int set_fbmem_region_type(struct omapfb_mem_region *rg, int mem_type, | |||
128 | * type = 0 && paddr = 0, a default don't care case maps to | 128 | * type = 0 && paddr = 0, a default don't care case maps to |
129 | * the SDRAM type. | 129 | * the SDRAM type. |
130 | */ | 130 | */ |
131 | if (rg->type || (!rg->type && !rg->paddr)) | 131 | if (rg->type || !rg->paddr) |
132 | return 0; | 132 | return 0; |
133 | if (ranges_overlap(rg->paddr, rg->size, mem_start, mem_size)) { | 133 | if (ranges_overlap(rg->paddr, rg->size, mem_start, mem_size)) { |
134 | rg->type = mem_type; | 134 | rg->type = mem_type; |
@@ -260,7 +260,7 @@ void __init omapfb_reserve_sdram_memblock(void) | |||
260 | * this point, since the driver built as a module would have problem with | 260 | * this point, since the driver built as a module would have problem with |
261 | * freeing / reallocating the regions. | 261 | * freeing / reallocating the regions. |
262 | */ | 262 | */ |
263 | unsigned long omapfb_reserve_sram(unsigned long sram_pstart, | 263 | unsigned long __init omapfb_reserve_sram(unsigned long sram_pstart, |
264 | unsigned long sram_vstart, | 264 | unsigned long sram_vstart, |
265 | unsigned long sram_size, | 265 | unsigned long sram_size, |
266 | unsigned long pstart_avail, | 266 | unsigned long pstart_avail, |
@@ -334,7 +334,7 @@ void omapfb_set_ctrl_platform_data(void *data) | |||
334 | omapfb_config.ctrl_platform_data = data; | 334 | omapfb_config.ctrl_platform_data = data; |
335 | } | 335 | } |
336 | 336 | ||
337 | static inline int omap_init_fb(void) | 337 | static int __init omap_init_fb(void) |
338 | { | 338 | { |
339 | const struct omap_lcd_config *conf; | 339 | const struct omap_lcd_config *conf; |
340 | 340 | ||
@@ -379,7 +379,7 @@ void omapfb_set_platform_data(struct omapfb_platform_data *data) | |||
379 | omapfb_config = *data; | 379 | omapfb_config = *data; |
380 | } | 380 | } |
381 | 381 | ||
382 | static inline int omap_init_fb(void) | 382 | static int __init omap_init_fb(void) |
383 | { | 383 | { |
384 | return platform_device_register(&omap_fb_device); | 384 | return platform_device_register(&omap_fb_device); |
385 | } | 385 | } |
@@ -390,7 +390,7 @@ void omapfb_reserve_sdram_memblock(void) | |||
390 | { | 390 | { |
391 | } | 391 | } |
392 | 392 | ||
393 | unsigned long omapfb_reserve_sram(unsigned long sram_pstart, | 393 | unsigned long __init omapfb_reserve_sram(unsigned long sram_pstart, |
394 | unsigned long sram_vstart, | 394 | unsigned long sram_vstart, |
395 | unsigned long sram_size, | 395 | unsigned long sram_size, |
396 | unsigned long start_avail, | 396 | unsigned long start_avail, |
@@ -409,7 +409,7 @@ void omapfb_reserve_sdram_memblock(void) | |||
409 | { | 409 | { |
410 | } | 410 | } |
411 | 411 | ||
412 | unsigned long omapfb_reserve_sram(unsigned long sram_pstart, | 412 | unsigned long __init omapfb_reserve_sram(unsigned long sram_pstart, |
413 | unsigned long sram_vstart, | 413 | unsigned long sram_vstart, |
414 | unsigned long sram_size, | 414 | unsigned long sram_size, |
415 | unsigned long start_avail, | 415 | unsigned long start_avail, |
diff --git a/arch/arm/plat-omap/include/plat/display.h b/arch/arm/plat-omap/include/plat/display.h index 8bd15bdb4132..c915a661f1f5 100644 --- a/arch/arm/plat-omap/include/plat/display.h +++ b/arch/arm/plat-omap/include/plat/display.h | |||
@@ -81,37 +81,6 @@ enum omap_color_mode { | |||
81 | OMAP_DSS_COLOR_ARGB32 = 1 << 11, /* ARGB32 */ | 81 | OMAP_DSS_COLOR_ARGB32 = 1 << 11, /* ARGB32 */ |
82 | OMAP_DSS_COLOR_RGBA32 = 1 << 12, /* RGBA32 */ | 82 | OMAP_DSS_COLOR_RGBA32 = 1 << 12, /* RGBA32 */ |
83 | OMAP_DSS_COLOR_RGBX32 = 1 << 13, /* RGBx32 */ | 83 | OMAP_DSS_COLOR_RGBX32 = 1 << 13, /* RGBx32 */ |
84 | |||
85 | OMAP_DSS_COLOR_GFX_OMAP2 = | ||
86 | OMAP_DSS_COLOR_CLUT1 | OMAP_DSS_COLOR_CLUT2 | | ||
87 | OMAP_DSS_COLOR_CLUT4 | OMAP_DSS_COLOR_CLUT8 | | ||
88 | OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_RGB16 | | ||
89 | OMAP_DSS_COLOR_RGB24U | OMAP_DSS_COLOR_RGB24P, | ||
90 | |||
91 | OMAP_DSS_COLOR_VID_OMAP2 = | ||
92 | OMAP_DSS_COLOR_RGB16 | OMAP_DSS_COLOR_RGB24U | | ||
93 | OMAP_DSS_COLOR_RGB24P | OMAP_DSS_COLOR_YUV2 | | ||
94 | OMAP_DSS_COLOR_UYVY, | ||
95 | |||
96 | OMAP_DSS_COLOR_GFX_OMAP3 = | ||
97 | OMAP_DSS_COLOR_CLUT1 | OMAP_DSS_COLOR_CLUT2 | | ||
98 | OMAP_DSS_COLOR_CLUT4 | OMAP_DSS_COLOR_CLUT8 | | ||
99 | OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_ARGB16 | | ||
100 | OMAP_DSS_COLOR_RGB16 | OMAP_DSS_COLOR_RGB24U | | ||
101 | OMAP_DSS_COLOR_RGB24P | OMAP_DSS_COLOR_ARGB32 | | ||
102 | OMAP_DSS_COLOR_RGBA32 | OMAP_DSS_COLOR_RGBX32, | ||
103 | |||
104 | OMAP_DSS_COLOR_VID1_OMAP3 = | ||
105 | OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_RGB16 | | ||
106 | OMAP_DSS_COLOR_RGB24U | OMAP_DSS_COLOR_RGB24P | | ||
107 | OMAP_DSS_COLOR_YUV2 | OMAP_DSS_COLOR_UYVY, | ||
108 | |||
109 | OMAP_DSS_COLOR_VID2_OMAP3 = | ||
110 | OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_ARGB16 | | ||
111 | OMAP_DSS_COLOR_RGB16 | OMAP_DSS_COLOR_RGB24U | | ||
112 | OMAP_DSS_COLOR_RGB24P | OMAP_DSS_COLOR_YUV2 | | ||
113 | OMAP_DSS_COLOR_UYVY | OMAP_DSS_COLOR_ARGB32 | | ||
114 | OMAP_DSS_COLOR_RGBA32 | OMAP_DSS_COLOR_RGBX32, | ||
115 | }; | 84 | }; |
116 | 85 | ||
117 | enum omap_lcd_display_type { | 86 | enum omap_lcd_display_type { |
diff --git a/arch/arm/plat-omap/include/plat/vrfb.h b/arch/arm/plat-omap/include/plat/vrfb.h index d8a03ced3b10..3792bdea2f6d 100644 --- a/arch/arm/plat-omap/include/plat/vrfb.h +++ b/arch/arm/plat-omap/include/plat/vrfb.h | |||
@@ -35,6 +35,7 @@ struct vrfb { | |||
35 | bool yuv_mode; | 35 | bool yuv_mode; |
36 | }; | 36 | }; |
37 | 37 | ||
38 | #ifdef CONFIG_OMAP2_VRFB | ||
38 | extern int omap_vrfb_request_ctx(struct vrfb *vrfb); | 39 | extern int omap_vrfb_request_ctx(struct vrfb *vrfb); |
39 | extern void omap_vrfb_release_ctx(struct vrfb *vrfb); | 40 | extern void omap_vrfb_release_ctx(struct vrfb *vrfb); |
40 | extern void omap_vrfb_adjust_size(u16 *width, u16 *height, | 41 | extern void omap_vrfb_adjust_size(u16 *width, u16 *height, |
@@ -47,4 +48,19 @@ extern void omap_vrfb_setup(struct vrfb *vrfb, unsigned long paddr, | |||
47 | extern int omap_vrfb_map_angle(struct vrfb *vrfb, u16 height, u8 rot); | 48 | extern int omap_vrfb_map_angle(struct vrfb *vrfb, u16 height, u8 rot); |
48 | extern void omap_vrfb_restore_context(void); | 49 | extern void omap_vrfb_restore_context(void); |
49 | 50 | ||
51 | #else | ||
52 | static inline int omap_vrfb_request_ctx(struct vrfb *vrfb) { return 0; } | ||
53 | static inline void omap_vrfb_release_ctx(struct vrfb *vrfb) {} | ||
54 | static inline void omap_vrfb_adjust_size(u16 *width, u16 *height, | ||
55 | u8 bytespp) {} | ||
56 | static inline u32 omap_vrfb_min_phys_size(u16 width, u16 height, u8 bytespp) | ||
57 | { return 0; } | ||
58 | static inline u16 omap_vrfb_max_height(u32 phys_size, u16 width, u8 bytespp) | ||
59 | { return 0; } | ||
60 | static inline void omap_vrfb_setup(struct vrfb *vrfb, unsigned long paddr, | ||
61 | u16 width, u16 height, unsigned bytespp, bool yuv_mode) {} | ||
62 | static inline int omap_vrfb_map_angle(struct vrfb *vrfb, u16 height, u8 rot) | ||
63 | { return 0; } | ||
64 | static inline void omap_vrfb_restore_context(void) {} | ||
65 | #endif | ||
50 | #endif /* __VRFB_H */ | 66 | #endif /* __VRFB_H */ |