67 lines
2.5 KiB
C++
67 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) Souldbminer, Lightos_ and Horizon OC Contributors
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
/* --------------------------------------------------------------------------
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
* <p-sam@d3vs.net>, <natinusala@gmail.com>, <m4x@m4xw.net>
|
|
* wrote this file. As long as you retain this notice you can do whatever you
|
|
* want with this stuff. If you meet any of us some day, and you think this
|
|
* stuff is worth it, you can buy us a beer in return. - The sys-clk authors
|
|
* --------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <nxExt.h>
|
|
#include <sysclk.h>
|
|
#include "clock_manager.h"
|
|
|
|
class IpcService
|
|
{
|
|
public:
|
|
|
|
IpcService(ClockManager* clockMgr);
|
|
virtual ~IpcService();
|
|
void SetRunning(bool running);
|
|
static void ProcessThreadFunc(void* arg);
|
|
static Result ServiceHandlerFunc(void* arg, const IpcServerRequest* r, std::uint8_t* out_data, size_t* out_dataSize);
|
|
|
|
Result GetApiVersion(u32* out_version);
|
|
Result GetVersionString(char* out_buf, size_t bufSize);
|
|
Result GetCurrentContext(SysClkContext* out_ctx);
|
|
Result Exit();
|
|
Result GetProfileCount(std::uint64_t* tid, std::uint8_t* out_count);
|
|
Result GetProfiles(std::uint64_t* tid, SysClkTitleProfileList* out_profiles);
|
|
Result SetProfiles(SysClkIpc_SetProfiles_Args* args);
|
|
Result SetEnabled(std::uint8_t* enabled);
|
|
Result SetOverride(SysClkIpc_SetOverride_Args* args);
|
|
Result GetConfigValues(SysClkConfigValueList* out_configValues);
|
|
Result SetConfigValues(SysClkConfigValueList* configValues);
|
|
Result GetFreqList(SysClkIpc_GetFreqList_Args* args, std::uint32_t* out_list, std::size_t size, std::uint32_t* out_count);
|
|
Result SetKipData();
|
|
Result GetKipData();
|
|
bool running;
|
|
Thread thread;
|
|
LockableMutex threadMutex;
|
|
IpcServer server;
|
|
ClockManager* clockMgr;
|
|
protected:
|
|
|
|
};
|