From: Andy Shevchenko Date: Sat, 10 Nov 2018 15:37:01 +0000 (+0200) Subject: x86: acpi: Enable RTC for Intel Tangier X-Git-Tag: v2019.01-rc2~18^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1b8641fd48d573fbedea55eb0e3081f18125d54;p=platform%2Fkernel%2Fu-boot.git x86: acpi: Enable RTC for Intel Tangier Intel Tangier SoC has RTC inside. So, enable it in ACPI. Signed-off-by: Andy Shevchenko Reviewed-by: Bin Meng --- diff --git a/arch/x86/include/asm/arch-tangier/acpi/platform.asl b/arch/x86/include/asm/arch-tangier/acpi/platform.asl index 7abea4b..353b879 100644 --- a/arch/x86/include/asm/arch-tangier/acpi/platform.asl +++ b/arch/x86/include/asm/arch-tangier/acpi/platform.asl @@ -21,6 +21,19 @@ Method(_WAK, 1) Return (Package() {0, 0}) } +Scope (_SB) +{ + /* Real Time Clock */ + Device (RTC0) + { + Name (_HID, EisaId ("PNP0B00")) + Name (_CRS, ResourceTemplate() + { + IO(Decode16, 0x70, 0x70, 0x01, 0x08) + }) + } +} + /* ACPI global NVS */ #include "global_nvs.asl"