mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-25 06:46:00 +00:00
video: mipi update panel platform data
Add new fields "lanes, format & mode_flags" to structure mipi_dsi_panel_plat. Signed-off-by: Yannick Fertre <yannick.fertre@st.com> Reviewed-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
parent
670eda3293
commit
36e66e3cd6
1 changed files with 6 additions and 0 deletions
|
@ -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
|
* struct mipi_dsi_panel_plat - DSI panel platform data
|
||||||
* @device: DSI peripheral device
|
* @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_panel_plat {
|
||||||
struct mipi_dsi_device *device;
|
struct mipi_dsi_device *device;
|
||||||
|
unsigned int lanes;
|
||||||
|
enum mipi_dsi_pixel_format format;
|
||||||
|
unsigned long mode_flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue