mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-31 11:01:19 +00:00
This patch adds the initial support for ISH chip to enable the EC firmware to boot on Intel Integrated Sensor Hub (ISH). The following are enabled: 1. Inter-Processor Communication (IPC) driver that enables the ISH to communicate with the host Operating system via shared registers. 2. High Precision Event Timer (HPET) driver that provides configurable timers for the FW to use in task scheduling. 3. I2C bus driver for accessing sensors. 4. UART console driver with TX support only. BUG=chrome-os-partner:51851 BRANCH=None TEST=`make buildall -j` Change-Id: I15d4c201b799cfa79bed220ee573b75f5cd7b1f7 Signed-off-by: Jaiber John <jaiber.j.john@intel.com> Signed-off-by: Alex Brill <alexander.brill@intel.com> Signed-off-by: Gomathi Kumar <gomathi.kumar@intel.com> Reviewed-on: https://chromium-review.googlesource.com/336710 Commit-Ready: Raj Mojumder <raj.mojumder@intel.com> Tested-by: Jaiber J John <jaiber.j.john@intel.com> Tested-by: Raj Mojumder <raj.mojumder@intel.com> Reviewed-by: Jaiber J John <jaiber.j.john@intel.com> Reviewed-by: Raj Mojumder <raj.mojumder@intel.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
32 lines
878 B
Makefile
32 lines
878 B
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2016 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.
|
|
#
|
|
# ISH chip specific files build
|
|
#
|
|
|
|
# ISH SoC has a Minute-IA core
|
|
CORE:=minute-ia
|
|
# Allow the i486 instruction set
|
|
CFLAGS_CPU+=-march=pentium -mtune=i486 -m32
|
|
|
|
ifeq ($(CONFIG_LTO),y)
|
|
# Re-include the core's build.mk file so we can remove the lto flag.
|
|
include core/$(CORE)/build.mk
|
|
endif
|
|
|
|
# Required chip modules
|
|
chip-y+=clock.o gpio.o jtag.o system.o hwtimer.o uart.o flash.o
|
|
chip-$(CONFIG_I2C)+=i2c.o
|
|
chip-$(CONFIG_LPC)+=ipc.o
|
|
chip-$(CONFIG_WATCHDOG)+=watchdog.o
|
|
|
|
# location of the scripts and keys used to pack the SPI flash image
|
|
SCRIPTDIR:=./chip/${CHIP}/util
|
|
|
|
# Allow SPI size to be overridden by board specific size, default to 256KB.
|
|
CHIP_SPI_SIZE_KB?=256
|
|
|
|
$(out)/$(PROJECT).bin:
|