diff options
| author | Rajesh Bhagat <[email protected]> | 2018-01-17 16:13:08 +0530 |
|---|---|---|
| committer | York Sun <[email protected]> | 2018-01-23 11:20:46 -0800 |
| commit | 1fab98fb90b0350210ac6938cb61647c66dcf0f7 (patch) | |
| tree | d070d4563d88368d32172ce0abd4722327c89231 /include | |
| parent | 75ad48153f29d54359a47bc06be6a64fbecead56 (diff) | |
common: board_f: vid: Add VID specific API to adjust core voltage
Adds a VID specific API in init_sequence_f and spl code flow
namely init_func_vid which is required to adjust core voltage.
VID specific code is required in spl, hence moving flag CONFIG_VID
out of spl flags.
Signed-off-by: Ashish Kumar <[email protected]>
Signed-off-by: Rajesh Bhagat <[email protected]>
Reviewed-by: York Sun <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 436200044f3..0fe9439a933 100644 --- a/include/common.h +++ b/include/common.h @@ -364,6 +364,9 @@ int embedded_dtb_select(void); int misc_init_f (void); int misc_init_r (void); +#if defined(CONFIG_VID) +int init_func_vid(void); +#endif /* common/exports.c */ void jumptable_init(void); |
