Lines Matching refs:lsdc_crtc
105 struct lsdc_crtc;
108 void (*enable)(struct lsdc_crtc *lcrtc);
109 void (*disable)(struct lsdc_crtc *lcrtc);
110 void (*enable_vblank)(struct lsdc_crtc *lcrtc);
111 void (*disable_vblank)(struct lsdc_crtc *lcrtc);
112 void (*flip)(struct lsdc_crtc *lcrtc);
113 void (*clone)(struct lsdc_crtc *lcrtc);
114 void (*get_scan_pos)(struct lsdc_crtc *lcrtc, int *hpos, int *vpos);
115 void (*set_mode)(struct lsdc_crtc *lcrtc, const struct drm_display_mode *mode);
116 void (*soft_reset)(struct lsdc_crtc *lcrtc);
117 void (*reset)(struct lsdc_crtc *lcrtc);
119 u32 (*get_vblank_counter)(struct lsdc_crtc *lcrtc);
120 void (*set_dma_step)(struct lsdc_crtc *lcrtc, enum lsdc_dma_steps step);
123 struct lsdc_crtc { struct
188 struct lsdc_crtc crtc;
230 static inline struct lsdc_crtc *
233 return container_of(crtc, struct lsdc_crtc, base); in to_lsdc_crtc()