- Timestamp:
- May 22, 2007 10:56:27 PM (18 years ago)
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevACPI.cpp
-
Property svn:keywords
changed from
Author Date Id Revision
toId
r2546 r2781 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * Advanced Configuration and Power Interface (ACPI) device 3 * Advanced Configuration and Power Interface (ACPI) Device. 5 4 */ 6 5 -
Property svn:keywords
changed from
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
-
Property svn:keywords
changed from
Author Date Id Revision
toId
r2749 r2781 1 1 #ifdef VBOX 2 /* $Id$ */ 2 3 /** @file 3 * 4 * VBox basic PC devices: 5 * Advanced Programmable Interrupt Controller (APIC) device 4 * Advanced Programmable Interrupt Controller (APIC) Device and 5 * I/O Advanced Programmable Interrupt Controller (IO-APIC) Device. 6 6 */ 7 7 … … 1788 1788 "VBoxDD2R0.r0", 1789 1789 /* pszDescription */ 1790 "Advanced Programmable Interrupt Controller ",1790 "Advanced Programmable Interrupt Controller (APIC) Device", 1791 1791 /* fFlags */ 1792 1792 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_32_64 | PDM_DEVREG_FLAGS_PAE36 | PDM_DEVREG_FLAGS_GC | PDM_DEVREG_FLAGS_R0, … … 2054 2054 "VBoxDD2R0.r0", 2055 2055 /* pszDescription */ 2056 "I/O Advanced Programmable Interrupt Controller ",2056 "I/O Advanced Programmable Interrupt Controller (IO-APIC) Device", 2057 2057 /* fFlags */ 2058 2058 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_32_64 | PDM_DEVREG_FLAGS_PAE36 | PDM_DEVREG_FLAGS_GC | PDM_DEVREG_FLAGS_R0, -
Property svn:keywords
changed from
-
trunk/src/VBox/Devices/PC/DevDMA.cpp
-
Property svn:keywords
set to
Id
r1912 r2781 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * DMA controller 3 * DMA Controller Device. 5 4 */ 6 5 … … 958 957 "", 959 958 /* pszDescription */ 960 "DMA Controller .\n",959 "DMA Controller Device", 961 960 /* fFlags */ 962 961 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_DEFAULT, -
Property svn:keywords
set to
-
trunk/src/VBox/Devices/PC/DevPIC.cpp
-
Property svn:keywords
set to
Id
r2538 r2781 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * Intel 8259 Programmable Interrupt Controller. 3 * Intel 8259 Programmable Interrupt Controller (PIC) Device. 5 4 */ 6 5 … … 1087 1086 "VBoxDDR0.r0", 1088 1087 /* pszDescription */ 1089 " i8259 Programmable Interrupt Controller",1088 "Intel 8259 Programmable Interrupt Controller (PIC) Device.", 1090 1089 /* fFlags */ 1091 1090 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_32_64 | PDM_DEVREG_FLAGS_PAE36 | PDM_DEVREG_FLAGS_GC | PDM_DEVREG_FLAGS_R0, -
Property svn:keywords
set to
-
trunk/src/VBox/Devices/PC/DevPcArch.c
-
Property svn:keywords
changed from
Author Date Id Revision
toId
r1 r2781 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * PC architechture device 3 * PC Architechture Device. 5 4 */ 6 5 -
Property svn:keywords
changed from
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
-
Property svn:keywords
changed from
Author Date Id Revision
toId
r2749 r2781 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * PC BIOS device 3 * PC BIOS Device. 5 4 */ 6 5 … … 875 874 876 875 /* I/O-APIC. 877 * MP spec: "The configuration table contains one or more entries for I/O APICs. 876 * MP spec: "The configuration table contains one or more entries for I/O APICs. 878 877 * ... At least one I/O APIC must be enabled." */ 879 878 PMPSIOAPICENTRY pIOAPICEntry = (PMPSIOAPICENTRY)(pBusEntry+1); … … 889 888 pIrqEntry->u8EntryType = 3; /* I/O interrupt entry */ 890 889 pIrqEntry->u8Type = 0; /* INT, vectored interrupt */ 891 pIrqEntry->u16Flags = 0; /* polarity of APIC I/O input signal = conforms to bus, 890 pIrqEntry->u16Flags = 0; /* polarity of APIC I/O input signal = conforms to bus, 892 891 trigger mode = conforms to bus */ 893 892 pIrqEntry->u8SrcBusId = 0; /* ISA bus */ … … 1439 1438 "", 1440 1439 /* pszDescription */ 1441 " Bochs PC BIOS",1440 "PC BIOS Device", 1442 1441 /* fFlags */ 1443 1442 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_32_64, -
Property svn:keywords
changed from
-
trunk/src/VBox/Devices/PC/DevPcBios.h
r2651 r2781 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * PC BIOS device 3 * PC BIOS Device Header. 5 4 */ 6 5 … … 34 33 35 34 #endif 35 -
trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
r2779 r2781 1 1 /** $Id$ */ 2 2 /** @file 3 * Intel 8254 Programmable Interval Timer (PIT) .3 * Intel 8254 Programmable Interval Timer (PIT) And Dummy Speaker Device. 4 4 */ 5 5 … … 301 301 302 302 /* log the new rate if it's high enough. */ 303 if ( ( s->mode == 2 303 if ( ( s->mode == 2 304 304 || s->mode == 3) 305 305 && s->count < 0x10000 306 306 && s->cRelLogEntries++ < 32) 307 LogRel(("PIT: mode=%d count=%#x - %d.%02d Hz\n", s->mode, s->count, 307 LogRel(("PIT: mode=%d count=%#x - %d.%02d Hz\n", s->mode, s->count, 308 308 PIT_FREQ / s->count, (PIT_FREQ * 100 / s->count) % 100)); 309 309 } … … 1024 1024 "VBoxDDR0.r0", 1025 1025 /* pszDescription */ 1026 " i8254 Programmable Interval Timer And Dummy Speaker",1026 "Intel 8254 Programmable Interval Timer (PIT) And Dummy Speaker Device", 1027 1027 /* fFlags */ 1028 1028 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_32_64 | PDM_DEVREG_FLAGS_PAE36 | PDM_DEVREG_FLAGS_GC | PDM_DEVREG_FLAGS_R0, -
trunk/src/VBox/Devices/PC/DevRTC.cpp
-
Property svn:keywords
set to
Id
r2627 r2781 1 /* $Id$ */ 1 2 /** @file 2 *3 * VBox basic PC devices:4 3 * Motorola MC146818 RTC/CMOS Device. 5 4 */ -
Property svn:keywords
set to
-
trunk/src/VBox/Devices/PC/DrvACPI.cpp
-
Property svn:keywords
changed from
Author Date Id Revision
toId
r1 r2781 1 /** $Id$ */ 1 2 /** @file 2 * 3 * VBox basic PC devices: 4 * ACPI host interface driver 3 * ACPI Host Driver. 5 4 */ 6 5 … … 529 528 NULL 530 529 }; 530 -
Property svn:keywords
changed from
-
trunk/src/VBox/Devices/PC/vbox.dsl
-
Property svn:keywords
changed from
Author Date Id Revision
toId
r2546 r2781 1 // $Id$ 1 2 /// @file 2 3 // -
Property svn:keywords
changed from
Note:
See TracChangeset
for help on using the changeset viewer.