blob: 0197a282460be6813416c1e85622f0fe0c4db6c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2022 Intel Corporation
*/
#ifndef _XE_WOPCM_H_
#define _XE_WOPCM_H_
#include "xe_wopcm_types.h"
struct xe_device;
int xe_wopcm_init(struct xe_wopcm *wopcm);
u32 xe_wopcm_size(struct xe_device *xe);
#endif
|