Added HAL's List

Change-Id: I221894cfe9136b0f532852862fbfc4afb04abc55
This commit is contained in:
Pawan Chilka 2017-05-24 11:06:37 +05:30 committed by Gerrit - the friendly Code Review server
parent ea2613173a
commit 6db42325de
2 changed files with 110 additions and 2 deletions

View file

@ -82,7 +82,7 @@ ifneq (,$(strip $(wildcard $(PRODUCT_RENDERING_ENGINE_REVLIB))))
endif endif
# Enable features in video HAL that can compile only on this platform # Enable features in video HAL that can compile only on this platform
TARGET_USES_MEDIA_EXTENSIONS := false TARGET_USES_MEDIA_EXTENSIONS := true
# WLAN chipset # WLAN chipset
WLAN_CHIPSET := qca_cld3 WLAN_CHIPSET := qca_cld3
@ -151,6 +151,15 @@ PRODUCT_PACKAGES += \
android.hardware.light@2.0-service \ android.hardware.light@2.0-service \
android.hardware.configstore@1.0-service android.hardware.configstore@1.0-service
PRODUCT_PACKAGES += \
vendor.display.color@1.0-service \
vendor.display.color@1.0-impl
# Vibrator
PRODUCT_PACKAGES += \
android.hardware.vibrator@1.0-impl \
android.hardware.vibrator@1.0-service \
# Camera configuration file. Shared by passthrough/binderized camera HAL # Camera configuration file. Shared by passthrough/binderized camera HAL
PRODUCT_PACKAGES += camera.device@3.2-impl PRODUCT_PACKAGES += camera.device@3.2-impl
PRODUCT_PACKAGES += camera.device@1.0-impl PRODUCT_PACKAGES += camera.device@1.0-impl

101
vintf.xml
View file

@ -93,6 +93,26 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<instance>default</instance> <instance>default</instance>
</interface> </interface>
</hal> </hal>
<hal format="hidl">
<name>vendor.display.config</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IDisplayConfig</name>
<instance>default</instance>
</interface>
</hal>
<hal format="hidl">
<name>vendor.display.color</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IDisplayColor</name>
<instance>default</instance>
</interface>
</hal>
<hal format="hidl"> <hal format="hidl">
<name>android.hardware.configstore</name> <name>android.hardware.configstore</name>
<transport>hwbinder</transport> <transport>hwbinder</transport>
@ -143,7 +163,7 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<!-- bluetooth --> <!-- bluetooth -->
<hal format="hidl"> <hal format="hidl">
<name>android.hardware.bluetooth</name> <name>android.hardware.bluetooth</name>
<transport arch="32+64">toggled</transport> <transport arch="32+64">hwbinder</transport>
<impl level="generic"></impl> <impl level="generic"></impl>
<version>1.0</version> <version>1.0</version>
</hal> </hal>
@ -166,4 +186,83 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<impl level="generic"></impl> <impl level="generic"></impl>
<version>1.0</version> <version>1.0</version>
</hal> </hal>
<!-- RIL -->
<hal format="hidl">
<name>android.hardware.radio</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IRadio</name>
<instance>slot1</instance>
<instance>slot2</instance>
</interface>
</hal>
<!-- RIL OEM HOOK -->
<hal format="hidl">
<name>android.hardware.radio.deprecated</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IOemHook</name>
<instance>slot1</instance>
<instance>slot2</instance>
</interface>
</hal>
<!-- RIL AUDIO HAL -->
<hal format="hidl">
<name>vendor.qti.qcril.am</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IQcRilAudio</name>
<instance>slot1</instance>
<instance>slot2</instance>
</interface>
</hal>
<!-- gnss -->
<hal format="hidl">
<name>android.hardware.gnss</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IGnss</name>
<instance>default</instance>
</interface>
</hal>
<!-- atfwd -->
<hal format="hidl">
<name>vendor.qti.atcmdfwd</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IAtCmdFwd</name>
<instance>AtCmdFwdService</instance>
</interface>
</hal>
<hal format="hidl">
<name>android.hardware.vibrator</name>
<transport>hwbinder</transport>
<impl level="generic"></impl>
<version>1.0</version>
<interface>
<name>IVibrator</name>
<instance>default</instance>
</interface>
</hal>
<!-- IMS RTP Service -->
    <hal format="hidl">
        <name>com.qualcomm.qti.imsrtpservice</name>
        <transport>hwbinder</transport>
        <impl level="generic"></impl>
        <version>1.0</version>
        <interface>
            <name>IRTPService</name>
            <instance>rtpservice0</instance>
        </interface>
    </hal>
</manifest> </manifest>