-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-linus' of git://gitorious.org/linux-omap-dss2/linux
* 'for-linus' of git://gitorious.org/linux-omap-dss2/linux: (64 commits) OMAP: DSS2: OMAPFB: add support for FBIO_WAITFORVSYNC OMAP: DSS2: Replace strncmp() with sysfs_streq() in overlay_manager_store() OMAP: DSS2: Fix error path in omap_dsi_update() OMAP: DSS2: TDO35S: fix video signaling OMAP: DSS2: OMAPFB: Fix invalid bpp for PAL and NTSC modes OMAP: DSS2: OMAPFB: Fix probe error path OMAP3EVM: Replace vdvi regulator supply with vdds_dsi OMAP: DSS2: Remove extra return statement OMAP: DSS2: adjust YUV overlay width to be even OMAP: DSS2: OMAPFB: Fix sysfs mirror input check OMAP: DSS2: OMAPFB: Remove redundant color register range check OMAP: DSS2: OMAPFB: Remove redundant rotate range check OMAP: DSS2: OMAPFB: Check fb2display() return value OMAP: DSS2: Taal: Optimize enable_te, rotate, mirror when value unchanged OMAP: DSS2: DSI: detect unsupported update requests OMAP: DSS2: DSI: increase FIFO low threshold OMAP: DSS2: DSI: Add error IRQ mask for DSI complexIO OMAP: DSS2: DSI: Remove BTA after set_max_rx_packet_size OMAP: DSS2: change manual update scaling setup OMAP: DSS2: DSI: use BTA to end the frame transfer ...
- Loading branch information
Showing
18 changed files
with
1,265 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#ifndef __ARCH_ARM_PLAT_OMAP_NOKIA_DSI_PANEL_H | ||
#define __ARCH_ARM_PLAT_OMAP_NOKIA_DSI_PANEL_H | ||
|
||
#include "display.h" | ||
|
||
/** | ||
* struct nokia_dsi_panel_data - Nokia DSI panel driver configuration | ||
* @name: panel name | ||
* @use_ext_te: use external TE | ||
* @ext_te_gpio: external TE GPIO | ||
* @use_esd_check: perform ESD checks | ||
* @max_backlight_level: maximum backlight level | ||
* @set_backlight: pointer to backlight set function | ||
* @get_backlight: pointer to backlight get function | ||
*/ | ||
struct nokia_dsi_panel_data { | ||
const char *name; | ||
|
||
int reset_gpio; | ||
|
||
bool use_ext_te; | ||
int ext_te_gpio; | ||
|
||
bool use_esd_check; | ||
|
||
int max_backlight_level; | ||
int (*set_backlight)(struct omap_dss_device *dssdev, int level); | ||
int (*get_backlight)(struct omap_dss_device *dssdev); | ||
}; | ||
|
||
#endif /* __ARCH_ARM_PLAT_OMAP_NOKIA_DSI_PANEL_H */ |
Oops, something went wrong.