X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm.h;h=9fae52eb1f7cb1419303a7a2801ac98ff24cb3d5;hb=5dba37e6d7ff831c2b2239851701a83d21956645;hp=5fcfeb3b830a23baf2155113bd4b7bd98621e69b;hpb=fc14d48378cdc90085786bccf4a5230261a0d315;p=palacios.git diff --git a/palacios/include/palacios/vmm.h b/palacios/include/palacios/vmm.h index 5fcfeb3..9fae52e 100644 --- a/palacios/include/palacios/vmm.h +++ b/palacios/include/palacios/vmm.h @@ -24,6 +24,7 @@ #include #include + #ifdef __V3VEE__ //#include @@ -34,7 +35,7 @@ /* utility definitions */ -#ifdef VMM_DEBUG + #define PrintDebug(fmt, args...) \ do { \ extern struct v3_os_hooks * os_hooks; \ @@ -42,6 +43,8 @@ (os_hooks)->print_debug((fmt), ##args); \ } \ } while (0) + +#if 1 #else #define PrintDebug(fmt,args ...) #endif @@ -104,6 +107,25 @@ } while(0) \ +#define V3_VAddr(addr) ({ \ + extern struct v3_os_hooks * os_hooks; \ + void * var = 0; \ + if ((os_hooks) && (os_hooks)->paddr_to_vaddr) { \ + var = (os_hooks)->paddr_to_vaddr(addr); \ + } \ + var; \ + }) + + +#define V3_PAddr(addr) ({ \ + extern struct v3_os_hooks * os_hooks; \ + void * var = 0; \ + if ((os_hooks) && (os_hooks)->vaddr_to_paddr) { \ + var = (os_hooks)->vaddr_to_paddr(addr); \ + } \ + var; \ + }) + #define V3_Malloc(size) ({ \ @@ -192,9 +214,12 @@ struct guest_info; /* This will contain function pointers that provide OS services */ struct v3_os_hooks { - void (*print_info)(const char * format, ...); - void (*print_debug)(const char * format, ...); - void (*print_trace)(const char * format, ...); + void (*print_info)(const char * format, ...) + __attribute__ ((format (printf, 1, 2))); + void (*print_debug)(const char * format, ...) + __attribute__ ((format (printf, 1, 2))); + void (*print_trace)(const char * format, ...) + __attribute__ ((format (printf, 1, 2))); void *(*allocate_pages)(int numPages); void (*free_page)(void * page); @@ -229,6 +254,13 @@ struct v3_vm_config { void * vgabios; int vgabios_size; + unsigned long mem_size; // in bytes, var should be natural size of cpu + // so we can specify maximum physical address size + // (We're screwed if we want to do 32 bit host/64 bit guest) + + + int enable_profiling; + int use_ramdisk; void * ramdisk; int ramdisk_size;