Snap for 7347062 from 9c06c83aa3 to sc-v2-release

Change-Id: I3561a4c1d9619b13aeaa133481ba7cc2432ba7b6
This commit is contained in:
android-build-team Robot 2021-05-08 03:02:17 +00:00
commit f157d0043b
32 changed files with 31972 additions and 10732 deletions

View file

@ -131,7 +131,9 @@
<usecase id="UC_HOSTLESS_UL" dev1="15"/>
<!-- for VOIP input, 4 * 10ms buffer -->
<usecase id="UC_VOIP_RECORD" dev1="17" dyn_path="true" dsp_vol="false" mmap="false" period="10" period_num="4"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 480 periods * 1ms buffer,32-bit,2 ch, buffer size 92160 bytes -->
<!-- for input wit AUDIO_INPUT_FLAG_FAST 480 periods * 1ms buffer, 16-bit, 2ch, buffer size 92160 bytes-->
<usecase id="UC_LOW_LATENCY_AUDIO_RECORD" dev1="10" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="480"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 240 periods * 1ms buffer, 32-bit,2 ch, buffer size 92160 bytes -->
<usecase id="UC_MMAP_RECORD" dev1="9" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="240"/>
</usecase_attr>

View file

@ -104,6 +104,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -201,6 +206,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -102,6 +102,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -178,6 +183,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -102,6 +102,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -178,6 +183,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -611,6 +611,15 @@
<ctl name="Incall Capture Stream2" value="UL_DL"/>
</path>
<path name="low-latency-recordC">
<ctl name="EP3 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>
<path name="low-latency-recordC usb-headset-mic">
<ctl name="Audio Capture Mic Source" value="USB_MIC"/>
<ctl name="EP3 TX Mixer USB_TX" value="1"/>
</path>
<path name="mmap-recordC">
<ctl name="EP2 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -131,7 +131,9 @@
<usecase id="UC_HOSTLESS_UL" dev1="15"/>
<!-- for VOIP input, 4 * 10ms buffer -->
<usecase id="UC_VOIP_RECORD" dev1="17" dyn_path="true" dsp_vol="false" mmap="false" period="10" period_num="4"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 480 periods * 1ms buffer,32-bit,2 ch, buffer size 92160 bytes -->
<!-- for input wit AUDIO_INPUT_FLAG_FAST 480 periods * 1ms buffer, 16-bit, 2ch, buffer size 92160 bytes-->
<usecase id="UC_LOW_LATENCY_AUDIO_RECORD" dev1="10" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="480"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 240 periods * 1ms buffer, 32-bit,2 ch, buffer size 92160 bytes -->
<usecase id="UC_MMAP_RECORD" dev1="9" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="240"/>
</usecase_attr>

View file

@ -104,6 +104,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -201,6 +206,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -102,6 +102,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -178,6 +183,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -102,6 +102,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -178,6 +183,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -638,6 +638,15 @@
<ctl name="Incall Capture Stream2" value="UL_DL"/>
</path>
<path name="low-latency-recordC">
<ctl name="EP3 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>
<path name="low-latency-recordC usb-headset-mic">
<ctl name="Audio Capture Mic Source" value="USB_MIC"/>
<ctl name="EP3 TX Mixer USB_TX" value="1"/>
</path>
<path name="mmap-recordC">
<ctl name="EP2 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -131,7 +131,9 @@
<usecase id="UC_HOSTLESS_UL" dev1="15"/>
<!-- for VOIP input, 4 * 10ms buffer -->
<usecase id="UC_VOIP_RECORD" dev1="17" dyn_path="true" dsp_vol="false" mmap="false" period="10" period_num="4"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 480 periods * 1ms buffer,32-bit,2 ch, buffer size 92160 bytes -->
<!-- for input wit AUDIO_INPUT_FLAG_FAST 480 periods * 1ms buffer, 16-bit, 2ch, buffer size 92160 bytes-->
<usecase id="UC_LOW_LATENCY_AUDIO_RECORD" dev1="10" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="480"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 240 periods * 1ms buffer, 32-bit,2 ch, buffer size 92160 bytes -->
<usecase id="UC_MMAP_RECORD" dev1="9" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="240"/>
</usecase_attr>

View file

@ -102,6 +102,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -199,6 +204,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -102,6 +102,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -178,6 +183,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -102,6 +102,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -178,6 +183,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -586,6 +586,15 @@
<ctl name="Incall Capture Stream2" value="UL_DL"/>
</path>
<path name="low-latency-recordC">
<ctl name="EP3 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>
<path name="low-latency-recordC usb-headset-mic">
<ctl name="Audio Capture Mic Source" value="USB_MIC"/>
<ctl name="EP3 TX Mixer USB_TX" value="1"/>
</path>
<path name="mmap-recordC">
<ctl name="EP2 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>

View file

@ -131,7 +131,9 @@
<usecase id="UC_HOSTLESS_UL" dev1="15"/>
<!-- for VOIP input, 4 * 10ms buffer -->
<usecase id="UC_VOIP_RECORD" dev1="17" dyn_path="true" dsp_vol="false" mmap="false" period="10" period_num="4"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 480 periods * 1ms buffer,32-bit,2 ch, buffer size 92160 bytes -->
<!-- for input wit AUDIO_INPUT_FLAG_FAST 480 periods * 1ms buffer, 16-bit, 2ch, buffer size 92160 bytes-->
<usecase id="UC_LOW_LATENCY_AUDIO_RECORD" dev1="10" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="480"/>
<!-- for input wit AUDIO_INPUT_FLAG_MMAP_NOIRQ 240 periods * 1ms buffer, 32-bit,2 ch, buffer size 92160 bytes -->
<usecase id="UC_MMAP_RECORD" dev1="9" dyn_path="true" dsp_vol="false" mmap="true" period="1" period_num="240"/>
</usecase_attr>

View file

@ -97,6 +97,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -173,6 +178,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -97,6 +97,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -173,6 +178,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -97,6 +97,11 @@
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000" channelMasks="AUDIO_CHANNEL_IN_MONO"/>
</mixPort>
<mixPort name="fast input" role="sink" flags="AUDIO_INPUT_FLAG_RAW AUDIO_INPUT_FLAG_FAST">
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
samplingRates="48000"
channelMasks="AUDIO_CHANNEL_IN_MONO AUDIO_CHANNEL_IN_STEREO"/>
</mixPort>
<mixPort name="mmap_no_irq_in" role="sink" flags="AUDIO_INPUT_FLAG_MMAP_NOIRQ">
<profile name="" format="AUDIO_FORMAT_PCM_32_BIT"
samplingRates="48000"
@ -173,6 +178,8 @@
<route type="mix" sink="voice call rx" sources="Voice Call And Telephony Rx" />
<route type="mix" sink="voip_tx"
sources="Built-In Mic,USB Device In,USB Headset In,BT SCO Headset Mic"/>
<route type="mix" sink="fast input"
sources="Built-In Mic,USB Device In,USB Headset In"/>
<route type="mix" sink="mmap_no_irq_in"
sources="Built-In Mic,USB Device In,USB Headset In"/>
</routes>

View file

@ -689,6 +689,15 @@
<ctl name="Incall Capture Stream2" value="UL_DL"/>
</path>
<path name="low-latency-recordC">
<ctl name="EP3 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>
<path name="low-latency-recordC usb-headset-mic">
<ctl name="Audio Capture Mic Source" value="USB_MIC"/>
<ctl name="EP3 TX Mixer USB_TX" value="1"/>
</path>
<path name="mmap-recordC">
<ctl name="EP2 TX Mixer INTERNAL_MIC_TX" value="1"/>
</path>

View file

@ -0,0 +1,34 @@
Head,BTHotspot,WIFI5Ghz,HotspotVoice,Cell,IMU,BDR_Single_Chain_0,EDR_Single_Chain_0,BLE_Single_Chain_0,BDR_Single_Chain_1,EDR_Single_Chain_1,BLE_Single_Chain_1,BDR_Dual_Chain_0,EDR_Dual_Chain_0,BLE_Dual_Chain_0,BDR_Dual_Chain_1,EDR_Dual_Chain_1,BLE_Dual_Chain_1
off,off,off,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,off,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,off,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,off,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
off,any,any,any,any,off,60,60,44,60,60,44,48,48,44,48,48,44
1 Head BTHotspot WIFI5Ghz HotspotVoice Cell IMU BDR_Single_Chain_0 EDR_Single_Chain_0 BLE_Single_Chain_0 BDR_Single_Chain_1 EDR_Single_Chain_1 BLE_Single_Chain_1 BDR_Dual_Chain_0 EDR_Dual_Chain_0 BLE_Dual_Chain_0 BDR_Dual_Chain_1 EDR_Dual_Chain_1 BLE_Dual_Chain_1
2 off off off off off on 60 60 44 60 60 44 48 48 44 48 48 44
3 off off off off on on 60 60 44 60 60 44 48 48 44 48 48 44
4 off off off on off on 60 60 44 60 60 44 48 48 44 48 48 44
5 off off off on on on 60 60 44 60 60 44 48 48 44 48 48 44
6 off off on off off on 60 60 44 60 60 44 48 48 44 48 48 44
7 off off on off on on 60 60 44 60 60 44 48 48 44 48 48 44
8 off off on on off on 60 60 44 60 60 44 48 48 44 48 48 44
9 off off on on on on 60 60 44 60 60 44 48 48 44 48 48 44
10 off on off off off on 60 60 44 60 60 44 48 48 44 48 48 44
11 off on off off on on 60 60 44 60 60 44 48 48 44 48 48 44
12 off on off on off on 60 60 44 60 60 44 48 48 44 48 48 44
13 off on off on on on 60 60 44 60 60 44 48 48 44 48 48 44
14 off on on off off on 60 60 44 60 60 44 48 48 44 48 48 44
15 off on on off on on 60 60 44 60 60 44 48 48 44 48 48 44
16 off on on on off on 60 60 44 60 60 44 48 48 44 48 48 44
17 off on on on on on 60 60 44 60 60 44 48 48 44 48 48 44
18 on off off off off any 60 60 44 60 60 44 48 48 44 48 48 44
19 on off off off on any 60 60 44 60 60 44 48 48 44 48 48 44
20 on off off on off any 60 60 44 60 60 44 48 48 44 48 48 44
21 on off off on on any 60 60 44 60 60 44 48 48 44 48 48 44
22 on off on off off any 60 60 44 60 60 44 48 48 44 48 48 44
23 on off on off on any 60 60 44 60 60 44 48 48 44 48 48 44
24 on off on on off any 60 60 44 60 60 44 48 48 44 48 48 44
25 on off on on on any 60 60 44 60 60 44 48 48 44 48 48 44
26 on on off off off any 60 60 44 60 60 44 48 48 44 48 48 44
27 on on off off on any 60 60 44 60 60 44 48 48 44 48 48 44
28 on on off on off any 60 60 44 60 60 44 48 48 44 48 48 44
29 on on off on on any 60 60 44 60 60 44 48 48 44 48 48 44
30 on on on off off any 60 60 44 60 60 44 48 48 44 48 48 44
31 on on on off on any 60 60 44 60 60 44 48 48 44 48 48 44
32 on on on on off any 60 60 44 60 60 44 48 48 44 48 48 44
33 on on on on on any 60 60 44 60 60 44 48 48 44 48 48 44
34 off any any any any off 60 60 44 60 60 44 48 48 44 48 48 44

View file

@ -0,0 +1,34 @@
Head,BTHotspot,WIFI5Ghz,HotspotVoice,Cell,IMU,BDR_Single_Chain_0,EDR_Single_Chain_0,BLE_Single_Chain_0,BDR_Single_Chain_1,EDR_Single_Chain_1,BLE_Single_Chain_1,BDR_Dual_Chain_0,EDR_Dual_Chain_0,BLE_Dual_Chain_0,BDR_Dual_Chain_1,EDR_Dual_Chain_1,BLE_Dual_Chain_1
off,off,off,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,off,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,off,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,off,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,off,on,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,off,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,off,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,off,on,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,on,off,on,60,60,44,60,60,44,48,48,44,48,48,44
off,on,on,on,on,on,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,off,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,off,on,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,off,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,off,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,off,on,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,on,off,any,60,60,44,60,60,44,48,48,44,48,48,44
on,on,on,on,on,any,60,60,44,60,60,44,48,48,44,48,48,44
off,any,any,any,any,off,60,60,44,60,60,44,48,48,44,48,48,44
1 Head BTHotspot WIFI5Ghz HotspotVoice Cell IMU BDR_Single_Chain_0 EDR_Single_Chain_0 BLE_Single_Chain_0 BDR_Single_Chain_1 EDR_Single_Chain_1 BLE_Single_Chain_1 BDR_Dual_Chain_0 EDR_Dual_Chain_0 BLE_Dual_Chain_0 BDR_Dual_Chain_1 EDR_Dual_Chain_1 BLE_Dual_Chain_1
2 off off off off off on 60 60 44 60 60 44 48 48 44 48 48 44
3 off off off off on on 60 60 44 60 60 44 48 48 44 48 48 44
4 off off off on off on 60 60 44 60 60 44 48 48 44 48 48 44
5 off off off on on on 60 60 44 60 60 44 48 48 44 48 48 44
6 off off on off off on 60 60 44 60 60 44 48 48 44 48 48 44
7 off off on off on on 60 60 44 60 60 44 48 48 44 48 48 44
8 off off on on off on 60 60 44 60 60 44 48 48 44 48 48 44
9 off off on on on on 60 60 44 60 60 44 48 48 44 48 48 44
10 off on off off off on 60 60 44 60 60 44 48 48 44 48 48 44
11 off on off off on on 60 60 44 60 60 44 48 48 44 48 48 44
12 off on off on off on 60 60 44 60 60 44 48 48 44 48 48 44
13 off on off on on on 60 60 44 60 60 44 48 48 44 48 48 44
14 off on on off off on 60 60 44 60 60 44 48 48 44 48 48 44
15 off on on off on on 60 60 44 60 60 44 48 48 44 48 48 44
16 off on on on off on 60 60 44 60 60 44 48 48 44 48 48 44
17 off on on on on on 60 60 44 60 60 44 48 48 44 48 48 44
18 on off off off off any 60 60 44 60 60 44 48 48 44 48 48 44
19 on off off off on any 60 60 44 60 60 44 48 48 44 48 48 44
20 on off off on off any 60 60 44 60 60 44 48 48 44 48 48 44
21 on off off on on any 60 60 44 60 60 44 48 48 44 48 48 44
22 on off on off off any 60 60 44 60 60 44 48 48 44 48 48 44
23 on off on off on any 60 60 44 60 60 44 48 48 44 48 48 44
24 on off on on off any 60 60 44 60 60 44 48 48 44 48 48 44
25 on off on on on any 60 60 44 60 60 44 48 48 44 48 48 44
26 on on off off off any 60 60 44 60 60 44 48 48 44 48 48 44
27 on on off off on any 60 60 44 60 60 44 48 48 44 48 48 44
28 on on off on off any 60 60 44 60 60 44 48 48 44 48 48 44
29 on on off on on any 60 60 44 60 60 44 48 48 44 48 48 44
30 on on on off off any 60 60 44 60 60 44 48 48 44 48 48 44
31 on on on off on any 60 60 44 60 60 44 48 48 44 48 48 44
32 on on on on off any 60 60 44 60 60 44 48 48 44 48 48 44
33 on on on on on any 60 60 44 60 60 44 48 48 44 48 48 44
34 off any any any any off 60 60 44 60 60 44 48 48 44 48 48 44

View file

@ -48,6 +48,10 @@ PRODUCT_COPY_FILES += \
device/google/raviole/thermal_info_config_oriole.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config.json \
device/google/raviole/thermal_info_config_oriole_WHI_A.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config_WHI_A.json
# Bluetooth Tx power caps for oriole
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/bluetooth_power_limits_oriole.csv:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_power_limits.csv
# MIPI Coex Configs
PRODUCT_COPY_FILES += \
device/google/raviole/radio/oriole_display_mipi_coex_table.csv:$(TARGET_COPY_OUT_VENDOR)/etc/modem/display_primary_mipi_coex_table.csv \

View file

@ -53,6 +53,10 @@ PRODUCT_COPY_FILES += \
PRODUCT_COPY_FILES += \
device/google/raviole/thermal_info_config_raven.json:$(TARGET_COPY_OUT_VENDOR)/etc/thermal_info_config.json
# Bluetooth Tx power caps for raven
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/bluetooth_power_limits_raven.csv:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_power_limits.csv
# Camera
PRODUCT_COPY_FILES += \
device/google/raviole/media_profiles_raven.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml