aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2013-05-15 04:24:30 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-08-29 09:21:52 -0400
commit5cfc1c3cb6f0a5875ea18cc8ea6e0ac4bdde6b95 (patch)
tree09af4fef460e8b5878bd63507fcddc926249da49 /include
parent164ebdd1107ad1150033acd0e76e4f16456b5ca6 (diff)
OMAPDSS: DSI: remove code related to old panel model
Now that the old panel drivers have been removed, we can remove the old-model API and related code from the DSS encoder drivers. This patch removes the code from the DSI driver. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Reviewed-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'include')
-rw-r--r--include/video/omapdss.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h
index 1199e3beb7be..6d7297fb89db 100644
--- a/include/video/omapdss.h
+++ b/include/video/omapdss.h
@@ -321,39 +321,6 @@ struct omap_dss_dsi_config {
321 enum omap_dss_dsi_trans_mode trans_mode; 321 enum omap_dss_dsi_trans_mode trans_mode;
322}; 322};
323 323
324void dsi_bus_lock(struct omap_dss_device *dssdev);
325void dsi_bus_unlock(struct omap_dss_device *dssdev);
326int dsi_vc_dcs_write(struct omap_dss_device *dssdev, int channel, u8 *data,
327 int len);
328int dsi_vc_generic_write(struct omap_dss_device *dssdev, int channel, u8 *data,
329 int len);
330int dsi_vc_dcs_write_0(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd);
331int dsi_vc_generic_write_0(struct omap_dss_device *dssdev, int channel);
332int dsi_vc_dcs_write_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
333 u8 param);
334int dsi_vc_generic_write_1(struct omap_dss_device *dssdev, int channel,
335 u8 param);
336int dsi_vc_generic_write_2(struct omap_dss_device *dssdev, int channel,
337 u8 param1, u8 param2);
338int dsi_vc_dcs_write_nosync(struct omap_dss_device *dssdev, int channel,
339 u8 *data, int len);
340int dsi_vc_generic_write_nosync(struct omap_dss_device *dssdev, int channel,
341 u8 *data, int len);
342int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
343 u8 *buf, int buflen);
344int dsi_vc_generic_read_0(struct omap_dss_device *dssdev, int channel, u8 *buf,
345 int buflen);
346int dsi_vc_generic_read_1(struct omap_dss_device *dssdev, int channel, u8 param,
347 u8 *buf, int buflen);
348int dsi_vc_generic_read_2(struct omap_dss_device *dssdev, int channel,
349 u8 param1, u8 param2, u8 *buf, int buflen);
350int dsi_vc_set_max_rx_packet_size(struct omap_dss_device *dssdev, int channel,
351 u16 len);
352int dsi_vc_send_null(struct omap_dss_device *dssdev, int channel);
353int dsi_vc_send_bta_sync(struct omap_dss_device *dssdev, int channel);
354int dsi_enable_video_output(struct omap_dss_device *dssdev, int channel);
355void dsi_disable_video_output(struct omap_dss_device *dssdev, int channel);
356
357enum omapdss_version { 324enum omapdss_version {
358 OMAPDSS_VER_UNKNOWN = 0, 325 OMAPDSS_VER_UNKNOWN = 0,
359 OMAPDSS_VER_OMAP24xx, 326 OMAPDSS_VER_OMAP24xx,
@@ -1020,24 +987,6 @@ int dispc_ovl_setup(enum omap_plane plane, const struct omap_overlay_info *oi,
1020#define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver) 987#define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver)
1021#define to_dss_device(x) container_of((x), struct omap_dss_device, old_dev) 988#define to_dss_device(x) container_of((x), struct omap_dss_device, old_dev)
1022 989
1023void omapdss_dsi_vc_enable_hs(struct omap_dss_device *dssdev, int channel,
1024 bool enable);
1025int omapdss_dsi_enable_te(struct omap_dss_device *dssdev, bool enable);
1026int omapdss_dsi_set_config(struct omap_dss_device *dssdev,
1027 const struct omap_dss_dsi_config *config);
1028
1029int omap_dsi_update(struct omap_dss_device *dssdev, int channel,
1030 void (*callback)(int, void *), void *data);
1031int omap_dsi_request_vc(struct omap_dss_device *dssdev, int *channel);
1032int omap_dsi_set_vc_id(struct omap_dss_device *dssdev, int channel, int vc_id);
1033void omap_dsi_release_vc(struct omap_dss_device *dssdev, int channel);
1034int omapdss_dsi_configure_pins(struct omap_dss_device *dssdev,
1035 const struct omap_dsi_pin_config *pin_cfg);
1036
1037int omapdss_dsi_display_enable(struct omap_dss_device *dssdev);
1038void omapdss_dsi_display_disable(struct omap_dss_device *dssdev,
1039 bool disconnect_lanes, bool enter_ulps);
1040
1041int omapdss_sdi_display_enable(struct omap_dss_device *dssdev); 990int omapdss_sdi_display_enable(struct omap_dss_device *dssdev);
1042void omapdss_sdi_display_disable(struct omap_dss_device *dssdev); 991void omapdss_sdi_display_disable(struct omap_dss_device *dssdev);
1043void omapdss_sdi_set_timings(struct omap_dss_device *dssdev, 992void omapdss_sdi_set_timings(struct omap_dss_device *dssdev,