Skip to content

Commit 48fffe0

Browse files
jxsteltersoftwarecki
authored andcommitted
Update manifest module type with ref FW state
The reference FW added some new definitions to manifest man_module_type structure. The SOF version must be updated to synchronize with reference FW definitions. Added fields: - domain_rtos - indicates whether a module can be executed in RTOS scheduling domain; - core_type - LX7 HiFi4, Fusion etc. - user_mode - module executed in non-priviledged mode - large_param - IPC supports parameters above 4kB - stack_on_bss - allocate DP task stack in module bss section Signed-off-by: Jaroslaw Stelter <Jaroslaw.Stelter@intel.com>
1 parent 1391978 commit 48fffe0

File tree

1 file changed

+6
-1
lines changed
  • tools/rimage/src/include/rimage/sof/user

1 file changed

+6
-1
lines changed

tools/rimage/src/include/rimage/sof/user/manifest.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,13 @@ struct sof_man_module_type {
4141
uint32_t domain_ll:1;
4242
uint32_t domain_dp:1;
4343
uint32_t lib_code:1;
44+
uint32_t domain_rtos:1;
45+
uint32_t core_type:8;
46+
uint32_t user_mode:1;
47+
uint32_t large_param:1;
48+
uint32_t stack_on_bss:1;
49+
uint32_t rsvd_:9;
4450
uint32_t init_config:4; /* SOF_MAN_MOD_INIT_CONFIG_ */
45-
uint32_t rsvd_:20;
4651
};
4752

4853
/* segment flags.type */

0 commit comments

Comments
 (0)