VirtualBox

Changeset 2538 in vbox for trunk/src/VBox/Devices/PC


Ignore:
Timestamp:
May 8, 2007 3:04:53 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
20977
Message:

Quick implementation of IRQ level flip-flip (pass PDM_IRQ_LEVEL_FLIP_FLOP as the level).

Location:
trunk/src/VBox/Devices/PC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/DevAPIC.cpp

    r2468 r2538  
    12881288                s->irr |= mask;
    12891289                ioapic_service(s);
     1290#ifdef VBOX
     1291                if ((level & PDM_IRQ_LEVEL_FLIP_FLOP) == PDM_IRQ_LEVEL_FLIP_FLOP) {
     1292                    s->irr &= ~mask;
     1293                }
     1294#endif
    12901295            } else {
    12911296                s->irr &= ~mask;
  • trunk/src/VBox/Devices/PC/DevPIC.cpp

    r2269 r2538  
    353353    DumpPICState(&pData->aPics[1], "picSetIrq");
    354354    STAM_COUNTER_INC(&pData->CTXSUFF(StatSetIrq));
    355     pic_set_irq1(&pData->aPics[iIrq >> 3], iIrq & 7, iLevel);
     355    pic_set_irq1(&pData->aPics[iIrq >> 3], iIrq & 7, iLevel & PDM_IRQ_LEVEL_HIGH);
    356356    pic_update_irq(pData);
     357    if ((iLevel & PDM_IRQ_LEVEL_FLIP_FLOP) == PDM_IRQ_LEVEL_FLIP_FLOP)
     358    {
     359        pic_set_irq1(&pData->aPics[iIrq >> 3], iIrq & 7, 0);
     360        pic_update_irq(pData);
     361    }
    357362}
    358363
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