mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-28 09:19:14 +00:00
We have recently introduced tile for each gpu, so lets add sysfs entry per tile for userspace to provide required information specific to tile. V5: - define ktype as const V4: - Reorder headers - Aravind V3: - Make API to return void and add drm_warn - Aravind V2: - Add logs in failure path Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
19 lines
317 B
C
19 lines
317 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_TILE_H_
|
|
#define _XE_TILE_H_
|
|
|
|
#include "xe_device_types.h"
|
|
|
|
struct xe_tile;
|
|
|
|
int xe_tile_alloc(struct xe_tile *tile);
|
|
int xe_tile_init_noalloc(struct xe_tile *tile);
|
|
|
|
void xe_tile_migrate_wait(struct xe_tile *tile);
|
|
|
|
#endif
|