mirror of
https://github.com/torvalds/linux.git
synced 2026-04-28 03:22:27 -04:00
intel_bo.[ch] is not the appropriate location for the panic functionality. Split out intel_panic.[ch] and xe_panic.c in i915 and xe. Keep the function names for now. Cc: Jocelyn Falempe <jfalempe@redhat.com> Cc: Maarten Lankhorst <dev@lankhorst.se> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com> Link: https://lore.kernel.org/r/d98b831a011a028ffd33ce99b0ba62be061ee235.1756835342.git.jani.nikula@intel.com
62 lines
1.5 KiB
C
62 lines
1.5 KiB
C
// SPDX-License-Identifier: MIT
|
|
/* Copyright © 2024 Intel Corporation */
|
|
|
|
#include <drm/drm_panic.h>
|
|
|
|
#include "gem/i915_gem_mman.h"
|
|
#include "gem/i915_gem_object.h"
|
|
#include "gem/i915_gem_object_frontbuffer.h"
|
|
#include "i915_debugfs.h"
|
|
#include "intel_bo.h"
|
|
|
|
bool intel_bo_is_tiled(struct drm_gem_object *obj)
|
|
{
|
|
return i915_gem_object_is_tiled(to_intel_bo(obj));
|
|
}
|
|
|
|
bool intel_bo_is_userptr(struct drm_gem_object *obj)
|
|
{
|
|
return i915_gem_object_is_userptr(to_intel_bo(obj));
|
|
}
|
|
|
|
bool intel_bo_is_shmem(struct drm_gem_object *obj)
|
|
{
|
|
return i915_gem_object_is_shmem(to_intel_bo(obj));
|
|
}
|
|
|
|
bool intel_bo_is_protected(struct drm_gem_object *obj)
|
|
{
|
|
return i915_gem_object_is_protected(to_intel_bo(obj));
|
|
}
|
|
|
|
void intel_bo_flush_if_display(struct drm_gem_object *obj)
|
|
{
|
|
i915_gem_object_flush_if_display(to_intel_bo(obj));
|
|
}
|
|
|
|
int intel_bo_fb_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
|
|
{
|
|
return i915_gem_fb_mmap(to_intel_bo(obj), vma);
|
|
}
|
|
|
|
int intel_bo_read_from_page(struct drm_gem_object *obj, u64 offset, void *dst, int size)
|
|
{
|
|
return i915_gem_object_read_from_page(to_intel_bo(obj), offset, dst, size);
|
|
}
|
|
|
|
struct intel_frontbuffer *intel_bo_get_frontbuffer(struct drm_gem_object *obj)
|
|
{
|
|
return i915_gem_object_get_frontbuffer(to_intel_bo(obj));
|
|
}
|
|
|
|
struct intel_frontbuffer *intel_bo_set_frontbuffer(struct drm_gem_object *obj,
|
|
struct intel_frontbuffer *front)
|
|
{
|
|
return i915_gem_object_set_frontbuffer(to_intel_bo(obj), front);
|
|
}
|
|
|
|
void intel_bo_describe(struct seq_file *m, struct drm_gem_object *obj)
|
|
{
|
|
i915_debugfs_describe_obj(m, to_intel_bo(obj));
|
|
}
|