diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-07-21 21:03:10 -0500 |
---|---|---|
committer | Ziyan <jaraidaniel@gmail.com> | 2015-04-18 01:24:20 +0200 |
commit | 5731d74f3f7ed15625e83d96cc470b62b5714f60 (patch) | |
tree | 55b85c0aaccfc32d4c230ffda0eb114a1404dde4 /include | |
parent | aa3055605bea9d4277225b722546c19af9d364f6 (diff) | |
download | kernel_samsung_tuna-5731d74f3f7ed15625e83d96cc470b62b5714f60.zip kernel_samsung_tuna-5731d74f3f7ed15625e83d96cc470b62b5714f60.tar.gz kernel_samsung_tuna-5731d74f3f7ed15625e83d96cc470b62b5714f60.tar.bz2 |
[Tablet] DSI Changes for tablet2
Modify the DSI layer for the tablet2 panel
Change-Id: I00b430755c1776819de773e389b7d2814c24dd01
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/video/omapdss.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 802e3c2..352640d 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -264,12 +264,22 @@ int dsi_vc_dcs_read_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, u8 *data); int dsi_vc_dcs_read_2(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, u8 *data1, u8 *data2); +int dsi_vc_gen_write_nosync(struct omap_dss_device *dssdev, int channel, + u8 *data, int len); +int dsi_vc_gen_write(struct omap_dss_device *dssdev, int channel, + u8 *data, int len); int dsi_vc_set_max_rx_packet_size(struct omap_dss_device *dssdev, int channel, u16 len); int dsi_vc_send_null(struct omap_dss_device *dssdev, int channel); int dsi_vc_send_bta_sync(struct omap_dss_device *dssdev, int channel); int dsi_video_mode_enable(struct omap_dss_device *dssdev, u8 data_type); +void dsi_video_mode_disable(struct omap_dss_device *dssdev); + +int dsi_vc_gen_read_2(struct omap_dss_device *dssdev, int channel, u16 cmd, + u8 *buf, int buflen); +void dsi_videomode_panel_preinit(struct omap_dss_device *dssdev); + /* Board specific data */ struct omap_dss_board_info { |