1 // SPDX-License-Identifier: BSD-3-Clause 2 // 3 // Copyright(c) 2018 Intel Corporation. All rights reserved. 4 // 5 // Author: Liam Girdwood <liam.r.girdwood@linux.intel.com> 6 // Janusz Jankowski <janusz.jankowski@linux.intel.com> 7 8 #include <sof/lib/memory.h> 9 #include <rimage/sof/user/manifest.h> 10 11 /* 12 * Each module has an entry in the FW manifest header. This is NOT part of 13 * the SOF executable image but is inserted by object copy as a ELF section 14 * for parsing by rimage (to genrate the manifest). 15 */ 16 struct sof_man_module_manifest tgl_manifest = { 17 .module = { 18 .name = "BASEFW", 19 .uuid = {0x32, 0x8c, 0x39, 0x0e, 0xde, 0x5a, 0x4b, 0xba, 20 0x93, 0xb1, 0xc5, 0x04, 0x32, 0x28, 0x0e, 0xe4}, 21 .entry_point = SOF_TEXT_START, 22 .type = { 23 .load_type = SOF_MAN_MOD_TYPE_MODULE, 24 .domain_ll = 1, 25 }, 26 .affinity_mask = 3, 27 }, 28 }; 29 30 /* not used, but stops linker complaining */ 31 int _start; 32