mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-01 12:52:26 +00:00
Use our newly-created chip_pre_init() for doing JTAG initialization. BUG=chromium:747629 BRANCH=None TEST=`make buildall -j` Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Change-Id: Ic5771895a214a9f1aa9bd289eef576f52adf973f Reviewed-on: https://chromium-review.googlesource.com/629676 Commit-Ready: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
32 lines
867 B
Makefile
32 lines
867 B
Makefile
# -*- makefile -*-
|
|
# Copyright 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 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:
|