/* $OpenBSD: xenvar.h,v 1.36 2016/08/17 17:18:38 mikeb Exp $ */ /* * Copyright (c) 2015 Mike Belopuhov * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #ifndef _XENVAR_H_ #define _XENVAR_H_ /* #define XEN_DEBUG */ #ifdef XEN_DEBUG #define DPRINTF(x...) printf(x) #else #define DPRINTF(x...) #endif struct xen_intsrc { SLIST_ENTRY(xen_intsrc) xi_entry; struct evcount xi_evcnt; evtchn_port_t xi_port; short xi_noclose; short xi_masked; struct task xi_task; struct taskq *xi_taskq; }; struct xen_gntent { grant_entry_t *ge_table; grant_ref_t ge_start; short ge_reserved; short ge_next; short ge_free; struct mutex ge_mtx; }; struct xen_gntmap { grant_ref_t gm_ref; paddr_t gm_paddr; }; struct xen_softc { struct device sc_dev; uint32_t sc_base; void *sc_hc; uint32_t sc_features; #define XENFEAT_CBVEC (1<<8) struct shared_info *sc_ipg; /* HYPERVISOR_shared_info */ uint32_t sc_flags; #define XSF_CBVEC 0x0001 #define XSF_UNPLUG_NIC 0x0002 /* disable emul. NICs */ #define XSF_UNPLUG_IDE 0x0004 /* disable emul. primary IDE */ #define XSF_UNPLUG_IDESEC 0x0008 /* disable emul. sec. IDE */ uint64_t sc_irq; /* IDT vector number */ SLIST_HEAD(, xen_intsrc) sc_intrs; struct xen_gntent *sc_gnt; /* grant table entries */ struct mutex sc_gntmtx; int sc_gntcnt; /* number of allocated frames */ int sc_gntmax; /* number of allotted frames */ /* * Xenstore */ struct xs_softc *sc_xs; /* xenstore softc */ struct task sc_ctltsk; /* control task */ }; extern struct xen_softc *xen_sc; struct xen_attach_args { void *xa_parent; char xa_name[16]; char xa_node[64]; char xa_backend[128]; int xa_domid; bus_dma_tag_t xa_dmat; }; /* * Hypercalls */ #define XC_MEMORY 12 #define XC_OEVTCHN 16 #define XC_VERSION 17 #define XC_GNTTAB 20 #define XC_EVTCHN 32 #define XC_HVM 34 int xen_hypercall(struct xen_softc *, int, int, ...); int xen_hypercallv(struct xen_softc *, int, int, ulong *); /* * Interrupts */ typedef uint32_t xen_intr_handle_t; void xen_intr(void); void xen_intr_ack(void); void xen_intr_signal(xen_intr_handle_t); void xen_intr_schedule(xen_intr_handle_t); int xen_intr_establish(evtchn_port_t, xen_intr_handle_t *, int, void (*)(void *), void *, char *); int xen_intr_disestablish(xen_intr_handle_t); void xen_intr_enable(void); void xen_intr_mask(xen_intr_handle_t); int xen_intr_unmask(xen_intr_handle_t); /* * XenStore */ #define XS_LIST 0x01 #define XS_READ 0x02 #define XS_WATCH 0x04 #define XS_TOPEN 0x06 #define XS_TCLOSE 0x07 #define XS_WRITE 0x0b #define XS_RM 0x0d #define XS_EVENT 0x0f #define XS_ERROR 0x10 #define XS_MAX 0x16 struct xs_transaction { uint32_t xst_id; uint32_t xst_flags; #define XST_POLL 0x0001 struct xs_softc *xst_sc; }; static __inline void clear_bit(u_int b, volatile void *p) { atomic_clearbits_int(((volatile u_int *)p) + (b >> 5), 1 << (b & 0x1f)); } static __inline void set_bit(u_int b, volatile void *p) { atomic_setbits_int(((volatile u_int *)p) + (b >> 5), 1 << (b & 0x1f)); } static __inline int test_bit(u_int b, volatile void *p) { return !!(((volatile u_int *)p)[b >> 5] & (1 << (b & 0x1f))); } int xs_cmd(struct xs_transaction *, int, const char *, struct iovec **, int *); void xs_resfree(struct xs_transaction *, struct iovec *, int); int xs_watch(struct xen_softc *, const char *, const char *, struct task *, void (*)(void *), void *); int xs_getprop(struct xen_softc *, const char *, const char *, char *, int); int xs_setprop(struct xen_softc *, const char *, const char *, char *, int); int xs_kvop(void *, int, char *, char *, size_t); #endif /* _XENVAR_H_ */