diff options
author | Taniya Das <tdas@codeaurora.org> | 2019-08-07 11:28:28 +0530 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2019-12-05 01:41:41 +0000 |
commit | 0e03aa2c6f54210b99cd8149c7118b43c43381cd (patch) | |
tree | 06a5482604b468fbe56d9339cbcb08a73171e19c /src/soc/qualcomm/sc7180/bootblock.c | |
parent | 08cd65198e44a5c26ba8f1f5439fbf7475fb0ed0 (diff) |
sc7180: Add clock driver
Add support for clock driver for SC7180
Developer/Reviewer, be aware of this patch from Napali:
https://review.coreboot.org/c/coreboot/+/31083/6
Change-Id: I3f39252c887c36e8af43bc49289795000e4638d8
Signed-off-by: Taniya Das <tdas@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35496
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/soc/qualcomm/sc7180/bootblock.c')
-rw-r--r-- | src/soc/qualcomm/sc7180/bootblock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7180/bootblock.c b/src/soc/qualcomm/sc7180/bootblock.c index b9b86609ad..bf80bff706 100644 --- a/src/soc/qualcomm/sc7180/bootblock.c +++ b/src/soc/qualcomm/sc7180/bootblock.c @@ -14,9 +14,11 @@ */ #include <bootblock_common.h> +#include <soc/clock.h> #include <soc/mmu.h> void bootblock_soc_init(void) { sc7180_mmu_init(); + clock_init(); } |