Home
last modified time | relevance | path

Searched refs:ast_fb (Results 1 – 4 of 4) sorted by relevance

/drivers/gpu/drm/ast/
Dast_main.c365 struct ast_framebuffer *ast_fb = to_ast_framebuffer(fb); in ast_user_framebuffer_destroy() local
367 drm_gem_object_unreference_unlocked(ast_fb->obj); in ast_user_framebuffer_destroy()
378 struct ast_framebuffer *ast_fb, in ast_framebuffer_init() argument
384 drm_helper_mode_fill_fb_struct(&ast_fb->base, mode_cmd); in ast_framebuffer_init()
385 ast_fb->obj = obj; in ast_framebuffer_init()
386 ret = drm_framebuffer_init(dev, &ast_fb->base, &ast_fb_funcs); in ast_framebuffer_init()
400 struct ast_framebuffer *ast_fb; in ast_user_framebuffer_create() local
407 ast_fb = kzalloc(sizeof(*ast_fb), GFP_KERNEL); in ast_user_framebuffer_create()
408 if (!ast_fb) { in ast_user_framebuffer_create()
413 ret = ast_framebuffer_init(dev, ast_fb, mode_cmd, obj); in ast_user_framebuffer_create()
[all …]
DMakefile7 ast-y := ast_drv.o ast_main.o ast_mode.o ast_fb.o ast_ttm.o ast_post.o ast_dp501.o
Dast_mode.c507 struct ast_framebuffer *ast_fb; in ast_crtc_do_set_base() local
514 ast_fb = to_ast_framebuffer(fb); in ast_crtc_do_set_base()
515 obj = ast_fb->obj; in ast_crtc_do_set_base()
524 ast_fb = to_ast_framebuffer(crtc->primary->fb); in ast_crtc_do_set_base()
525 obj = ast_fb->obj; in ast_crtc_do_set_base()
538 if (&ast->fbdev->afb == ast_fb) { in ast_crtc_do_set_base()
Dast_drv.h315 struct ast_framebuffer *ast_fb,