2019-10-25 23:37:22 +08:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright © 2019 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __INTEL_REGION_LMEM_H
|
|
|
|
#define __INTEL_REGION_LMEM_H
|
|
|
|
|
2019-10-31 01:33:20 +08:00
|
|
|
struct drm_i915_private;
|
|
|
|
|
2019-10-25 23:37:22 +08:00
|
|
|
extern const struct intel_memory_region_ops intel_region_lmem_ops;
|
|
|
|
|
2019-10-31 01:33:20 +08:00
|
|
|
struct intel_memory_region *
|
|
|
|
intel_setup_fake_lmem(struct drm_i915_private *i915);
|
|
|
|
|
2019-10-25 23:37:22 +08:00
|
|
|
#endif /* !__INTEL_REGION_LMEM_H */
|