1# SPDX-License-Identifier: BSD-3-Clause 2 3menu "IPC Major Version" 4 5choice 6 prompt "IPC Major Version" 7 default IPC_MAJOR_3 8 9config IPC_MAJOR_3 10 bool "IPC Major Version 3" 11 help 12 This is the default IPC version used on most SOF based devices. 13 If unsure say Y. 14 15config IPC_MAJOR_4 16 bool "IPC Major Version 4" 17 help 18 This is an IPC version used by certain middleware on some IOT 19 Intel devices. Not for general use. 20 NOTE: This IPC ABI is not guranteed to work on any platforms other 21 than a specific Intel platform due to use of bit fields in the IPC ABI. 22 If unsure say N. 23 24endchoice 25 26endmenu 27