soc/intel/ptl: Update ME specification version to 21
[coreboot.git] / src / soc / qualcomm / common / aop_load_reset.c
blob9064120215dd8df1e2de4807b8ba333dc3159285
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <program_loading.h>
5 #include <soc/mmu.h>
6 #include <soc/aop_common.h>
7 #include <soc/clock.h>
9 void aop_fw_load_reset(void)
11 struct prog aop_fw_prog =
12 PROG_INIT(PROG_PAYLOAD, CONFIG_CBFS_PREFIX "/aop");
14 if (!selfload(&aop_fw_prog))
15 die("SOC image: AOP load failed");
17 clock_reset_aop();
19 printk(BIOS_DEBUG, "SOC:AOP brought out of reset.\n");