Lines Matching refs:drm_panel
31 struct drm_panel;
69 int (*disable)(struct drm_panel *panel);
70 int (*unprepare)(struct drm_panel *panel);
71 int (*prepare)(struct drm_panel *panel);
72 int (*enable)(struct drm_panel *panel);
73 int (*get_modes)(struct drm_panel *panel);
74 int (*get_timings)(struct drm_panel *panel, unsigned int num_timings,
78 struct drm_panel { struct
88 static inline int drm_panel_unprepare(struct drm_panel *panel) in drm_panel_unprepare() argument
96 static inline int drm_panel_disable(struct drm_panel *panel) in drm_panel_disable()
104 static inline int drm_panel_prepare(struct drm_panel *panel) in drm_panel_prepare()
112 static inline int drm_panel_enable(struct drm_panel *panel) in drm_panel_enable()
120 static inline int drm_panel_get_modes(struct drm_panel *panel) in drm_panel_get_modes()
128 void drm_panel_init(struct drm_panel *panel);
130 int drm_panel_add(struct drm_panel *panel);
131 void drm_panel_remove(struct drm_panel *panel);
133 int drm_panel_attach(struct drm_panel *panel, struct drm_connector *connector);
134 int drm_panel_detach(struct drm_panel *panel);
137 struct drm_panel *of_drm_find_panel(struct device_node *np);
139 static inline struct drm_panel *of_drm_find_panel(struct device_node *np) in of_drm_find_panel()