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_bootldr_manifest = { 17 .module = { 18 .name = "BRNGUP", 19 .uuid = {0xf3, 0xe4, 0x79, 0x2b, 0x75, 0x46, 0x49, 0xf6, 20 0x89, 0xdf, 0x3b, 0xc1, 0x94, 0xa9, 0x1a, 0xeb}, 21 .entry_point = IMR_BOOT_LDR_TEXT_ENTRY_BASE, 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