51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# Copyright (C) 2012-2014 Apple Inc. All rights reserved.
|
|
#
|
|
# This document is the property of Apple Inc.
|
|
# It is considered confidential and proprietary.
|
|
#
|
|
# This document may not be reproduced or transmitted in any form,
|
|
# in whole or in part, without the express written permission of
|
|
# Apple Inc.
|
|
#
|
|
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
TARGET_DIR := $(LOCAL_DIR)
|
|
|
|
OPTIONS += \
|
|
TARGET_BOOT_CPU_VOLTAGE=0 \
|
|
TARGET_BOOT_RAM_VOLTAGE=0 \
|
|
TARGET_BOOT_SOC_VOLTAGE=0 \
|
|
DISPLAY_FPGA_TUNABLES=1 \
|
|
DCS_RUN_AT_50MHZ=1 \
|
|
DCS_NUM_RANKS=1 \
|
|
AMP_CALIBRATION_SKIP=1 \
|
|
DCS_FIXUP_PARAMS=1 \
|
|
TARGET_DWI_FREQUENCY=24000000 \
|
|
TARGET_DWI_TRANSFER_GAP_US=2.5 \
|
|
BUCK_CPU=0 \
|
|
BUCK_CPU_RAM=7 \
|
|
BUCK_SOC=2 \
|
|
BUCK_GPU=1 \
|
|
BUCK_GPU_RAM=8 \
|
|
WITH_CPU_APSC=1
|
|
|
|
OPTIONS += \
|
|
SUPPORT_FPGA=1
|
|
|
|
ifeq ($(SUB_PLATFORM),s8001)
|
|
OPTIONS += \
|
|
DCS_NUM_CHANNELS=8
|
|
else
|
|
OPTIONS += \
|
|
DCS_NUM_CHANNELS=4
|
|
endif
|
|
|
|
GLOBAL_INCLUDES += $(LOCAL_DIR)/include
|
|
|
|
ALL_OBJS += $(LOCAL_DIR)/init.o
|
|
|
|
ifeq ($(SUB_PLATFORM),s8003)
|
|
ALL_OBJS += $(LOCAL_DIR)/pinconfig_s8000fpga.o
|
|
else
|
|
ALL_OBJS += $(LOCAL_DIR)/pinconfig_$(SUB_TARGET).o
|
|
endif
|