]> git.proxmox.com Git - mirror_edk2.git/blobdiff - QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/PCA9685.asi
QuarkPlatformPkg: Add new package for Galileo boards
[mirror_edk2.git] / QuarkPlatformPkg / Acpi / AcpiTables / Dsdt / PCA9685.asi
diff --git a/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/PCA9685.asi b/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/PCA9685.asi
new file mode 100644 (file)
index 0000000..4d3d550
--- /dev/null
@@ -0,0 +1,40 @@
+/** @file\r
+NXP PCA9685 i2c-accessible PWM/LED controller.\r
+\r
+Copyright (c) 2013-2015 Intel Corporation.\r
+\r
+This program and the accompanying materials\r
+are licensed and made available under the terms and conditions of the BSD License\r
+which accompanies this distribution.  The full text of the license may be found at\r
+http://opensource.org/licenses/bsd-license.php\r
+\r
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+\r
+Device(PWM1)\r
+{\r
+    Name(_HID, "INT3492") // NXP PCA9685 i2c-accessible PWM/LED controller.\r
+    Name(_CID, "INT3492")\r
+\r
+    Name(RBUF, ResourceTemplate()\r
+    {\r
+        I2CSerialBus(0x47, ControllerInitiated, 400000, AddressingMode7Bit, "\\_SB.PCI0.GIP0.I2C_", 0, ResourceConsumer, , )\r
+    })\r
+    Method(_CRS, 0x0, NotSerialized)\r
+    {\r
+        Return(RBUF)\r
+    }\r
+    Method(_STA, 0x0, NotSerialized)\r
+    {\r
+        //\r
+        // Only Platform Type / Id 8 has this device.\r
+        //\r
+        If(LNotEqual(PTYP, 8))\r
+        {\r
+          return (0)\r
+        }\r
+        Return(0xf)\r
+    }\r
+}\r