Changeset 25967 in vbox
- Timestamp:
- Jan 22, 2010 11:16:06 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56819
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/vbox.dsl
r25928 r25967 870 870 } 871 871 872 // RTC and CMOS 872 // Programmable Interval Timer (i8254) 873 Device (TIMR) 874 { 875 Name (_HID, EisaId ("PNP0100")) 876 Name (_CRS, ResourceTemplate () 877 { 878 IO (Decode16, 879 0x0040, // Range Minimum 880 0x0040, // Range Maximum 881 0x00, // Alignment 882 0x04, // Length 883 ) 884 IO (Decode16, 885 0x0050, // Range Minimum 886 0x0050, // Range Maximum 887 0x10, // Alignment 888 0x04, // Length 889 ) 890 }) 891 } 892 893 // Programmable Interrupt Controller (i8259) 894 Device (PIC) 895 { 896 Name (_HID, EisaId ("PNP0000")) 897 Name (_CRS, ResourceTemplate () 898 { 899 IO (Decode16, 900 0x0020, // Range Minimum 901 0x0020, // Range Maximum 902 0x00, // Alignment 903 0x02, // Length 904 ) 905 IO (Decode16, 906 0x00A0, // Range Minimum 907 0x00A0, // Range Maximum 908 0x00, // Alignment 909 0x02, // Length 910 ) 911 IRQNoFlags () 912 {2} 913 }) 914 } 915 916 917 // Real Time Clock and CMOS (MC146818) 873 918 Device (RTC) 874 919 { … … 925 970 Return (USMC) 926 971 } 927 Name ( _CRS, ResourceTemplate ()972 Name (CRS, ResourceTemplate () 928 973 { 929 974 IO (Decode16, … … 931 976 0x0300, // Range Maximum 932 977 0x01, // Alignment 933 0x20, // Length 934 ) 935 // This line seriously confuses Windows ACPI driver, so not even try to 936 // enable SMC for Windows guests 937 IRQNoFlags () {8} 938 }) 939 } 940 } 978 0x20) // Length 979 IRQNoFlags () 980 {6} 981 982 }) 983 Method (_CRS, 0, NotSerialized) 984 { 985 Return (CRS) 986 } 987 } 988 } 941 989 942 990 // Control method battery
Note:
See TracChangeset
for help on using the changeset viewer.