Lines Matching refs:gpu_addr
517 u64 gpu_addr; in ast_crtc_do_set_base() local
539 ret = ast_bo_pin(bo, TTM_PL_FLAG_VRAM, &gpu_addr); in ast_crtc_do_set_base()
553 ast_set_start_address_crt1(crtc, (u32)gpu_addr); in ast_crtc_do_set_base()
913 uint64_t gpu_addr; in ast_cursor_init() local
925 ret = ast_bo_pin(bo, TTM_PL_FLAG_VRAM, &gpu_addr); in ast_cursor_init()
936 ast->cursor_cache_gpu_addr = gpu_addr; in ast_cursor_init()
1144 uint64_t gpu_addr; in ast_cursor_set() local
1196 gpu_addr = ast->cursor_cache_gpu_addr; in ast_cursor_set()
1197 gpu_addr += (AST_HWC_SIZE + AST_HWC_SIGNATURE_SIZE)*ast->next_cursor; in ast_cursor_set()
1198 gpu_addr >>= 3; in ast_cursor_set()
1199 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc8, gpu_addr & 0xff); in ast_cursor_set()
1200 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc9, (gpu_addr >> 8) & 0xff); in ast_cursor_set()
1201 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xca, (gpu_addr >> 16) & 0xff); in ast_cursor_set()