blob: 71655bf8b024356107c03c176a79d1c9e8f4a121 [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
17TARGET_KERNEL_DIR := device/google/raviole-kernel
18
19$(call inherit-product-if-exists, vendor/google_devices/raviole/prebuilts/device-vendor-raven.mk)
20$(call inherit-product-if-exists, vendor/google_devices/gs101/prebuilts/device-vendor.mk)
21$(call inherit-product-if-exists, vendor/google_devices/gs101/proprietary/device-vendor.mk)
Bill Yic2e4a482021-03-17 05:53:25 +000022$(call inherit-product-if-exists, vendor/google_devices/raven/proprietary/device-vendor.mk)
linpeterf3d8bf62021-03-17 09:27:12 +080023$(call inherit-product-if-exists, vendor/google_devices/raviole/proprietary/raven/device-vendor-raven.mk)
PEI-HSIEN KUO36dd88a2021-03-18 19:39:38 +080024$(call inherit-product-if-exists, vendor/google/camera/devices/raviole/raven/device-vendor.mk)
Ching-Sung Lifb5e3892021-05-31 15:18:59 +080025$(call inherit-product-if-exists, vendor/google_devices/raviole/proprietary/WallpapersRaven.mk)
Robin Pengcd374d82021-02-23 20:00:46 +080026
27DEVICE_PACKAGE_OVERLAYS += device/google/raviole/raven/overlay
28
29include device/google/gs101/device-shipping-common.mk
Ilya Matyukhin1d548252021-05-18 01:03:41 -070030include device/google/gs101/fingerprint/udfps_common.mk
31
32ifeq ($(filter factory_raven, $(TARGET_PRODUCT)),)
33include device/google/gs101/fingerprint/udfps_shipping.mk
34else
35include device/google/gs101/fingerprint/udfps_factory.mk
36endif
37
Victor Liu0bc47d62021-04-20 22:15:02 +000038ifeq ($(filter factory_raven, $(TARGET_PRODUCT)),)
39include device/google/gs101/uwb/uwb.mk
40endif
Ilya Matyukhin1d548252021-05-18 01:03:41 -070041
Robin Pengcd374d82021-02-23 20:00:46 +080042include device/google/raviole/audio/raven/audio-tables.mk
43include hardware/google/pixel/vibrator/cs40l25/device.mk
44
45PRODUCT_DEFAULT_PROPERTY_OVERRIDES += ro.surface_flinger.support_kernel_idle_timer=true
Ady Abraham9a9d0242021-03-19 12:52:46 -070046PRODUCT_DEFAULT_PROPERTY_OVERRIDES += ro.surface_flinger.enable_frame_rate_override=true
Robin Pengcd374d82021-02-23 20:00:46 +080047
48# Init files
49PRODUCT_COPY_FILES += \
Robin Peng334022f2021-05-05 12:01:32 +080050 device/google/raviole/conf/init.raviole.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.raviole.rc \
Robin Pengcd374d82021-02-23 20:00:46 +080051 device/google/raviole/conf/init.raven.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.raven.rc
52
53# Recovery files
54PRODUCT_COPY_FILES += \
55 device/google/gs101/conf/init.recovery.device.rc:$(TARGET_COPY_OUT_RECOVERY)/root/init.recovery.raven.rc
56
57# insmod files
58PRODUCT_COPY_FILES += \
59 device/google/raviole/init.insmod.raven.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/init.insmod.raven.cfg
60
61# Thermal Config
62PRODUCT_COPY_FILES += \
63 device/google/raviole/thermal_info_config_raven.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config.json
64
Cheney Niab920162021-06-28 13:47:54 +080065# Bluetooth
66PRODUCT_PRODUCT_PROPERTIES += \
67 persist.bluetooth.a2dp_aac.vbr_supported=true
68
Labib68270de2021-05-05 17:15:43 +080069# Bluetooth Tx power caps for raven
70PRODUCT_COPY_FILES += \
71 $(LOCAL_PATH)/bluetooth_power_limits_raven.csv:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_power_limits.csv
72
Ted Wang34a89632021-07-15 18:46:57 +080073# Bluetooth SAR test tool
74PRODUCT_PACKAGES_DEBUG += \
75 sar_test
76
Robin Pengcd374d82021-02-23 20:00:46 +080077# Camera
78PRODUCT_COPY_FILES += \
79 device/google/raviole/media_profiles_raven.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml
80
81# Display Config
82PRODUCT_COPY_FILES += \
Long Ling82756612021-04-30 15:52:57 -070083 device/google/raviole/raven/display_golden_cal0.pb:$(TARGET_COPY_OUT_VENDOR)/etc/display_golden_cal0.pb \
84 device/google/raviole/raven/display_colordata_dev_cal0.pb:$(TARGET_COPY_OUT_VENDOR)/etc/display_colordata_dev_cal0.pb
Robin Pengcd374d82021-02-23 20:00:46 +080085
86# NFC
87PRODUCT_COPY_FILES += \
George Changd48ff142021-03-10 20:35:15 +080088 device/google/raviole/nfc/libnfc-hal-st.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-hal-st.conf \
89 device/google/raviole/nfc/libnfc-nci-raven.conf:$(TARGET_COPY_OUT_PRODUCT)/etc/libnfc-nci.conf
90
Robin Pengcd374d82021-02-23 20:00:46 +080091DEVICE_MANIFEST_FILE += \
92 device/google/gs101/nfc/manifest_se_gs101.xml
93
94# Vibrator HAL
95PRODUCT_PRODUCT_PROPERTIES +=\
96 ro.vendor.vibrator.hal.long.frequency.shift=15
Jimmy Shiu7700cf02021-06-18 13:54:27 +080097PRODUCT_PRODUCT_PROPERTIES += \
98 vendor.powerhal.adpf.rate=8333333
Robin Pengcd374d82021-02-23 20:00:46 +080099
100# Voice packs for Text-To-Speech
101PRODUCT_COPY_FILES += \
Peter_Liang55f8b7c2021-05-20 17:20:36 +0800102 device/google/raviole/tts/ja-jp/ja-jp-x-multi-darwinn-wavernn-r27.zvoice:product/tts/google/ja-jp/ja-jp-x-multi-darwinn-wavernn-r27.zvoice\
103 device/google/raviole/tts/ja-jp/ja-jp-x-multi-r27.zvoice:product/tts/google/ja-jp/ja-jp-x-multi-r27.zvoice\
104 device/google/raviole/tts/ja-jp/ja-jp-x-multi-wavernn-r27.zvoice:product/tts/google/ja-jp/ja-jp-x-multi-wavernn-r27.zvoice\
105 device/google/raviole/tts/fr-fr/fr-fr-x-multi-darwinn-wavernn-r27.zvoice:product/tts/google/fr-fr/fr-fr-x-multi-darwinn-wavernn-r27.zvoice\
106 device/google/raviole/tts/fr-fr/fr-fr-x-multi-r27.zvoice:product/tts/google/fr-fr/fr-fr-x-multi-r27.zvoice\
107 device/google/raviole/tts/fr-fr/fr-fr-x-multi-wavernn-r27.zvoice:product/tts/google/fr-fr/fr-fr-x-multi-wavernn-r27.zvoice\
108 device/google/raviole/tts/de-de/de-de-x-multi-darwinn-wavernn-r27.zvoice:product/tts/google/de-de/de-de-x-multi-darwinn-wavernn-r27.zvoice\
109 device/google/raviole/tts/de-de/de-de-x-multi-r27.zvoice:product/tts/google/de-de/de-de-x-multi-r27.zvoice\
110 device/google/raviole/tts/de-de/de-de-x-multi-wavernn-r27.zvoice:product/tts/google/de-de/de-de-x-multi-wavernn-r27.zvoice\
111 device/google/raviole/tts/it-it/it-it-x-multi-r24.zvoice:product/tts/google/it-it/it-it-x-multi-r24.zvoice\
112 device/google/raviole/tts/es-es/es-es-x-multi-darwinn-wavernn-r27.zvoice:product/tts/google/es-es/es-es-x-multi-darwinn-wavernn-r27.zvoice\
113 device/google/raviole/tts/es-es/es-es-x-multi-r27.zvoice:product/tts/google/es-es/es-es-x-multi-r27.zvoice\
114 device/google/raviole/tts/es-es/es-es-x-multi-wavernn-r27.zvoice:product/tts/google/es-es/es-es-x-multi-wavernn-r27.zvoice
linpeter85646ce2020-12-17 21:18:41 +0800115
116# Display LBE
117PRODUCT_DEFAULT_PROPERTY_OVERRIDES += vendor.display.lbe.supported=1
Benjamin Schwartzc798cb32021-03-18 17:55:40 -0700118
119# PowerStats HAL
Yanting Yang3b1f8ef2021-05-31 03:53:40 +0800120PRODUCT_SOONG_NAMESPACES += \
121 device/google/raviole/powerstats/raven \
122 device/google/raviole
123
Jack Wu6e0bb1c2019-01-17 21:38:27 +0800124
125# userdebug specific
126ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
127 PRODUCT_COPY_FILES += \
128 device/google/gs101/init.hardware.wlc.rc.userdebug:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.$(PRODUCT_PLATFORM).wlc.rc
129endif
terrycrhuangfd95a682021-04-14 17:32:20 +0800130
131# Increment the SVN for any official public releases
132PRODUCT_VENDOR_PROPERTIES += \
133 ro.vendor.build.svn=1
shawnlin1c491622021-04-22 13:27:45 +0800134
135# Hide cutout overlays
136PRODUCT_PACKAGES += \
137 NoCutoutOverlay \
138 AvoidAppsInCutoutOverlay
Kris Chen74dfc0c2021-05-07 21:38:46 +0800139
140# Fingerprint antispoof property
141PRODUCT_PRODUCT_PROPERTIES +=\
142 persist.vendor.fingerprint.disable.fake.override=none
Cyan_Hsieha327e422021-05-26 11:56:31 +0800143
144# Keyboard side padding in dp for portrait mode
145PRODUCT_PRODUCT_PROPERTIES += ro.com.google.ime.kb_pad_port_r=11
146PRODUCT_PRODUCT_PROPERTIES += ro.com.google.ime.kb_pad_port_l=11
Michael Ayoubica6b3522021-05-25 02:09:47 +0000147
148# DCK properties based on target
149PRODUCT_PROPERTY_OVERRIDES += \
Michael Ayoubiea3372d2021-06-30 01:53:01 +0000150 ro.gms.dck.eligible_wcc=2
Yanting Yang3b1f8ef2021-05-31 03:53:40 +0800151
152# SKU specific RROs
153PRODUCT_PACKAGES += \
Robin Peng6e4640b2021-06-01 18:03:27 +0800154 SettingsOverlayGF5KQ
155
156# Trusty liboemcrypto.so
157PRODUCT_SOONG_NAMESPACES += vendor/google_devices/raviole/prebuilts
Bill Lin964bf232021-06-04 08:48:58 +0800158
159# Set support one-handed mode
160PRODUCT_PRODUCT_PROPERTIES += \
161 ro.support_one_handed_mode=true
Zhijun He59a30612021-07-09 11:33:45 -0700162
163# Enable camera exif model/make reporting
164PRODUCT_PRODUCT_PROPERTIES += \
165 persist.vendor.camera.exif_reveal_make_model=true
jonerlin972d2c22021-06-29 16:36:29 +0800166
167# Bluetooth HAL
168PRODUCT_PACKAGES += \
169 android.hardware.bluetooth@1.1-service.bcmbtlinux \
170 bt_vendor.conf
jiabinc4ffb642021-07-16 22:34:35 +0000171
172# Override default distortion output gain according to UX experiments
173PRODUCT_PRODUCT_PROPERTIES += \
174 vendor.audio.hapticgenerator.distortion.output.gain=0.5