Lines Matching defs:drm
8 #include <drm/drm_atomic_helper.h>
9 #include <drm/drm_device.h>
10 #include <drm/drm_fb_cma_helper.h>
11 #include <drm/drm_gem_cma_helper.h>
12 #include <drm/drm_plane_helper.h>
13 #include <drm/drm_probe_helper.h>
179 static struct drm_plane *arc_pgu_plane_init(struct drm_device *drm)
181 struct arcpgu_drm_private *arcpgu = drm->dev_private;
185 plane = devm_kzalloc(drm->dev, sizeof(*plane), GFP_KERNEL);
189 ret = drm_universal_plane_init(drm, plane, 0xff, &arc_pgu_plane_funcs,
203 int arc_pgu_setup_crtc(struct drm_device *drm)
205 struct arcpgu_drm_private *arcpgu = drm->dev_private;
209 primary = arc_pgu_plane_init(drm);
213 ret = drm_crtc_init_with_planes(drm, &arcpgu->crtc, primary, NULL,