Lines Matching defs:dssdev

349 		struct omap_dss_device *dssdev;
430 static inline struct dsi_data *to_dsi_data(struct omap_dss_device *dssdev)
432 return dev_get_drvdata(dssdev->dev);
464 static void dsi_bus_lock(struct omap_dss_device *dssdev)
466 struct dsi_data *dsi = to_dsi_data(dssdev);
471 static void dsi_bus_unlock(struct omap_dss_device *dssdev)
473 struct dsi_data *dsi = to_dsi_data(dssdev);
2427 static void dsi_vc_enable_hs(struct omap_dss_device *dssdev, int channel,
2430 struct dsi_data *dsi = to_dsi_data(dssdev);
2551 static int dsi_vc_send_bta_sync(struct omap_dss_device *dssdev, int channel)
2553 struct dsi_data *dsi = to_dsi_data(dssdev);
2752 static int dsi_vc_dcs_write_nosync(struct omap_dss_device *dssdev, int channel,
2755 struct dsi_data *dsi = to_dsi_data(dssdev);
2761 static int dsi_vc_generic_write_nosync(struct omap_dss_device *dssdev, int channel,
2764 struct dsi_data *dsi = to_dsi_data(dssdev);
2770 static int dsi_vc_write_common(struct omap_dss_device *dssdev,
2774 struct dsi_data *dsi = to_dsi_data(dssdev);
2781 r = dsi_vc_send_bta_sync(dssdev, channel);
2800 static int dsi_vc_dcs_write(struct omap_dss_device *dssdev, int channel, u8 *data,
2803 return dsi_vc_write_common(dssdev, channel, data, len,
2807 static int dsi_vc_generic_write(struct omap_dss_device *dssdev, int channel, u8 *data,
2810 return dsi_vc_write_common(dssdev, channel, data, len,
2976 static int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
2979 struct dsi_data *dsi = to_dsi_data(dssdev);
2986 r = dsi_vc_send_bta_sync(dssdev, channel);
3006 static int dsi_vc_generic_read(struct omap_dss_device *dssdev, int channel,
3009 struct dsi_data *dsi = to_dsi_data(dssdev);
3016 r = dsi_vc_send_bta_sync(dssdev, channel);
3033 static int dsi_vc_set_max_rx_packet_size(struct omap_dss_device *dssdev, int channel,
3036 struct dsi_data *dsi = to_dsi_data(dssdev);
3666 static int dsi_configure_pins(struct omap_dss_device *dssdev,
3669 struct dsi_data *dsi = to_dsi_data(dssdev);
3732 static int dsi_enable_video_output(struct omap_dss_device *dssdev, int channel)
3734 struct dsi_data *dsi = to_dsi_data(dssdev);
3794 static void dsi_disable_video_output(struct omap_dss_device *dssdev, int channel)
3796 struct dsi_data *dsi = to_dsi_data(dssdev);
3945 static int dsi_update(struct omap_dss_device *dssdev, int channel,
3948 struct dsi_data *dsi = to_dsi_data(dssdev);
4153 static void dsi_display_enable(struct omap_dss_device *dssdev)
4155 struct dsi_data *dsi = to_dsi_data(dssdev);
4185 static void dsi_display_disable(struct omap_dss_device *dssdev,
4188 struct dsi_data *dsi = to_dsi_data(dssdev);
4208 static int dsi_enable_te(struct omap_dss_device *dssdev, bool enable)
4210 struct dsi_data *dsi = to_dsi_data(dssdev);
4695 static int dsi_set_config(struct omap_dss_device *dssdev,
4698 struct dsi_data *dsi = to_dsi_data(dssdev);
4807 static int dsi_request_vc(struct omap_dss_device *dssdev, int *channel)
4809 struct dsi_data *dsi = to_dsi_data(dssdev);
4813 if (!dsi->vc[i].dssdev) {
4814 dsi->vc[i].dssdev = dssdev;
4820 DSSERR("cannot get VC for display %s", dssdev->name);
4824 static int dsi_set_vc_id(struct omap_dss_device *dssdev, int channel, int vc_id)
4826 struct dsi_data *dsi = to_dsi_data(dssdev);
4838 if (dsi->vc[channel].dssdev != dssdev) {
4840 dssdev->name);
4849 static void dsi_release_vc(struct omap_dss_device *dssdev, int channel)
4851 struct dsi_data *dsi = to_dsi_data(dssdev);
4854 dsi->vc[channel].dssdev == dssdev) {
4855 dsi->vc[channel].dssdev = NULL;
5377 dsi->vc[i].dssdev = NULL;