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/
35 #if defined(HAVE_RPI_API)
36 #include "RPiCECAdapterCommunication.h"
42 #include "lib/CECTypeUtils.h"
43 #include "lib/LibCEC.h"
44 #include "lib/platform/util/StdString.h"
45 #include "RPiCECAdapterMessageQueue.h"
48 using namespace PLATFORM
;
50 #define LIB_CEC m_callback->GetLib()
52 static bool g_bHostInited
= false;
54 // callback for the RPi CEC service
55 void rpi_cec_callback(void *callback_data
, uint32_t p0
, uint32_t p1
, uint32_t p2
, uint32_t p3
, uint32_t p4
)
58 static_cast<CRPiCECAdapterCommunication
*>(callback_data
)->OnDataReceived(p0
, p1
, p2
, p3
, p4
);
61 CRPiCECAdapterCommunication::CRPiCECAdapterCommunication(IAdapterCommunicationCallback
*callback
) :
62 IAdapterCommunication(callback
),
63 m_logicalAddress(CECDEVICE_UNKNOWN
),
64 m_bLogicalAddressChanged(false)
66 m_queue
= new CRPiCECAdapterMessageQueue(this);
69 CRPiCECAdapterCommunication::~CRPiCECAdapterCommunication(void)
75 const char *ToString(const VC_CEC_ERROR_T error
)
81 case VC_CEC_ERROR_NO_ACK
:
83 case VC_CEC_ERROR_SHUTDOWN
:
85 case VC_CEC_ERROR_BUSY
:
86 return "device is busy";
87 case VC_CEC_ERROR_NO_LA
:
88 return "no logical address";
89 case VC_CEC_ERROR_NO_PA
:
90 return "no physical address";
91 case VC_CEC_ERROR_NO_TOPO
:
93 case VC_CEC_ERROR_INVALID_FOLLOWER
:
94 return "invalid follower";
95 case VC_CEC_ERROR_INVALID_ARGUMENT
:
102 bool CRPiCECAdapterCommunication::IsInitialised(void)
104 CLockObject
lock(m_mutex
);
105 return m_bInitialised
;
108 void CRPiCECAdapterCommunication::OnDataReceived(uint32_t header
, uint32_t p0
, uint32_t p1
, uint32_t p2
, uint32_t p3
)
110 VC_CEC_NOTIFY_T reason
= (VC_CEC_NOTIFY_T
)CEC_CB_REASON(header
);
112 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "received data: header:%08X p0:%08X p1:%08X p2:%08X p3:%08X reason:%x", header
, p0
, p1
, p2
, p3
, reason
);
119 // translate into a VC_CEC_MESSAGE_T
120 VC_CEC_MESSAGE_T message
;
121 vc_cec_param2message(header
, p0
, p1
, p2
, p3
, &message
);
123 // translate to a cec_command
125 cec_command::Format(command
,
126 (cec_logical_address
)message
.initiator
,
127 (cec_logical_address
)message
.follower
,
128 (cec_opcode
)CEC_CB_OPCODE(p0
));
131 for (uint8_t iPtr
= 1; iPtr
< message
.length
; iPtr
++)
132 command
.PushBack(message
.payload
[iPtr
]);
135 m_callback
->OnCommandReceived(command
);
140 // handle response to a command that was sent earlier
141 m_queue
->MessageReceived((cec_opcode
)CEC_CB_OPCODE(p0
), (cec_logical_address
)CEC_CB_INITIATOR(p0
), (cec_logical_address
)CEC_CB_FOLLOWER(p0
), CEC_CB_RC(header
));
144 case VC_CEC_BUTTON_PRESSED
:
145 case VC_CEC_REMOTE_PRESSED
:
147 // translate into a cec_command
149 cec_command::Format(command
,
150 (cec_logical_address
)CEC_CB_INITIATOR(p0
),
151 (cec_logical_address
)CEC_CB_FOLLOWER(p0
),
152 reason
== VC_CEC_BUTTON_PRESSED
? CEC_OPCODE_USER_CONTROL_PRESSED
: CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN
);
153 command
.parameters
.PushBack((uint8_t)CEC_CB_OPERAND1(p0
));
156 m_callback
->OnCommandReceived(command
);
159 case VC_CEC_BUTTON_RELEASE
:
160 case VC_CEC_REMOTE_RELEASE
:
162 // translate into a cec_command
164 cec_command::Format(command
,
165 (cec_logical_address
)CEC_CB_INITIATOR(p0
),
166 (cec_logical_address
)CEC_CB_FOLLOWER(p0
),
167 reason
== VC_CEC_BUTTON_PRESSED
? CEC_OPCODE_USER_CONTROL_RELEASE
: CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP
);
168 command
.parameters
.PushBack((uint8_t)CEC_CB_OPERAND1(p0
));
171 m_callback
->OnCommandReceived(command
);
174 case VC_CEC_LOGICAL_ADDR
:
176 CLockObject
lock(m_mutex
);
177 if (CEC_CB_RC(header
) == VCHIQ_SUCCESS
)
179 m_bLogicalAddressChanged
= true;
180 m_logicalAddress
= (cec_logical_address
)(p0
& 0xF);
181 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "logical address changed to %s (%x)", LIB_CEC
->ToString(m_logicalAddress
), m_logicalAddress
);
185 m_logicalAddress
= CECDEVICE_BROADCAST
;
186 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "failed to change the logical address, reset to %s (%x)", LIB_CEC
->ToString(m_logicalAddress
), m_logicalAddress
);
188 m_logicalAddressCondition
.Signal();
191 case VC_CEC_LOGICAL_ADDR_LOST
:
193 // the logical address was taken by another device
194 cec_logical_address previousAddress
= m_logicalAddress
;
195 m_logicalAddress
= CECDEVICE_UNKNOWN
;
197 // notify libCEC that we lost our LA when the connection was initialised
199 m_callback
->HandleLogicalAddressLost(previousAddress
);
202 case VC_CEC_TOPOLOGY
:
205 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "ignoring unknown reason %x", reason
);
210 int CRPiCECAdapterCommunication::InitHostCEC(void)
212 VCHIQ_INSTANCE_T vchiq_instance
;
215 if ((iResult
= vchiq_initialise(&vchiq_instance
)) != VCHIQ_SUCCESS
)
217 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "%s - vchiq_initialise failed (%d)", __FUNCTION__
, iResult
);
219 strError
.Format("%s - vchiq_initialise failed (%d)", __FUNCTION__
, iResult
);
220 m_strError
= strError
;
223 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s - vchiq_initialise succeeded", __FUNCTION__
);
225 if ((iResult
= vchi_initialise(&m_vchi_instance
)) != VCHIQ_SUCCESS
)
227 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "%s - vchi_initialise failed (%d)", __FUNCTION__
, iResult
);
229 strError
.Format("%s - vchi_initialise failed (%d)", __FUNCTION__
, iResult
);
230 m_strError
= strError
;
233 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s - vchi_initialise succeeded", __FUNCTION__
);
235 vchiq_instance
= (VCHIQ_INSTANCE_T
)m_vchi_instance
;
237 m_vchi_connection
= vchi_create_connection(single_get_func_table(),
238 vchi_mphi_message_driver_func_table());
240 if ((iResult
= vchi_connect(&m_vchi_connection
, 1, m_vchi_instance
)) != VCHIQ_SUCCESS
)
242 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "%s - vchi_connect failed (%d)", __FUNCTION__
, iResult
);
244 strError
.Format("%s - vchi_connect failed (%d)", __FUNCTION__
, iResult
);
245 m_strError
= strError
;
248 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s - vchi_connect succeeded", __FUNCTION__
);
250 return VCHIQ_SUCCESS
;
253 bool CRPiCECAdapterCommunication::Open(uint32_t iTimeoutMs
/* = CEC_DEFAULT_CONNECT_TIMEOUT */, bool UNUSED(bSkipChecks
) /* = false */, bool bStartListening
)
257 if (InitHostCEC() != VCHIQ_SUCCESS
)
262 // enable passive mode
263 vc_cec_set_passive(true);
265 // register the callback
266 vc_cec_register_callback(((CECSERVICE_CALLBACK_T
)rpi_cec_callback
), (void*)this);
268 // release previous LA
269 vc_cec_release_logical_address();
270 if (!m_logicalAddressCondition
.Wait(m_mutex
, m_bLogicalAddressChanged
, iTimeoutMs
))
272 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "failed to release the previous LA");
276 // register LA "freeuse"
277 if (RegisterLogicalAddress(CECDEVICE_FREEUSE
))
279 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s - vc_cec initialised", __FUNCTION__
);
280 CLockObject
lock(m_mutex
);
281 m_bInitialised
= true;
284 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "%s - vc_cec could not be initialised", __FUNCTION__
);
290 uint16_t CRPiCECAdapterCommunication::GetPhysicalAddress(void)
292 uint16_t iPA(CEC_INVALID_PHYSICAL_ADDRESS
);
293 if (!IsInitialised())
296 if (vc_cec_get_physical_address(&iPA
) == VCHIQ_SUCCESS
)
297 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s - physical address = %04x", __FUNCTION__
, iPA
);
300 LIB_CEC
->AddLog(CEC_LOG_WARNING
, "%s - failed to get the physical address", __FUNCTION__
);
301 iPA
= CEC_INVALID_PHYSICAL_ADDRESS
;
307 void CRPiCECAdapterCommunication::Close(void)
310 CLockObject
lock(m_mutex
);
312 m_bInitialised
= false;
316 UnregisterLogicalAddress();
318 // disable passive mode
319 vc_cec_set_passive(false);
323 g_bHostInited
= false;
328 std::string
CRPiCECAdapterCommunication::GetError(void) const
330 std::string
strError(m_strError
);
334 cec_adapter_message_state
CRPiCECAdapterCommunication::Write(const cec_command
&data
, bool &UNUSED(bRetry
), uint8_t UNUSED(iLineTimeout
), bool bIsReply
)
336 // ensure that the source LA is registered
337 if (!RegisterLogicalAddress(data
.initiator
))
339 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "failed to register logical address %s (%X)", CCECTypeUtils::ToString(data
.initiator
), data
.initiator
);
340 return (data
.initiator
== data
.destination
) ? ADAPTER_MESSAGE_STATE_SENT_NOT_ACKED
: ADAPTER_MESSAGE_STATE_ERROR
;
343 if (!data
.opcode_set
&& data
.initiator
== data
.destination
)
345 // registration of the logical address would have failed
346 return ADAPTER_MESSAGE_STATE_SENT_NOT_ACKED
;
349 return m_queue
->Write(data
, bIsReply
) ? ADAPTER_MESSAGE_STATE_SENT_ACKED
: ADAPTER_MESSAGE_STATE_SENT_NOT_ACKED
;
352 uint16_t CRPiCECAdapterCommunication::GetFirmwareVersion(void)
354 return VC_CECSERVICE_VER
;
357 cec_logical_address
CRPiCECAdapterCommunication::GetLogicalAddress(void)
360 CLockObject
lock(m_mutex
);
361 if (m_logicalAddress
!= CECDEVICE_UNKNOWN
)
362 return m_logicalAddress
;
365 CEC_AllDevices_T address
;
366 return (vc_cec_get_logical_address(&address
) == VCHIQ_SUCCESS
) ?
367 (cec_logical_address
)address
: CECDEVICE_UNKNOWN
;
370 bool CRPiCECAdapterCommunication::UnregisterLogicalAddress(void)
372 CLockObject
lock(m_mutex
);
373 if (m_logicalAddress
== CECDEVICE_UNKNOWN
||
374 m_logicalAddress
== CECDEVICE_BROADCAST
)
377 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s - releasing previous logical address", __FUNCTION__
);
378 m_bLogicalAddressChanged
= false;
380 vc_cec_release_logical_address();
382 return m_logicalAddressCondition
.Wait(m_mutex
, m_bLogicalAddressChanged
);
385 bool CRPiCECAdapterCommunication::RegisterLogicalAddress(const cec_logical_address address
)
388 CLockObject
lock(m_mutex
);
389 if (m_logicalAddress
== address
)
393 if (!UnregisterLogicalAddress())
396 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s - registering address %x", __FUNCTION__
, address
);
398 CLockObject
lock(m_mutex
);
399 m_bLogicalAddressChanged
= false;
400 vc_cec_poll_address((CEC_AllDevices_T
)address
);
402 // register the new LA
403 int iRetval
= vc_cec_set_logical_address((CEC_AllDevices_T
)address
, (CEC_DEVICE_TYPE_T
)CCECTypeUtils::GetType(address
), CEC_VENDOR_ID_BROADCOM
);
404 if (iRetval
!= VCHIQ_SUCCESS
)
406 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "%s - vc_cec_set_logical_address(%X) returned %s (%d)", __FUNCTION__
, address
, ToString((VC_CEC_ERROR_T
)iRetval
), iRetval
);
410 return m_logicalAddressCondition
.Wait(m_mutex
, m_bLogicalAddressChanged
);
413 cec_logical_addresses
CRPiCECAdapterCommunication::GetLogicalAddresses(void)
415 cec_logical_addresses addresses
; addresses
.Clear();
416 cec_logical_address current
= GetLogicalAddress();
417 if (current
!= CECDEVICE_UNKNOWN
)
418 addresses
.Set(current
);
423 bool CRPiCECAdapterCommunication::SetLogicalAddresses(const cec_logical_addresses
&addresses
)
425 // the current generation RPi only supports 1 LA, so just ensure that the primary address is registered
426 return SupportsSourceLogicalAddress(addresses
.primary
) &&
427 RegisterLogicalAddress(addresses
.primary
);
430 void CRPiCECAdapterCommunication::InitHost(void)
434 g_bHostInited
= true;