mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
18 lines
484 B
C
18 lines
484 B
C
![]() |
/* SPDX-License-Identifier: MIT */
|
||
|
/*
|
||
|
* Copyright © 2019 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef __INTEL_CSR_H__
|
||
|
#define __INTEL_CSR_H__
|
||
|
|
||
|
struct drm_i915_private;
|
||
|
|
||
|
void intel_csr_ucode_init(struct drm_i915_private *i915);
|
||
|
void intel_csr_load_program(struct drm_i915_private *i915);
|
||
|
void intel_csr_ucode_fini(struct drm_i915_private *i915);
|
||
|
void intel_csr_ucode_suspend(struct drm_i915_private *i915);
|
||
|
void intel_csr_ucode_resume(struct drm_i915_private *i915);
|
||
|
|
||
|
#endif /* __INTEL_CSR_H__ */
|