2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
33 #include "SLCommandHandler.h"
34 #include "../devices/CECBusDevice.h"
35 #include "../devices/CECPlaybackDevice.h"
36 #include "../CECProcessor.h"
37 #include "../LibCEC.h"
40 using namespace PLATFORM
;
42 #define SL_COMMAND_UNKNOWN_01 0x01
43 #define SL_COMMAND_UNKNOWN_02 0x02
45 #define SL_COMMAND_TYPE_HDDRECORDER_DISC 0x01
46 #define SL_COMMAND_TYPE_VCR 0x02
47 #define SL_COMMAND_TYPE_DVDPLAYER 0x03
48 #define SL_COMMAND_TYPE_HDDRECORDER_DISC2 0x04
49 #define SL_COMMAND_TYPE_HDDRECORDER 0x05
51 #define SL_COMMAND_REQUEST_POWER_STATUS 0xa0
52 #define SL_COMMAND_POWER_ON 0x03
53 #define SL_COMMAND_CONNECT_REQUEST 0x04
54 #define SL_COMMAND_SET_DEVICE_MODE 0x05
56 CSLCommandHandler::CSLCommandHandler(CCECBusDevice
*busDevice
) :
57 CCECCommandHandler(busDevice
),
59 m_bActiveSourceSent(false)
61 m_vendorId
= CEC_VENDOR_LG
;
62 CCECBusDevice
*primary
= m_processor
->GetPrimaryDevice();
64 /* imitate LG devices */
65 if (primary
&& m_busDevice
->GetLogicalAddress() != primary
->GetLogicalAddress())
67 primary
->SetVendorId(CEC_VENDOR_LG
);
68 primary
->ReplaceHandler(false);
71 /* LG TVs don't always reply to CEC version requests, so just set it to 1.3a */
72 if (m_busDevice
->GetLogicalAddress() == CECDEVICE_TV
)
73 m_busDevice
->SetCecVersion(CEC_VERSION_1_3A
);
75 /* LG devices always return "korean" as language */
76 cec_menu_language lang
;
77 lang
.device
= m_busDevice
->GetLogicalAddress();
78 snprintf(lang
.language
, 4, "eng");
79 m_busDevice
->SetMenuLanguage(lang
);
82 bool CSLCommandHandler::InitHandler(void)
86 m_bHandlerInited
= true;
88 if (m_busDevice
->GetLogicalAddress() == CECDEVICE_TV
)
90 CCECBusDevice
*primary
= m_processor
->GetPrimaryDevice();
92 /* start as 'in transition standby->on' */
93 primary
->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
94 primary
->TransmitPowerState(CECDEVICE_TV
);
96 /* send the vendor id */
97 primary
->TransmitVendorID(CECDEVICE_BROADCAST
);
103 bool CSLCommandHandler::ActivateSource(void)
105 if (!m_processor
->GetPrimaryDevice()->IsActiveSource())
107 CLibCEC::AddLog(CEC_LOG_NOTICE
, "not activating the source because we're not marked as active");
112 CLockObject
lock(m_SLMutex
);
113 m_bActiveSourceSent
= true;
116 CCECBusDevice
*primary
= m_processor
->GetPrimaryDevice();
117 primary
->SetActiveSource();
118 primary
->SetPowerStatus(CEC_POWER_STATUS_ON
);
119 primary
->TransmitPowerState(CECDEVICE_TV
);
120 primary
->TransmitImageViewOn();
121 primary
->TransmitActiveSource();
125 bool CSLCommandHandler::HandleActiveSource(const cec_command
&command
)
127 if (command
.parameters
.size
== 2)
129 uint16_t iAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
130 CCECBusDevice
*primary
= m_processor
->GetPrimaryDevice();
131 bool bSendPowerOffState(iAddress
!= primary
->GetPhysicalAddress(false) && primary
->IsActiveSource());
133 m_processor
->SetActiveSource(iAddress
);
134 if (bSendPowerOffState
)
137 CLockObject
lock(m_SLMutex
);
138 m_bActiveSourceSent
= false;
140 primary
->TransmitPowerState(CECDEVICE_TV
);
148 bool CSLCommandHandler::HandleDeviceVendorId(const cec_command
&command
)
150 SetVendorId(command
);
152 if (!SLInitialised() && command
.initiator
== CECDEVICE_TV
)
154 cec_command response
;
155 cec_command::Format(response
, m_processor
->GetLogicalAddress(), command
.initiator
, CEC_OPCODE_FEATURE_ABORT
);
156 return Transmit(response
);
161 bool CSLCommandHandler::HandleGivePhysicalAddress(const cec_command
&command
)
163 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
165 CCECBusDevice
*device
= GetDevice(command
.destination
);
167 return device
->TransmitPhysicalAddress(); // only the physical address, don't send image view on
173 bool CSLCommandHandler::HandleVendorCommand(const cec_command
&command
)
175 if (!m_busDevice
->MyLogicalAddressContains(command
.destination
))
178 if (command
.parameters
.size
== 1 &&
179 command
.parameters
[0] == SL_COMMAND_UNKNOWN_01
)
181 HandleVendorCommand01(command
);
184 else if (command
.parameters
.size
== 2 &&
185 command
.parameters
[0] == SL_COMMAND_POWER_ON
)
187 HandleVendorCommandPowerOn(command
);
190 else if (command
.parameters
.size
== 2 &&
191 command
.parameters
[0] == SL_COMMAND_CONNECT_REQUEST
)
193 HandleVendorCommandSLConnect(command
);
196 else if (command
.parameters
.size
== 1 &&
197 command
.parameters
[0] == SL_COMMAND_REQUEST_POWER_STATUS
)
199 HandleVendorCommandPowerOnStatus(command
);
206 void CSLCommandHandler::HandleVendorCommand01(const cec_command
&command
)
208 m_processor
->GetPrimaryDevice()->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
209 TransmitVendorCommand0205(command
.destination
, command
.initiator
);
212 void CSLCommandHandler::TransmitVendorCommand0205(const cec_logical_address iSource
, const cec_logical_address iDestination
)
214 cec_command response
;
215 cec_command::Format(response
, iSource
, iDestination
, CEC_OPCODE_VENDOR_COMMAND
);
216 response
.PushBack(SL_COMMAND_UNKNOWN_02
);
217 response
.PushBack(SL_COMMAND_TYPE_HDDRECORDER
);
219 Transmit(response
, false);
222 void CSLCommandHandler::HandleVendorCommandPowerOn(const cec_command
&command
)
224 if (command
.initiator
!= CECDEVICE_TV
)
227 CCECBusDevice
*device
= m_processor
->GetPrimaryDevice();
231 device
->SetActiveSource();
232 device
->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
233 device
->TransmitPowerState(command
.initiator
);
236 device
->SetPowerStatus(CEC_POWER_STATUS_ON
);
237 device
->TransmitPowerState(command
.initiator
);
238 device
->TransmitPhysicalAddress();
240 CLockObject
lock(m_SLMutex
);
241 m_bActiveSourceSent
= false;
245 void CSLCommandHandler::HandleVendorCommandPowerOnStatus(const cec_command
&command
)
247 if (command
.destination
!= CECDEVICE_BROADCAST
)
249 CCECBusDevice
*device
= m_processor
->m_busDevices
[m_processor
->GetLogicalAddresses().primary
];
250 device
->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
251 device
->TransmitPowerState(command
.initiator
);
252 device
->SetPowerStatus(CEC_POWER_STATUS_ON
);
256 void CSLCommandHandler::HandleVendorCommandSLConnect(const cec_command
&command
)
259 TransmitVendorCommandSetDeviceMode(m_processor
->GetLogicalAddress(), command
.initiator
, CEC_DEVICE_TYPE_RECORDING_DEVICE
);
264 void CSLCommandHandler::TransmitVendorCommandSetDeviceMode(const cec_logical_address iSource
, const cec_logical_address iDestination
, const cec_device_type type
)
266 cec_command response
;
267 cec_command::Format(response
, iSource
, iDestination
, CEC_OPCODE_VENDOR_COMMAND
);
268 response
.PushBack(SL_COMMAND_SET_DEVICE_MODE
);
269 response
.PushBack((uint8_t)type
);
270 Transmit(response
, false);
273 bool CSLCommandHandler::HandleGiveDeckStatus(const cec_command
&command
)
275 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
277 CCECBusDevice
*device
= GetDevice(command
.destination
);
278 if (device
&& (device
->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE
|| device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
))
280 if (command
.parameters
.size
> 0)
282 ((CCECPlaybackDevice
*) device
)->SetDeckStatus(!device
->IsActiveSource() || !ActiveSourceSent() ? CEC_DECK_INFO_OTHER_STATUS
: CEC_DECK_INFO_OTHER_STATUS_LG
);
283 if (command
.parameters
[0] == CEC_STATUS_REQUEST_ON
)
285 bool bReturn
= ((CCECPlaybackDevice
*) device
)->TransmitDeckStatus(command
.initiator
);
286 if (!ActiveSourceSent())
290 else if (command
.parameters
[0] == CEC_STATUS_REQUEST_ONCE
)
292 return ((CCECPlaybackDevice
*) device
)->TransmitDeckStatus(command
.initiator
);
296 return CCECCommandHandler::HandleGiveDeckStatus(command
);
302 bool CSLCommandHandler::HandleGiveDevicePowerStatus(const cec_command
&command
)
305 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
) && command
.initiator
== CECDEVICE_TV
)
307 CCECBusDevice
*device
= GetDevice(command
.destination
);
308 if (device
&& device
->GetPowerStatus(false) != CEC_POWER_STATUS_ON
)
310 bReturn
= device
->TransmitPowerState(command
.initiator
);
311 device
->SetPowerStatus(CEC_POWER_STATUS_ON
);
315 if (!ActiveSourceSent())
317 device
->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
318 bReturn
= device
->TransmitPowerState(command
.initiator
);
321 else if (m_resetPowerState
.IsSet() && m_resetPowerState
.TimeLeft() > 0)
323 /* TODO assume that we've bugged out. the return button no longer works after this */
324 CLibCEC::AddLog(CEC_LOG_WARNING
, "FIXME: LG seems to have bugged out. resetting to 'in transition standby to on'. the return button will not work");
326 CLockObject
lock(m_SLMutex
);
327 m_bActiveSourceSent
= false;
329 device
->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
330 bReturn
= device
->TransmitPowerState(command
.initiator
);
331 device
->SetPowerStatus(CEC_POWER_STATUS_ON
);
332 m_resetPowerState
.Init(5000);
336 bReturn
= device
->TransmitPowerState(command
.initiator
);
337 m_resetPowerState
.Init(5000);
345 bool CSLCommandHandler::HandleRequestActiveSource(const cec_command
&command
)
347 if (m_processor
->IsRunning())
349 if (ActiveSourceSent())
350 CLibCEC::AddLog(CEC_LOG_DEBUG
, ">> %i requests active source, ignored", (uint8_t) command
.initiator
);
358 bool CSLCommandHandler::HandleFeatureAbort(const cec_command
&command
)
360 if (command
.parameters
.size
== 0 && m_processor
->GetPrimaryDevice()->GetPowerStatus() == CEC_POWER_STATUS_ON
&& !SLInitialised() &&
361 command
.initiator
== CECDEVICE_TV
)
363 m_processor
->GetPrimaryDevice()->TransmitPowerState(command
.initiator
);
364 m_processor
->GetPrimaryDevice()->TransmitVendorID(CECDEVICE_BROADCAST
, false);
367 return CCECCommandHandler::HandleFeatureAbort(command
);
370 bool CSLCommandHandler::HandleStandby(const cec_command
&command
)
372 if (command
.initiator
== CECDEVICE_TV
)
374 CLockObject
lock(m_SLMutex
);
375 m_bActiveSourceSent
= false;
378 return CCECCommandHandler::HandleStandby(command
);
381 void CSLCommandHandler::ResetSLState(void)
383 CLibCEC::AddLog(CEC_LOG_NOTICE
, "resetting SL initialised state");
384 CLockObject
lock(m_SLMutex
);
385 m_bSLEnabled
= false;
386 m_bActiveSourceSent
= false;
387 m_processor
->GetPrimaryDevice()->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
390 void CSLCommandHandler::SetSLInitialised(void)
392 CLibCEC::AddLog(CEC_LOG_NOTICE
, "SL initialised");
393 CLockObject
lock(m_SLMutex
);
397 bool CSLCommandHandler::SLInitialised(void)
399 CLockObject
lock(m_SLMutex
);
403 bool CSLCommandHandler::ActiveSourceSent(void)
405 CLockObject
lock(m_SLMutex
);
406 return m_bActiveSourceSent
;
409 bool CSLCommandHandler::PowerOn(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
411 if (iDestination
!= CECDEVICE_TV
)
413 /* LG devices only allow themselves to be woken up by the TV with a vendor command */
415 cec_command::Format(command
, CECDEVICE_TV
, iDestination
, CEC_OPCODE_VENDOR_COMMAND
);
416 command
.PushBack(SL_COMMAND_POWER_ON
);
418 return Transmit(command
);
421 return CCECCommandHandler::PowerOn(iInitiator
, iDestination
);