brintos

brintos / linux-shallow public Read only

0
0
Text · 351 B · 1c9e42a Raw
19 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2023 Intel Corporation4 */5 6#ifndef _XE_TILE_H_7#define _XE_TILE_H_8 9#include "xe_device_types.h"10 11struct xe_tile;12 13int xe_tile_init_early(struct xe_tile *tile, struct xe_device *xe, u8 id);14int xe_tile_init_noalloc(struct xe_tile *tile);15 16void xe_tile_migrate_wait(struct xe_tile *tile);17 18#endif19