/*-1* SPDX-License-Identifier: BSD-2-Clause2*3* Copyright (c) 2023 Arm Ltd4*5* Redistribution and use in source and binary forms, with or without6* modification, are permitted provided that the following conditions7* are met:8* 1. Redistributions of source code must retain the above copyright9* notice, this list of conditions and the following disclaimer.10* 2. Redistributions in binary form must reproduce the above copyright11* notice, this list of conditions and the following disclaimer in the12* documentation and/or other materials provided with the distribution.13*14* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND15* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE16* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE17* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE18* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL19* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS20* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)21* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT22* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY23* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF24* SUCH DAMAGE.25*/2627#ifndef _VGIC_H_28#define _VGIC_H_2930struct hyp;31struct hypctx;32struct vm_vgic_descr;3334extern device_t vgic_dev;3536bool vgic_present(void);37void vgic_init(void);38int vgic_attach_to_vm(struct hyp *hyp, struct vm_vgic_descr *descr);39void vgic_detach_from_vm(struct hyp *hyp);40void vgic_vminit(struct hyp *hyp);41void vgic_cpuinit(struct hypctx *hypctx);42void vgic_cpucleanup(struct hypctx *hypctx);43void vgic_vmcleanup(struct hyp *hyp);44int vgic_max_cpu_count(struct hyp *hyp);45bool vgic_has_pending_irq(struct hypctx *hypctx);46int vgic_inject_irq(struct hyp *hyp, int vcpuid, uint32_t irqid, bool level);47int vgic_inject_msi(struct hyp *hyp, uint64_t msg, uint64_t addr);48void vgic_flush_hwstate(struct hypctx *hypctx);49void vgic_sync_hwstate(struct hypctx *hypctx);5051#endif /* _VGIC_H_ */525354