Lines Matching refs:drm_panel
33 struct drm_panel;
71 int (*disable)(struct drm_panel *panel);
72 int (*unprepare)(struct drm_panel *panel);
73 int (*prepare)(struct drm_panel *panel);
74 int (*enable)(struct drm_panel *panel);
75 int (*get_modes)(struct drm_panel *panel);
76 int (*get_timings)(struct drm_panel *panel, unsigned int num_timings,
88 struct drm_panel { struct
109 static inline int drm_panel_unprepare(struct drm_panel *panel) in drm_panel_unprepare() argument
127 static inline int drm_panel_disable(struct drm_panel *panel) in drm_panel_disable()
145 static inline int drm_panel_prepare(struct drm_panel *panel) in drm_panel_prepare()
163 static inline int drm_panel_enable(struct drm_panel *panel) in drm_panel_enable()
181 static inline int drm_panel_get_modes(struct drm_panel *panel) in drm_panel_get_modes()
189 void drm_panel_init(struct drm_panel *panel);
191 int drm_panel_add(struct drm_panel *panel);
192 void drm_panel_remove(struct drm_panel *panel);
194 int drm_panel_attach(struct drm_panel *panel, struct drm_connector *connector);
195 int drm_panel_detach(struct drm_panel *panel);
198 struct drm_panel *of_drm_find_panel(const struct device_node *np);
200 static inline struct drm_panel *of_drm_find_panel(const struct device_node *np) in of_drm_find_panel()