In common/os/os_perf.c function ll_init() is declaring cfg on the stack and then assigning conf from some uninitialized fields in cfg namely:
839 conf->type = cfg.type;
840 conf->config = (cfg.config) | (cfg.other_attr << 16);
841 conf->config1 = cfg.extra_value;
Should cfg be memset before calling plat_ll_config?