2014-11-12 22:13:08 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-12 22:13:08 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-10-28 21:10:21 +01:00
|
|
|
#include <cstring>
|
2016-04-18 04:07:52 +02:00
|
|
|
#include "common/alignment.h"
|
2014-11-12 22:13:08 +01:00
|
|
|
#include "core/hle/hle.h"
|
2015-10-27 22:40:34 +01:00
|
|
|
#include "core/hle/kernel/mutex.h"
|
|
|
|
#include "core/hle/kernel/shared_memory.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "core/hle/service/csnd_snd.h"
|
2014-11-12 22:13:08 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace CSND_SND
|
|
|
|
|
|
|
|
namespace CSND_SND {
|
|
|
|
|
|
|
|
const Interface::FunctionInfo FunctionTable[] = {
|
2016-09-18 02:38:01 +02:00
|
|
|
{0x00010140, Initialize, "Initialize"},
|
|
|
|
{0x00020000, Shutdown, "Shutdown"},
|
|
|
|
{0x00030040, ExecuteType0Commands, "ExecuteType0Commands"},
|
|
|
|
{0x00040080, nullptr, "ExecuteType1Commands"},
|
|
|
|
{0x00050000, AcquireSoundChannels, "AcquireSoundChannels"},
|
|
|
|
{0x00060000, nullptr, "ReleaseSoundChannels"},
|
|
|
|
{0x00070000, nullptr, "AcquireCaptureDevice"},
|
|
|
|
{0x00080040, nullptr, "ReleaseCaptureDevice"},
|
|
|
|
{0x00090082, nullptr, "FlushDataCache"},
|
|
|
|
{0x000A0082, nullptr, "StoreDataCache"},
|
|
|
|
{0x000B0082, nullptr, "InvalidateDataCache"},
|
|
|
|
{0x000C0000, nullptr, "Reset"},
|
2014-11-12 22:13:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
2015-01-30 19:56:49 +01:00
|
|
|
Register(FunctionTable);
|
2014-11-12 22:13:08 +01:00
|
|
|
}
|
|
|
|
|
2015-10-27 22:40:34 +01:00
|
|
|
static Kernel::SharedPtr<Kernel::SharedMemory> shared_memory = nullptr;
|
|
|
|
static Kernel::SharedPtr<Kernel::Mutex> mutex = nullptr;
|
|
|
|
|
|
|
|
void Initialize(Service::Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
2016-04-18 04:07:52 +02:00
|
|
|
u32 size = Common::AlignUp(cmd_buff[1], Memory::PAGE_SIZE);
|
|
|
|
using Kernel::MemoryPermission;
|
2016-09-18 02:38:01 +02:00
|
|
|
shared_memory = Kernel::SharedMemory::Create(nullptr, size, MemoryPermission::ReadWrite,
|
|
|
|
MemoryPermission::ReadWrite, 0,
|
|
|
|
Kernel::MemoryRegion::BASE, "CSND:SharedMemory");
|
2015-10-27 22:40:34 +01:00
|
|
|
|
|
|
|
mutex = Kernel::Mutex::Create(false);
|
|
|
|
|
2016-04-18 04:07:52 +02:00
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw;
|
2016-07-30 18:19:00 +02:00
|
|
|
cmd_buff[2] = IPC::CopyHandleDesc(2);
|
2015-10-27 22:40:34 +01:00
|
|
|
cmd_buff[3] = Kernel::g_handle_table.Create(mutex).MoveFrom();
|
|
|
|
cmd_buff[4] = Kernel::g_handle_table.Create(shared_memory).MoveFrom();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExecuteType0Commands(Service::Interface* self) {
|
2015-10-28 21:10:21 +01:00
|
|
|
u32* const cmd_buff = Kernel::GetCommandBuffer();
|
2016-09-18 02:38:01 +02:00
|
|
|
u8* const ptr = shared_memory->GetPointer(cmd_buff[1]);
|
2015-10-28 21:10:21 +01:00
|
|
|
|
|
|
|
if (shared_memory != nullptr && ptr != nullptr) {
|
|
|
|
Type0Command command;
|
|
|
|
std::memcpy(&command, ptr, sizeof(Type0Command));
|
|
|
|
|
|
|
|
LOG_WARNING(Service, "(STUBBED) CSND_SND::ExecuteType0Commands");
|
|
|
|
command.finished |= 1;
|
|
|
|
cmd_buff[1] = 0;
|
2015-10-27 22:40:34 +01:00
|
|
|
|
2015-10-28 21:10:21 +01:00
|
|
|
std::memcpy(ptr, &command, sizeof(Type0Command));
|
|
|
|
} else {
|
2015-10-27 22:40:34 +01:00
|
|
|
cmd_buff[1] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AcquireSoundChannels(Service::Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
cmd_buff[1] = 0;
|
|
|
|
cmd_buff[2] = 0xFFFFFF00;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown(Service::Interface* self) {
|
|
|
|
shared_memory = nullptr;
|
|
|
|
mutex = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-11-12 22:13:08 +01:00
|
|
|
} // namespace
|