198 lines
6.1 KiB
C++
198 lines
6.1 KiB
C++
/*
|
|
* Copyright (C) 2023 The Android Open Source Project
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef TINYSYS_CHRE_CONNECTION_H_
|
|
#define TINYSYS_CHRE_CONNECTION_H_
|
|
|
|
#include "chre_connection.h"
|
|
#include "chre_connection_callback.h"
|
|
#include "chre_host/fragmented_load_transaction.h"
|
|
#include "chre_host/log.h"
|
|
#include "chre_host/log_message_parser.h"
|
|
#include "chre_host/st_hal_lpma_handler.h"
|
|
|
|
#include <unistd.h>
|
|
#include <cassert>
|
|
#include <future>
|
|
#include <queue>
|
|
#include <thread>
|
|
|
|
using ::android::chre::StHalLpmaHandler;
|
|
|
|
namespace aidl::android::hardware::contexthub {
|
|
|
|
using namespace ::android::hardware::contexthub::common::implementation;
|
|
|
|
/** A class handling message transmission between context hub HAL and CHRE. */
|
|
// TODO(b/267188769): We should add comments explaining how IPI works.
|
|
class TinysysChreConnection : public ChreConnection {
|
|
public:
|
|
TinysysChreConnection(ChreConnectionCallback *callback)
|
|
: mCallback(callback), mLpmaHandler(/* allowed= */ true) {
|
|
mPayload = std::make_unique<uint8_t[]>(kMaxPayloadBytes);
|
|
};
|
|
|
|
~TinysysChreConnection() override {
|
|
// TODO(b/264308286): Need a decent way to terminate the listener thread.
|
|
close(mChreFileDescriptor);
|
|
if (mMessageListener.joinable()) {
|
|
mMessageListener.join();
|
|
}
|
|
if (mMessageSender.joinable()) {
|
|
mMessageSender.join();
|
|
}
|
|
if (mStateListener.joinable()) {
|
|
mStateListener.join();
|
|
}
|
|
}
|
|
|
|
static void handleMessageFromChre(TinysysChreConnection *chreConnection,
|
|
const unsigned char *messageBuffer,
|
|
size_t messageLen);
|
|
|
|
bool init() override;
|
|
|
|
bool sendMessage(void *data, size_t length) override;
|
|
|
|
inline ChreConnectionCallback *getCallback() {
|
|
return mCallback;
|
|
}
|
|
|
|
inline StHalLpmaHandler *getLpmaHandler() {
|
|
return &mLpmaHandler;
|
|
}
|
|
|
|
private:
|
|
// The wakelock used to keep device awake while handleUsfMsgAsync() is being
|
|
// called.
|
|
static constexpr char kWakeLock[] = "tinysys_chre_hal_wakelock";
|
|
|
|
// Max payload size that can be sent to CHRE
|
|
// TODO(b/277235389): Adjust max payload size (AP -> SCP and SCP -> AP)
|
|
// as appropriate. This is a temp/quick fix for b/272311907 and b/270758946
|
|
// setting max payload allowed to CHRE_MESSAGE_TO_HOST_MAX_SIZE + 128 byte
|
|
// to account for transport overhead.
|
|
static constexpr uint32_t kMaxPayloadBytes = 4224; // 4096 + 128
|
|
|
|
// Max overhead of the nanoapp binary payload caused by the fbs encapsulation
|
|
static constexpr uint32_t kMaxPayloadOverheadBytes = 1024;
|
|
|
|
// The path to CHRE file descriptor
|
|
static constexpr char kChreFileDescriptorPath[] = "/dev/scp_chre_manager";
|
|
|
|
// Max queue size for sending messages to CHRE
|
|
static constexpr size_t kMaxSynchronousMessageQueueSize = 64;
|
|
|
|
// Wrapper for a message sent to CHRE
|
|
struct ChreConnectionMessage {
|
|
// This magic number is the SCP_CHRE_MAGIC constant defined by kernel
|
|
// scp_chre_manager service. The value is embedded in the payload as a
|
|
// security check for proper use of the device node.
|
|
uint32_t magic = 0x67728269;
|
|
uint32_t payloadSize = 0;
|
|
uint8_t payload[kMaxPayloadBytes];
|
|
|
|
ChreConnectionMessage(void *data, size_t length) {
|
|
assert(length <= kMaxPayloadBytes);
|
|
memcpy(payload, data, length);
|
|
payloadSize = static_cast<uint32_t>(length);
|
|
}
|
|
|
|
uint32_t getMessageSize() {
|
|
return sizeof(magic) + sizeof(payloadSize) + payloadSize;
|
|
}
|
|
};
|
|
|
|
// A queue suitable for multiple producers and a single consumer.
|
|
class SynchronousMessageQueue {
|
|
public:
|
|
bool emplace(void *data, size_t length) {
|
|
std::unique_lock<std::mutex> lock(mMutex);
|
|
if (mQueue.size() >= kMaxSynchronousMessageQueueSize) {
|
|
LOGE("Message queue from HAL to CHRE is full!");
|
|
return false;
|
|
}
|
|
mQueue.emplace(data, length);
|
|
mCv.notify_all();
|
|
return true;
|
|
}
|
|
|
|
void pop() {
|
|
std::unique_lock<std::mutex> lock(mMutex);
|
|
mQueue.pop();
|
|
}
|
|
|
|
ChreConnectionMessage &front() {
|
|
std::unique_lock<std::mutex> lock(mMutex);
|
|
return mQueue.front();
|
|
}
|
|
|
|
void waitForMessage() {
|
|
std::unique_lock<std::mutex> lock(mMutex);
|
|
mCv.wait(lock, [&]() { return !mQueue.empty(); });
|
|
}
|
|
|
|
private:
|
|
std::mutex mMutex;
|
|
std::condition_variable mCv;
|
|
std::queue<ChreConnectionMessage> mQueue;
|
|
};
|
|
|
|
// The task receiving message from CHRE
|
|
[[noreturn]] static void messageListenerTask(
|
|
TinysysChreConnection *chreConnection);
|
|
|
|
// The task sending message to CHRE
|
|
[[noreturn]] static void messageSenderTask(
|
|
TinysysChreConnection *chreConnection);
|
|
|
|
// The task receiving CHRE state update
|
|
[[noreturn]] static void chreStateMonitorTask(
|
|
TinysysChreConnection *chreConnection);
|
|
|
|
[[nodiscard]] inline int getChreFileDescriptor() const {
|
|
return mChreFileDescriptor;
|
|
}
|
|
|
|
// The parser of buffered logs from CHRE
|
|
::android::chre::LogMessageParser mLogger{};
|
|
|
|
// The file descriptor for communication with CHRE
|
|
int mChreFileDescriptor;
|
|
|
|
// The calback function that should be implemented by HAL
|
|
ChreConnectionCallback *mCallback;
|
|
|
|
// the message listener thread that receives messages from CHRE
|
|
std::thread mMessageListener;
|
|
// the message sender thread that sends messages to CHRE
|
|
std::thread mMessageSender;
|
|
// the status listener thread that hosts chreStateMonitorTask
|
|
std::thread mStateListener;
|
|
|
|
// Payload received from CHRE
|
|
std::unique_ptr<uint8_t[]> mPayload;
|
|
|
|
// The LPMA handler to talk to the ST HAL
|
|
StHalLpmaHandler mLpmaHandler;
|
|
|
|
// For messages sent to CHRE
|
|
SynchronousMessageQueue mQueue;
|
|
};
|
|
} // namespace aidl::android::hardware::contexthub
|
|
|
|
#endif // TINYSYS_CHRE_CONNECTION_H_
|