Symbol: ast_plane
drivers/gpu/drm/ast/ast_cursor.c
250
struct ast_plane *ast_plane = to_ast_plane(plane);
drivers/gpu/drm/ast/ast_cursor.c
257
u64 dst_off = ast_plane->offset;
drivers/gpu/drm/ast/ast_cursor.c
258
u8 __iomem *dst = ast_plane_vaddr(ast_plane); /* TODO: Use mapping abstraction properly */
drivers/gpu/drm/ast/ast_cursor.c
337
struct ast_plane *ast_plane = &ast_cursor_plane->base;
drivers/gpu/drm/ast/ast_cursor.c
338
struct drm_plane *cursor_plane = &ast_plane->base;
drivers/gpu/drm/ast/ast_cursor.c
348
ret = ast_plane_init(dev, ast_plane, offset, size,
drivers/gpu/drm/ast/ast_drv.h
131
static inline struct ast_plane *to_ast_plane(struct drm_plane *plane)
drivers/gpu/drm/ast/ast_drv.h
133
return container_of(plane, struct ast_plane, base);
drivers/gpu/drm/ast/ast_drv.h
137
struct ast_plane base;
drivers/gpu/drm/ast/ast_drv.h
209
struct ast_plane primary_plane;
drivers/gpu/drm/ast/ast_drv.h
557
int ast_plane_init(struct drm_device *dev, struct ast_plane *ast_plane,
drivers/gpu/drm/ast/ast_drv.h
564
void __iomem *ast_plane_vaddr(struct ast_plane *ast);
drivers/gpu/drm/ast/ast_mode.c
473
int ast_plane_init(struct drm_device *dev, struct ast_plane *ast_plane,
drivers/gpu/drm/ast/ast_mode.c
481
struct drm_plane *plane = &ast_plane->base;
drivers/gpu/drm/ast/ast_mode.c
483
ast_plane->offset = offset;
drivers/gpu/drm/ast/ast_mode.c
484
ast_plane->size = size;
drivers/gpu/drm/ast/ast_mode.c
491
void __iomem *ast_plane_vaddr(struct ast_plane *ast_plane)
drivers/gpu/drm/ast/ast_mode.c
493
struct ast_device *ast = to_ast_device(ast_plane->base.dev);
drivers/gpu/drm/ast/ast_mode.c
495
return ast->vram + ast_plane->offset;
drivers/gpu/drm/ast/ast_mode.c
541
static void ast_handle_damage(struct ast_plane *ast_plane, struct iosys_map *src,
drivers/gpu/drm/ast/ast_mode.c
546
struct iosys_map dst = IOSYS_MAP_INIT_VADDR_IOMEM(ast_plane_vaddr(ast_plane));
drivers/gpu/drm/ast/ast_mode.c
567
struct ast_plane *ast_plane = to_ast_plane(plane);
drivers/gpu/drm/ast/ast_mode.c
584
ast_handle_damage(ast_plane, shadow_plane_state->data, fb, &damage,
drivers/gpu/drm/ast/ast_mode.c
605
struct ast_plane *ast_plane = to_ast_plane(plane);
drivers/gpu/drm/ast/ast_mode.c
613
ast_set_start_address_crt1(ast, (u32)ast_plane->offset);
drivers/gpu/drm/ast/ast_mode.c
628
struct ast_plane *ast_plane = to_ast_plane(plane);
drivers/gpu/drm/ast/ast_mode.c
635
iosys_map_set_vaddr_iomem(&sb->map[0], ast_plane_vaddr(ast_plane));
drivers/gpu/drm/ast/ast_mode.c
660
struct ast_plane *ast_primary_plane = &ast->primary_plane;