summaryrefslogtreecommitdiff
path: root/src/mainboard/samsung/lumpy/acpi/chromeos.asl
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-06-07 15:38:44 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2012-07-24 08:36:03 +0200
commit2198c583b258d5f8bb20a1f5411391a4ee4d4c83 (patch)
tree6a558cbf268d430b5a4aa0cb0b736284d646c345 /src/mainboard/samsung/lumpy/acpi/chromeos.asl
parent48214899c3e74d590ad45f1b8e98f745f2c6b2d0 (diff)
downloadcoreboot-2198c583b258d5f8bb20a1f5411391a4ee4d4c83.tar.xz
Move GGL0001 ACPI code to generic ChromeOS code
The only difference in this code on all our platforms is the array describing the GPIOs. Hence, only keep that array in the mainboard ChromeOS directory and move everything else to generic ChromeOS ACPI code. Change-Id: I9fc75842af64530c1255bea1c5f803c5316d6da6 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1278 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/samsung/lumpy/acpi/chromeos.asl')
-rw-r--r--src/mainboard/samsung/lumpy/acpi/chromeos.asl99
1 files changed, 5 insertions, 94 deletions
diff --git a/src/mainboard/samsung/lumpy/acpi/chromeos.asl b/src/mainboard/samsung/lumpy/acpi/chromeos.asl
index fc7be2010e..fbe98c9755 100644
--- a/src/mainboard/samsung/lumpy/acpi/chromeos.asl
+++ b/src/mainboard/samsung/lumpy/acpi/chromeos.asl
@@ -17,98 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-Device (CRHW)
-{
- Name(_HID, EISAID("GGL0001"))
+Name(OIPG, Package() {
+ Package() { 0x001, 0, 42, "CougarPoint" }, // recovery button
+ Package() { 0x002, 1, 17, "CougarPoint" }, // developer switch
+ Package() { 0x003, 1, 24, "CougarPoint" }, // firmware write protect
+})
- Method(_STA, 0, Serialized)
- {
- Return (0xb)
- }
-
- Method(CHSW, 0, Serialized)
- {
- Name (WSHC, Package() { VBT3 })
- Return (WSHC)
- }
-
- Method(FWID, 0, Serialized)
- {
- Name (DIW1, "")
- ToString(VBT5, 63, DIW1)
- Name (DIWF, Package() { DIW1 })
- Return(DIWF)
- }
-
- Method(FRID, 0, Serialized)
- {
- Name (DIR1, "")
- ToString(VBT6, 63, DIR1)
- Name (DIRF, Package() { DIR1 })
- Return (DIRF)
- }
-
- Method(HWID, 0, Serialized)
- {
- Name (DIW0, "")
- ToString(VBT4, 255, DIW0)
- Name (DIWH, Package() { DIW0 })
- Return (DIWH)
- }
-
- Method(BINF, 0, Serialized)
- {
- Name (FNIB, Package() { VBT0, VBT1, VBT2, VBT7, VBT8 })
- Return (FNIB)
- }
-
- Method(GPIO, 0, Serialized)
- {
- Name(OIPG, Package() {
- Package() { 0x001, 0, 42, "CougarPoint" }, // recovery button
- Package() { 0x002, 1, 17, "CougarPoint" }, // developer switch
- Package() { 0x003, 1, 24, "CougarPoint" }, // firmware write protect
- })
- Return (OIPG)
-
- }
-
- Method(VBNV, 0, Serialized)
- {
- Name(VNBV, Package() {
- // See src/vendorcode/google/chromeos/Kconfig
- // for the definition of these:
- CONFIG_VBNV_OFFSET,
- CONFIG_VBNV_SIZE
- })
- Return(VNBV)
- }
-
- Method(VDAT, 0, Serialized)
- {
- Name(TAD0,"")
- ToBuffer(CHVD, TAD0)
- Name (TADV, Package() { TAD0 })
- Return (TADV)
- }
-
- Method(FMAP, 0, Serialized)
- {
- Name(PAMF, Package() { VBT9 })
- Return(PAMF)
- }
-
- Method(MECK, 0, Serialized)
- {
- Name(HASH, Package() { MEHH })
- Return(HASH)
- }
-
- Method(MLST, 0, Serialized)
- {
- Name(TSLM, Package() { "CHSW", "FWID", "HWID", "FRID", "BINF",
- "GPIO", "VBNV", "VDAT", "FMAP", "MECK"
- })
- Return (TSLM)
- }
-}