Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.6 KiB

  1. ;
  2. ; Copyright (c) 1999 Microsoft Corporation
  3. ;
  4. ; AGP.INF -- This file contains descriptions of all the AGP Miniports
  5. ; supported in Windows NT
  6. ;
  7. ; You will need to change the names and PCI IDs to reflect your part. In order
  8. ; to install this driver, go to device manager, right-click on the PCI-PCI bridge
  9. ; which represents your AGP bridge and select "Properties". Then select the "Driver"
  10. ; page and push the "Update Driver" button. Go through the update driver wizard and
  11. ; on the "Locate Driver Files" page select "Specify a location" and then enter the
  12. ; location of your new INF and driver. I will have this sample and instructions
  13. ; added to the DDK.
  14. ;
  15. ;
  16. [Version]
  17. Signature="$WINDOWS NT$"
  18. Class=System
  19. ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
  20. Provider=%MSFT%
  21. LayoutFile=layout.inf
  22. DriverVer=08/02/1999,5.00.2072
  23. ; =================== Common for all AGP devices =========================
  24. [DestinationDirs]
  25. DefaultDestDir = 12 ; DIRID_DRIVERS
  26. [Manufacturer]
  27. %MS_MFG%=MS_AGP
  28. [AGP_Filter_Reg]
  29. HKR,,"UpperFilters", 0x00010000,"UAGP35"
  30. HKLM,"SYSTEM\CurrentControlSet\Services\uagp35\Parameters","1106316801",0x00030003,00,00,30,00,00,00,00,00
  31. HKLM,"SYSTEM\CurrentControlSet\Services\uagp35\Parameters","1106316802",0x00030003,00,00,30,00,00,00,00,00
  32. HKLM,"SYSTEM\CurrentControlSet\Services\uagp35\Parameters","1106316803",0x00030003,00,00,30,00,00,00,00,00
  33. HKLM,"SYSTEM\CurrentControlSet\Services\uagp35\Parameters","1106318900",0x00030003,00,00,30,00,00,00,00,00
  34. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","102B0520",0x00030003,80,00,00,00,00,00,00,00
  35. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","102B0521",0x00030003,80,00,00,00,00,00,00,00
  36. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","102B0525",0x00030003,80,00,00,00,00,00,00,00
  37. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","10DE0100",0x00030003,00,01,00,00,00,00,00,00
  38. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","53339102",0x00030003,00,01,00,00,00,00,00,00
  39. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","53338C10",0x00030003,00,01,00,00,00,00,00,00
  40. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","53338C12",0x00030003,00,01,00,00,00,00,00,00
  41. [pci_ServiceInstallSection]
  42. DisplayName = %pci_svcdesc%
  43. ServiceType = %SERVICE_KERNEL_DRIVER%
  44. StartType = %SERVICE_BOOT_START%
  45. ErrorControl = %SERVICE_ERROR_NORMAL%
  46. ServiceBinary = %12%\pci.sys
  47. LoadOrderGroup = "Boot Bus Extender"
  48. [MS_AGP]
  49. %PCI\VEN_1106&DEV_B168.DeviceDesc%=UAGP35_Install,PCI\VEN_1106&DEV_B168
  50. %PCI\VEN_8086&DEV_2552.DeviceDesc%=UAGP35_Install,PCI\VEN_8086&DEV_2552
  51. [UAGP35_Install]
  52. CopyFiles=@UAGP35.SYS
  53. [UAGP35_Install.HW]
  54. AddReg = AGP_Filter_Reg
  55. [UAGP35_Install.Services]
  56. AddService = uagp35,0,uagp35_ServiceInstallSection
  57. AddService = pci, %SPSVCINST_ASSOCSERVICE%, pci_ServiceInstallSection
  58. [uagp35_ServiceInstallSection]
  59. DisplayName = %uagp35_svcdesc%
  60. ServiceType = %SERVICE_KERNEL_DRIVER%
  61. StartType = %SERVICE_DEMAND_START%
  62. ErrorControl = %SERVICE_ERROR_NORMAL%
  63. ServiceBinary = %12%\uagp35.sys
  64. LoadOrderGroup = PnP Filter
  65. ; =================== STRINGS and CONSTANTS ========================
  66. [Strings]
  67. MS_MFG = "Microsoft"
  68. MSFT = "Microsoft"
  69. PCI\VEN_1106&DEV_B168.DeviceDesc = "Microsoft Accelerated Graphics Port v3.5"
  70. PCI\VEN_8086&DEV_2552.DeviceDesc = "Microsoft Accelerated Graphics Port v3.5"
  71. ;service descriptions
  72. uagp35_svcdesc = "Microsoft AGPv3.5 Filter"
  73. pci_svcdesc = "PCI Bus Driver"
  74. ;*******************************************
  75. ;Handy macro substitutions (non-localizable)
  76. SPSVCINST_ASSOCSERVICE = 0x00000002
  77. SERVICE_KERNEL_DRIVER = 1
  78. SERVICE_BOOT_START = 0
  79. SERVICE_DEMAND_START = 3
  80. SERVICE_ERROR_NORMAL = 1