lib/rmodule: export parameters in struct rmod_stage_load

In order for a caller to utilize an rmodule's parameters section
after calling rmodule_stage_load() export the rmodule's parameter
pointer in struct rmod_stage_load.

Change-Id: I9cd51652cf8cdb3fae773256989851638aa1a60f
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/14139
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Andrey Petrov <andrey.petrov@intel.com>
This commit is contained in:
Aaron Durbin 2016-03-17 23:13:34 -05:00
parent f51b12735d
commit 94271b428e
2 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,7 @@ struct prog;
struct rmod_stage_load {
uint32_t cbmem_id;
struct prog *prog;
void *params;
};
/* Both of the following functions return 0 on success, -1 on error. */

View File

@ -296,5 +296,8 @@ int rmodule_stage_load(struct rmod_stage_load *rsl)
rmodule_memory_size(&rmod_stage));
prog_set_entry(rsl->prog, rmodule_entry(&rmod_stage), NULL);
/* Allow caller to pick up parameters, if available. */
rsl->params = rmodule_parameters(&rmod_stage);
return 0;
}