A dedicated pmc_ipc DSDT entry is required for pmc_ipc kernel driver. The ACPI mode entry includes resources for PMC_IPC1, SRAM, ACPI IO and Punit Mailbox. BRANCH=None BUG=chrome-os-partner:57364 TEST=Boot up into OS successfully and check with dmesg to see the driver has been loaded successfully without errors. Change-Id: I3f60999ab90962c4ea0a444812e4a7dcce1da5b6 Signed-off-by: Zhao, Lijian <lijian.zhao@intel.com> Reviewed-on: https://review.coreboot.org/16649 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2016 Intel Corp.
|
|
* (Written by Lance Zhao <lijian.zhao@intel.com> for Intel Corp.)
|
|
*
|
|
* 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; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <soc/gpe.h>
|
|
|
|
/* Power button. */
|
|
Scope (\_SB)
|
|
{
|
|
Device (PWRB)
|
|
{
|
|
Name (_HID, EisaId ("PNP0C0C"))
|
|
}
|
|
}
|
|
|
|
/* PCIE device */
|
|
#include "pcie.asl"
|
|
|
|
/* LPSS device */
|
|
#include "lpss.asl"
|
|
|
|
/* PCI IRQ assignment */
|
|
#include "pci_irqs.asl"
|
|
|
|
/* GPIO controller */
|
|
#include "gpio.asl"
|
|
|
|
#include "xhci.asl"
|
|
|
|
/* PMC IPC */
|
|
#include "pmc_ipc.asl"
|
|
|
|
/* LPC */
|
|
#include "lpc.asl"
|
|
|
|
/* eMMC */
|
|
#include "scs.asl"
|
|
|
|
/* PCI _OSC */
|
|
#include <soc/intel/common/acpi/pci_osc.asl>
|