162306a36Sopenharmony_ci/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * This file is provided under a dual BSD/GPLv2 license. When using or 462306a36Sopenharmony_ci * redistributing this file, you may do so under either license. 562306a36Sopenharmony_ci * 662306a36Sopenharmony_ci * Copyright(c) 2020 Intel Corporation. All rights reserved. 762306a36Sopenharmony_ci */ 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci/* 1062306a36Sopenharmony_ci * Intel extended manifest is a extra place to store Intel cavs specific 1162306a36Sopenharmony_ci * metadata about firmware, for example LPRO/HPRO configuration is 1262306a36Sopenharmony_ci * Intel cavs specific. This part of output binary is not signed. 1362306a36Sopenharmony_ci */ 1462306a36Sopenharmony_ci 1562306a36Sopenharmony_ci#ifndef __INTEL_CAVS_EXT_MANIFEST_H__ 1662306a36Sopenharmony_ci#define __INTEL_CAVS_EXT_MANIFEST_H__ 1762306a36Sopenharmony_ci 1862306a36Sopenharmony_ci#include <sound/sof/ext_manifest.h> 1962306a36Sopenharmony_ci 2062306a36Sopenharmony_ci/* EXT_MAN_ELEM_PLATFORM_CONFIG_DATA elements identificators */ 2162306a36Sopenharmony_cienum sof_cavs_config_elem_type { 2262306a36Sopenharmony_ci SOF_EXT_MAN_CAVS_CONFIG_EMPTY = 0, 2362306a36Sopenharmony_ci SOF_EXT_MAN_CAVS_CONFIG_CAVS_LPRO = 1, 2462306a36Sopenharmony_ci SOF_EXT_MAN_CAVS_CONFIG_OUTBOX_SIZE = 2, 2562306a36Sopenharmony_ci SOF_EXT_MAN_CAVS_CONFIG_INBOX_SIZE = 3, 2662306a36Sopenharmony_ci}; 2762306a36Sopenharmony_ci 2862306a36Sopenharmony_ci/* EXT_MAN_ELEM_PLATFORM_CONFIG_DATA elements */ 2962306a36Sopenharmony_cistruct sof_ext_man_cavs_config_data { 3062306a36Sopenharmony_ci struct sof_ext_man_elem_header hdr; 3162306a36Sopenharmony_ci 3262306a36Sopenharmony_ci struct sof_config_elem elems[]; 3362306a36Sopenharmony_ci} __packed; 3462306a36Sopenharmony_ci 3562306a36Sopenharmony_ci#endif /* __INTEL_CAVS_EXT_MANIFEST_H__ */ 36