mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 00:51:29 +00:00
Add power-up sequencing for rk3399. This is very much a WIP and the sequence will surely change greatly. BUG=chrome-os-partner:50819 BRANCH=None TEST=`make buildall -j` Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Change-Id: I3bacdc8516cfe081411032d55374dd1ab21b2d9d Reviewed-on: https://chromium-review.googlesource.com/331658 Commit-Ready: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Mary Ruthven <mruthven@chromium.org>
20 lines
722 B
Makefile
20 lines
722 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_MEDIATEK)+=mediatek.o
|
|
power-$(CONFIG_CHIPSET_RK3399)+=rk3399.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
|