Lines Matching defs:omap_dss_driver
725 struct omap_dss_driver { struct
726 int (*probe)(struct omap_dss_device *);
727 void (*remove)(struct omap_dss_device *);
729 int (*connect)(struct omap_dss_device *dssdev);
730 void (*disconnect)(struct omap_dss_device *dssdev);
732 int (*enable)(struct omap_dss_device *display);
733 void (*disable)(struct omap_dss_device *display);
734 int (*run_test)(struct omap_dss_device *display, int test);
736 int (*update)(struct omap_dss_device *dssdev,
738 int (*sync)(struct omap_dss_device *dssdev);
740 int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
741 int (*get_te)(struct omap_dss_device *dssdev);
743 u8 (*get_rotate)(struct omap_dss_device *dssdev);
744 int (*set_rotate)(struct omap_dss_device *dssdev, u8 rotate);
746 bool (*get_mirror)(struct omap_dss_device *dssdev);
747 int (*set_mirror)(struct omap_dss_device *dssdev, bool enable);
749 int (*memory_read)(struct omap_dss_device *dssdev,
753 void (*get_resolution)(struct omap_dss_device *dssdev,
755 void (*get_dimensions)(struct omap_dss_device *dssdev,
757 int (*get_recommended_bpp)(struct omap_dss_device *dssdev);
759 int (*check_timings)(struct omap_dss_device *dssdev,
761 void (*set_timings)(struct omap_dss_device *dssdev,
786 int omap_dss_register_driver(struct omap_dss_driver *); argument