forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
26 lines (20 loc) · 621 Bytes
/
Copy pathKconfig
File metadata and controls
26 lines (20 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# SPDX-License-Identifier: BSD-3-Clause
menu "IPC Major Version"
choice
prompt "IPC Major Version"
default IPC_MAJOR_3
config IPC_MAJOR_3
bool "IPC Major Version 3"
help
This is the default IPC version used on most SOF based devices.
If unsure say Y.
config IPC_MAJOR_4
bool "IPC Major Version 4"
help
This is an IPC version used by certain middleware on some IOT
Intel devices. Not for general use.
NOTE: This IPC ABI is not guranteed to work on any platforms other
than a specific Intel platform due to use of bit fields in the IPC ABI.
If unsure say N.
endchoice
endmenu