diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 12:24:30 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 12:24:30 -0500 |
| commit | e0c8453769fcaec654cd5870e84c63175658c842 (patch) | |
| tree | e5f114f236689a8db8f44bcecb5c1f1e14462932 /include/linux | |
| parent | a323ae93a74f669d890926187c68c711895e3454 (diff) | |
| parent | d6c2152b3efd73be265f426b5a1bb50ec436d999 (diff) | |
Merge tag 'fbdev-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux
Pull fbdev changes from Tomi Valkeinen:
- omapdss: add DRA7xxx SoC support
- fbdev: support DMT (Display Monitor Timing) calculation
* tag 'fbdev-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux: (40 commits)
omapfb: Return error code when applying overlay settings fails
OMAPDSS: DPI: DRA7xx support
OMAPDSS: HDMI: Add DRA7xx support
OMAPDSS: DISPC: program dispc polarities to control module
OMAPDSS: DISPC: Add DRA7xx support
OMAPDSS: Add Video PLLs for DRA7xx
OMAPDSS: Add functions for external control of PLL
OMAPDSS: DSS: Add DRA7xx base support
Doc/DT: Add DT binding doc for DRA7xx DSS
OMAPDSS: add define for DRA7xx HW version
OMAPDSS: encoder-tpd12s015: Fix race issue with LS_OE
OMAPDSS: OMAP5: fix digit output's allowed mgrs
OMAPDSS: constify port arrays
OMAPDSS: PLL: add dss_pll_wait_reset_done()
OMAPDSS: Add enum dss_pll_id
video: fbdev: fix sys_copyarea
video/mmpfb: allow modular build
fb: via: turn gpiolib and i2c selects into dependencies
fbdev: ssd1307fb: return proper error code if write command fails
fbdev: fix CVT vertical front and back porch values
...
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fb.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h index 09bb7a18d287..043f3283b71c 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
| @@ -726,7 +726,9 @@ extern int fb_videomode_from_videomode(const struct videomode *vm, | |||
| 726 | struct fb_videomode *fbmode); | 726 | struct fb_videomode *fbmode); |
| 727 | 727 | ||
| 728 | /* drivers/video/modedb.c */ | 728 | /* drivers/video/modedb.c */ |
| 729 | #define VESA_MODEDB_SIZE 34 | 729 | #define VESA_MODEDB_SIZE 43 |
| 730 | #define DMT_SIZE 0x50 | ||
| 731 | |||
| 730 | extern void fb_var_to_videomode(struct fb_videomode *mode, | 732 | extern void fb_var_to_videomode(struct fb_videomode *mode, |
| 731 | const struct fb_var_screeninfo *var); | 733 | const struct fb_var_screeninfo *var); |
| 732 | extern void fb_videomode_to_var(struct fb_var_screeninfo *var, | 734 | extern void fb_videomode_to_var(struct fb_var_screeninfo *var, |
| @@ -777,9 +779,17 @@ struct fb_videomode { | |||
| 777 | u32 flag; | 779 | u32 flag; |
| 778 | }; | 780 | }; |
| 779 | 781 | ||
| 782 | struct dmt_videomode { | ||
| 783 | u32 dmt_id; | ||
| 784 | u32 std_2byte_code; | ||
| 785 | u32 cvt_3byte_code; | ||
| 786 | const struct fb_videomode *mode; | ||
| 787 | }; | ||
| 788 | |||
| 780 | extern const char *fb_mode_option; | 789 | extern const char *fb_mode_option; |
| 781 | extern const struct fb_videomode vesa_modes[]; | 790 | extern const struct fb_videomode vesa_modes[]; |
| 782 | extern const struct fb_videomode cea_modes[64]; | 791 | extern const struct fb_videomode cea_modes[64]; |
| 792 | extern const struct dmt_videomode dmt_modes[]; | ||
| 783 | 793 | ||
| 784 | struct fb_modelist { | 794 | struct fb_modelist { |
| 785 | struct list_head list; | 795 | struct list_head list; |
