/* SPDX-License-Identifier: MIT */ /* * Copyright © 2022 Intel Corporation */ #ifndef _XE_TTM_VRAM_MGR_TYPES_H_ #define _XE_TTM_VRAM_MGR_TYPES_H_ #include <drm/drm_buddy.h> #include <drm/ttm/ttm_device.h> struct xe_mem_region; /** * struct xe_ttm_vram_mgr - XE TTM VRAM manager * * Manages placement of TTM resource in VRAM. */ struct xe_ttm_vram_mgr { … }; /** * struct xe_ttm_vram_mgr_resource - XE TTM VRAM resource */ struct xe_ttm_vram_mgr_resource { … }; #endif