-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
daisy: Add initial device tree files
Change-Id: I5f2f811a5fcb9f379d2cf454452ce2a2667d54f6
- Loading branch information
Showing
15 changed files
with
1,199 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
# | ||
# Copyright 2019 The Android Open Source Project | ||
# Copyright 2019 The LineageOS Project | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# This contains the module build definitions for the hardware-specific | ||
# components for this device. | ||
# | ||
# As much as possible, those components should be built unconditionally, | ||
# with device-specific names to avoid collisions, to avoid device-specific | ||
# bitrot and build breakages. Building a component unconditionally does | ||
# *not* include it on all devices, so it is safe even with hardware-specific | ||
# components. | ||
|
||
LOCAL_PATH := $(call my-dir) | ||
|
||
ifeq ($(TARGET_DEVICE),daisy) | ||
|
||
include $(call all-makefiles-under,$(LOCAL_PATH)) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
# Symlinks | ||
IMS_LIBS := libimscamera_jni.so libimsmedia_jni.so | ||
IMS_SYMLINKS := $(addprefix $(TARGET_OUT_APPS)/ims/lib/arm64/,$(notdir $(IMS_LIBS))) | ||
$(IMS_SYMLINKS): $(LOCAL_INSTALLED_MODULE) | ||
@echo "IMS lib link: $@" | ||
@mkdir -p $(dir $@) | ||
@rm -rf $@ | ||
$(hide) ln -sf /system/lib64/$(notdir $@) $@ | ||
|
||
ALL_DEFAULT_INSTALLED_MODULES += $(IMS_SYMLINKS) | ||
|
||
RFS_MSM_ADSP_SYMLINKS := $(TARGET_OUT_VENDOR)/rfs/msm/adsp/ | ||
$(RFS_MSM_ADSP_SYMLINKS): $(LOCAL_INSTALLED_MODULE) | ||
@echo "Creating RFS MSM ADSP folder structure: $@" | ||
@rm -rf $@/* | ||
@mkdir -p $(dir $@)/readonly/vendor | ||
$(hide) ln -sf /data/vendor/tombstones/rfs/lpass $@/ramdumps | ||
$(hide) ln -sf /persist/rfs/msm/adsp $@/readwrite | ||
$(hide) ln -sf /persist/rfs/shared $@/shared | ||
$(hide) ln -sf /persist/hlos_rfs/shared $@/hlos | ||
$(hide) ln -sf /firmware $@/readonly/firmware | ||
$(hide) ln -sf /vendor/firmware $@/readonly/vendor/firmware | ||
|
||
# Create the mount points at compile time. | ||
FIRMWARE_MOUNT_POINT := $(TARGET_OUT_VENDOR)/firmware_mnt | ||
BT_FIRMWARE_MOUNT_POINT := $(TARGET_OUT_VENDOR)/bt_firmware | ||
DSP_MOUNT_POINT := $(TARGET_OUT_VENDOR)/dsp | ||
PERSIST_MOUNT_POINT := $(TARGET_ROOT_OUT)/persist | ||
|
||
ALL_DEFAULT_INSTALLED_MODULES += $(FIRMWARE_MOUNT_POINT) \ | ||
$(BT_FIRMWARE_MOUNT_POINT) \ | ||
$(DSP_MOUNT_POINT) \ | ||
$(PERSIST_MOUNT_POINT) | ||
|
||
$(FIRMWARE_MOUNT_POINT): | ||
@echo "Creating $(FIRMWARE_MOUNT_POINT)" | ||
@mkdir -p $(TARGET_OUT_VENDOR)/firmware_mnt | ||
ifneq ($(TARGET_MOUNT_POINTS_SYMLINKS),false) | ||
@ln -sf /vendor/firmware_mnt $(TARGET_ROOT_OUT)/firmware | ||
endif | ||
|
||
$(BT_FIRMWARE_MOUNT_POINT): | ||
@echo "Creating $(BT_FIRMWARE_MOUNT_POINT)" | ||
@mkdir -p $(TARGET_OUT_VENDOR)/bt_firmware | ||
ifneq ($(TARGET_MOUNT_POINTS_SYMLINKS),false) | ||
@ln -sf /vendor/bt_firmware $(TARGET_ROOT_OUT)/bt_firmware | ||
endif | ||
|
||
$(DSP_MOUNT_POINT): | ||
@echo "Creating $(DSP_MOUNT_POINT)" | ||
@mkdir -p $(TARGET_OUT_VENDOR)/dsp | ||
ifneq ($(TARGET_MOUNT_POINTS_SYMLINKS),false) | ||
@ln -sf /vendor/dsp $(TARGET_ROOT_OUT)/dsp | ||
endif | ||
|
||
$(PERSIST_MOUNT_POINT): | ||
@echo "Creating $(PERSIST_MOUNT_POINT)" | ||
ifneq ($(TARGET_MOUNT_POINTS_SYMLINKS),false) | ||
@ln -sf /mnt/vendor/persist $(TARGET_ROOT_OUT)/persist | ||
endif | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# | ||
# Copyright (C) 2019 The LineageOS Project | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
PRODUCT_MAKEFILES := \ | ||
$(LOCAL_DIR)/lineage_daisy.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
# | ||
# Copyright 2019 The Android Open Source Project | ||
# Copyright 2019 The LineageOS Project | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
BOARD_VENDOR := xiaomi | ||
|
||
DEVICE_PATH := device/xiaomi/daisy | ||
|
||
TARGET_SPECIFIC_HEADER_PATH := $(DEVICE_PATH)/include | ||
|
||
# Assert | ||
TARGET_OTA_ASSERT_DEVICE := daisy | ||
|
||
# Architecture | ||
TARGET_ARCH := arm64 | ||
TARGET_ARCH_VARIANT := armv8-a | ||
TARGET_CPU_ABI := arm64-v8a | ||
TARGET_CPU_ABI2 := | ||
TARGET_CPU_VARIANT := cortex-a53 | ||
|
||
TARGET_2ND_ARCH := arm | ||
TARGET_2ND_ARCH_VARIANT := armv8-a | ||
TARGET_2ND_CPU_ABI := armeabi-v7a | ||
TARGET_2ND_CPU_ABI2 := armeabi | ||
TARGET_2ND_CPU_VARIANT := cortex-a53 | ||
|
||
TARGET_BOARD_SUFFIX := _64 | ||
TARGET_USES_64_BIT_BINDER := true | ||
|
||
# Bootloader | ||
TARGET_BOOTLOADER_BOARD_NAME := msm8953 | ||
TARGET_NO_BOOTLOADER := true | ||
|
||
# Kernel | ||
BOARD_KERNEL_BASE := 0x80000000 | ||
BOARD_KERNEL_CMDLINE := console=ttyHSL0,115200,n8 androidboot.console=ttyHSL0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78af000 firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 buildvariant=user veritykeyid=id:5560e7863b4d8118c2f1b065595cf93bb2447992 | ||
BOARD_KERNEL_CMDLINE += androidboot.selinux=permissive | ||
BOARD_KERNEL_IMAGE_NAME := Image.gz-dtb | ||
BOARD_KERNEL_PAGESIZE := 2048 | ||
BOARD_KERNEL_TAGS_OFFSET := 0x00000100 | ||
BOARD_RAMDISK_OFFSET := 0x01000000 | ||
|
||
TARGET_KERNEL_ARCH := arm64 | ||
TARGET_KERNEL_CONFIG := daisy_defconfig | ||
TARGET_KERNEL_HEADER_ARCH := arm64 | ||
ifeq ($(TARGET_PREBUILT_KERNEL),) | ||
TARGET_KERNEL_CROSS_COMPILE_PREFIX := aarch64-linux-android- | ||
TARGET_KERNEL_SOURCE := kernel/xiaomi/msm8953 | ||
endif | ||
|
||
NEED_KERNEL_MODULE_SYSTEM := true | ||
|
||
# Platform | ||
TARGET_BOARD_PLATFORM := msm8953 | ||
TARGET_BOARD_PLATFORM_GPU := qcom-adreno506 | ||
|
||
# Audio | ||
AUDIO_FEATURE_ENABLED_EXTN_FORMATS := true | ||
AUDIO_FEATURE_ENABLED_FM_POWER_OPT := true | ||
AUDIO_FEATURE_ENABLED_HDMI_SPK := true | ||
AUDIO_FEATURE_ENABLED_PCM_OFFLOAD := true | ||
AUDIO_FEATURE_ENABLED_PCM_OFFLOAD_24 := true | ||
AUDIO_FEATURE_ENABLED_AAC_ADTS_OFFLOAD := true | ||
AUDIO_FEATURE_ENABLED_PROXY_DEVICE := true | ||
|
||
USE_CUSTOM_AUDIO_POLICY := 1 | ||
USE_XML_AUDIO_POLICY_CONF := 1 | ||
|
||
# Bluetooth | ||
BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := $(DEVICE_PATH)/bluetooth | ||
|
||
TARGET_USE_QTI_BT_STACK := true | ||
|
||
# Charger Mode | ||
BOARD_CHARGER_ENABLE_SUSPEND := true | ||
|
||
# Dex | ||
ifeq ($(HOST_OS),linux) | ||
ifneq ($(TARGET_BUILD_VARIANT),eng) | ||
WITH_DEXPREOPT ?= true | ||
WITH_DEXPREOPT_PIC := false | ||
endif | ||
endif | ||
|
||
# Display | ||
NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3 | ||
TARGET_USES_HWC2 := true | ||
|
||
# DRM | ||
TARGET_ENABLE_MEDIADRM_64 := true | ||
|
||
# Encryption | ||
TARGET_HW_DISK_ENCRYPTION := true | ||
|
||
# Filesystem | ||
TARGET_FS_CONFIG_GEN := $(DEVICE_PATH)/config.fs | ||
|
||
# HIDL | ||
DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE := $(DEVICE_PATH)/framework_compatibility_matrix.xml | ||
DEVICE_FRAMEWORK_MANIFEST_FILE := $(DEVICE_PATH)/framework_manifest.xml | ||
|
||
# Partitions | ||
BOARD_BUILD_SYSTEM_ROOT_IMAGE := true | ||
|
||
BOARD_BOOTIMAGE_PARTITION_SIZE := 67108864 | ||
BOARD_CACHEIMAGE_PARTITION_SIZE := 16777216 | ||
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 2684354560 | ||
|
||
BOARD_FLASH_BLOCK_SIZE := 131072 # (BOARD_KERNEL_PAGESIZE * 64) | ||
|
||
BOARD_HAS_REMOVABLE_STORAGE := true | ||
|
||
TARGET_USERIMAGES_USE_EXT4 := true | ||
TARGET_USERIMAGES_USE_F2FS := true | ||
TARGET_USERIMAGES_SPARSE_EXT_DISABLED := false | ||
TARGET_USES_MKE2FS := true | ||
|
||
TARGET_COPY_OUT_VENDOR := vendor | ||
|
||
# Recovery | ||
TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/fstab.qcom | ||
TARGET_RECOVERY_PIXEL_FORMAT := "BGRA_8888" | ||
|
||
# RIL | ||
TARGET_PROVIDES_QTI_TELEPHONY_JAR := true | ||
TARGET_RIL_VARIANT := caf | ||
|
||
# SELinux | ||
include device/qcom/sepolicy/sepolicy.mk | ||
|
||
# Sensors | ||
USE_SENSOR_MULTI_HAL := true | ||
|
||
# Treble | ||
BOARD_VNDK_RUNTIME_DISABLE := true | ||
BOARD_VNDK_VERSION := current | ||
PRODUCT_FULL_TREBLE_OVERRIDE := true | ||
|
||
PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE := true | ||
|
||
# Inherit from the proprietary version | ||
-include vendor/xiaomi/daisy/BoardConfigVendor.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* | ||
* Copyright (c) 2013, The Linux Foundation. All rights reserved. | ||
* Not a Contribution, Apache license notifications and license are retained | ||
* for attribution purposes only. | ||
* | ||
* Copyright (C) 2012 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
#ifndef _BDROID_BUILDCFG_H | ||
#define _BDROID_BUILDCFG_H | ||
// Disables read remote device feature | ||
#define MAX_ACL_CONNECTIONS 16 | ||
#define MAX_L2CAP_CHANNELS 16 | ||
#define BLE_VND_INCLUDED TRUE | ||
// Skips conn update at conn completion | ||
#define BT_CLEAN_TURN_ON_DISABLED 1 | ||
// Increasing SEPs to 12 from 6 to support SHO/MCast i.e. two streams per codec | ||
#define AVDT_NUM_SEPS 12 | ||
#endif |
Oops, something went wrong.