Changeset 36590 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Apr 6, 2011 3:35:26 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71030
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r35346 r36590 38 38 #include <iprt/uuid.h> 39 39 40 #ifdef RT_OS_L441 # include <stdio.h>42 # include <l4/util/util.h>43 # include <l4/log/l4log.h>44 #endif45 46 40 #include "DisplayImpl.h" 47 41 #include "Framebuffer.h" … … 391 385 while(!mFramebuffer) 392 386 { 393 #if RT_OS_L4394 asm volatile ("nop":::"memory");395 l4_sleep(5);396 #else397 387 RTThreadYield(); 398 #endif399 388 } 400 389 Assert(mFramebuffer); -
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r36344 r36590 5 5 * VBoxBFE is a limited frontend that sits directly on the Virtual Machine 6 6 * Manager (VMM) and does _not_ use COM to communicate. 7 * On Linux and Windows, VBoxBFE is based on SDL; on L4 it's based on the 8 * L4 console. Much of the code has been copied over from the other frontends 9 * in VBox/Main/ and src/Frontends/VBoxSDL/. 7 * VBoxBFE is based on SDL. Much of the code has been copied over from the 8 * other frontends in VBox/Main/ and src/Frontends/VBoxSDL/. 10 9 */ 11 10 … … 39 38 #include <VBox/vmm/pdm.h> 40 39 #include <VBox/version.h> 41 #ifdef VBOXBFE_WITH_USB42 # include <VBox/vusb.h>43 #endif44 40 #ifdef VBOX_WITH_HGCM 45 41 # include <VBox/shflsvc.h> … … 64 60 #include <errno.h> 65 61 66 #if defined(RT_OS_LINUX) || defined(RT_OS_L4)62 #if defined(RT_OS_LINUX) 67 63 #include <fcntl.h> 68 64 #include <net/if.h> … … 79 75 #include "Framebuffer.h" 80 76 #include "MachineDebuggerImpl.h" 81 #ifdef VBOXBFE_WITH_USB 82 # include "HostUSBImpl.h" 83 #endif 84 85 #if defined(USE_SDL) && ! defined(RT_OS_L4) 77 78 #if defined(USE_SDL) 86 79 #include "SDLConsole.h" 87 80 #include "SDLFramebuffer.h" 88 81 #endif 89 82 90 #ifdef RT_OS_L4 91 #include "L4Console.h" 92 #include "L4Framebuffer.h" 93 #include "L4IDLInterface.h" 94 #endif 95 96 #ifdef RT_OS_L4 97 # include <l4/sys/ktrace.h> 98 # include <l4/vboxserver/file.h> 99 #endif 83 100 84 101 85 /******************************************************************************* … … 130 114 VMStatus *gStatus = NULL; 131 115 Console *gConsole = NULL; 132 #ifdef VBOXBFE_WITH_USB133 HostUSB *gHostUSB = NULL;134 #endif135 116 136 117 VMSTATE machineState = VMSTATE_CREATING; … … 139 120 140 121 /** flag whether keyboard/mouse events are grabbed */ 141 #ifdef RT_OS_L4 142 /** see <l4/input/macros.h> for key definitions */ 143 int gHostKey; /* not used */ 144 int gHostKeySym = KEY_RIGHTCTRL; 145 #elif defined (DEBUG_dmik) 122 #if defined (DEBUG_dmik) 146 123 // my mini kbd doesn't have RCTRL... 147 124 int gHostKey = KMOD_RSHIFT; … … 156 133 static bool g_fACPI = true; 157 134 static bool g_fAudio = false; 158 #ifdef VBOXBFE_WITH_USB159 static bool g_fUSB = false;160 #endif161 135 static char *g_pszHdaFile = NULL; 162 136 static bool g_fHdaSpf = false; … … 370 344 " -[no]ioapic Enable or disable the IO-APIC (default: disabled)\n" 371 345 " -audio Enable audio\n" 372 #ifndef RT_OS_L4373 346 " -natdev<1-N> [mac] Use NAT networking on network adapter <N>. Use hardware\n" 374 347 " address <mac> if specified.\n" 375 #endif376 348 " -hifdev<1-N> Use Host Interface Networking with host interface <int>\n" 377 349 " <int> [mac] on network adapter <N>. Use hardware address <mac> if\n" 378 350 " specified.\n" 379 #ifndef RT_OS_L4380 351 " -intnet<1-N> Attach network adapter <N> to internal network <net>. Use\n" 381 352 " <net> [mac] hardware address <mac> if specified.\n" 382 #endif383 353 #if 0 384 354 " -netsniff<1-N> Enable packet sniffer\n" … … 402 372 " -[no]patm Enable or disable PATM\n" 403 373 " -[no]csam Enable or disable CSAM\n" 404 #endif405 #ifdef RT_OS_L4406 " -env <var=value> Set the given environment variable to \"value\"\n"407 374 #endif 408 375 "\n"); … … 419 386 uint32_t secureLabelPointSize = 12; 420 387 char *secureLabelFontFile = NULL; 421 #endif422 #ifdef RT_OS_L4423 uint32_t u32MaxVRAM;424 388 #endif 425 389 int rc = VINF_SUCCESS; … … 544 508 else if (strcmp(pszArg, "-audio") == 0) 545 509 g_fAudio = true; 546 #ifdef VBOXBFE_WITH_USB547 else if (strcmp(pszArg, "-usb") == 0)548 g_fUSB = true;549 #endif550 510 else if (strcmp(pszArg, "-hda") == 0) 551 511 { … … 600 560 return SyntaxError("The path to the specified cdrom, '%s', could not be resolved.\n", argv[curArg]); 601 561 } 602 #ifdef RT_OS_L4603 /* This is leaving a lot of dead code in the L4 version of course,604 but I don't think that that is a major problem. We may even605 activate it sometime... */606 else if ( strncmp(pszArg, "-hifdev", 7) == 0607 || strncmp(pszArg, "-nonetd", 7) == 0)608 #else609 562 else if ( strncmp(pszArg, "-natdev", 7) == 0 610 563 || strncmp(pszArg, "-hifdev", 7) == 0 611 564 || strncmp(pszArg, "-nonetd", 7) == 0 612 565 || strncmp(pszArg, "-intnet", 7) == 0) 613 #endif614 566 { 615 567 int i = networkArg2Index(pszArg, 7); … … 763 715 g_fCSAM = false; 764 716 #endif /* VBOXSDL_ADVANCED_OPTIONS */ 765 #ifdef RT_OS_L4766 else if (strcmp(pszArg, "-env") == 0)767 ++curArg;768 #endif /* RT_OS_L4 */769 717 /* just show the help screen */ 770 718 else … … 788 736 gConsole = new SDLConsole(); 789 737 gFramebuffer = new SDLFramebuffer(); 790 #elif defined(RT_OS_L4)791 gConsole = new L4Console();792 gFramebuffer = new L4Framebuffer();793 738 #else 794 739 #error "todo" … … 816 761 } 817 762 818 #ifdef RT_OS_L4819 /* Start the external IDL interface */820 L4CtrlInit();821 #endif822 763 823 764 /* loop until the powerup processing is done */ … … 867 808 gConsole->updateTitlebar(); 868 809 869 #ifdef RT_OS_L4870 /* The L4 console provides (currently) a fixed resolution. */871 if (g_u32VRamSize >= gFramebuffer->getHostXres()872 * gFramebuffer->getHostYres()873 * (gDisplay->getBitsPerPixel() / 8))874 gDisplay->SetVideoModeHint(gFramebuffer->getHostXres(), gFramebuffer->getHostYres(), 0, 0);875 876 /* Limit the VRAM of the guest to the amount of memory we got actually877 * mapped from the L4 console. */878 u32MaxVRAM = (gFramebuffer->getHostYres() + 18) /* don't omit the status bar */879 * gFramebuffer->getHostXres()880 * (gFramebuffer->getHostBitsPerPixel() / 8);881 if (g_u32VRamSize > u32MaxVRAM)882 {883 RTPrintf("Limiting the video memory to %u bytes\n", u32MaxVRAM);884 g_u32VRamSize = u32MaxVRAM;885 }886 #endif887 810 888 811 /* … … 987 910 int main(int argc, char **argv) 988 911 { 989 # ifdef RT_OS_L4990 # ifndef L4API_l4v2onv4991 /* clear Fiasco kernel trace buffer */992 fiasco_tbuf_clear();993 # endif994 /* set the environment. Must be done before the runtime is995 initialised. Yes, it really must. */996 for (int i = 0; i < argc; i++)997 if (strcmp(argv[i], "-env") == 0)998 {999 if (++i >= argc)1000 return SyntaxError("missing argument to -env (format: var=value)!\n");1001 /* add it to the environment */1002 if (putenv(argv[i]) != 0)1003 return SyntaxError("Error setting environment string %s.\n", argv[i]);1004 }1005 # endif /* RT_OS_L4 */1006 912 1007 913 /* … … 1241 1147 #endif 1242 1148 1243 #ifdef VBOXBFE_WITH_USB1244 /*1245 * Capture USB devices.1246 */1247 if (g_fUSB)1248 {1249 gHostUSB = new HostUSB();1250 gHostUSB->init(gpVM);1251 }1252 #endif /* VBOXBFE_WITH_USB */1253 1254 1149 /* 1255 1150 * Power on the VM (i.e. start executing). … … 1611 1506 rc = CFGMR3InsertInteger(pCfg, "ShowBootMenu", g_iBootMenu); UPDATE_RC(); 1612 1507 1613 #ifdef RT_OS_L41614 /* XXX hard-coded */1615 rc = CFGMR3InsertInteger(pCfg, "HeightReduction", 18); UPDATE_RC();1616 rc = CFGMR3InsertInteger(pCfg, "CustomVideoModes", 1); UPDATE_RC();1617 char szBuf[64];1618 /* Tell the guest which is the ideal video mode to use */1619 RTStrPrintf(szBuf, sizeof(szBuf), "%dx%dx%d",1620 gFramebuffer->getHostXres(),1621 gFramebuffer->getHostYres(),1622 gFramebuffer->getHostBitsPerPixel());1623 rc = CFGMR3InsertString(pCfg, "CustomVideoMode1", szBuf); UPDATE_RC();1624 #endif1625 1508 1626 1509 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); UPDATE_RC(); … … 1790 1673 #endif 1791 1674 { 1792 #if defined(RT_OS_LINUX) || defined(RT_OS_L4)1675 #if defined(RT_OS_LINUX) 1793 1676 /* 1794 1677 * Create/Open the TAP the device. … … 1929 1812 rc = CFGMR3InsertString(pCfg, "AudioDriver", "solaudio"); UPDATE_RC(); 1930 1813 # endif 1931 #elif defined(RT_OS_L4)1932 rc = CFGMR3InsertString(pCfg, "AudioDriver", "oss"); UPDATE_RC();1933 1814 #else /* portme */ 1934 1815 rc = CFGMR3InsertString(pCfg, "AudioDriver", "none"); UPDATE_RC(); … … 1936 1817 } 1937 1818 1938 #ifdef VBOXBFE_WITH_USB1939 /*1940 * The USB Controller.1941 */1942 if (g_fUSB)1943 {1944 rc = CFGMR3InsertNode(pDevices, "usb-ohci", &pDev); UPDATE_RC();1945 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATE_RC();1946 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATE_RC();1947 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATE_RC();1948 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 6); UPDATE_RC();1949 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); UPDATE_RC();1950 1951 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); UPDATE_RC();1952 rc = CFGMR3InsertString(pLunL0, "Driver", "VUSBRootHub"); UPDATE_RC();1953 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); UPDATE_RC();1954 }1955 #endif /* VBOXBFE_WITH_USB */1956 1957 1819 #undef UPDATE_RC 1958 1820 #undef UPDATE_RC -
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp
r35346 r36590 48 48 #endif 49 49 50 #ifdef RT_OS_L451 #include <l4/util/util.h> /* for l4_sleep */52 #endif53 50 /** 54 51 * VMMDev driver instance data.
Note:
See TracChangeset
for help on using the changeset viewer.