diff --git a/drivers/virt/gunyah/gh_rm_core.c b/drivers/virt/gunyah/gh_rm_core.c index 9b1b0a61b192..ed5f2e79a601 100644 --- a/drivers/virt/gunyah/gh_rm_core.c +++ b/drivers/virt/gunyah/gh_rm_core.c @@ -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; diff --git a/include/linux/gunyah/gh_common.h b/include/linux/gunyah/gh_common.h index e4f97e58f979..1f3c52ed7e27 100644 --- a/include/linux/gunyah/gh_common.h +++ b/include/linux/gunyah/gh_common.h @@ -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 };