Various license header consistency fixes (trivial).
[coreboot.git] / src / mainboard / asus / m2v-mx_se / dsdt.asl
index 61d34f27142a2c93a1f0a5ba98e7e850c2968f44..fd4d42d378ab4df2cb264cf984d6f7181f6e41f8 100644 (file)
@@ -1,14 +1,12 @@
 /*
  * This file is part of the coreboot project.
  *
- * (C) Copyright 2004 Nick Barker <Nick.Barker9@btinternet.com>
- * (C) Copyright 2007, 2008 Rudolf Marek <r.marek@assembler.cz>
- *
- * ISA portions taken from QEMU acpi-dsdt.dsl.
+ * Copyright (C) 2004 Nick Barker <Nick.Barker9@btinternet.com>
+ * Copyright (C) 2007, 2008 Rudolf Marek <r.marek@assembler.cz>
  *
  * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License v2 as published by
- * the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+/*
+ * ISA portions taken from QEMU acpi-dsdt.dsl.
+ */
+
 DefinitionBlock ("DSDT.aml", "DSDT", 1, "LXBIOS", "LXB-DSDT", 1)
 {
-        Include ("amdk8_util.asl")
-
-
-       /* Define the main processor.*/
-       Scope (\_PR)
-       {
-               Processor (\_PR.CPU0, 0x00, 0x000000, 0x00) {}
-               Processor (\_PR.CPU1, 0x01, 0x000000, 0x00) {}
-       }
+        #include "northbridge/amd/amdk8/amdk8_util.asl"
 
        /* For now only define 2 power states:
         *  - S0 which is fully on
@@ -38,8 +32,24 @@ DefinitionBlock ("DSDT.aml", "DSDT", 1, "LXBIOS", "LXB-DSDT", 1)
         * Any others would involve declaring the wake up methods.
         */
        Name (\_S0, Package () { 0x00, 0x00, 0x00, 0x00 })
+       Name (\_S3, Package () { 0x01, 0x01, 0x00, 0x00 })
        Name (\_S5, Package () { 0x02, 0x02, 0x00, 0x00 })
 
+
+       /* blink a LED when entering the sleep (any type) */
+       Method (_PTS, 1, NotSerialized)
+       {
+               Store (0x1, \_SB.PCI0.ISA.LEDR)
+       }
+
+       /* cancel a LED blinking when waking from sleep (any type) */
+       Method (_WAK, 1, NotSerialized)
+       {
+               Store (0x0, \_SB.PCI0.ISA.LEDR)
+               /* wake OK */
+               Return(Package(0x02){0x00, 0x00})
+       }
+
        /* Root of the bus hierarchy */
        Scope (\_SB)
        {
@@ -90,8 +100,8 @@ DefinitionBlock ("DSDT.aml", "DSDT", 1, "LXBIOS", "LXB-DSDT", 1)
 
                        /* PCI Routing Table */
                        Name (_PRT, Package () {
-                               Package (0x04) { 0x000F0000, 0x01, 0x00, 0x15 }, /* 0xf SATA IRQ 21 */
-                               Package (0x04) { 0x000F0001, 0x00, 0x00, 0x14 }, /* 0xf Native IDE IRQ 20 */
+                               Package (0x04) { 0x000FFFFF, 0x01, 0x00, 0x15 }, /* 0xf SATA IRQ 21 */
+                               Package (0x04) { 0x000FFFFF, 0x00, 0x00, 0x14 }, /* 0xf Native IDE IRQ 20 */
                                Package (0x04) { 0x0010FFFF, 0x00, 0x00, 0x15 }, /* USB routing */
                                Package (0x04) { 0x0010FFFF, 0x01, 0x00, 0x15 },
                                Package (0x04) { 0x0010FFFF, 0x02, 0x00, 0x15 },
@@ -168,7 +178,14 @@ DefinitionBlock ("DSDT.aml", "DSDT", 1, "LXBIOS", "LXB-DSDT", 1)
                        }
                        Device (ISA) {
                                Name (_ADR, 0x00110000)
-
+                               OperationRegion (PCIC, PCI_Config, 0x0, 0xff)
+                               Field (PCIC, ByteAcc, NoLock, Preserve)
+                               {
+                                       Offset (0x94),
+                                       /* two LSB bits are blink rate */
+                                       LEDR,   2,
+                               }
+                               
                                /* PS/2 keyboard (seems to be important for WinXP install) */
                                Device (KBD)
                                {