mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
Add power sequencing for Skylake, following the IMVP8 / ROP PMIC design for SKL-U / SKL-Y. BUG=chrome-os-partner:39510 TEST=Compile only BRANCH=None Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Change-Id: Ibf6a0e4415544b6b4b2cf28c167106ce4bfdc54e Reviewed-on: https://chromium-review.googlesource.com/269460 Reviewed-by: Alec Berg <alecaberg@chromium.org>
20 lines
728 B
Makefile
20 lines
728 B
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# Power management for application processor and peripherals
|
|
#
|
|
|
|
power-$(CONFIG_CHIPSET_BAYTRAIL)+=baytrail.o
|
|
power-$(CONFIG_CHIPSET_BRASWELL)+=braswell.o
|
|
power-$(CONFIG_CHIPSET_ECDRIVEN)+=ec_driven.o
|
|
power-$(CONFIG_CHIPSET_GAIA)+=gaia.o
|
|
power-$(CONFIG_CHIPSET_HASWELL)+=haswell.o
|
|
power-$(CONFIG_CHIPSET_IVYBRIDGE)+=ivybridge.o
|
|
power-$(CONFIG_CHIPSET_MEDIATEK)+=mediatek.o
|
|
power-$(CONFIG_CHIPSET_ROCKCHIP)+=rockchip.o
|
|
power-$(CONFIG_CHIPSET_SKYLAKE)+=skylake.o
|
|
power-$(CONFIG_CHIPSET_TEGRA)+=tegra.o
|
|
power-$(CONFIG_POWER_COMMON)+=common.o
|