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

add autoghgvmlv into vm_name_map and support for lv gvm.

Change-Id: I5caa8cfe3b0749870d3922ba34545620cb240dd7
Signed-off-by: Wei Liu <quic_wliu8@quicinc.com>
This commit is contained in:
Wei Liu 2024-07-17 16:06:38 +08:00
parent daa59f32ec
commit 062a293685
2 changed files with 2 additions and 0 deletions

View file

@ -77,6 +77,7 @@ const static struct {
{GH_CPUSYS_VM, "cpusys_vm", "qcom,cpusysvm"},
{GH_OEM_VM, "oem_vm", "qcom,oemvm"},
{GH_AUTO_VM, "autoghgvm", "qcom,autoghgvm"},
{GH_AUTO_VM_LV, "autoghgvmlv", "qcom,autoghgvmlv"},
};
static gh_virtio_mmio_cb_t gh_virtio_mmio_fn;

View file

@ -41,6 +41,7 @@ enum gh_vm_names {
GH_CPUSYS_VM,
GH_OEM_VM,
GH_AUTO_VM,
GH_AUTO_VM_LV,
GH_VM_MAX
};