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 7 #include <sof/lib/memory.h> 8 #include <rimage/sof/user/manifest.h> 9 10 /* 11 * Each module has an entry in the FW manifest header. This is NOT part of 12 * the SOF executable image but is inserted by object copy as a ELF section 13 * for parsing by rimage (to genrate the manifest). 14 */ 15 struct sof_man_module_manifest sue_bootldr_manifest = { 16 .module = { 17 .name = "BRNGUP", 18 .uuid = {0xf3, 0xe4, 0x79, 0x2b, 0x75, 0x46, 0x49, 0xf6, 19 0x89, 0xdf, 0x3b, 0xc1, 0x94, 0xa9, 0x1a, 0xeb}, 20 .entry_point = BOOT_LDR_TEXT_ENTRY_BASE, 21 .type = { 22 .load_type = SOF_MAN_MOD_TYPE_MODULE, 23 .domain_ll = 1, 24 }, 25 .affinity_mask = 3, 26 }, 27 }; 28 29 /* not used, but stops linker complaining */ 30 int _start; 31