From bd10516643893f0f0904109519220d65413285b5 Mon Sep 17 00:00:00 2001 From: Dennis Wassenberg Date: Thu, 10 Sep 2015 12:20:58 +0200 Subject: mb/roda/rv11: Add new boards Lizard RV11 and RW11 The Roda Lizard RV11 is a comparatively lightweight, full-rugged notebook. It's based on a 17W TDP dual core Ivy Bridge CPU. The Lizard RW11 is its bigger brother (45W TDP quad core, more i/o options). The RV11 is the first board to use the native graphics initialization by libgfxinit. Tested so far, are the internal eDP port, DP and VGA. Change-Id: Iea283059ce3402dc36184baf16928b55285a9eeb Signed-off-by: Dennis Wassenberg Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/17446 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/mainboard/roda/rv11/acpi/alsd.asl | 67 ++++++++++++++ src/mainboard/roda/rv11/acpi/ec.asl | 17 ++++ src/mainboard/roda/rv11/acpi/mainboard.asl | 21 +++++ src/mainboard/roda/rv11/acpi/platform.asl | 30 ++++++ src/mainboard/roda/rv11/acpi/thermal.asl | 142 +++++++++++++++++++++++++++++ 5 files changed, 277 insertions(+) create mode 100644 src/mainboard/roda/rv11/acpi/alsd.asl create mode 100644 src/mainboard/roda/rv11/acpi/ec.asl create mode 100644 src/mainboard/roda/rv11/acpi/mainboard.asl create mode 100644 src/mainboard/roda/rv11/acpi/platform.asl create mode 100644 src/mainboard/roda/rv11/acpi/thermal.asl (limited to 'src/mainboard/roda/rv11/acpi') diff --git a/src/mainboard/roda/rv11/acpi/alsd.asl b/src/mainboard/roda/rv11/acpi/alsd.asl new file mode 100644 index 0000000000..120332d862 --- /dev/null +++ b/src/mainboard/roda/rv11/acpi/alsd.asl @@ -0,0 +1,67 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2015 secunet Security Networks AG + * + * This program is free software; you can redistribute it and/or modify + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +Device (ALSD) +{ + Name (_HID, "ACPI0008") // _HID: Hardware ID + Method (_STA, 0, NotSerialized) // _STA: Status + { + Return (0x0F) + } + + Method (_ALI, 0, NotSerialized) // _ALI: Ambient Light Illuminance + { + Store (\_SB.PCI0.LPCB.EC0.LUXH, Local0) + Or (ShiftLeft (Local0, 8), \_SB.PCI0.LPCB.EC0.LUXL, Local0) + Store ("-----> _ALI: ", Debug) + Store (Local0, Debug) + Store (\_SB.PCI0.LPCB.EC0.LUXH, Debug) + Store (\_SB.PCI0.LPCB.EC0.LUXL, Debug) + Return (Local0) + } + + Name (_ALR, Package (0x05) // _ALR: Ambient Light Response + { + Package (0x02) + { + 0x46, + Zero + }, + + Package (0x02) + { + 0x49, + 0x0A + }, + + Package (0x02) + { + 0x55, + 0x50 + }, + + Package (0x02) + { + 0x64, + 0x012C + }, + + Package (0x02) + { + 0x96, + 0x03E8 + } + }) +} diff --git a/src/mainboard/roda/rv11/acpi/ec.asl b/src/mainboard/roda/rv11/acpi/ec.asl new file mode 100644 index 0000000000..a1bcbb1fc8 --- /dev/null +++ b/src/mainboard/roda/rv11/acpi/ec.asl @@ -0,0 +1,17 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2015 secunet Security Networks AG + * + * This program is free software; you can redistribute it and/or modify + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#define EC_SCI_GPI 7 +#include diff --git a/src/mainboard/roda/rv11/acpi/mainboard.asl b/src/mainboard/roda/rv11/acpi/mainboard.asl new file mode 100644 index 0000000000..a91c5d6ba5 --- /dev/null +++ b/src/mainboard/roda/rv11/acpi/mainboard.asl @@ -0,0 +1,21 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2015 secunet Security Networks AG + * + * This program is free software; you can redistribute it and/or modify + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +Scope (\_SB) { + Device (PWRB) + { + Name (_HID, EisaId("PNP0C0C")) + } +} diff --git a/src/mainboard/roda/rv11/acpi/platform.asl b/src/mainboard/roda/rv11/acpi/platform.asl new file mode 100644 index 0000000000..df21c8c70c --- /dev/null +++ b/src/mainboard/roda/rv11/acpi/platform.asl @@ -0,0 +1,30 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2015 secunet Security Networks AG + * + * This program is free software; you can redistribute it and/or modify + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +/* The _PTS method (Prepare To Sleep) is called before the OS is + * entering a sleep state. The sleep state number is passed in Arg0 + */ + +Method(_PTS,1) +{ + +} + +/* The _WAK method is called on system wakeup */ + +Method(_WAK,1) +{ + Return(Package(){0,0}) +} diff --git a/src/mainboard/roda/rv11/acpi/thermal.asl b/src/mainboard/roda/rv11/acpi/thermal.asl new file mode 100644 index 0000000000..b87fc4f63d --- /dev/null +++ b/src/mainboard/roda/rv11/acpi/thermal.asl @@ -0,0 +1,142 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2015-2016 secunet Security Networks AG + * + * This program is free software; you can redistribute it and/or modify + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +// Thermal Zone + +Scope (\_TZ) +{ + // Convert from Degrees C to 1/10 Kelvin for ACPI + Method (CTOK, 1) { + // 10th of Degrees C + Multiply (Arg0, 10, Local0) + + // Convert to Kelvin + Add (Local0, 2732, Local0) + + Return (Local0) + } + + ThermalZone (THRM) + { + Name (_TC1, 0x02) + Name (_TC2, 0x05) + + // Thermal zone polling frequency: 10 seconds + Name (_TZP, 100) + + // Thermal sampling period for passive cooling: 2 seconds + Name (_TSP, 20) + + // Threshold for OS to shutdown + Method (_CRT, 0, Serialized) + { + Return (CTOK (\TCRT)) + } + + // Threshold for passive cooling + Method (_PSV, 0, Serialized) + { + Return (CTOK (\TPSV)) + } + + // Processors used for passive cooling + Method (_PSL, 0, Serialized) + { + Return (\PPKG ()) + } + + Method (_TMP, 0, NotSerialized) // _TMP: Temperature + { + Store (\_SB.PCI0.LPCB.EC0.CPUT, Local0) + + If (Local0 >= 0x80) + { + Store ("-----> CPU Temperature (INVALID): ", Debug) + Store (Local0, Debug) + Return (CTOK (0)) + } + + Store ("-----> CPU Temperature: ", Debug) + Store (Local0, Debug) + + Return (CTOK (Local0)) + } + + } + + ThermalZone (TZ00) + { + // Thermal zone polling frequency: 10 seconds + Name (_TZP, 100) + + // Thermal sampling period for passive cooling: 2 seconds + Name (_TSP, 20) + + // Threshold for OS to shutdown + Method (_CRT, 0, Serialized) + { + Return (CTOK (106)) + } + + Method (_TMP, 0, NotSerialized) // _TMP: Temperature + { + Store (\_SB.PCI0.LPCB.EC0.LOCT, Local0) + + If (Local0 >= 0x80) + { + Store ("-----> LOC Temperature (INVALID): ", Debug) + Store (Local0, Debug) + Return (CTOK (0)) + } + + Store ("-----> LOC Temperature: ", Debug) + Store (Local0, Debug) + + Return (CTOK (Local0)) + } + } + + ThermalZone (TZ01) + { + // Thermal zone polling frequency: 10 seconds + Name (_TZP, 100) + + // Thermal sampling period for passive cooling: 2 seconds + Name (_TSP, 20) + + // Threshold for OS to shutdown + Method (_CRT, 0, Serialized) + { + Return (CTOK (106)) + } + + Method (_TMP, 0, NotSerialized) // _TMP: Temperature + { + Store (\_SB.PCI0.LPCB.EC0.OEMT, Local0) + + If (Local0 >= 0x80) + { + Store ("-----> OEM Temperature (INVALID): ", Debug) + Store (Local0, Debug) + Return (CTOK (0)) + } + + Store ("-----> OEM Temperature: ", Debug) + Store (Local0, Debug) + + Return (CTOK (Local0)) + } + } +} -- cgit v1.2.3