-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Telink Zephyr main branch (get rid of maintaining special Z…
…ephyr branch) (#25940) * [Telink] Switch to Telink Zephyr main branch * [Telink] Update telink image to 0.6.53
- Loading branch information
1 parent
2c60361
commit 857e435
Showing
11 changed files
with
248 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/* | ||
* | ||
* Copyright (c) 2023 Project CHIP Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* @file | ||
* Provides an implementation of the ThreadStackManager object | ||
* for Telink platform. | ||
* | ||
*/ | ||
/* this file behaves like a config.h, comes first */ | ||
#include <platform/internal/CHIPDeviceLayerInternal.h> | ||
|
||
#include <platform/OpenThread/GenericThreadStackManagerImpl_OpenThread.cpp> | ||
#include <platform/telink/ThreadStackManagerImpl.h> | ||
|
||
#include <inet/UDPEndPointImpl.h> | ||
#include <lib/support/CodeUtils.h> | ||
#include <platform/OpenThread/OpenThreadUtils.h> | ||
#include <platform/ThreadStackManager.h> | ||
|
||
namespace chip { | ||
namespace DeviceLayer { | ||
|
||
using namespace ::chip::DeviceLayer::Internal; | ||
using namespace ::chip::Inet; | ||
|
||
ThreadStackManagerImpl ThreadStackManagerImpl::sInstance; | ||
|
||
CHIP_ERROR ThreadStackManagerImpl::_InitThreadStack() | ||
{ | ||
mRadioBlocked = false; | ||
mReadyToAttach = false; | ||
otInstance * const instance = openthread_get_default_instance(); | ||
|
||
ReturnErrorOnFailure(GenericThreadStackManagerImpl_OpenThread<ThreadStackManagerImpl>::DoInit(instance)); | ||
#ifdef CONFIG_CHIP_OPENTHREAD_TX_POWER | ||
/* On Zephyr platform otPlatRadioSetTransmitPower does not touch radio HW */ | ||
if (otPlatRadioSetTransmitPower(OTInstance(), CONFIG_CHIP_OPENTHREAD_TX_POWER) != OT_ERROR_NONE) | ||
{ | ||
ChipLogError(DeviceLayer, "Can't set OpenThread TX power"); | ||
} | ||
#endif /* CONFIG_CHIP_OPENTHREAD_TX_POWER */ | ||
|
||
UDPEndPointImplSockets::SetJoinMulticastGroupHandler([](InterfaceId, const IPAddress & address) { | ||
const otIp6Address otAddress = ToOpenThreadIP6Address(address); | ||
|
||
ThreadStackMgr().LockThreadStack(); | ||
const auto otError = otIp6SubscribeMulticastAddress(openthread_get_default_instance(), &otAddress); | ||
ThreadStackMgr().UnlockThreadStack(); | ||
|
||
return MapOpenThreadError(otError); | ||
}); | ||
|
||
UDPEndPointImplSockets::SetLeaveMulticastGroupHandler([](InterfaceId, const IPAddress & address) { | ||
const otIp6Address otAddress = ToOpenThreadIP6Address(address); | ||
|
||
ThreadStackMgr().LockThreadStack(); | ||
const auto otError = otIp6UnsubscribeMulticastAddress(openthread_get_default_instance(), &otAddress); | ||
ThreadStackMgr().UnlockThreadStack(); | ||
|
||
return MapOpenThreadError(otError); | ||
}); | ||
|
||
return CHIP_NO_ERROR; | ||
} | ||
|
||
void ThreadStackManagerImpl::_LockThreadStack() | ||
{ | ||
openthread_api_mutex_lock(openthread_get_default_context()); | ||
} | ||
|
||
bool ThreadStackManagerImpl::_TryLockThreadStack() | ||
{ | ||
// There's no openthread_api_mutex_try_lock() in Zephyr, so until it's contributed we must use the low-level API | ||
return k_mutex_lock(&openthread_get_default_context()->api_lock, K_NO_WAIT) == 0; | ||
} | ||
|
||
void ThreadStackManagerImpl::_UnlockThreadStack() | ||
{ | ||
openthread_api_mutex_unlock(openthread_get_default_context()); | ||
} | ||
|
||
CHIP_ERROR | ||
ThreadStackManagerImpl::_AttachToThreadNetwork(const Thread::OperationalDataset & dataset, | ||
NetworkCommissioning::Internal::WirelessDriver::ConnectCallback * callback) | ||
{ | ||
CHIP_ERROR result = CHIP_NO_ERROR; | ||
|
||
if (mRadioBlocked) | ||
{ | ||
/* On Telink platform it's not possible to rise Thread network when its used by BLE, | ||
so just mark that it's provisioned and rise Thread after BLE disconnect */ | ||
result = SetThreadProvision(dataset.AsByteSpan()); | ||
if (result == CHIP_NO_ERROR) | ||
{ | ||
mReadyToAttach = true; | ||
callback->OnResult(NetworkCommissioning::Status::kSuccess, CharSpan(), 0); | ||
} | ||
} | ||
else | ||
{ | ||
result = | ||
Internal::GenericThreadStackManagerImpl_OpenThread<ThreadStackManagerImpl>::_AttachToThreadNetwork(dataset, callback); | ||
} | ||
return result; | ||
} | ||
|
||
} // namespace DeviceLayer | ||
} // namespace chip |
Oops, something went wrong.