mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-28 19:14:35 -04:00
With the intermediate state gone, no longer useful. Just check against NULL where needed. After looking carefully, the check for allocated in xe_fb_pin.c is unneeded. vma->node is never NULL. The check is specifically only to check if vma->node == the bo's root tile ggtt_obj. Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Link: https://patch.msgid.link/20260206112108.1453809-12-dev@lankhorst.se Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
64 lines
2.2 KiB
C
64 lines
2.2 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_GGTT_H_
|
|
#define _XE_GGTT_H_
|
|
|
|
#include "xe_ggtt_types.h"
|
|
|
|
struct drm_printer;
|
|
struct xe_bo;
|
|
struct xe_tile;
|
|
struct drm_exec;
|
|
|
|
struct xe_ggtt *xe_ggtt_alloc(struct xe_tile *tile);
|
|
int xe_ggtt_init_early(struct xe_ggtt *ggtt);
|
|
int xe_ggtt_init_kunit(struct xe_ggtt *ggtt, u32 reserved, u32 size);
|
|
int xe_ggtt_init(struct xe_ggtt *ggtt);
|
|
|
|
void xe_ggtt_shift_nodes(struct xe_ggtt *ggtt, u64 new_base);
|
|
u64 xe_ggtt_start(struct xe_ggtt *ggtt);
|
|
u64 xe_ggtt_size(struct xe_ggtt *ggtt);
|
|
|
|
struct xe_ggtt_node *
|
|
xe_ggtt_insert_node(struct xe_ggtt *ggtt, u32 size, u32 align);
|
|
struct xe_ggtt_node *
|
|
xe_ggtt_insert_node_transform(struct xe_ggtt *ggtt,
|
|
struct xe_bo *bo, u64 pte,
|
|
u64 size, u32 align,
|
|
xe_ggtt_transform_cb transform, void *arg);
|
|
void xe_ggtt_node_remove(struct xe_ggtt_node *node, bool invalidate);
|
|
size_t xe_ggtt_node_pt_size(const struct xe_ggtt_node *node);
|
|
void xe_ggtt_map_bo_unlocked(struct xe_ggtt *ggtt, struct xe_bo *bo);
|
|
int xe_ggtt_insert_bo(struct xe_ggtt *ggtt, struct xe_bo *bo, struct drm_exec *exec);
|
|
int xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo,
|
|
u64 start, u64 end, struct drm_exec *exec);
|
|
void xe_ggtt_remove_bo(struct xe_ggtt *ggtt, struct xe_bo *bo);
|
|
u64 xe_ggtt_largest_hole(struct xe_ggtt *ggtt, u64 alignment, u64 *spare);
|
|
|
|
int xe_ggtt_dump(struct xe_ggtt *ggtt, struct drm_printer *p);
|
|
u64 xe_ggtt_print_holes(struct xe_ggtt *ggtt, u64 alignment, struct drm_printer *p);
|
|
|
|
#ifdef CONFIG_PCI_IOV
|
|
void xe_ggtt_assign(const struct xe_ggtt_node *node, u16 vfid);
|
|
int xe_ggtt_node_save(struct xe_ggtt_node *node, void *dst, size_t size, u16 vfid);
|
|
int xe_ggtt_node_load(struct xe_ggtt_node *node, const void *src, size_t size, u16 vfid);
|
|
#endif
|
|
|
|
#ifndef CONFIG_LOCKDEP
|
|
static inline void xe_ggtt_might_lock(struct xe_ggtt *ggtt)
|
|
{ }
|
|
#else
|
|
void xe_ggtt_might_lock(struct xe_ggtt *ggtt);
|
|
#endif
|
|
|
|
u64 xe_ggtt_encode_pte_flags(struct xe_ggtt *ggtt, struct xe_bo *bo, u16 pat_index);
|
|
u64 xe_ggtt_read_pte(struct xe_ggtt *ggtt, u64 offset);
|
|
|
|
u64 xe_ggtt_node_addr(const struct xe_ggtt_node *node);
|
|
u64 xe_ggtt_node_size(const struct xe_ggtt_node *node);
|
|
|
|
#endif
|