Skip to content

Commit

Permalink
rimage: mtl: fix key slot setup based on imr type
Browse files Browse the repository at this point in the history
This will properly setup partition_usage field
and remove fixed 0x23 value from mtl toml

Signed-off-by: Adrian Bonislawski <adrian.bonislawski@intel.com>
  • Loading branch information
abonislawski committed Oct 25, 2023
1 parent 4fb9fe0 commit fbea593
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion config/mtl.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ length = "0x0" # calculated by rimage

[signed_pkg]
name = "ADSP"
partition_usage = "0x23"
[[signed_pkg.module]]
name = "ADSP.met"

Expand Down
4 changes: 1 addition & 3 deletions src/adsp_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -1087,9 +1087,7 @@ static int parse_signed_pkg_ace_v1_5(const toml_table_t *toml, struct parse_ctx
if (ret < 0)
return ret;

out->partition_usage = parse_uint32_hex_key(signed_pkg, &ctx, "partition_usage", 0, &ret);
if (ret < 0)
return ret;
out->partition_usage = 0x20 + image->imr_type;

/* check everything parsed, expect 1 more array */
ctx.array_cnt += 1;
Expand Down
2 changes: 0 additions & 2 deletions src/rimage.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,6 @@ int main(int argc, char *argv[])
}

if (image.adsp->man_ace_v1_5) {
if (imr_type_override)
image.adsp->man_ace_v1_5->adsp_file_ext.imr_type = image.imr_type;
image.adsp->man_ace_v1_5->css.reserved0 = pv_bit;
}

Expand Down

0 comments on commit fbea593

Please sign in to comment.