Lines Matching refs:global_ref
79 struct drm_global_reference *global_ref; in radeon_ttm_global_init() local
83 global_ref = &rdev->mman.mem_global_ref; in radeon_ttm_global_init()
84 global_ref->global_type = DRM_GLOBAL_TTM_MEM; in radeon_ttm_global_init()
85 global_ref->size = sizeof(struct ttm_mem_global); in radeon_ttm_global_init()
86 global_ref->init = &radeon_ttm_mem_global_init; in radeon_ttm_global_init()
87 global_ref->release = &radeon_ttm_mem_global_release; in radeon_ttm_global_init()
88 r = drm_global_item_ref(global_ref); in radeon_ttm_global_init()
97 global_ref = &rdev->mman.bo_global_ref.ref; in radeon_ttm_global_init()
98 global_ref->global_type = DRM_GLOBAL_TTM_BO; in radeon_ttm_global_init()
99 global_ref->size = sizeof(struct ttm_bo_global); in radeon_ttm_global_init()
100 global_ref->init = &ttm_bo_global_init; in radeon_ttm_global_init()
101 global_ref->release = &ttm_bo_global_release; in radeon_ttm_global_init()
102 r = drm_global_item_ref(global_ref); in radeon_ttm_global_init()