1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2023 Intel Corporation 4 */ 5 6 #ifndef _XE_TILE_H_ 7 #define _XE_TILE_H_ 8 9 struct xe_tile; 10 11 int xe_tile_alloc(struct xe_tile *tile); 12 int xe_tile_init_noalloc(struct xe_tile *tile); 13 14 void xe_tile_migrate_wait(struct xe_tile *tile); 15 16 #endif 17