VirtualBox

Changeset 36590 in vbox for trunk/src/VBox/Frontends/VBoxBFE


Ignore:
Timestamp:
Apr 6, 2011 3:35:26 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
71030
Message:

FE/BFE: remove some USB bits and some L4 bits

Location:
trunk/src/VBox/Frontends/VBoxBFE
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp

    r35346 r36590  
    3838#include <iprt/uuid.h>
    3939
    40 #ifdef RT_OS_L4
    41 # include <stdio.h>
    42 # include <l4/util/util.h>
    43 # include <l4/log/l4log.h>
    44 #endif
    45 
    4640#include "DisplayImpl.h"
    4741#include "Framebuffer.h"
     
    391385    while(!mFramebuffer)
    392386    {
    393 #if RT_OS_L4
    394       asm volatile ("nop":::"memory");
    395       l4_sleep(5);
    396 #else
    397387      RTThreadYield();
    398 #endif
    399388    }
    400389    Assert(mFramebuffer);
  • trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp

    r36344 r36590  
    55 * VBoxBFE is a limited frontend that sits directly on the Virtual Machine
    66 * 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/.
    109 */
    1110
     
    3938#include <VBox/vmm/pdm.h>
    4039#include <VBox/version.h>
    41 #ifdef VBOXBFE_WITH_USB
    42 # include <VBox/vusb.h>
    43 #endif
    4440#ifdef VBOX_WITH_HGCM
    4541# include <VBox/shflsvc.h>
     
    6460#include <errno.h>
    6561
    66 #if defined(RT_OS_LINUX) || defined(RT_OS_L4)
     62#if defined(RT_OS_LINUX)
    6763#include <fcntl.h>
    6864#include <net/if.h>
     
    7975#include "Framebuffer.h"
    8076#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)
    8679#include "SDLConsole.h"
    8780#include "SDLFramebuffer.h"
    8881#endif
    8982
    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
    10084
    10185/*******************************************************************************
     
    130114VMStatus          *gStatus          = NULL;
    131115Console           *gConsole         = NULL;
    132 #ifdef VBOXBFE_WITH_USB
    133 HostUSB           *gHostUSB         = NULL;
    134 #endif
    135116
    136117VMSTATE machineState = VMSTATE_CREATING;
     
    139120
    140121/** 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)
    146123// my mini kbd doesn't have RCTRL...
    147124int                gHostKey    = KMOD_RSHIFT;
     
    156133static bool        g_fACPI   = true;
    157134static bool        g_fAudio  = false;
    158 #ifdef VBOXBFE_WITH_USB
    159 static bool        g_fUSB    = false;
    160 #endif
    161135static char       *g_pszHdaFile   = NULL;
    162136static bool        g_fHdaSpf = false;
     
    370344             "  -[no]ioapic        Enable or disable the IO-APIC (default: disabled)\n"
    371345             "  -audio             Enable audio\n"
    372 #ifndef RT_OS_L4
    373346             "  -natdev<1-N> [mac] Use NAT networking on network adapter <N>.  Use hardware\n"
    374347             "                     address <mac> if specified.\n"
    375 #endif
    376348             "  -hifdev<1-N>       Use Host Interface Networking with host interface <int>\n"
    377349             "      <int> [mac]    on network adapter <N>.  Use hardware address <mac> if\n"
    378350             "                     specified.\n"
    379 #ifndef RT_OS_L4
    380351             "  -intnet<1-N>       Attach network adapter <N> to internal network <net>.  Use\n"
    381352             "      <net> [mac]    hardware address <mac> if specified.\n"
    382 #endif
    383353#if 0
    384354             "  -netsniff<1-N>     Enable packet sniffer\n"
     
    402372             "  -[no]patm          Enable or disable PATM\n"
    403373             "  -[no]csam          Enable or disable CSAM\n"
    404 #endif
    405 #ifdef RT_OS_L4
    406              "  -env <var=value>   Set the given environment variable to \"value\"\n"
    407374#endif
    408375             "\n");
     
    419386    uint32_t secureLabelPointSize = 12;
    420387    char *secureLabelFontFile = NULL;
    421 #endif
    422 #ifdef RT_OS_L4
    423     uint32_t u32MaxVRAM;
    424388#endif
    425389    int rc = VINF_SUCCESS;
     
    544508        else if (strcmp(pszArg, "-audio") == 0)
    545509            g_fAudio = true;
    546 #ifdef VBOXBFE_WITH_USB
    547         else if (strcmp(pszArg, "-usb") == 0)
    548             g_fUSB = true;
    549 #endif
    550510        else if (strcmp(pszArg, "-hda") == 0)
    551511        {
     
    600560                return SyntaxError("The path to the specified cdrom, '%s', could not be resolved.\n", argv[curArg]);
    601561        }
    602 #ifdef RT_OS_L4
    603         /* 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 even
    605            activate it sometime... */
    606         else if (   strncmp(pszArg, "-hifdev", 7) == 0
    607                  || strncmp(pszArg, "-nonetd", 7) == 0)
    608 #else
    609562        else if (   strncmp(pszArg, "-natdev", 7) == 0
    610563                 || strncmp(pszArg, "-hifdev", 7) == 0
    611564                 || strncmp(pszArg, "-nonetd", 7) == 0
    612565                 || strncmp(pszArg, "-intnet", 7) == 0)
    613 #endif
    614566        {
    615567            int i = networkArg2Index(pszArg, 7);
     
    763715            g_fCSAM = false;
    764716#endif /* VBOXSDL_ADVANCED_OPTIONS */
    765 #ifdef RT_OS_L4
    766         else if (strcmp(pszArg, "-env") == 0)
    767             ++curArg;
    768 #endif /* RT_OS_L4 */
    769717        /* just show the help screen */
    770718        else
     
    788736    gConsole = new SDLConsole();
    789737    gFramebuffer = new SDLFramebuffer();
    790 #elif defined(RT_OS_L4)
    791     gConsole = new L4Console();
    792     gFramebuffer = new L4Framebuffer();
    793738#else
    794739#error "todo"
     
    816761    }
    817762
    818 #ifdef RT_OS_L4
    819     /* Start the external IDL interface */
    820     L4CtrlInit();
    821 #endif
    822763
    823764    /* loop until the powerup processing is done */
     
    867808    gConsole->updateTitlebar();
    868809
    869 #ifdef RT_OS_L4
    870     /* 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 actually
    877      * 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 #endif
    887810
    888811    /*
     
    987910int main(int argc, char **argv)
    988911{
    989 # ifdef RT_OS_L4
    990 # ifndef L4API_l4v2onv4
    991     /* clear Fiasco kernel trace buffer */
    992     fiasco_tbuf_clear();
    993 # endif
    994     /* set the environment.  Must be done before the runtime is
    995        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 */
    1006912
    1007913    /*
     
    12411147#endif
    12421148
    1243 #ifdef VBOXBFE_WITH_USB
    1244     /*
    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 
    12541149    /*
    12551150     * Power on the VM (i.e. start executing).
     
    16111506    rc = CFGMR3InsertInteger(pCfg,  "ShowBootMenu",   g_iBootMenu);                 UPDATE_RC();
    16121507
    1613 #ifdef RT_OS_L4
    1614     /* 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 #endif
    16251508
    16261509    rc = CFGMR3InsertNode(pInst,    "LUN#0",          &pLunL0);                     UPDATE_RC();
     
    17901673#endif
    17911674                {
    1792 #if defined(RT_OS_LINUX) || defined(RT_OS_L4)
     1675#if defined(RT_OS_LINUX)
    17931676                    /*
    17941677                     * Create/Open the TAP the device.
     
    19291812        rc = CFGMR3InsertString(pCfg, "AudioDriver",      "solaudio");              UPDATE_RC();
    19301813# endif
    1931 #elif defined(RT_OS_L4)
    1932         rc = CFGMR3InsertString(pCfg, "AudioDriver",      "oss");                   UPDATE_RC();
    19331814#else /* portme */
    19341815        rc = CFGMR3InsertString(pCfg, "AudioDriver",      "none");                  UPDATE_RC();
     
    19361817    }
    19371818
    1938 #ifdef VBOXBFE_WITH_USB
    1939     /*
    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 
    19571819#undef UPDATE_RC
    19581820#undef UPDATE_RC
  • trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp

    r35346 r36590  
    4848#endif
    4949
    50 #ifdef RT_OS_L4
    51 #include <l4/util/util.h> /* for l4_sleep */
    52 #endif
    5350/**
    5451 * VMMDev driver instance data.
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette