Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
0002 /*
0003  * This file is provided under a dual BSD/GPLv2 license.  When using or
0004  * redistributing this file, you may do so under either license.
0005  *
0006  * Copyright(c) 2020 Intel Corporation. All rights reserved.
0007  */
0008 
0009 /*
0010  * Intel extended manifest is a extra place to store Intel cavs specific
0011  * metadata about firmware, for example LPRO/HPRO configuration is
0012  * Intel cavs specific. This part of output binary is not signed.
0013  */
0014 
0015 #ifndef __INTEL_CAVS_EXT_MANIFEST_H__
0016 #define __INTEL_CAVS_EXT_MANIFEST_H__
0017 
0018 #include <sound/sof/ext_manifest.h>
0019 
0020 /* EXT_MAN_ELEM_PLATFORM_CONFIG_DATA elements identificators */
0021 enum sof_cavs_config_elem_type {
0022     SOF_EXT_MAN_CAVS_CONFIG_EMPTY       = 0,
0023     SOF_EXT_MAN_CAVS_CONFIG_CAVS_LPRO   = 1,
0024     SOF_EXT_MAN_CAVS_CONFIG_OUTBOX_SIZE = 2,
0025     SOF_EXT_MAN_CAVS_CONFIG_INBOX_SIZE  = 3,
0026 };
0027 
0028 /* EXT_MAN_ELEM_PLATFORM_CONFIG_DATA elements */
0029 struct sof_ext_man_cavs_config_data {
0030     struct sof_ext_man_elem_header hdr;
0031 
0032     struct sof_config_elem elems[];
0033 } __packed;
0034 
0035 #endif /* __INTEL_CAVS_EXT_MANIFEST_H__ */