Lines Matching defs:omap_dss_driver
689 struct omap_dss_driver { struct
690 int (*probe)(struct omap_dss_device *);
691 void (*remove)(struct omap_dss_device *);
693 int (*connect)(struct omap_dss_device *dssdev);
694 void (*disconnect)(struct omap_dss_device *dssdev);
696 int (*enable)(struct omap_dss_device *display);
697 void (*disable)(struct omap_dss_device *display);
698 int (*run_test)(struct omap_dss_device *display, int test);
700 int (*update)(struct omap_dss_device *dssdev,
702 int (*sync)(struct omap_dss_device *dssdev);
704 int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
705 int (*get_te)(struct omap_dss_device *dssdev);
707 u8 (*get_rotate)(struct omap_dss_device *dssdev);
708 int (*set_rotate)(struct omap_dss_device *dssdev, u8 rotate);
710 bool (*get_mirror)(struct omap_dss_device *dssdev);
711 int (*set_mirror)(struct omap_dss_device *dssdev, bool enable);
713 int (*memory_read)(struct omap_dss_device *dssdev,
717 void (*get_resolution)(struct omap_dss_device *dssdev,
719 void (*get_dimensions)(struct omap_dss_device *dssdev,
721 int (*get_recommended_bpp)(struct omap_dss_device *dssdev);
723 int (*check_timings)(struct omap_dss_device *dssdev,
725 void (*set_timings)(struct omap_dss_device *dssdev,
750 int omap_dss_register_driver(struct omap_dss_driver *); argument