diff options
| author | Simon Glass <[email protected]> | 2017-03-28 10:27:18 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-04-05 13:52:36 -0400 |
| commit | 671549e5b0f51ad015746f0dcbe05332dfe370b1 (patch) | |
| tree | 0107d1449b4ef4ea25b01c72e5010cd11ecb42af /include | |
| parent | 2d986c0f54fba2b0e25898976d8ceb16a78ad8cb (diff) | |
board_f: x86: Rename x86_fsp_init() to arch_fsp_init()
While x86 is the only user and this could in principle be moved to
arch_cpu_init() there is some justification for this being a separate
call. It provides a way to handle init which is not CPU-specific, but
must happen before the CPU can be set up.
Rename the function to be more generic.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 8bd4087babf..5f5c0f46e04 100644 --- a/include/common.h +++ b/include/common.h @@ -286,6 +286,15 @@ int update_flash_size(int flash_size); int arch_early_init_r(void); /** + * arch_fsp_init() - perform firmware support package init + * + * Where U-Boot relies on binary blobs to handle part of the system init, this + * function can be used to set up the blobs. This is used on some Intel + * platforms. + */ +int arch_fsp_init(void); + +/** * arch_cpu_init_dm() - init CPU after driver model is available * * This is called immediately after driver model is available before |
