blob: 19b8e9054a7573d3412f98b8de0274742d81de29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#ifndef __IRIS_HFI_GEN1_H__
#define __IRIS_HFI_GEN1_H__
struct iris_core;
struct iris_inst;
void iris_hfi_gen1_command_ops_init(struct iris_core *core);
void iris_hfi_gen1_response_ops_init(struct iris_core *core);
struct iris_inst *iris_hfi_gen1_get_instance(void);
#endif
|