xref: /optee_os/core/pta/qcom/pas/compute.c (revision abca35a69f9bea0496cf05e025c3c36e6d5ea68b)
1 // SPDX-License-Identifier: BSD-2-Clause
2 /*
3  * Copyright (c) 2026, Qualcomm Technologies, Inc. and/or its subsidiaries.
4  */
5 
6 #include <io.h>
7 #include <mm/core_mmu.h>
8 #include <stdint.h>
9 #include <string.h>
10 
11 #include "dsp_boot.h"
12 #include "pas.h"
13 
14 TEE_Result compute_fw_start(struct qcom_pas_data *data)
15 {
16 	return dsp_fw_start(data, dsp_fw_get_boot_regs(data->pas_id));
17 }
18 
19 TEE_Result compute_fw_shutdown(struct qcom_pas_data *data __unused)
20 {
21 	return TEE_ERROR_NOT_IMPLEMENTED;
22 }
23