1# 2# Copyright (C) 2020 The Android Open-Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17RELEASE_GOOGLE_BOOTLOADER_ORIOLE_DIR ?= pdk# Keep this for pdk TODO: b/327119000 18RELEASE_GOOGLE_PRODUCT_BOOTLOADER_DIR := bootloader/$(RELEASE_GOOGLE_BOOTLOADER_ORIOLE_DIR) 19$(call soong_config_set,raviole_bootloader,prebuilt_dir,$(RELEASE_GOOGLE_BOOTLOADER_ORIOLE_DIR)) 20 21# Keeps flexibility for kasan and ufs builds 22TARGET_KERNEL_DIR ?= $(RELEASE_KERNEL_ORIOLE_DIR) 23TARGET_BOARD_KERNEL_HEADERS ?= $(RELEASE_KERNEL_ORIOLE_DIR)/kernel-headers 24 25$(call inherit-product-if-exists, vendor/google_devices/raviole/prebuilts/device-vendor-slider.mk) 26$(call inherit-product-if-exists, vendor/google_devices/gs101/prebuilts/device-vendor.mk) 27$(call inherit-product-if-exists, vendor/google_devices/gs101/proprietary/device-vendor.mk) 28$(call inherit-product-if-exists, vendor/google_devices/raviole/proprietary/slider/device-vendor-slider.mk) 29 30DEVICE_PACKAGE_OVERLAYS += device/google/raviole/slider/overlay 31 32include device/google/gs101/device-common.mk 33include device/google/raviole/audio/slider/audio-tables.mk 34include device/google/gs-common/bcmbt/bluetooth.mk 35include device/google/gs-common/gps/brcm/cbd_gps.mk 36include device/google/gs-common/touch/stm/stm11.mk 37 38# go/lyric-soong-variables 39$(call soong_config_set,lyric,camera_hardware,slider) 40$(call soong_config_set,lyric,tuning_product,slider) 41$(call soong_config_set,google3a_config,target_device,slider) 42 43# Init files 44PRODUCT_COPY_FILES += \ 45 device/google/raviole/conf/init.slider.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.slider.rc 46 47# Recovery files 48PRODUCT_COPY_FILES += \ 49 device/google/gs101/conf/init.recovery.device.rc:$(TARGET_COPY_OUT_RECOVERY)/root/init.recovery.slider.rc 50 51# insmod files. Kernel 5.10 prebuilts don't provide these yet, so provide our 52# own copy if they're not in the prebuilts. 53# TODO(b/369686096): drop this when 5.10 is gone. 54ifeq ($(wildcard $(TARGET_KERNEL_DIR)/init.insmod.*.cfg),) 55PRODUCT_COPY_FILES += \ 56 device/google/raviole/init.insmod.slider.cfg:$(TARGET_COPY_OUT_VENDOR_DLKM)/etc/init.insmod.slider.cfg 57endif 58 59# Thermal Config 60PRODUCT_COPY_FILES += \ 61 device/google/raviole/thermal_info_config_slider.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config.json 62 63# Camera 64PRODUCT_COPY_FILES += \ 65 device/google/raviole/media_profiles_slider.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml 66 67# Bluetooth 68PRODUCT_PRODUCT_PROPERTIES += \ 69 persist.bluetooth.a2dp_aac.vbr_supported=true 70 71# Bluetooth default BDADDR for EVB only 72PRODUCT_PROPERTY_OVERRIDES += \ 73 ro.vendor.bluetooth.evb_bdaddr="22:22:22:33:44:55" 74 75# SecureElement 76PRODUCT_PACKAGES += \ 77 android.hardware.secure_element@1.2-service-gto 78 79PRODUCT_COPY_FILES += \ 80 device/google/raviole/nfc/libse-gto-hal.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libse-gto-hal.conf 81 82# NFC 83PRODUCT_COPY_FILES += \ 84 frameworks/native/data/etc/android.hardware.nfc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.xml \ 85 frameworks/native/data/etc/android.hardware.nfc.hce.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hce.xml \ 86 frameworks/native/data/etc/android.hardware.nfc.hcef.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hcef.xml \ 87 frameworks/native/data/etc/com.nxp.mifare.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.nxp.mifare.xml \ 88 frameworks/native/data/etc/android.hardware.nfc.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.uicc.xml \ 89 frameworks/native/data/etc/android.hardware.nfc.ese.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.ese.xml \ 90 device/google/raviole/nfc/libnfc-hal-st-disable.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-hal-st.conf \ 91 device/google/raviole/nfc/libnfc-nci.conf:$(TARGET_COPY_OUT_PRODUCT)/etc/libnfc-nci.conf 92 93PRODUCT_PACKAGES += \ 94 $(RELEASE_PACKAGE_NFC_STACK) \ 95 Tag \ 96 android.hardware.nfc-service.st 97 98# Shared Modem Platform 99SHARED_MODEM_PLATFORM_VENDOR := lassen 100 101# Shared Modem Platform 102include device/google/gs-common/modem/modem_svc_sit/shared_modem_platform.mk 103 104# SecureElement 105PRODUCT_PACKAGES += \ 106 android.hardware.secure_element@1.2-service-gto 107 108PRODUCT_COPY_FILES += \ 109 frameworks/native/data/etc/android.hardware.se.omapi.ese.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.se.omapi.ese.xml \ 110 frameworks/native/data/etc/android.hardware.se.omapi.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.se.omapi.uicc.xml \ 111 device/google/raviole/nfc/libse-gto-hal.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libse-gto-hal.conf \ 112 device/google/raviole/nfc/libse-gto-hal2.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libse-gto-hal2.conf 113 114DEVICE_MANIFEST_FILE += \ 115 device/google/raviole/nfc/manifest_se.xml 116 117# PowerStats HAL 118PRODUCT_SOONG_NAMESPACES += device/google/raviole/powerstats/slider 119 120# Trusty liboemcrypto.so 121PRODUCT_SOONG_NAMESPACES += vendor/google_devices/raviole/prebuilts 122 123# tetheroffload HAL 124PRODUCT_PACKAGES += \ 125 vendor.samsung_slsi.hardware.tetheroffload@1.1-service 126 127# Power HAL config 128PRODUCT_COPY_FILES += \ 129 device/google/raviole/powerhint-slider.json:$(TARGET_COPY_OUT_VENDOR)/etc/powerhint.json 130 131# This device is shipped with 31 (Android S) 132PRODUCT_SHIPPING_API_LEVEL := 31 133 134# Device features 135PRODUCT_COPY_FILES += \ 136 frameworks/native/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml 137 138# Location 139ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) 140 PRODUCT_COPY_FILES += \ 141 device/google/raviole/location/gps.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml 142else 143 PRODUCT_COPY_FILES += \ 144 device/google/raviole/location/gps_user.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml 145endif 146 147# Disable AVF Remote Attestation 148PRODUCT_AVF_REMOTE_ATTESTATION_DISABLED := true 149