blob: c9be012ad21219838b3914d10030e35a78881640 [file] [log] [blame]
Robin Pengcd374d82021-02-23 20:00:46 +08001#
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
Pindar Yang6fd62fe2024-08-29 11:58:09 +000017RELEASE_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
Cyan_Hsiehc55ff342024-04-02 16:38:08 +080021# Keeps flexibility for kasan and ufs builds
22TARGET_KERNEL_DIR ?= $(RELEASE_KERNEL_ORIOLE_DIR)
23TARGET_BOARD_KERNEL_HEADERS ?= $(RELEASE_KERNEL_ORIOLE_DIR)/kernel-headers
Robin Pengcd374d82021-02-23 20:00:46 +080024
25$(call inherit-product-if-exists, vendor/google_devices/raviole/prebuilts/device-vendor-whitefin.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)
linpeterf3d8bf62021-03-17 09:27:12 +080028$(call inherit-product-if-exists, vendor/google_devices/raviole/proprietary/whitefin/device-vendor-whitefin.mk)
Robin Pengcd374d82021-02-23 20:00:46 +080029
30DEVICE_PACKAGE_OVERLAYS += device/google/raviole/whitefin/overlay
31
32include device/google/gs101/device-common.mk
33include hardware/google/pixel/vibrator/drv2624/device.mk
34include device/google/raviole/audio/whitefin/audio-tables.mk
Adam Shih6e05ed02022-08-16 13:56:53 +080035include device/google/gs-common/bcmbt/bluetooth.mk
Cheng Chang6fa07a42023-05-17 08:12:36 +000036include device/google/gs-common/gps/brcm/cbd_gps.mk
Adam Shihdf8201d2022-11-30 09:50:39 +080037include device/google/gs-common/touch/lsi/lsi.mk
Robin Pengcd374d82021-02-23 20:00:46 +080038
Ken Yang116d3c92022-12-10 14:16:50 +000039# wireless_charger HAL service needs to be included specially due to no raviole-sepolicy folder
40PRODUCT_PACKAGES += vendor.google.wireless_charger-default
41DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE += device/google/gs-common/wireless_charger/compatibility_matrix.xml
42
Krzysztof Kosiński6165da42022-09-13 01:56:24 +000043# go/lyric-soong-variables
44$(call soong_config_set,lyric,camera_hardware,slider)
Sasha Smundakfbe1c662021-12-15 09:17:53 -080045$(call soong_config_set,lyric,tuning_product,slider)
46$(call soong_config_set,google3a_config,target_device,slider)
Krzysztof Kosiński61162922021-11-04 11:34:21 -070047
Robin Pengcd374d82021-02-23 20:00:46 +080048# Init files
49PRODUCT_COPY_FILES += \
50 device/google/raviole/conf/init.whitefin.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.whitefin.rc
51
52# Recovery files
53PRODUCT_COPY_FILES += \
54 device/google/gs101/conf/init.recovery.device.rc:$(TARGET_COPY_OUT_RECOVERY)/root/init.recovery.whitefin.rc
55
56# insmod files
57PRODUCT_COPY_FILES += \
58 device/google/raviole/init.insmod.whitefin.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/init.insmod.whitefin.cfg
59
60# Thermal Config
61PRODUCT_COPY_FILES += \
62 device/google/raviole/thermal_info_config_whitefin.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config.json
63
64# Camera
65PRODUCT_COPY_FILES += \
66 device/google/raviole/media_profiles_whitefin.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml
67
68# Bluetooth
69PRODUCT_PROPERTY_OVERRIDES += \
70 ro.bluetooth.a2dp_offload.supported=false
71
Cheney Niab920162021-06-28 13:47:54 +080072PRODUCT_PRODUCT_PROPERTIES += \
73 persist.bluetooth.a2dp_aac.vbr_supported=true
74
Robin Pengcd374d82021-02-23 20:00:46 +080075# NFC
76PRODUCT_COPY_FILES += \
George Chang8933f1b2021-08-17 00:51:25 +080077 frameworks/native/data/etc/android.hardware.nfc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.xml \
78 frameworks/native/data/etc/android.hardware.nfc.hce.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hce.xml \
79 frameworks/native/data/etc/android.hardware.nfc.hcef.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hcef.xml \
80 frameworks/native/data/etc/com.nxp.mifare.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.nxp.mifare.xml \
81 frameworks/native/data/etc/android.hardware.nfc.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.uicc.xml \
82 frameworks/native/data/etc/android.hardware.se.omapi.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.se.omapi.uicc.xml \
83 device/google/raviole/nfc/libnfc-hal-st.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-hal-st.conf \
84 device/google/raviole/nfc/libnfc-nci.conf:$(TARGET_COPY_OUT_PRODUCT)/etc/libnfc-nci.conf
85
86PRODUCT_PACKAGES += \
Roshan Piuscd3dd4d2023-12-01 19:19:56 +000087 $(RELEASE_PACKAGE_NFC_STACK) \
George Chang8933f1b2021-08-17 00:51:25 +080088 Tag \
George Chang91a40962022-03-30 22:13:09 +080089 android.hardware.nfc-service.st
Benjamin Schwartzc798cb32021-03-18 17:55:40 -070090
91# PowerStats HAL
92PRODUCT_SOONG_NAMESPACES += device/google/raviole/powerstats/whitefin
Robin Peng6e4640b2021-06-01 18:03:27 +080093
94# Trusty liboemcrypto.so
95PRODUCT_SOONG_NAMESPACES += vendor/google_devices/raviole/prebuilts
jonerlin972d2c22021-06-29 16:36:29 +080096
Mars Lineabb3bf2022-06-08 22:11:37 +080097# tetheroffload HAL
98PRODUCT_PACKAGES += \
99 vendor.samsung_slsi.hardware.tetheroffload@1.1-service
100
Wei Wang63fe7452022-01-28 22:07:30 -0800101# Power HAL config
102PRODUCT_COPY_FILES += \
103 device/google/raviole/powerhint-whitefin.json:$(TARGET_COPY_OUT_VENDOR)/etc/powerhint.json
104
Alex Hongb8033582021-11-17 19:10:08 +0800105# This device is shipped with 31 (Android S)
106PRODUCT_SHIPPING_API_LEVEL := 31
Ben Murdochb5b42572022-03-10 10:44:27 +0000107
108# Device features
109PRODUCT_COPY_FILES += \
110 frameworks/native/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml
Adam Shih7845ccf2022-10-21 14:39:46 +0800111
112# Location
113ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
114 PRODUCT_COPY_FILES += \
115 device/google/raviole/location/gps.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
116else
117 PRODUCT_COPY_FILES += \
118 device/google/raviole/location/gps_user.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/gps.xml
119endif
120
Alice Wangc88d3362024-05-21 15:17:46 +0000121# Disable AVF Remote Attestation
122PRODUCT_AVF_REMOTE_ATTESTATION_DISABLED := true