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
541
int ast_plane_init(struct drm_device *dev, struct ast_plane *ast_plane,
drivers/gpu/drm/ast/ast_drv.h
548
void __iomem *ast_plane_vaddr(struct ast_plane *ast);
drivers/gpu/drm/ast/ast_mode.c
460
int ast_plane_init(struct drm_device *dev, struct ast_plane *ast_plane,
drivers/gpu/drm/ast/ast_mode.c
468
struct drm_plane *plane = &ast_plane->base;
drivers/gpu/drm/ast/ast_mode.c
470
ast_plane->offset = offset;
drivers/gpu/drm/ast/ast_mode.c
471
ast_plane->size = size;
drivers/gpu/drm/ast/ast_mode.c
478
void __iomem *ast_plane_vaddr(struct ast_plane *ast_plane)
drivers/gpu/drm/ast/ast_mode.c
480
struct ast_device *ast = to_ast_device(ast_plane->base.dev);
drivers/gpu/drm/ast/ast_mode.c
482
return ast->vram + ast_plane->offset;
drivers/gpu/drm/ast/ast_mode.c
527
static void ast_handle_damage(struct ast_plane *ast_plane, struct iosys_map *src,
drivers/gpu/drm/ast/ast_mode.c
532
struct iosys_map dst = IOSYS_MAP_INIT_VADDR_IOMEM(ast_plane_vaddr(ast_plane));
drivers/gpu/drm/ast/ast_mode.c
553
struct ast_plane *ast_plane = to_ast_plane(plane);
drivers/gpu/drm/ast/ast_mode.c
570
ast_handle_damage(ast_plane, shadow_plane_state->data, fb, &damage,
drivers/gpu/drm/ast/ast_mode.c
591
struct ast_plane *ast_plane = to_ast_plane(plane);
drivers/gpu/drm/ast/ast_mode.c
599
ast_set_start_address_crt1(ast, (u32)ast_plane->offset);
drivers/gpu/drm/ast/ast_mode.c
614
struct ast_plane *ast_plane = to_ast_plane(plane);
drivers/gpu/drm/ast/ast_mode.c
621
iosys_map_set_vaddr_iomem(&sb->map[0], ast_plane_vaddr(ast_plane));
drivers/gpu/drm/ast/ast_mode.c
646
struct ast_plane *ast_primary_plane = &ast->primary_plane;