1# Neural network accelerator driver configuration options
2
3# Copyright (c) 2018 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig INTEL_GNA
7	bool "Intel GNA Inferencing Engine"
8	help
9	  Enable support for Intel's GMM and Neural Network Accelerator
10
11if INTEL_GNA
12
13config INTEL_GNA_INIT_PRIORITY
14	int "Init priority"
15	default 99
16	help
17	  Device driver initialization priority.
18
19config INTEL_GNA_MAX_MODELS
20	int "Max number of neural network models supported by driver"
21	default 4
22	help
23	  Max. number of unique neural network models required in the system
24
25config INTEL_GNA_MAX_PENDING_REQUESTS
26	int "Max number of pending inference requests"
27	default 4
28	help
29	  Maximum number of pending inference requests in the driver
30
31config INTEL_GNA_POWER_MODE
32	int "GNA operation mode"
33	default 0
34	range 0 3
35	help
36	  Sets GNA operation mode for power saving
37	  Levels are:
38	  0 ALWAYS_ON, GNA is always on with very minimal power save
39	  1 CLOCK_GATED, GNA clock is gated when not active
40	  2 POWER_GATED, GNA clock and power are gated when not active
41	  3 ALWAYS_OFF, GNA is tuned off and never used in the system
42
43endif # INTEL_GNA
44