blob: 297a418fa5e34a909bf9c7fba1ab98081da92fe6 [file] [log] [blame]
Jinsuk Kimc0c20d02014-07-04 14:34:31 +09001/*
2 * Copyright (C) 2014 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
17package com.android.server.hdmi;
18
Amy743f8662018-06-25 11:51:12 -070019import android.annotation.IntDef;
Amydbed4e52018-11-28 17:22:20 -080020import android.annotation.StringDef;
Jungshik Jang61f4fbd2014-08-06 19:21:12 +090021import android.hardware.hdmi.HdmiDeviceInfo;
Shubang Lu00b976a2018-08-01 18:11:46 -070022
Nick Chalko5ce97f82018-07-20 13:48:21 -070023import java.lang.annotation.Retention;
24import java.lang.annotation.RetentionPolicy;
Jinsuk Kim29a5d262014-07-21 17:25:32 +090025
Jinsuk Kimc0c20d02014-07-04 14:34:31 +090026/**
Nick Chalko8015e742018-07-20 09:38:15 -070027 * Defines constants related to HDMI-CEC protocol internal implementation. If a constant will be
28 * used in the public api, it should be located in {@link android.hardware.hdmi.HdmiControlManager}.
Jinsuk Kimc0c20d02014-07-04 14:34:31 +090029 */
30final class Constants {
31
32 /** Logical address for TV */
33 public static final int ADDR_TV = 0;
34
35 /** Logical address for recorder 1 */
36 public static final int ADDR_RECORDER_1 = 1;
37
38 /** Logical address for recorder 2 */
39 public static final int ADDR_RECORDER_2 = 2;
40
41 /** Logical address for tuner 1 */
42 public static final int ADDR_TUNER_1 = 3;
43
44 /** Logical address for playback 1 */
45 public static final int ADDR_PLAYBACK_1 = 4;
46
47 /** Logical address for audio system */
48 public static final int ADDR_AUDIO_SYSTEM = 5;
49
50 /** Logical address for tuner 2 */
51 public static final int ADDR_TUNER_2 = 6;
52
53 /** Logical address for tuner 3 */
54 public static final int ADDR_TUNER_3 = 7;
55
56 /** Logical address for playback 2 */
57 public static final int ADDR_PLAYBACK_2 = 8;
58
59 /** Logical address for recorder 3 */
60 public static final int ADDR_RECORDER_3 = 9;
61
62 /** Logical address for tuner 4 */
63 public static final int ADDR_TUNER_4 = 10;
64
65 /** Logical address for playback 3 */
66 public static final int ADDR_PLAYBACK_3 = 11;
67
68 /** Logical address reserved for future usage */
69 public static final int ADDR_RESERVED_1 = 12;
70
71 /** Logical address reserved for future usage */
72 public static final int ADDR_RESERVED_2 = 13;
73
74 /** Logical address for TV other than the one assigned with {@link #ADDR_TV} */
75 public static final int ADDR_SPECIFIC_USE = 14;
76
77 /** Logical address for devices to which address cannot be allocated */
78 public static final int ADDR_UNREGISTERED = 15;
79
80 /** Logical address used in the destination address field for broadcast messages */
81 public static final int ADDR_BROADCAST = 15;
82
83 /** Logical address used to indicate it is not initialized or invalid. */
84 public static final int ADDR_INVALID = -1;
85
86 /** Logical address used to indicate the source comes from internal device. */
Jungshik Jang61f4fbd2014-08-06 19:21:12 +090087 public static final int ADDR_INTERNAL = HdmiDeviceInfo.ADDR_INTERNAL;
Jinsuk Kimc0c20d02014-07-04 14:34:31 +090088
89 static final int MESSAGE_FEATURE_ABORT = 0x00;
90 static final int MESSAGE_IMAGE_VIEW_ON = 0x04;
91 static final int MESSAGE_TUNER_STEP_INCREMENT = 0x05;
92 static final int MESSAGE_TUNER_STEP_DECREMENT = 0x06;
93 static final int MESSAGE_TUNER_DEVICE_STATUS = 0x07;
94 static final int MESSAGE_GIVE_TUNER_DEVICE_STATUS = 0x08;
95 static final int MESSAGE_RECORD_ON = 0x09;
96 static final int MESSAGE_RECORD_STATUS = 0x0A;
97 static final int MESSAGE_RECORD_OFF = 0x0B;
98 static final int MESSAGE_TEXT_VIEW_ON = 0x0D;
99 static final int MESSAGE_RECORD_TV_SCREEN = 0x0F;
100 static final int MESSAGE_GIVE_DECK_STATUS = 0x1A;
101 static final int MESSAGE_DECK_STATUS = 0x1B;
102 static final int MESSAGE_SET_MENU_LANGUAGE = 0x32;
103 static final int MESSAGE_CLEAR_ANALOG_TIMER = 0x33;
104 static final int MESSAGE_SET_ANALOG_TIMER = 0x34;
105 static final int MESSAGE_TIMER_STATUS = 0x35;
106 static final int MESSAGE_STANDBY = 0x36;
107 static final int MESSAGE_PLAY = 0x41;
108 static final int MESSAGE_DECK_CONTROL = 0x42;
109 static final int MESSAGE_TIMER_CLEARED_STATUS = 0x043;
110 static final int MESSAGE_USER_CONTROL_PRESSED = 0x44;
111 static final int MESSAGE_USER_CONTROL_RELEASED = 0x45;
112 static final int MESSAGE_GIVE_OSD_NAME = 0x46;
113 static final int MESSAGE_SET_OSD_NAME = 0x47;
114 static final int MESSAGE_SET_OSD_STRING = 0x64;
115 static final int MESSAGE_SET_TIMER_PROGRAM_TITLE = 0x67;
116 static final int MESSAGE_SYSTEM_AUDIO_MODE_REQUEST = 0x70;
117 static final int MESSAGE_GIVE_AUDIO_STATUS = 0x71;
118 static final int MESSAGE_SET_SYSTEM_AUDIO_MODE = 0x72;
119 static final int MESSAGE_REPORT_AUDIO_STATUS = 0x7A;
120 static final int MESSAGE_GIVE_SYSTEM_AUDIO_MODE_STATUS = 0x7D;
121 static final int MESSAGE_SYSTEM_AUDIO_MODE_STATUS = 0x7E;
122 static final int MESSAGE_ROUTING_CHANGE = 0x80;
123 static final int MESSAGE_ROUTING_INFORMATION = 0x81;
124 static final int MESSAGE_ACTIVE_SOURCE = 0x82;
125 static final int MESSAGE_GIVE_PHYSICAL_ADDRESS = 0x83;
126 static final int MESSAGE_REPORT_PHYSICAL_ADDRESS = 0x84;
127 static final int MESSAGE_REQUEST_ACTIVE_SOURCE = 0x85;
128 static final int MESSAGE_SET_STREAM_PATH = 0x86;
129 static final int MESSAGE_DEVICE_VENDOR_ID = 0x87;
130 static final int MESSAGE_VENDOR_COMMAND = 0x89;
131 static final int MESSAGE_VENDOR_REMOTE_BUTTON_DOWN = 0x8A;
132 static final int MESSAGE_VENDOR_REMOTE_BUTTON_UP = 0x8B;
133 static final int MESSAGE_GIVE_DEVICE_VENDOR_ID = 0x8C;
134 static final int MESSAGE_MENU_REQUEST = 0x8D;
135 static final int MESSAGE_MENU_STATUS = 0x8E;
136 static final int MESSAGE_GIVE_DEVICE_POWER_STATUS = 0x8F;
137 static final int MESSAGE_REPORT_POWER_STATUS = 0x90;
138 static final int MESSAGE_GET_MENU_LANGUAGE = 0x91;
139 static final int MESSAGE_SELECT_ANALOG_SERVICE = 0x92;
140 static final int MESSAGE_SELECT_DIGITAL_SERVICE = 0x93;
141 static final int MESSAGE_SET_DIGITAL_TIMER = 0x97;
142 static final int MESSAGE_CLEAR_DIGITAL_TIMER = 0x99;
143 static final int MESSAGE_SET_AUDIO_RATE = 0x9A;
144 static final int MESSAGE_INACTIVE_SOURCE = 0x9D;
145 static final int MESSAGE_CEC_VERSION = 0x9E;
146 static final int MESSAGE_GET_CEC_VERSION = 0x9F;
147 static final int MESSAGE_VENDOR_COMMAND_WITH_ID = 0xA0;
148 static final int MESSAGE_CLEAR_EXTERNAL_TIMER = 0xA1;
149 static final int MESSAGE_SET_EXTERNAL_TIMER = 0xA2;
Yuncheol Heo75a77e72014-07-09 18:27:53 +0900150 static final int MESSAGE_REPORT_SHORT_AUDIO_DESCRIPTOR = 0xA3;
151 static final int MESSAGE_REQUEST_SHORT_AUDIO_DESCRIPTOR = 0xA4;
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900152 static final int MESSAGE_INITIATE_ARC = 0xC0;
153 static final int MESSAGE_REPORT_ARC_INITIATED = 0xC1;
154 static final int MESSAGE_REPORT_ARC_TERMINATED = 0xC2;
155 static final int MESSAGE_REQUEST_ARC_INITIATION = 0xC3;
156 static final int MESSAGE_REQUEST_ARC_TERMINATION = 0xC4;
157 static final int MESSAGE_TERMINATE_ARC = 0xC5;
Yuncheol Heo75a77e72014-07-09 18:27:53 +0900158 static final int MESSAGE_CDC_MESSAGE = 0xF8;
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900159 static final int MESSAGE_ABORT = 0xFF;
160
161 static final int UNKNOWN_VENDOR_ID = 0xFFFFFF;
162
Jinsuk Kim7ecfbae2014-07-11 14:16:29 +0900163 static final int TRUE = 1;
164 static final int FALSE = 0;
165
Jungshik Jang4480efa2014-09-04 17:08:34 +0900166 // Internal abort error code. It's the same as success.
167 static final int ABORT_NO_ERROR = -1;
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900168 // Constants related to operands of HDMI CEC commands.
169 // Refer to CEC Table 29 in HDMI Spec v1.4b.
170 // [Abort Reason]
Yuncheol Heo25c20292014-07-31 17:59:39 +0900171 static final int ABORT_UNRECOGNIZED_OPCODE = 0;
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900172 static final int ABORT_NOT_IN_CORRECT_MODE = 1;
173 static final int ABORT_CANNOT_PROVIDE_SOURCE = 2;
174 static final int ABORT_INVALID_OPERAND = 3;
175 static final int ABORT_REFUSED = 4;
176 static final int ABORT_UNABLE_TO_DETERMINE = 5;
177
178 // [Audio Status]
179 static final int SYSTEM_AUDIO_STATUS_OFF = 0;
180 static final int SYSTEM_AUDIO_STATUS_ON = 1;
181
Terry Heo3e1564e2014-08-12 14:41:00 +0900182 // [Menu State]
183 static final int MENU_STATE_ACTIVATED = 0;
184 static final int MENU_STATE_DEACTIVATED = 1;
185
Nick Chalko5ce97f82018-07-20 13:48:21 -0700186 // Audio Format Codes
187 // Refer to CEA Standard (CEA-861-D), Table 37 Audio Format Codes.
188 @Retention(RetentionPolicy.SOURCE)
189 @IntDef({
190 AUDIO_CODEC_NONE,
191 AUDIO_CODEC_LPCM,
192 AUDIO_CODEC_DD,
193 AUDIO_CODEC_MPEG1,
194 AUDIO_CODEC_MP3,
195 AUDIO_CODEC_MPEG2,
196 AUDIO_CODEC_AAC,
197 AUDIO_CODEC_DTS,
198 AUDIO_CODEC_ATRAC,
199 AUDIO_CODEC_ONEBITAUDIO,
200 AUDIO_CODEC_DDP,
201 AUDIO_CODEC_DTSHD,
202 AUDIO_CODEC_TRUEHD,
203 AUDIO_CODEC_DST,
204 AUDIO_CODEC_WMAPRO,
205 AUDIO_CODEC_MAX,
206 })
207 public @interface AudioCodec {}
208
209 static final int AUDIO_CODEC_NONE = 0x0;
210 static final int AUDIO_CODEC_LPCM = 0x1; // Support LPCMs
211 static final int AUDIO_CODEC_DD = 0x2; // Support DD
212 static final int AUDIO_CODEC_MPEG1 = 0x3; // Support MPEG1
213 static final int AUDIO_CODEC_MP3 = 0x4; // Support MP3
214 static final int AUDIO_CODEC_MPEG2 = 0x5; // Support MPEG2
215 static final int AUDIO_CODEC_AAC = 0x6; // Support AAC
216 static final int AUDIO_CODEC_DTS = 0x7; // Support DTS
217 static final int AUDIO_CODEC_ATRAC = 0x8; // Support ATRAC
218 static final int AUDIO_CODEC_ONEBITAUDIO = 0x9; // Support One-Bit Audio
219 static final int AUDIO_CODEC_DDP = 0xA; // Support DDP
220 static final int AUDIO_CODEC_DTSHD = 0xB; // Support DTSHD
221 static final int AUDIO_CODEC_TRUEHD = 0xC; // Support MLP/TRUE-HD
222 static final int AUDIO_CODEC_DST = 0xD; // Support DST
223 static final int AUDIO_CODEC_WMAPRO = 0xE; // Support WMA-Pro
224 static final int AUDIO_CODEC_MAX = 0xF;
225
Amydbed4e52018-11-28 17:22:20 -0800226 @StringDef({
227 AUDIO_DEVICE_ARC_IN,
228 AUDIO_DEVICE_SPDIF,
229 })
230 public @interface AudioDevice {}
231
232 static final String AUDIO_DEVICE_ARC_IN = "ARC_IN";
233 static final String AUDIO_DEVICE_SPDIF = "SPDIF";
234
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900235 // Bit mask used to get the routing path of the top level device.
236 // When &'d with the path 1.2.2.0 (0x1220), for instance, gives 1.0.0.0.
237 static final int ROUTING_PATH_TOP_MASK = 0xF000;
Yuncheol Heo75a77e72014-07-09 18:27:53 +0900238 static final int ROUTING_PATH_TOP_SHIFT = 12;
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900239
Jungshik Jang61f4fbd2014-08-06 19:21:12 +0900240 static final int INVALID_PORT_ID = HdmiDeviceInfo.PORT_INVALID;
241 static final int INVALID_PHYSICAL_ADDRESS = HdmiDeviceInfo.PATH_INVALID;
Jinsuk Kime6536022014-12-02 13:40:02 +0900242 static final int PATH_INTERNAL = HdmiDeviceInfo.PATH_INTERNAL;
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900243
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900244 // Strategy for device polling.
245 // Should use "OR(|) operation of POLL_STRATEGY_XXX and POLL_ITERATION_XXX.
Nick Chalko8015e742018-07-20 09:38:15 -0700246 static final int POLL_STRATEGY_MASK = 0x3; // first and second bit.
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900247 static final int POLL_STRATEGY_REMOTES_DEVICES = 0x1;
248 static final int POLL_STRATEGY_SYSTEM_AUDIO = 0x2;
249
Nick Chalko8015e742018-07-20 09:38:15 -0700250 static final int POLL_ITERATION_STRATEGY_MASK = 0x30000; // first and second bit.
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900251 static final int POLL_ITERATION_IN_ORDER = 0x10000;
252 static final int POLL_ITERATION_REVERSE_ORDER = 0x20000;
253
254 static final int UNKNOWN_VOLUME = -1;
255
Amy743f8662018-06-25 11:51:12 -0700256 // States of property PROPERTY_SYSTEM_AUDIO_CONTROL_ON_POWER_ON
257 // to decide if turn on the system audio control when power on the device
258 @IntDef({
259 ALWAYS_SYSTEM_AUDIO_CONTROL_ON_POWER_ON,
260 USE_LAST_STATE_SYSTEM_AUDIO_CONTROL_ON_POWER_ON,
261 NEVER_SYSTEM_AUDIO_CONTROL_ON_POWER_ON
262 })
263 @interface SystemAudioControlOnPowerOn {}
Nick Chalko8015e742018-07-20 09:38:15 -0700264
Amy743f8662018-06-25 11:51:12 -0700265 static final int ALWAYS_SYSTEM_AUDIO_CONTROL_ON_POWER_ON = 0;
266 static final int USE_LAST_STATE_SYSTEM_AUDIO_CONTROL_ON_POWER_ON = 1;
267 static final int NEVER_SYSTEM_AUDIO_CONTROL_ON_POWER_ON = 2;
268
Amy225d55a2018-09-06 11:03:51 -0700269 // Port id to record local active port for Routing Control features
270 // They are used to map to corresponding Inputs
271 // Current interface is only implemented for specific device.
272 // Developers can add more port number and map them to corresponding inputs on demand.
273 @IntDef({
274 CEC_SWITCH_HOME,
275 CEC_SWITCH_HDMI1,
276 CEC_SWITCH_HDMI2,
277 CEC_SWITCH_HDMI3,
278 CEC_SWITCH_HDMI4,
279 CEC_SWITCH_HDMI5,
280 CEC_SWITCH_HDMI6,
281 CEC_SWITCH_HDMI7,
282 CEC_SWITCH_HDMI8,
283 CEC_SWITCH_ARC,
284 CEC_SWITCH_BLUETOOTH,
285 CEC_SWITCH_OPTICAL,
286 CEC_SWITCH_AUX
287 })
288 @interface LocalActivePort {}
289 static final int CEC_SWITCH_HOME = 0;
290 static final int CEC_SWITCH_HDMI1 = 1;
291 static final int CEC_SWITCH_HDMI2 = 2;
292 static final int CEC_SWITCH_HDMI3 = 3;
293 static final int CEC_SWITCH_HDMI4 = 4;
294 static final int CEC_SWITCH_HDMI5 = 5;
295 static final int CEC_SWITCH_HDMI6 = 6;
296 static final int CEC_SWITCH_HDMI7 = 7;
297 static final int CEC_SWITCH_HDMI8 = 8;
298 static final int CEC_SWITCH_ARC = 17;
299 static final int CEC_SWITCH_BLUETOOTH = 18;
300 static final int CEC_SWITCH_OPTICAL = 19;
301 static final int CEC_SWITCH_AUX = 20;
302 static final int CEC_SWITCH_PORT_MAX = 21;
303
Nick Chalkob89d6ff2018-05-25 10:29:01 -0700304 static final String PROPERTY_PREFERRED_ADDRESS_AUDIO_SYSTEM =
305 "persist.sys.hdmi.addr.audiosystem";
Yuncheol Heo4b5c2d32014-09-13 11:21:46 +0900306 static final String PROPERTY_PREFERRED_ADDRESS_PLAYBACK = "persist.sys.hdmi.addr.playback";
307 static final String PROPERTY_PREFERRED_ADDRESS_TV = "persist.sys.hdmi.addr.tv";
308
309 // Property name for the local device configurations.
310 // TODO(OEM): OEM should provide this property, and the value is the comma separated integer
311 // values which denotes the device type in HDMI Spec 1.4.
312 static final String PROPERTY_DEVICE_TYPE = "ro.hdmi.device_type";
Jinsuk Kimaf2acf02014-07-11 18:43:04 +0900313
Jinsuk Kim659c4862015-05-07 12:12:55 +0900314 // TODO(OEM): Set this to false to keep the playback device in sleep upon hotplug event.
315 // True by default.
316 static final String PROPERTY_WAKE_ON_HOTPLUG = "ro.hdmi.wake_on_hotplug";
317
Donghyun Choa09256c2016-03-11 17:35:37 +0900318 // TODO(OEM): Set this to true to enable 'Set Menu Language' feature. False by default.
319 static final String PROPERTY_SET_MENU_LANGUAGE = "ro.hdmi.set_menu_language";
320
Amycce55e02018-08-20 15:42:25 -0700321 /**
Amy225d55a2018-09-06 11:03:51 -0700322 * Property to save the ARC port id on system audio device.
323 * <p>When ARC is initiated, this port will be used to turn on ARC.
324 */
325 static final String PROPERTY_SYSTEM_AUDIO_DEVICE_ARC_PORT =
326 "ro.hdmi.property_sytem_audio_device_arc_port";
327
328 /**
Amycce55e02018-08-20 15:42:25 -0700329 * Property to disable muting logic in System Audio Control handling. Default is true.
330 *
331 * <p>True means enabling muting logic.
332 * <p>False means never mute device.
333 */
Amycce55e02018-08-20 15:42:25 -0700334 static final String PROPERTY_SYSTEM_AUDIO_MODE_MUTING_ENABLE =
Amy437bfb32018-09-05 14:26:56 -0700335 "ro.hdmi.property_system_audio_mode_muting_enable";
Amycce55e02018-08-20 15:42:25 -0700336
Amy02f31152018-08-28 15:05:42 -0700337 /**
338 * When set to true the HdmiControlService will never request a Logical Address for the
339 * playback device type. Default is false.
340 *
341 * <p> This is useful when HDMI CEC multiple device types is not supported by the cec driver
342 */
343 static final String PROPERTY_HDMI_CEC_NEVER_CLAIM_PLAYBACK_LOGICAL_ADDRESS =
344 "ro.hdmi.property_hdmi_cec_never_claim_playback_logical_address";
345
Amy34037422018-09-06 13:21:08 -0700346 /**
Amy8027c942018-09-18 10:23:20 -0700347 * A comma separated list of logical addresses that HdmiControlService
348 * will never assign local CEC devices to.
349 *
350 * <p> This is useful when HDMI CEC hardware module can't assign multiple logical addresses
351 * in the range same range of 0-7 or 8-15.
352 */
353 static final String PROPERTY_HDMI_CEC_NEVER_ASSIGN_LOGICAL_ADDRESSES =
354 "ro.hdmi.property_hdmi_cec_never_assign_logical_addresses";
355
Jinsuk Kimbad83932015-02-10 07:10:40 +0900356 // Set to false to allow playback device to go to suspend mode even
357 // when it's an active source. True by default.
358 static final String PROPERTY_KEEP_AWAKE = "persist.sys.hdmi.keep_awake";
359
Amy743f8662018-06-25 11:51:12 -0700360 // TODO(UI): Set this from UI to decide if turn on System Audio Mode when power on the device
Amy6506bd62018-07-02 17:29:36 -0700361 /**
362 * Property to decide if turn on the system audio control when power on the device.
Nick Chalko8015e742018-07-20 09:38:15 -0700363 *
364 * <p>Default is always turn on. State must be a valid {@link SystemAudioControlOnPowerOn} int.
Amy743f8662018-06-25 11:51:12 -0700365 */
366 static final String PROPERTY_SYSTEM_AUDIO_CONTROL_ON_POWER_ON =
Nick Chalko8015e742018-07-20 09:38:15 -0700367 "persist.sys.hdmi.system_audio_control_on_power_on";
Amy743f8662018-06-25 11:51:12 -0700368
Amy6506bd62018-07-02 17:29:36 -0700369 /**
370 * Property to record last state of system audio control before device powered off.
Amycc490822018-07-13 16:57:04 -0700371 * <p>When {@link #PROPERTY_SYSTEM_AUDIO_CONTROL_ON_POWER_ON} is set to
Amy6506bd62018-07-02 17:29:36 -0700372 * {@link #USE_LAST_STATE_SYSTEM_AUDIO_CONTROL_ON_POWER_ON}, restoring this state on power on.
Amycc490822018-07-13 16:57:04 -0700373 * <p>State must be true or false. Default true.
Amy6506bd62018-07-02 17:29:36 -0700374 */
375 static final String PROPERTY_LAST_SYSTEM_AUDIO_CONTROL =
Nick Chalko8015e742018-07-20 09:38:15 -0700376 "persist.sys.hdmi.last_system_audio_control";
Amy6506bd62018-07-02 17:29:36 -0700377
Amycc490822018-07-13 16:57:04 -0700378 /**
Amy77c7c982018-07-23 18:27:36 -0700379 * Property to indicate if device supports ARC or not
380 * <p>Default is true.
381 */
382 static final String PROPERTY_ARC_SUPPORT =
Shubang Lud7efb0a2018-08-01 14:21:28 -0700383 "persist.sys.hdmi.property_arc_support";
Amy77c7c982018-07-23 18:27:36 -0700384
385 /**
Amycc490822018-07-13 16:57:04 -0700386 * Property to save the audio port to switch to when system audio control is on.
387 * <P>Audio system should switch to this port when cec active source is not its child in the tree
388 * or is not itself.
389 *
390 * <p>Default is ARC port.
391 */
392 static final String PROPERTY_SYSTEM_AUDIO_MODE_AUDIO_PORT =
Shubang Lud7efb0a2018-08-01 14:21:28 -0700393 "persist.sys.hdmi.property_sytem_audio_mode_audio_port";
Amycc490822018-07-13 16:57:04 -0700394
395 /**
Shubang Lud7efb0a2018-08-01 14:21:28 -0700396 * Property to indicate if a CEC audio device should forward volume keys when system audio mode
397 * is off.
398 *
399 * <p>Default is false.
400 */
401 static final String PROPERTY_CEC_AUDIO_DEVICE_FORWARD_VOLUME_KEYS_SYSTEM_AUDIO_MODE_OFF =
402 "persist.sys.hdmi.property_cec_audio_device_forward_volume_keys_system_audio_mode_off";
403
404 /**
Amyd323e542018-08-01 13:24:00 -0700405 * Property to strip local audio of amplifier and use local speaker
406 * when TV does not support system audio mode.
407 *
408 * <p>This property applies to device with both audio system/playback types.
409 * <p>True means using local speaker when TV does not support system audio.
410 * <p>False means passing audio to TV. Default is true.
411 */
412 static final String PROPERTY_STRIP_AUDIO_TV_NO_SYSTEM_AUDIO =
413 "persist.sys.hdmi.property_strip_audio_tv_no_system_audio";
414
Jungshik Janga6b2a7a2014-07-16 18:04:49 +0900415 static final int RECORDING_TYPE_DIGITAL_RF = 1;
416 static final int RECORDING_TYPE_ANALOGUE_RF = 2;
417 static final int RECORDING_TYPE_EXTERNAL_PHYSICAL_ADDRESS = 3;
418 static final int RECORDING_TYPE_OWN_SOURCE = 4;
419
Jinsuk Kim50084862014-08-07 13:11:40 +0900420 // Definitions used for setOption(). These should be in sync with the definition
Donghyun Chobc6e3722016-11-04 05:25:52 +0900421 // in hardware/libhardware/include/hardware/mhl.h.
Jinsuk Kim5b8cb002015-01-19 07:30:12 +0900422
Jinsuk Kim50084862014-08-07 13:11:40 +0900423 // If set to disabled, TV does not switch ports when mobile device is connected.
424 static final int OPTION_MHL_INPUT_SWITCHING = 101;
425
426 // If set to enabled, TV disables power charging for mobile device.
427 static final int OPTION_MHL_POWER_CHARGE = 102;
428
429 // If set to disabled, all MHL commands are discarded.
430 static final int OPTION_MHL_ENABLE = 103;
431
Jinsuk Kim5b8cb002015-01-19 07:30:12 +0900432 // If set to disabled, system service yields control of MHL to sub-microcontroller.
433 // If enabled, it takes the control back.
434 static final int OPTION_MHL_SERVICE_CONTROL = 104;
435
Jinsuk Kim50084862014-08-07 13:11:40 +0900436 static final int DISABLED = 0;
437 static final int ENABLED = 1;
438
Nick Chalko8015e742018-07-20 09:38:15 -0700439 private Constants() {
440 /* cannot be instantiated */
441 }
Jinsuk Kimc0c20d02014-07-04 14:34:31 +0900442}