mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-04 14:01:54 +00:00
Modules that are enabled are listed below: - Power Sequencing - Keyboard Scan and Protocol - LPC to support Keyboard - Power Button Task ec.spi.bin has to be generated manualy using pack_ec.py BUG=None BRANCH=None TEST=Tested on Stargo-Proto board Change-Id: Ic5d504c3d6e9c7c5f3482fb7e9e37800b6274824 Signed-off-by: Divya Jyothi <divya.jyothi@intel.com> Reviewed-on: https://chromium-review.googlesource.com/226303 Reviewed-by: Vic Yang <victoryang@chromium.org>
17 lines
594 B
Makefile
17 lines
594 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_GAIA)+=gaia.o
|
|
power-$(CONFIG_CHIPSET_HASWELL)+=haswell.o
|
|
power-$(CONFIG_CHIPSET_IVYBRIDGE)+=ivybridge.o
|
|
power-$(CONFIG_CHIPSET_ROCKCHIP)+=rockchip.o
|
|
power-$(CONFIG_CHIPSET_TEGRA)+=tegra.o
|
|
power-$(CONFIG_CHIPSET_BRASWELL)+=braswell.o
|
|
power-$(CONFIG_POWER_COMMON)+=common.o
|