X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios.h;h=9fe9c29fc3eebdaa4bc36a9d84a0bde21d09ce2f;hb=cd4508e49cab8f3dcc2ed0dfe91a63fc088c6e87;hp=c0e3ba200f4d8a3f71057f1ceb1bdf78b8e517a9;hpb=b44db8fef71ea6c1c996b6c1fb162f61317a53be;p=palacios-OLD.git diff --git a/linux_module/palacios.h b/linux_module/palacios.h index c0e3ba2..9fe9c29 100644 --- a/linux_module/palacios.h +++ b/linux_module/palacios.h @@ -10,6 +10,15 @@ #include "palacios-console.h" #endif +#ifdef V3_CONFIG_GRAPHICS_CONSOLE +#include "palacios-graphics-console.h" +#endif + +#ifdef V3_CONFIG_HOST_DEVICE +#include "palacios-host-dev.h" +#endif + + /* Global Control IOCTLs */ #define V3_START_GUEST 10 #define V3_ADD_MEMORY 50 @@ -20,6 +29,12 @@ #define V3_VM_STREAM_CONNECT 21 #define V3_VM_STOP 22 +#define V3_VM_FB_INPUT (256+1) +#define V3_VM_FB_QUERY (256+2) + +#define V3_VM_HOST_DEV_CONNECT (10244+1) + + struct v3_guest_img { unsigned long long size; void * guest_data; @@ -57,6 +72,15 @@ struct v3_guest { struct palacios_console console; #endif +#ifdef V3_CONFIG_GRAPHICS_CONSOLE + struct palacios_graphics_console graphics_console; +#endif + +#ifdef V3_CONFIG_HOST_DEVICE + struct palacios_host_dev hostdev; +#endif + + struct completion start_done; struct completion thread_done;