summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-06-28 10:12:25 -0400
committerTom Rini <trini@konsulko.com>2020-06-28 10:12:25 -0400
commit19a7e5814b77b288472aa96b6d94fb2591cc9184 (patch)
tree63d44b846dca34b1fd237eae392f748a1212fb65 /include
parent5f99ba1e24693eb881c2eb673f78ee241056f825 (diff)
parentbccb385a83a5f9ee603a30de1d39b03fd6f45b23 (diff)
Merge tag 'fixes-for-v2020.07' of https://gitlab.denx.de/u-boot/custodians/u-boot-video
- fix logo on mx6ul_14x14_evk with DM_VIDEO enabled - fix banner string overwriting the logo on small displays - fix splash warning when building for ARM64 - fix STM32 DSI driver to probe only on supported hardware - fix memory corruption with DSI panel drivers
Diffstat (limited to 'include')
-rw-r--r--include/mipi_dsi.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mipi_dsi.h b/include/mipi_dsi.h
index 83c5163cf8..c8a7d3daef 100644
--- a/include/mipi_dsi.h
+++ b/include/mipi_dsi.h
@@ -221,9 +221,15 @@ static inline int mipi_dsi_pixel_format_to_bpp(enum mipi_dsi_pixel_format fmt)
/**
* struct mipi_dsi_panel_plat - DSI panel platform data
* @device: DSI peripheral device
+ * @lanes: number of active data lanes
+ * @format: pixel format for video mode
+ * @mode_flags: DSI operation mode related flags
*/
struct mipi_dsi_panel_plat {
struct mipi_dsi_device *device;
+ unsigned int lanes;
+ enum mipi_dsi_pixel_format format;
+ unsigned long mode_flags;
};
/**