diff options
author | Subrata Banik <subratabanik@google.com> | 2022-12-08 16:05:40 +0530 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2022-12-10 08:02:42 +0000 |
commit | ff433b71765d91673aac6cc25b16a41bdb564645 (patch) | |
tree | 9a64857ba234ab129897ce5aae4ee714e05bd11b /src/soc/intel/alderlake/acpi | |
parent | 49204e30f390737724ee8fc3f57dfb4dc4a5bcbc (diff) |
soc/intel: Move TCSS FW latency macros to IA common tcss.h
This patch moves TCSS firmware latency related macros from SoC
specific tcss.h to IA common tcss.h
Additionally, ensure other structure definitions belonging to the
IA common code tcss.h are not causing compilation issues for ASL files
(due to including FW latency macros) hence, guarded against
`!defined(__ACPI__)`.
TEST=Able to build and boot Google/Rex and Google/Kano.
Change-Id: Id51545ef714979c6ba09a2b468231b1f4bab0be7
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70487
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Ivy Jian <ivy.jian@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/alderlake/acpi')
-rw-r--r-- | src/soc/intel/alderlake/acpi/tcss.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/alderlake/acpi/tcss.asl b/src/soc/intel/alderlake/acpi/tcss.asl index 0890e4048c..826c60740a 100644 --- a/src/soc/intel/alderlake/acpi/tcss.asl +++ b/src/soc/intel/alderlake/acpi/tcss.asl @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ +#include <intelblocks/tcss.h> #include <soc/iomap.h> -#include <soc/tcss.h> /* * Type C Subsystem(TCSS) topology provides Runtime D3 support for USB host controller(xHCI), |