drivers: gunyah: Add support for the Auto Gunyah VM target

Porting "drivers: gunyah: Add support for the Auto Gunyah VM target"
(Commit ID:c8b87afe3c59b72f7b7e0f61abc4c0f895b9f57e) from msm-5.15.

Change-Id: I0b5d6b4a9a42c0303cdb1798c8c88a322bcd1729
Signed-off-by: Anant Goel <quic_anantg@quicinc.com>
This commit is contained in:
Anant Goel 2024-02-02 15:36:06 -08:00 committed by Nikhil V
parent c3d86ab59c
commit 04286ecda8
2 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
*
*/
@ -76,6 +76,7 @@ const static struct {
{GH_TRUSTED_VM, "trustedvm", "qcom,trustedvm"},
{GH_CPUSYS_VM, "cpusys_vm", "qcom,cpusysvm"},
{GH_OEM_VM, "oem_vm", "qcom,oemvm"},
{GH_AUTO_VM, "autoghgvm", "qcom,autoghgvm"},
};
static gh_virtio_mmio_cb_t gh_virtio_mmio_fn;

View File

@ -1,6 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
*
*/
@ -39,6 +40,7 @@ enum gh_vm_names {
GH_TRUSTED_VM,
GH_CPUSYS_VM,
GH_OEM_VM,
GH_AUTO_VM,
GH_VM_MAX
};