cec: fixed another deadlock on exit
[deb_libcec.git] / src / lib / implementations / SLCommandHandler.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
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.
13 *
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.
18 *
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.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
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/
31 */
32
33#include "SLCommandHandler.h"
34#include "../devices/CECBusDevice.h"
35#include "../devices/CECPlaybackDevice.h"
36#include "../CECProcessor.h"
37#include "../platform/timeutils.h"
38
39using namespace CEC;
40
41#define SL_COMMAND_UNKNOWN_01 0x01
42#define SL_COMMAND_UNKNOWN_02 0x02
43#define SL_COMMAND_UNKNOWN_03 0x05
44
45#define SL_COMMAND_REQUEST_POWER_STATUS 0xa0
46#define SL_COMMAND_POWER_ON 0x03
47#define SL_COMMAND_CONNECT_REQUEST 0x04
48#define SL_COMMAND_CONNECT_ACCEPT 0x05
49
50CSLCommandHandler::CSLCommandHandler(CCECBusDevice *busDevice) :
51 CCECCommandHandler(busDevice),
52 m_bAwaitingReceiveFailed(false),
53 m_bSLEnabled(false),
54 m_bVendorIdSent(false)
55{
56 m_processor->m_busDevices[m_processor->GetLogicalAddresses().primary]->m_powerStatus = CEC_POWER_STATUS_STANDBY;
57}
58
59bool CSLCommandHandler::HandleVendorCommand(const cec_command &command)
60{
61 if (command.parameters.size == 1 &&
62 command.parameters[0] == SL_COMMAND_UNKNOWN_01)
63 {
64 HandleVendorCommand01(command);
65 return true;
66 }
67 else if (command.parameters.size == 2 &&
68 command.parameters[0] == SL_COMMAND_POWER_ON)
69 {
70 HandleVendorCommand03(command);
71 return true;
72 }
73 else if (command.parameters.size == 2 &&
74 command.parameters[0] == SL_COMMAND_CONNECT_REQUEST)
75 {
76 HandleVendorCommand04(command);
77 return true;
78 }
79 else if (command.parameters.size == 1 &&
80 command.parameters[0] == SL_COMMAND_REQUEST_POWER_STATUS)
81 {
82 HandleVendorCommandA0(command);
83 return true;
84 }
85
86 return false;
87}
88
89bool CSLCommandHandler::HandleGiveDeckStatus(const cec_command &command)
90{
91 if (command.parameters.size == 1)
92 {
93 if (command.parameters[0] == CEC_STATUS_REQUEST_ONCE ||
94 command.parameters[0] == CEC_STATUS_REQUEST_ON)
95 {
96 TransmitDeckStatus(command.initiator);
97 }
98 else
99 {
100 CCECCommandHandler::HandleGiveDeckStatus(command);
101 }
102 }
103 return true;
104}
105
106void CSLCommandHandler::HandleVendorCommand01(const cec_command &command)
107{
108 TransmitVendorCommand0205(command.destination, command.initiator);
109}
110
111void CSLCommandHandler::TransmitVendorCommand0205(const cec_logical_address iSource, const cec_logical_address iDestination)
112{
113 cec_command response;
114 cec_command::Format(response, iSource, iDestination, CEC_OPCODE_VENDOR_COMMAND);
115 response.PushBack(SL_COMMAND_UNKNOWN_02);
116 response.PushBack(SL_COMMAND_UNKNOWN_03);
117
118 Transmit(response);
119}
120
121void CSLCommandHandler::TransmitVendorCommand04(const cec_logical_address iSource, const cec_logical_address iDestination)
122{
123 m_bSLEnabled = true;
124 cec_command response;
125 cec_command::Format(response, iSource, iDestination, CEC_OPCODE_VENDOR_COMMAND);
126 response.PushBack(SL_COMMAND_CONNECT_ACCEPT);
127 response.PushBack((uint8_t)iSource);
128 Transmit(response);
129}
130
131void CSLCommandHandler::HandleVendorCommand03(const cec_command &command)
132{
133 CCECBusDevice *device = m_processor->m_busDevices[m_processor->GetLogicalAddresses().primary];
134 if (device)
135 {
136 m_bSLEnabled = true;
137 device->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
138 device->TransmitPowerState(command.initiator);
139 device->TransmitVendorID(command.initiator);
140 TransmitPowerOn(device->GetLogicalAddress(), command.initiator);
141 }
142}
143
144void CSLCommandHandler::HandleVendorCommand04(const cec_command &command)
145{
146 m_bSLEnabled = true;
147 TransmitVendorCommand04(command.destination, command.initiator);
148 TransmitDeckStatus(command.initiator);
149}
150
151void CSLCommandHandler::HandleVendorCommandA0(const cec_command &command)
152{
153 if (command.destination != CECDEVICE_BROADCAST)
154 {
155 CCECBusDevice *device = m_processor->m_busDevices[m_processor->GetLogicalAddresses().primary];
156 device->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
157 device->TransmitPowerState(command.initiator);
158 device->SetPowerStatus(CEC_POWER_STATUS_ON);
159 }
160}
161
162void CSLCommandHandler::TransmitDeckStatus(const cec_logical_address iDestination)
163{
164 /* set deck status for the playback device */
165 CCECBusDevice *primary = m_processor->m_busDevices[m_processor->GetLogicalAddresses().primary];
166 if (primary->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || primary->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE)
167 {
168 ((CCECPlaybackDevice *)primary)->SetDeckStatus(CEC_DECK_INFO_OTHER_STATUS_LG);
169 ((CCECPlaybackDevice *)primary)->TransmitDeckStatus(iDestination);
170 }
171}
172
173bool CSLCommandHandler::TransmitLGVendorId(const cec_logical_address iInitiator, const cec_logical_address iDestination)
174{
175 cec_command response;
176 cec_command::Format(response, iInitiator, iDestination, CEC_OPCODE_DEVICE_VENDOR_ID);
177 response.parameters.PushBack((uint8_t) (((uint64_t)CEC_VENDOR_LG >> 16) & 0xFF));
178 response.parameters.PushBack((uint8_t) (((uint64_t)CEC_VENDOR_LG >> 8) & 0xFF));
179 response.parameters.PushBack((uint8_t) ((uint64_t)CEC_VENDOR_LG & 0xFF));
180
181 Transmit(response);
182 return true;
183}
184
185bool CSLCommandHandler::HandleGiveDeviceVendorId(const cec_command &command)
186{
187 /* imitate LG devices */
188 CCECBusDevice *device = GetDevice(command.destination);
189 if (device)
190 device->SetVendorId(CEC_VENDOR_LG);
191
192 return CCECCommandHandler::HandleGiveDeviceVendorId(command);
193}
194
195bool CSLCommandHandler::HandleCommand(const cec_command &command)
196{
197 bool bHandled(false);
198
199 if (m_processor->IsStarted() && (m_busDevice->MyLogicalAddressContains(command.destination) ||
200 command.destination == CECDEVICE_BROADCAST))
201 {
202 switch(command.opcode)
203 {
204 case CEC_OPCODE_VENDOR_COMMAND:
205 bHandled = HandleVendorCommand(command);
206 break;
207 case CEC_OPCODE_FEATURE_ABORT:
208 {
209 if (!m_bVendorIdSent)
210 {
211 m_bVendorIdSent = true;
212 TransmitLGVendorId(m_processor->GetLogicalAddresses().primary, CECDEVICE_BROADCAST);
213 }
214 }
215 bHandled = true;
216 default:
217 break;
218 }
219 }
220
221 if (!bHandled)
222 bHandled = CCECCommandHandler::HandleCommand(command);
223
224 return bHandled;
225}
226
227void CSLCommandHandler::HandlePoll(const cec_logical_address iInitiator, const cec_logical_address iDestination)
228{
229 CCECCommandHandler::HandlePoll(iInitiator, iDestination);
230 m_bAwaitingReceiveFailed = true;
231}
232
233bool CSLCommandHandler::HandleReceiveFailed(void)
234{
235 if (m_bAwaitingReceiveFailed)
236 {
237 m_bAwaitingReceiveFailed = false;
238 return false;
239 }
240
241 return true;
242}
243
244bool CSLCommandHandler::InitHandler(void)
245{
246 m_processor->SetStandardLineTimeout(3);
247 m_processor->SetRetryLineTimeout(3);
248
249 /* increase the number of retries because the tv is keeping the bus busy at times */
250 m_iTransmitWait = 2000;
251 m_iTransmitRetries = 4;
252 m_iTransmitTimeout = 500;
253
254 CCECBusDevice *primary = m_processor->m_busDevices[m_processor->GetLogicalAddresses().primary];
255 if (m_busDevice->GetLogicalAddress() != primary->GetLogicalAddress())
256 primary->SetVendorId(CEC_VENDOR_LG, false);
257
258 if (m_busDevice->GetLogicalAddress() == CECDEVICE_TV)
259 {
260 /* LG TVs don't always reply to CEC version requests, so just set it to 1.3a */
261 m_busDevice->SetCecVersion(CEC_VERSION_1_3A);
262 }
263
264 /* LG devices always return "korean" as language */
265 cec_menu_language lang;
266 lang.device = m_busDevice->GetLogicalAddress();
267 snprintf(lang.language, 4, "eng");
268 m_busDevice->SetMenuLanguage(lang);
269
270 if (m_busDevice->GetLogicalAddress() == CECDEVICE_TV)
271 {
272 m_processor->SetActiveSource();
273
274 /* LG TVs only route keypresses when the deck status is set to 0x20 */
275 cec_logical_addresses addr = m_processor->GetLogicalAddresses();
276 for (uint8_t iPtr = 0; iPtr < 15; iPtr++)
277 {
278 CCECBusDevice *device = m_processor->m_busDevices[iPtr];
279
280 if (addr[iPtr])
281 {
282 if (device && (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE ||
283 device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE))
284 {
285 ((CCECPlaybackDevice *)device)->SetDeckStatus(CEC_DECK_INFO_OTHER_STATUS_LG);
286 }
287 }
288 }
289 }
290
291 return true;
292}
293
294bool CSLCommandHandler::TransmitPowerOn(const cec_logical_address iInitiator, const cec_logical_address iDestination)
295{
296 if (iDestination != CECDEVICE_BROADCAST &&
297 iDestination != CECDEVICE_TV &&
298 m_processor->m_busDevices[iDestination]->GetVendorId(false) == CEC_VENDOR_LG)
299 {
300 cec_command command;
301 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_VENDOR_COMMAND);
302 command.parameters.PushBack((uint8_t)SL_COMMAND_POWER_ON);
303 command.parameters.PushBack(0x00);
304 return Transmit(command);
305 }
306
307 return CCECCommandHandler::TransmitPowerOn(iInitiator, iDestination);
308}
309