VirtualBox

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


Ignore:
Timestamp:
May 22, 2007 10:40:39 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
21386
Message:

Log PIT frequency changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/DevPit-i8254.cpp

    • Property svn:keywords changed from Author Date Id Revision to Id
    r2569 r2779  
     1/** $Id$ */
    12/** @file
    2  *
    3  * VBox basic PC devices:
    4  * Intel 8254 programmable interval timer
     3 * Intel 8254 Programmable Interval Timer (PIT).
    54 */
    65
     
    9998    int64_t next_transition_time;
    10099    int32_t irq;
    101     uint32_t padding;
     100    /** Number of release log entries. Used to prevent floading. */
     101    uint32_t cRelLogEntries;
    102102
    103103    uint32_t count; /* can be 65536 */
     
    299299    s->count = val;
    300300    pit_irq_timer_update(s, s->count_load_time);
     301
     302    /* log the new rate if it's high enough. */
     303    if (    (   s->mode == 2
     304             || s->mode == 3)
     305        &&  s->count < 0x10000
     306        &&  s->cRelLogEntries++ < 32)
     307        LogRel(("PIT: mode=%d count=%#x - %d.%02d Hz\n", s->mode, s->count,
     308                PIT_FREQ / s->count, (PIT_FREQ * 100 / s->count) % 100));
    301309}
    302310
     
    815823        s->bcd = 0;
    816824#endif
     825        s->cRelLogEntries = 0;
    817826        s->mode = 3;
    818827        s->gate = (i != 2);
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