hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2019 Intel Corporation
 */
#ifndef __I915_GEM_CLIENT_BLT_H__
#define __I915_GEM_CLIENT_BLT_H__
 
#include <linux/types.h>
 
struct drm_i915_gem_object;
struct i915_page_sizes;
struct intel_context;
struct sg_table;
 
int i915_gem_schedule_fill_pages_blt(struct drm_i915_gem_object *obj,
                    struct intel_context *ce,
                    struct sg_table *pages,
                    struct i915_page_sizes *page_sizes,
                    u32 value);
 
#endif