mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-30 23:49:01 -05:00 
			
		
		
		
	Rename logging macro back to LOG_*
This commit is contained in:
		| @@ -26,7 +26,7 @@ ResultVal<Handle> HandleTable::Create(SharedPtr<Object> obj) { | ||||
|  | ||||
|     u16 slot = next_free_slot; | ||||
|     if (slot >= generations.size()) { | ||||
|         NGLOG_ERROR(Kernel, "Unable to allocate Handle, too many slots in use."); | ||||
|         LOG_ERROR(Kernel, "Unable to allocate Handle, too many slots in use."); | ||||
|         return ERR_OUT_OF_HANDLES; | ||||
|     } | ||||
|     next_free_slot = generations[slot]; | ||||
| @@ -48,7 +48,7 @@ ResultVal<Handle> HandleTable::Create(SharedPtr<Object> obj) { | ||||
| ResultVal<Handle> HandleTable::Duplicate(Handle handle) { | ||||
|     SharedPtr<Object> object = GetGeneric(handle); | ||||
|     if (object == nullptr) { | ||||
|         NGLOG_ERROR(Kernel, "Tried to duplicate invalid handle: {:08X}", handle); | ||||
|         LOG_ERROR(Kernel, "Tried to duplicate invalid handle: {:08X}", handle); | ||||
|         return ERR_INVALID_HANDLE; | ||||
|     } | ||||
|     return Create(std::move(object)); | ||||
|   | ||||
| @@ -120,7 +120,7 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) { | ||||
|                 std::make_shared<IPC::DomainMessageHeader>(rp.PopRaw<IPC::DomainMessageHeader>()); | ||||
|         } else { | ||||
|             if (Session()->IsDomain()) | ||||
|                 NGLOG_WARNING(IPC, "Domain request has no DomainMessageHeader!"); | ||||
|                 LOG_WARNING(IPC, "Domain request has no DomainMessageHeader!"); | ||||
|         } | ||||
|     } | ||||
|  | ||||
| @@ -272,14 +272,14 @@ std::vector<u8> HLERequestContext::ReadBuffer(int buffer_index) const { | ||||
|  | ||||
| size_t HLERequestContext::WriteBuffer(const void* buffer, size_t size, int buffer_index) const { | ||||
|     if (size == 0) { | ||||
|         NGLOG_WARNING(Core, "skip empty buffer write"); | ||||
|         LOG_WARNING(Core, "skip empty buffer write"); | ||||
|         return 0; | ||||
|     } | ||||
|  | ||||
|     const bool is_buffer_b{BufferDescriptorB().size() && BufferDescriptorB()[buffer_index].Size()}; | ||||
|     const size_t buffer_size{GetWriteBufferSize(buffer_index)}; | ||||
|     if (size > buffer_size) { | ||||
|         NGLOG_CRITICAL(Core, "size ({:016X}) is greater than buffer_size ({:016X})", size, | ||||
|         LOG_CRITICAL(Core, "size ({:016X}) is greater than buffer_size ({:016X})", size, | ||||
|                        buffer_size); | ||||
|         size = buffer_size; // TODO(bunnei): This needs to be HW tested | ||||
|     } | ||||
|   | ||||
| @@ -54,7 +54,7 @@ void Process::ParseKernelCaps(const u32* kernel_caps, size_t len) { | ||||
|             continue; | ||||
|         } else if ((type & 0xF00) == 0xE00) { // 0x0FFF | ||||
|             // Allowed interrupts list | ||||
|             NGLOG_WARNING(Loader, "ExHeader allowed interrupts list ignored"); | ||||
|             LOG_WARNING(Loader, "ExHeader allowed interrupts list ignored"); | ||||
|         } else if ((type & 0xF80) == 0xF00) { // 0x07FF | ||||
|             // Allowed syscalls mask | ||||
|             unsigned int index = ((descriptor >> 24) & 7) * 24; | ||||
| @@ -74,7 +74,7 @@ void Process::ParseKernelCaps(const u32* kernel_caps, size_t len) { | ||||
|         } else if ((type & 0xFFE) == 0xFF8) { // 0x001F | ||||
|             // Mapped memory range | ||||
|             if (i + 1 >= len || ((kernel_caps[i + 1] >> 20) & 0xFFE) != 0xFF8) { | ||||
|                 NGLOG_WARNING(Loader, "Incomplete exheader memory range descriptor ignored."); | ||||
|                 LOG_WARNING(Loader, "Incomplete exheader memory range descriptor ignored."); | ||||
|                 continue; | ||||
|             } | ||||
|             u32 end_desc = kernel_caps[i + 1]; | ||||
| @@ -109,9 +109,9 @@ void Process::ParseKernelCaps(const u32* kernel_caps, size_t len) { | ||||
|  | ||||
|             int minor = kernel_version & 0xFF; | ||||
|             int major = (kernel_version >> 8) & 0xFF; | ||||
|             NGLOG_INFO(Loader, "ExHeader kernel version: {}.{}", major, minor); | ||||
|             LOG_INFO(Loader, "ExHeader kernel version: {}.{}", major, minor); | ||||
|         } else { | ||||
|             NGLOG_ERROR(Loader, "Unhandled kernel caps descriptor: 0x{:08X}", descriptor); | ||||
|             LOG_ERROR(Loader, "Unhandled kernel caps descriptor: 0x{:08X}", descriptor); | ||||
|         } | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -29,7 +29,7 @@ SharedPtr<ResourceLimit> ResourceLimit::GetForCategory(ResourceLimitCategory cat | ||||
|     case ResourceLimitCategory::OTHER: | ||||
|         return resource_limits[static_cast<u8>(category)]; | ||||
|     default: | ||||
|         NGLOG_CRITICAL(Kernel, "Unknown resource limit category"); | ||||
|         LOG_CRITICAL(Kernel, "Unknown resource limit category"); | ||||
|         UNREACHABLE(); | ||||
|     } | ||||
| } | ||||
| @@ -55,7 +55,7 @@ s32 ResourceLimit::GetCurrentResourceValue(ResourceType resource) const { | ||||
|     case ResourceType::CPUTime: | ||||
|         return current_cpu_time; | ||||
|     default: | ||||
|         NGLOG_ERROR(Kernel, "Unknown resource type={:08X}", static_cast<u32>(resource)); | ||||
|         LOG_ERROR(Kernel, "Unknown resource type={:08X}", static_cast<u32>(resource)); | ||||
|         UNIMPLEMENTED(); | ||||
|         return 0; | ||||
|     } | ||||
| @@ -84,7 +84,7 @@ u32 ResourceLimit::GetMaxResourceValue(ResourceType resource) const { | ||||
|     case ResourceType::CPUTime: | ||||
|         return max_cpu_time; | ||||
|     default: | ||||
|         NGLOG_ERROR(Kernel, "Unknown resource type={:08X}", static_cast<u32>(resource)); | ||||
|         LOG_ERROR(Kernel, "Unknown resource type={:08X}", static_cast<u32>(resource)); | ||||
|         UNIMPLEMENTED(); | ||||
|         return 0; | ||||
|     } | ||||
|   | ||||
| @@ -99,11 +99,11 @@ void Scheduler::Reschedule() { | ||||
|     Thread* next = PopNextReadyThread(); | ||||
|  | ||||
|     if (cur && next) { | ||||
|         NGLOG_TRACE(Kernel, "context switch {} -> {}", cur->GetObjectId(), next->GetObjectId()); | ||||
|         LOG_TRACE(Kernel, "context switch {} -> {}", cur->GetObjectId(), next->GetObjectId()); | ||||
|     } else if (cur) { | ||||
|         NGLOG_TRACE(Kernel, "context switch {} -> idle", cur->GetObjectId()); | ||||
|         LOG_TRACE(Kernel, "context switch {} -> idle", cur->GetObjectId()); | ||||
|     } else if (next) { | ||||
|         NGLOG_TRACE(Kernel, "context switch idle -> {}", next->GetObjectId()); | ||||
|         LOG_TRACE(Kernel, "context switch idle -> {}", next->GetObjectId()); | ||||
|     } | ||||
|  | ||||
|     SwitchContext(next); | ||||
|   | ||||
| @@ -71,7 +71,7 @@ ResultCode ServerSession::HandleDomainSyncRequest(Kernel::HLERequestContext& con | ||||
|             return domain_request_handlers[object_id - 1]->HandleSyncRequest(context); | ||||
|  | ||||
|         case IPC::DomainMessageHeader::CommandType::CloseVirtualHandle: { | ||||
|             NGLOG_DEBUG(IPC, "CloseVirtualHandle, object_id=0x{:08X}", object_id); | ||||
|             LOG_DEBUG(IPC, "CloseVirtualHandle, object_id=0x{:08X}", object_id); | ||||
|  | ||||
|             domain_request_handlers[object_id - 1] = nullptr; | ||||
|  | ||||
| @@ -81,7 +81,7 @@ ResultCode ServerSession::HandleDomainSyncRequest(Kernel::HLERequestContext& con | ||||
|         } | ||||
|         } | ||||
|  | ||||
|         NGLOG_CRITICAL(IPC, "Unknown domain command={}", | ||||
|         LOG_CRITICAL(IPC, "Unknown domain command={}", | ||||
|                        static_cast<int>(domain_message_header->command.Value())); | ||||
|         ASSERT(false); | ||||
|     } | ||||
|   | ||||
| @@ -107,7 +107,7 @@ ResultCode SharedMemory::Map(Process* target_process, VAddr address, MemoryPermi | ||||
|  | ||||
|     // Error out if the requested permissions don't match what the creator process allows. | ||||
|     if (static_cast<u32>(permissions) & ~static_cast<u32>(own_other_permissions)) { | ||||
|         NGLOG_ERROR(Kernel, "cannot map id={}, address=0x{:X} name={}, permissions don't match", | ||||
|         LOG_ERROR(Kernel, "cannot map id={}, address=0x{:X} name={}, permissions don't match", | ||||
|                     GetObjectId(), address, name); | ||||
|         return ERR_INVALID_COMBINATION; | ||||
|     } | ||||
| @@ -115,7 +115,7 @@ ResultCode SharedMemory::Map(Process* target_process, VAddr address, MemoryPermi | ||||
|     // Error out if the provided permissions are not compatible with what the creator process needs. | ||||
|     if (other_permissions != MemoryPermission::DontCare && | ||||
|         static_cast<u32>(this->permissions) & ~static_cast<u32>(other_permissions)) { | ||||
|         NGLOG_ERROR(Kernel, "cannot map id={}, address=0x{:X} name={}, permissions don't match", | ||||
|         LOG_ERROR(Kernel, "cannot map id={}, address=0x{:X} name={}, permissions don't match", | ||||
|                     GetObjectId(), address, name); | ||||
|         return ERR_WRONG_PERMISSION; | ||||
|     } | ||||
| @@ -131,7 +131,7 @@ ResultCode SharedMemory::Map(Process* target_process, VAddr address, MemoryPermi | ||||
|     auto result = target_process->vm_manager.MapMemoryBlock( | ||||
|         target_address, backing_block, backing_block_offset, size, MemoryState::Shared); | ||||
|     if (result.Failed()) { | ||||
|         NGLOG_ERROR( | ||||
|         LOG_ERROR( | ||||
|             Kernel, | ||||
|             "cannot map id={}, target_address=0x{:X} name={}, error mapping to virtual memory", | ||||
|             GetObjectId(), target_address, name); | ||||
|   | ||||
| @@ -32,7 +32,7 @@ namespace Kernel { | ||||
|  | ||||
| /// Set the process heap to a given Size. It can both extend and shrink the heap. | ||||
| static ResultCode SetHeapSize(VAddr* heap_addr, u64 heap_size) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, heap_size=0x{:X}", heap_size); | ||||
|     LOG_TRACE(Kernel_SVC, "called, heap_size=0x{:X}", heap_size); | ||||
|     auto& process = *Core::CurrentProcess(); | ||||
|     CASCADE_RESULT(*heap_addr, | ||||
|                    process.HeapAllocate(Memory::HEAP_VADDR, heap_size, VMAPermission::ReadWrite)); | ||||
| @@ -40,20 +40,20 @@ static ResultCode SetHeapSize(VAddr* heap_addr, u64 heap_size) { | ||||
| } | ||||
|  | ||||
| static ResultCode SetMemoryAttribute(VAddr addr, u64 size, u32 state0, u32 state1) { | ||||
|     NGLOG_WARNING(Kernel_SVC, "(STUBBED) called, addr=0x{:X}", addr); | ||||
|     LOG_WARNING(Kernel_SVC, "(STUBBED) called, addr=0x{:X}", addr); | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|  | ||||
| /// Maps a memory range into a different range. | ||||
| static ResultCode MapMemory(VAddr dst_addr, VAddr src_addr, u64 size) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, dst_addr=0x{:X}, src_addr=0x{:X}, size=0x{:X}", dst_addr, | ||||
|     LOG_TRACE(Kernel_SVC, "called, dst_addr=0x{:X}, src_addr=0x{:X}, size=0x{:X}", dst_addr, | ||||
|                 src_addr, size); | ||||
|     return Core::CurrentProcess()->MirrorMemory(dst_addr, src_addr, size); | ||||
| } | ||||
|  | ||||
| /// Unmaps a region that was previously mapped with svcMapMemory | ||||
| static ResultCode UnmapMemory(VAddr dst_addr, VAddr src_addr, u64 size) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, dst_addr=0x{:X}, src_addr=0x{:X}, size=0x{:X}", dst_addr, | ||||
|     LOG_TRACE(Kernel_SVC, "called, dst_addr=0x{:X}, src_addr=0x{:X}, size=0x{:X}", dst_addr, | ||||
|                 src_addr, size); | ||||
|     return Core::CurrentProcess()->UnmapMemory(dst_addr, src_addr, size); | ||||
| } | ||||
| @@ -69,11 +69,11 @@ static ResultCode ConnectToNamedPort(Handle* out_handle, VAddr port_name_address | ||||
|     if (port_name.size() > PortNameMaxLength) | ||||
|         return ERR_PORT_NAME_TOO_LONG; | ||||
|  | ||||
|     NGLOG_TRACE(Kernel_SVC, "called port_name={}", port_name); | ||||
|     LOG_TRACE(Kernel_SVC, "called port_name={}", port_name); | ||||
|  | ||||
|     auto it = Service::g_kernel_named_ports.find(port_name); | ||||
|     if (it == Service::g_kernel_named_ports.end()) { | ||||
|         NGLOG_WARNING(Kernel_SVC, "tried to connect to unknown port: {}", port_name); | ||||
|         LOG_WARNING(Kernel_SVC, "tried to connect to unknown port: {}", port_name); | ||||
|         return ERR_NOT_FOUND; | ||||
|     } | ||||
|  | ||||
| @@ -91,11 +91,11 @@ static ResultCode ConnectToNamedPort(Handle* out_handle, VAddr port_name_address | ||||
| static ResultCode SendSyncRequest(Handle handle) { | ||||
|     SharedPtr<ClientSession> session = g_handle_table.Get<ClientSession>(handle); | ||||
|     if (!session) { | ||||
|         NGLOG_ERROR(Kernel_SVC, "called with invalid handle=0x{:08X}", handle); | ||||
|         LOG_ERROR(Kernel_SVC, "called with invalid handle=0x{:08X}", handle); | ||||
|         return ERR_INVALID_HANDLE; | ||||
|     } | ||||
|  | ||||
|     NGLOG_TRACE(Kernel_SVC, "called handle=0x{:08X}({})", handle, session->GetName()); | ||||
|     LOG_TRACE(Kernel_SVC, "called handle=0x{:08X}({})", handle, session->GetName()); | ||||
|  | ||||
|     Core::System::GetInstance().PrepareReschedule(); | ||||
|  | ||||
| @@ -106,7 +106,7 @@ static ResultCode SendSyncRequest(Handle handle) { | ||||
|  | ||||
| /// Get the ID for the specified thread. | ||||
| static ResultCode GetThreadId(u32* thread_id, Handle thread_handle) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called thread=0x{:08X}", thread_handle); | ||||
|     LOG_TRACE(Kernel_SVC, "called thread=0x{:08X}", thread_handle); | ||||
|  | ||||
|     const SharedPtr<Thread> thread = g_handle_table.Get<Thread>(thread_handle); | ||||
|     if (!thread) { | ||||
| @@ -119,7 +119,7 @@ static ResultCode GetThreadId(u32* thread_id, Handle thread_handle) { | ||||
|  | ||||
| /// Get the ID of the specified process | ||||
| static ResultCode GetProcessId(u32* process_id, Handle process_handle) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called process=0x{:08X}", process_handle); | ||||
|     LOG_TRACE(Kernel_SVC, "called process=0x{:08X}", process_handle); | ||||
|  | ||||
|     const SharedPtr<Process> process = g_handle_table.Get<Process>(process_handle); | ||||
|     if (!process) { | ||||
| @@ -149,7 +149,7 @@ static bool DefaultThreadWakeupCallback(ThreadWakeupReason reason, SharedPtr<Thr | ||||
| /// Wait for the given handles to synchronize, timeout after the specified nanoseconds | ||||
| static ResultCode WaitSynchronization(Handle* index, VAddr handles_address, u64 handle_count, | ||||
|                                       s64 nano_seconds) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called handles_address=0x{:X}, handle_count={}, nano_seconds={}", | ||||
|     LOG_TRACE(Kernel_SVC, "called handles_address=0x{:X}, handle_count={}, nano_seconds={}", | ||||
|                 handles_address, handle_count, nano_seconds); | ||||
|  | ||||
|     if (!Memory::IsValidVirtualAddress(handles_address)) | ||||
| @@ -210,7 +210,7 @@ static ResultCode WaitSynchronization(Handle* index, VAddr handles_address, u64 | ||||
|  | ||||
| /// Resumes a thread waiting on WaitSynchronization | ||||
| static ResultCode CancelSynchronization(Handle thread_handle) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called thread=0x{:X}", thread_handle); | ||||
|     LOG_TRACE(Kernel_SVC, "called thread=0x{:X}", thread_handle); | ||||
|  | ||||
|     const SharedPtr<Thread> thread = g_handle_table.Get<Thread>(thread_handle); | ||||
|     if (!thread) { | ||||
| @@ -227,7 +227,7 @@ static ResultCode CancelSynchronization(Handle thread_handle) { | ||||
| /// Attempts to locks a mutex, creating it if it does not already exist | ||||
| static ResultCode ArbitrateLock(Handle holding_thread_handle, VAddr mutex_addr, | ||||
|                                 Handle requesting_thread_handle) { | ||||
|     NGLOG_TRACE(Kernel_SVC, | ||||
|     LOG_TRACE(Kernel_SVC, | ||||
|                 "called holding_thread_handle=0x{:08X}, mutex_addr=0x{:X}, " | ||||
|                 "requesting_current_thread_handle=0x{:08X}", | ||||
|                 holding_thread_handle, mutex_addr, requesting_thread_handle); | ||||
| @@ -237,14 +237,14 @@ static ResultCode ArbitrateLock(Handle holding_thread_handle, VAddr mutex_addr, | ||||
|  | ||||
| /// Unlock a mutex | ||||
| static ResultCode ArbitrateUnlock(VAddr mutex_addr) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called mutex_addr=0x{:X}", mutex_addr); | ||||
|     LOG_TRACE(Kernel_SVC, "called mutex_addr=0x{:X}", mutex_addr); | ||||
|  | ||||
|     return Mutex::Release(mutex_addr); | ||||
| } | ||||
|  | ||||
| /// Break program execution | ||||
| static void Break(u64 unk_0, u64 unk_1, u64 unk_2) { | ||||
|     NGLOG_CRITICAL(Debug_Emulated, "Emulated program broke execution!"); | ||||
|     LOG_CRITICAL(Debug_Emulated, "Emulated program broke execution!"); | ||||
|     ASSERT(false); | ||||
| } | ||||
|  | ||||
| @@ -252,12 +252,12 @@ static void Break(u64 unk_0, u64 unk_1, u64 unk_2) { | ||||
| static void OutputDebugString(VAddr address, s32 len) { | ||||
|     std::string str(len, '\0'); | ||||
|     Memory::ReadBlock(address, str.data(), str.size()); | ||||
|     NGLOG_DEBUG(Debug_Emulated, "{}", str); | ||||
|     LOG_DEBUG(Debug_Emulated, "{}", str); | ||||
| } | ||||
|  | ||||
| /// Gets system/memory information for the current process | ||||
| static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called info_id=0x{:X}, info_sub_id=0x{:X}, handle=0x{:08X}", info_id, | ||||
|     LOG_TRACE(Kernel_SVC, "called info_id=0x{:X}, info_sub_id=0x{:X}, handle=0x{:08X}", info_id, | ||||
|                 info_sub_id, handle); | ||||
|  | ||||
|     auto& vm_manager = Core::CurrentProcess()->vm_manager; | ||||
| @@ -309,16 +309,16 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id) | ||||
|         *result = Core::CurrentProcess()->is_virtual_address_memory_enabled; | ||||
|         break; | ||||
|     case GetInfoType::TitleId: | ||||
|         NGLOG_WARNING(Kernel_SVC, "(STUBBED) Attempted to query titleid, returned 0"); | ||||
|         LOG_WARNING(Kernel_SVC, "(STUBBED) Attempted to query titleid, returned 0"); | ||||
|         *result = 0; | ||||
|         break; | ||||
|     case GetInfoType::PrivilegedProcessId: | ||||
|         NGLOG_WARNING(Kernel_SVC, | ||||
|         LOG_WARNING(Kernel_SVC, | ||||
|                       "(STUBBED) Attempted to query privileged process id bounds, returned 0"); | ||||
|         *result = 0; | ||||
|         break; | ||||
|     case GetInfoType::UserExceptionContextAddr: | ||||
|         NGLOG_WARNING(Kernel_SVC, | ||||
|         LOG_WARNING(Kernel_SVC, | ||||
|                       "(STUBBED) Attempted to query user exception context address, returned 0"); | ||||
|         *result = 0; | ||||
|         break; | ||||
| @@ -331,14 +331,14 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id) | ||||
|  | ||||
| /// Sets the thread activity | ||||
| static ResultCode SetThreadActivity(Handle handle, u32 unknown) { | ||||
|     NGLOG_WARNING(Kernel_SVC, "(STUBBED) called, handle=0x{:08X}, unknown=0x{:08X}", handle, | ||||
|     LOG_WARNING(Kernel_SVC, "(STUBBED) called, handle=0x{:08X}, unknown=0x{:08X}", handle, | ||||
|                   unknown); | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|  | ||||
| /// Gets the thread context | ||||
| static ResultCode GetThreadContext(Handle handle, VAddr addr) { | ||||
|     NGLOG_WARNING(Kernel_SVC, "(STUBBED) called, handle=0x{:08X}, addr=0x{:X}", handle, addr); | ||||
|     LOG_WARNING(Kernel_SVC, "(STUBBED) called, handle=0x{:08X}, addr=0x{:X}", handle, addr); | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|  | ||||
| @@ -377,13 +377,13 @@ static ResultCode SetThreadPriority(Handle handle, u32 priority) { | ||||
|  | ||||
| /// Get which CPU core is executing the current thread | ||||
| static u32 GetCurrentProcessorNumber() { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called"); | ||||
|     LOG_TRACE(Kernel_SVC, "called"); | ||||
|     return GetCurrentThread()->processor_id; | ||||
| } | ||||
|  | ||||
| static ResultCode MapSharedMemory(Handle shared_memory_handle, VAddr addr, u64 size, | ||||
|                                   u32 permissions) { | ||||
|     NGLOG_TRACE( | ||||
|     LOG_TRACE( | ||||
|         Kernel_SVC, | ||||
|         "called, shared_memory_handle=0x{:X}, addr=0x{:X}, size=0x{:X}, permissions=0x{:08X}", | ||||
|         shared_memory_handle, addr, size, permissions); | ||||
| @@ -406,14 +406,14 @@ static ResultCode MapSharedMemory(Handle shared_memory_handle, VAddr addr, u64 s | ||||
|         return shared_memory->Map(Core::CurrentProcess().get(), addr, permissions_type, | ||||
|                                   MemoryPermission::DontCare); | ||||
|     default: | ||||
|         NGLOG_ERROR(Kernel_SVC, "unknown permissions=0x{:08X}", permissions); | ||||
|         LOG_ERROR(Kernel_SVC, "unknown permissions=0x{:08X}", permissions); | ||||
|     } | ||||
|  | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|  | ||||
| static ResultCode UnmapSharedMemory(Handle shared_memory_handle, VAddr addr, u64 size) { | ||||
|     NGLOG_WARNING(Kernel_SVC, "called, shared_memory_handle=0x{:08X}, addr=0x{:X}, size=0x{:X}", | ||||
|     LOG_WARNING(Kernel_SVC, "called, shared_memory_handle=0x{:08X}, addr=0x{:X}, size=0x{:X}", | ||||
|                   shared_memory_handle, addr, size); | ||||
|  | ||||
|     SharedPtr<SharedMemory> shared_memory = g_handle_table.Get<SharedMemory>(shared_memory_handle); | ||||
| @@ -442,19 +442,19 @@ static ResultCode QueryProcessMemory(MemoryInfo* memory_info, PageInfo* /*page_i | ||||
|         memory_info->type = static_cast<u32>(vma->second.meminfo_state); | ||||
|     } | ||||
|  | ||||
|     NGLOG_TRACE(Kernel_SVC, "called process=0x{:08X} addr={:X}", process_handle, addr); | ||||
|     LOG_TRACE(Kernel_SVC, "called process=0x{:08X} addr={:X}", process_handle, addr); | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|  | ||||
| /// Query memory | ||||
| static ResultCode QueryMemory(MemoryInfo* memory_info, PageInfo* page_info, VAddr addr) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, addr={:X}", addr); | ||||
|     LOG_TRACE(Kernel_SVC, "called, addr={:X}", addr); | ||||
|     return QueryProcessMemory(memory_info, page_info, CurrentProcess, addr); | ||||
| } | ||||
|  | ||||
| /// Exits the current process | ||||
| static void ExitProcess() { | ||||
|     NGLOG_INFO(Kernel_SVC, "Process {} exiting", Core::CurrentProcess()->process_id); | ||||
|     LOG_INFO(Kernel_SVC, "Process {} exiting", Core::CurrentProcess()->process_id); | ||||
|  | ||||
|     ASSERT_MSG(Core::CurrentProcess()->status == ProcessStatus::Running, | ||||
|                "Process has already exited"); | ||||
| @@ -530,7 +530,7 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V | ||||
|     Core::System::GetInstance().PrepareReschedule(); | ||||
|     Core::System::GetInstance().CpuCore(thread->processor_id).PrepareReschedule(); | ||||
|  | ||||
|     NGLOG_TRACE(Kernel_SVC, | ||||
|     LOG_TRACE(Kernel_SVC, | ||||
|                 "called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, " | ||||
|                 "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}", | ||||
|                 entry_point, name, arg, stack_top, priority, processor_id, *out_handle); | ||||
| @@ -540,7 +540,7 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V | ||||
|  | ||||
| /// Starts the thread for the provided handle | ||||
| static ResultCode StartThread(Handle thread_handle) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called thread=0x{:08X}", thread_handle); | ||||
|     LOG_TRACE(Kernel_SVC, "called thread=0x{:08X}", thread_handle); | ||||
|  | ||||
|     const SharedPtr<Thread> thread = g_handle_table.Get<Thread>(thread_handle); | ||||
|     if (!thread) { | ||||
| @@ -557,7 +557,7 @@ static ResultCode StartThread(Handle thread_handle) { | ||||
|  | ||||
| /// Called when a thread exits | ||||
| static void ExitThread() { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, pc=0x{:08X}", Core::CurrentArmInterface().GetPC()); | ||||
|     LOG_TRACE(Kernel_SVC, "called, pc=0x{:08X}", Core::CurrentArmInterface().GetPC()); | ||||
|  | ||||
|     ExitCurrentThread(); | ||||
|     Core::System::GetInstance().PrepareReschedule(); | ||||
| @@ -565,7 +565,7 @@ static void ExitThread() { | ||||
|  | ||||
| /// Sleep the current thread | ||||
| static void SleepThread(s64 nanoseconds) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called nanoseconds={}", nanoseconds); | ||||
|     LOG_TRACE(Kernel_SVC, "called nanoseconds={}", nanoseconds); | ||||
|  | ||||
|     // Don't attempt to yield execution if there are no available threads to run, | ||||
|     // this way we avoid a useless reschedule to the idle thread. | ||||
| @@ -584,7 +584,7 @@ static void SleepThread(s64 nanoseconds) { | ||||
| /// Wait process wide key atomic | ||||
| static ResultCode WaitProcessWideKeyAtomic(VAddr mutex_addr, VAddr condition_variable_addr, | ||||
|                                            Handle thread_handle, s64 nano_seconds) { | ||||
|     NGLOG_TRACE( | ||||
|     LOG_TRACE( | ||||
|         Kernel_SVC, | ||||
|         "called mutex_addr={:X}, condition_variable_addr={:X}, thread_handle=0x{:08X}, timeout={}", | ||||
|         mutex_addr, condition_variable_addr, thread_handle, nano_seconds); | ||||
| @@ -611,7 +611,7 @@ static ResultCode WaitProcessWideKeyAtomic(VAddr mutex_addr, VAddr condition_var | ||||
|  | ||||
| /// Signal process wide key | ||||
| static ResultCode SignalProcessWideKey(VAddr condition_variable_addr, s32 target) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, condition_variable_addr=0x{:X}, target=0x{:08X}", | ||||
|     LOG_TRACE(Kernel_SVC, "called, condition_variable_addr=0x{:X}, target=0x{:08X}", | ||||
|                 condition_variable_addr, target); | ||||
|  | ||||
|     auto RetrieveWaitingThreads = | ||||
| @@ -692,7 +692,7 @@ static ResultCode SignalProcessWideKey(VAddr condition_variable_addr, s32 target | ||||
|  | ||||
| // Wait for an address (via Address Arbiter) | ||||
| static ResultCode WaitForAddress(VAddr address, u32 type, s32 value, s64 timeout) { | ||||
|     NGLOG_WARNING(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, timeout={}", | ||||
|     LOG_WARNING(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, timeout={}", | ||||
|                   address, type, value, timeout); | ||||
|     // If the passed address is a kernel virtual address, return invalid memory state. | ||||
|     if (Memory::IsKernelVirtualAddress(address)) { | ||||
| @@ -717,7 +717,7 @@ static ResultCode WaitForAddress(VAddr address, u32 type, s32 value, s64 timeout | ||||
|  | ||||
| // Signals to an address (via Address Arbiter) | ||||
| static ResultCode SignalToAddress(VAddr address, u32 type, s32 value, s32 num_to_wake) { | ||||
|     NGLOG_WARNING(Kernel_SVC, | ||||
|     LOG_WARNING(Kernel_SVC, | ||||
|                   "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, num_to_wake=0x{:X}", address, | ||||
|                   type, value, num_to_wake); | ||||
|     // If the passed address is a kernel virtual address, return invalid memory state. | ||||
| @@ -754,13 +754,13 @@ static u64 GetSystemTick() { | ||||
|  | ||||
| /// Close a handle | ||||
| static ResultCode CloseHandle(Handle handle) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "Closing handle 0x{:08X}", handle); | ||||
|     LOG_TRACE(Kernel_SVC, "Closing handle 0x{:08X}", handle); | ||||
|     return g_handle_table.Close(handle); | ||||
| } | ||||
|  | ||||
| /// Reset an event | ||||
| static ResultCode ResetSignal(Handle handle) { | ||||
|     NGLOG_WARNING(Kernel_SVC, "(STUBBED) called handle 0x{:08X}", handle); | ||||
|     LOG_WARNING(Kernel_SVC, "(STUBBED) called handle 0x{:08X}", handle); | ||||
|     auto event = g_handle_table.Get<Event>(handle); | ||||
|     ASSERT(event != nullptr); | ||||
|     event->Clear(); | ||||
| @@ -769,14 +769,14 @@ static ResultCode ResetSignal(Handle handle) { | ||||
|  | ||||
| /// Creates a TransferMemory object | ||||
| static ResultCode CreateTransferMemory(Handle* handle, VAddr addr, u64 size, u32 permissions) { | ||||
|     NGLOG_WARNING(Kernel_SVC, "(STUBBED) called addr=0x{:X}, size=0x{:X}, perms=0x{:08X}", addr, | ||||
|     LOG_WARNING(Kernel_SVC, "(STUBBED) called addr=0x{:X}, size=0x{:X}, perms=0x{:08X}", addr, | ||||
|                   size, permissions); | ||||
|     *handle = 0; | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|  | ||||
| static ResultCode GetThreadCoreMask(Handle thread_handle, u32* core, u64* mask) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, handle=0x{:08X}", thread_handle); | ||||
|     LOG_TRACE(Kernel_SVC, "called, handle=0x{:08X}", thread_handle); | ||||
|  | ||||
|     const SharedPtr<Thread> thread = g_handle_table.Get<Thread>(thread_handle); | ||||
|     if (!thread) { | ||||
| @@ -790,7 +790,7 @@ static ResultCode GetThreadCoreMask(Handle thread_handle, u32* core, u64* mask) | ||||
| } | ||||
|  | ||||
| static ResultCode SetThreadCoreMask(Handle thread_handle, u32 core, u64 mask) { | ||||
|     NGLOG_DEBUG(Kernel_SVC, "called, handle=0x{:08X}, mask=0x{:16X}, core=0x{:X}", thread_handle, | ||||
|     LOG_DEBUG(Kernel_SVC, "called, handle=0x{:08X}, mask=0x{:16X}, core=0x{:X}", thread_handle, | ||||
|                 mask, core); | ||||
|  | ||||
|     const SharedPtr<Thread> thread = g_handle_table.Get<Thread>(thread_handle); | ||||
| @@ -830,7 +830,7 @@ static ResultCode SetThreadCoreMask(Handle thread_handle, u32 core, u64 mask) { | ||||
|  | ||||
| static ResultCode CreateSharedMemory(Handle* handle, u64 size, u32 local_permissions, | ||||
|                                      u32 remote_permissions) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, size=0x{:X}, localPerms=0x{:08X}, remotePerms=0x{:08X}", size, | ||||
|     LOG_TRACE(Kernel_SVC, "called, size=0x{:X}, localPerms=0x{:08X}, remotePerms=0x{:08X}", size, | ||||
|                 local_permissions, remote_permissions); | ||||
|     auto sharedMemHandle = | ||||
|         SharedMemory::Create(g_handle_table.Get<Process>(KernelHandle::CurrentProcess), size, | ||||
| @@ -842,7 +842,7 @@ static ResultCode CreateSharedMemory(Handle* handle, u64 size, u32 local_permiss | ||||
| } | ||||
|  | ||||
| static ResultCode ClearEvent(Handle handle) { | ||||
|     NGLOG_TRACE(Kernel_SVC, "called, event=0x{:08X}", handle); | ||||
|     LOG_TRACE(Kernel_SVC, "called, event=0x{:08X}", handle); | ||||
|  | ||||
|     SharedPtr<Event> evt = g_handle_table.Get<Event>(handle); | ||||
|     if (evt == nullptr) | ||||
| @@ -994,7 +994,7 @@ static const FunctionDef SVC_Table[] = { | ||||
|  | ||||
| static const FunctionDef* GetSVCInfo(u32 func_num) { | ||||
|     if (func_num >= std::size(SVC_Table)) { | ||||
|         NGLOG_ERROR(Kernel_SVC, "Unknown svc=0x{:02X}", func_num); | ||||
|         LOG_ERROR(Kernel_SVC, "Unknown svc=0x{:02X}", func_num); | ||||
|         return nullptr; | ||||
|     } | ||||
|     return &SVC_Table[func_num]; | ||||
| @@ -1013,10 +1013,10 @@ void CallSVC(u32 immediate) { | ||||
|         if (info->func) { | ||||
|             info->func(); | ||||
|         } else { | ||||
|             NGLOG_CRITICAL(Kernel_SVC, "Unimplemented SVC function {}(..)", info->name); | ||||
|             LOG_CRITICAL(Kernel_SVC, "Unimplemented SVC function {}(..)", info->name); | ||||
|         } | ||||
|     } else { | ||||
|         NGLOG_CRITICAL(Kernel_SVC, "Unknown SVC function 0x{:X}", immediate); | ||||
|         LOG_CRITICAL(Kernel_SVC, "Unknown SVC function 0x{:X}", immediate); | ||||
|     } | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -104,7 +104,7 @@ static void ThreadWakeupCallback(u64 thread_handle, int cycles_late) { | ||||
|     const auto proper_handle = static_cast<Handle>(thread_handle); | ||||
|     SharedPtr<Thread> thread = wakeup_callback_handle_table.Get<Thread>(proper_handle); | ||||
|     if (thread == nullptr) { | ||||
|         NGLOG_CRITICAL(Kernel, "Callback fired for invalid thread {:08X}", proper_handle); | ||||
|         LOG_CRITICAL(Kernel, "Callback fired for invalid thread {:08X}", proper_handle); | ||||
|         return; | ||||
|     } | ||||
|  | ||||
| @@ -290,19 +290,19 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, | ||||
|                                             SharedPtr<Process> owner_process) { | ||||
|     // Check if priority is in ranged. Lowest priority -> highest priority id. | ||||
|     if (priority > THREADPRIO_LOWEST) { | ||||
|         NGLOG_ERROR(Kernel_SVC, "Invalid thread priority: {}", priority); | ||||
|         LOG_ERROR(Kernel_SVC, "Invalid thread priority: {}", priority); | ||||
|         return ERR_OUT_OF_RANGE; | ||||
|     } | ||||
|  | ||||
|     if (processor_id > THREADPROCESSORID_MAX) { | ||||
|         NGLOG_ERROR(Kernel_SVC, "Invalid processor id: {}", processor_id); | ||||
|         LOG_ERROR(Kernel_SVC, "Invalid processor id: {}", processor_id); | ||||
|         return ERR_OUT_OF_RANGE_KERNEL; | ||||
|     } | ||||
|  | ||||
|     // TODO(yuriks): Other checks, returning 0xD9001BEA | ||||
|  | ||||
|     if (!Memory::IsValidVirtualAddress(*owner_process, entry_point)) { | ||||
|         NGLOG_ERROR(Kernel_SVC, "(name={}): invalid entry {:016X}", name, entry_point); | ||||
|         LOG_ERROR(Kernel_SVC, "(name={}): invalid entry {:016X}", name, entry_point); | ||||
|         // TODO (bunnei): Find the correct error code to use here | ||||
|         return ResultCode(-1); | ||||
|     } | ||||
| @@ -343,7 +343,7 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, | ||||
|         auto& linheap_memory = memory_region->linear_heap_memory; | ||||
|  | ||||
|         if (linheap_memory->size() + Memory::PAGE_SIZE > memory_region->size) { | ||||
|             NGLOG_ERROR(Kernel_SVC, | ||||
|             LOG_ERROR(Kernel_SVC, | ||||
|                         "Not enough space in region to allocate a new TLS page for thread"); | ||||
|             return ERR_OUT_OF_MEMORY; | ||||
|         } | ||||
|   | ||||
| @@ -78,7 +78,7 @@ void Timer::WakeupAllWaitingThreads() { | ||||
| } | ||||
|  | ||||
| void Timer::Signal(int cycles_late) { | ||||
|     NGLOG_TRACE(Kernel, "Timer {} fired", GetObjectId()); | ||||
|     LOG_TRACE(Kernel, "Timer {} fired", GetObjectId()); | ||||
|  | ||||
|     signaled = true; | ||||
|  | ||||
| @@ -98,7 +98,7 @@ static void TimerCallback(u64 timer_handle, int cycles_late) { | ||||
|         timer_callback_handle_table.Get<Timer>(static_cast<Handle>(timer_handle)); | ||||
|  | ||||
|     if (timer == nullptr) { | ||||
|         NGLOG_CRITICAL(Kernel, "Callback fired for invalid timer {:016X}", timer_handle); | ||||
|         LOG_CRITICAL(Kernel, "Callback fired for invalid timer {:016X}", timer_handle); | ||||
|         return; | ||||
|     } | ||||
|  | ||||
|   | ||||
| @@ -242,7 +242,7 @@ void VMManager::RefreshMemoryBlockMappings(const std::vector<u8>* block) { | ||||
| void VMManager::LogLayout() const { | ||||
|     for (const auto& p : vma_map) { | ||||
|         const VirtualMemoryArea& vma = p.second; | ||||
|         NGLOG_DEBUG(Kernel, "{:016X} - {:016X} size: {:016X} {}{}{} {}", vma.base, | ||||
|         LOG_DEBUG(Kernel, "{:016X} - {:016X} size: {:016X} {}{}{} {}", vma.base, | ||||
|                     vma.base + vma.size, vma.size, | ||||
|                     (u8)vma.permissions & (u8)VMAPermission::Read ? 'R' : '-', | ||||
|                     (u8)vma.permissions & (u8)VMAPermission::Write ? 'W' : '-', | ||||
| @@ -392,22 +392,22 @@ void VMManager::UpdatePageTableForVMA(const VirtualMemoryArea& vma) { | ||||
| } | ||||
|  | ||||
| u64 VMManager::GetTotalMemoryUsage() { | ||||
|     NGLOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     LOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     return 0xF8000000; | ||||
| } | ||||
|  | ||||
| u64 VMManager::GetTotalHeapUsage() { | ||||
|     NGLOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     LOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     return 0x0; | ||||
| } | ||||
|  | ||||
| VAddr VMManager::GetAddressSpaceBaseAddr() { | ||||
|     NGLOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     LOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     return 0x8000000; | ||||
| } | ||||
|  | ||||
| u64 VMManager::GetAddressSpaceSize() { | ||||
|     NGLOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     LOG_WARNING(Kernel, "(STUBBED) called"); | ||||
|     return MAX_ADDRESS; | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -47,7 +47,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void GetBase(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|         ProfileBase profile_base{}; | ||||
|         IPC::ResponseBuilder rb{ctx, 16}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -72,14 +72,14 @@ public: | ||||
|  | ||||
| private: | ||||
|     void CheckAvailability(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push(true); // TODO: Check when this is supposed to return true and when not | ||||
|     } | ||||
|  | ||||
|     void GetAccountId(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 4}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u64>(0x12345678ABCDEF); | ||||
| @@ -87,14 +87,14 @@ private: | ||||
| }; | ||||
|  | ||||
| void Module::Interface::GetUserExistence(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(true); // TODO: Check when this is supposed to return true and when not | ||||
| } | ||||
|  | ||||
| void Module::Interface::ListAllUsers(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     constexpr std::array<u128, 10> user_ids{DEFAULT_USER_ID}; | ||||
|     ctx.WriteBuffer(user_ids.data(), user_ids.size()); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
| @@ -102,7 +102,7 @@ void Module::Interface::ListAllUsers(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void Module::Interface::ListOpenUsers(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     constexpr std::array<u128, 10> user_ids{DEFAULT_USER_ID}; | ||||
|     ctx.WriteBuffer(user_ids.data(), user_ids.size()); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
| @@ -113,11 +113,11 @@ void Module::Interface::GetProfile(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IProfile>(); | ||||
|     NGLOG_DEBUG(Service_ACC, "called"); | ||||
|     LOG_DEBUG(Service_ACC, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::InitializeApplicationInfo(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
| @@ -126,11 +126,11 @@ void Module::Interface::GetBaasAccountManagerForApplication(Kernel::HLERequestCo | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IManagerForApplication>(); | ||||
|     NGLOG_DEBUG(Service_ACC, "called"); | ||||
|     LOG_DEBUG(Service_ACC, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::GetLastOpenedUser(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 6}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushRaw(DEFAULT_USER_ID); | ||||
|   | ||||
| @@ -30,14 +30,14 @@ IWindowController::IWindowController() : ServiceFramework("IWindowController") { | ||||
| } | ||||
|  | ||||
| void IWindowController::GetAppletResourceUserId(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u64>(0); | ||||
| } | ||||
|  | ||||
| void IWindowController::AcquireForegroundRights(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
| @@ -56,20 +56,20 @@ IAudioController::IAudioController() : ServiceFramework("IAudioController") { | ||||
| } | ||||
|  | ||||
| void IAudioController::SetExpectedMasterVolume(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|  | ||||
| void IAudioController::GetMainAppletExpectedMasterVolume(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(volume); | ||||
| } | ||||
|  | ||||
| void IAudioController::GetLibraryAppletExpectedMasterVolume(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(volume); | ||||
| @@ -174,14 +174,14 @@ void ISelfController::SetFocusHandlingMode(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ISelfController::SetRestartMessageEnabled(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ISelfController::SetPerformanceModeChangedNotification(Kernel::HLERequestContext& ctx) { | ||||
| @@ -192,14 +192,14 @@ void ISelfController::SetPerformanceModeChangedNotification(Kernel::HLERequestCo | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called flag={}", flag); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called flag={}", flag); | ||||
| } | ||||
|  | ||||
| void ISelfController::SetScreenShotPermission(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ISelfController::SetOperationModeChangedNotification(Kernel::HLERequestContext& ctx) { | ||||
| @@ -210,7 +210,7 @@ void ISelfController::SetOperationModeChangedNotification(Kernel::HLERequestCont | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called flag={}", flag); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called flag={}", flag); | ||||
| } | ||||
|  | ||||
| void ISelfController::SetOutOfFocusSuspendingEnabled(Kernel::HLERequestContext& ctx) { | ||||
| @@ -223,21 +223,21 @@ void ISelfController::SetOutOfFocusSuspendingEnabled(Kernel::HLERequestContext& | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called enabled={}", enabled); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called enabled={}", enabled); | ||||
| } | ||||
|  | ||||
| void ISelfController::LockExit(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ISelfController::UnlockExit(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ISelfController::GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& ctx) { | ||||
| @@ -247,7 +247,7 @@ void ISelfController::GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushCopyObjects(launchable_event); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ISelfController::CreateManagedDisplayLayer(Kernel::HLERequestContext& ctx) { | ||||
| @@ -260,14 +260,14 @@ void ISelfController::CreateManagedDisplayLayer(Kernel::HLERequestContext& ctx) | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(layer_id); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ISelfController::SetHandlesRequestToDisplay(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| ICommonStateGetter::ICommonStateGetter() : ServiceFramework("ICommonStateGetter") { | ||||
| @@ -311,7 +311,7 @@ void ICommonStateGetter::GetEventHandle(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushCopyObjects(event); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ICommonStateGetter::ReceiveMessage(Kernel::HLERequestContext& ctx) { | ||||
| @@ -319,7 +319,7 @@ void ICommonStateGetter::ReceiveMessage(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(15); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ICommonStateGetter::GetCurrentFocusState(Kernel::HLERequestContext& ctx) { | ||||
| @@ -327,7 +327,7 @@ void ICommonStateGetter::GetCurrentFocusState(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(static_cast<u8>(FocusState::InFocus)); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ICommonStateGetter::GetOperationMode(Kernel::HLERequestContext& ctx) { | ||||
| @@ -336,7 +336,7 @@ void ICommonStateGetter::GetOperationMode(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(static_cast<u8>(use_docked_mode ? OperationMode::Docked : OperationMode::Handheld)); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void ICommonStateGetter::GetPerformanceMode(Kernel::HLERequestContext& ctx) { | ||||
| @@ -346,7 +346,7 @@ void ICommonStateGetter::GetPerformanceMode(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(static_cast<u32>(use_docked_mode ? APM::PerformanceMode::Docked | ||||
|                                              : APM::PerformanceMode::Handheld)); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| class IStorageAccessor final : public ServiceFramework<IStorageAccessor> { | ||||
| @@ -370,7 +370,7 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push(static_cast<u64>(buffer.size())); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void Write(Kernel::HLERequestContext& ctx) { | ||||
| @@ -386,7 +386,7 @@ private: | ||||
|         IPC::ResponseBuilder rb{rp.MakeBuilder(2, 0, 0)}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_AM, "called, offset={}", offset); | ||||
|         LOG_DEBUG(Service_AM, "called, offset={}", offset); | ||||
|     } | ||||
|  | ||||
|     void Read(Kernel::HLERequestContext& ctx) { | ||||
| @@ -402,7 +402,7 @@ private: | ||||
|         IPC::ResponseBuilder rb{rp.MakeBuilder(2, 0, 0)}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_AM, "called, offset={}", offset); | ||||
|         LOG_DEBUG(Service_AM, "called, offset={}", offset); | ||||
|     } | ||||
| }; | ||||
|  | ||||
| @@ -426,7 +426,7 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<AM::IStorageAccessor>(buffer); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
| }; | ||||
|  | ||||
| @@ -467,21 +467,21 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushCopyObjects(state_changed_event); | ||||
|  | ||||
|         NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void GetResult(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void Start(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void PushInData(Kernel::HLERequestContext& ctx) { | ||||
| @@ -491,7 +491,7 @@ private: | ||||
|         IPC::ResponseBuilder rb{rp.MakeBuilder(2, 0, 0)}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void PopOutData(Kernel::HLERequestContext& ctx) { | ||||
| @@ -501,7 +501,7 @@ private: | ||||
|  | ||||
|         storage_stack.pop(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     std::stack<std::shared_ptr<AM::IStorage>> storage_stack; | ||||
| @@ -526,7 +526,7 @@ void ILibraryAppletCreator::CreateLibraryApplet(Kernel::HLERequestContext& ctx) | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<AM::ILibraryAppletAccessor>(); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_AM, "called"); | ||||
|     LOG_DEBUG(Service_AM, "called"); | ||||
| } | ||||
|  | ||||
| void ILibraryAppletCreator::CreateStorage(Kernel::HLERequestContext& ctx) { | ||||
| @@ -538,7 +538,7 @@ void ILibraryAppletCreator::CreateStorage(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<AM::IStorage>(std::move(buffer)); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_AM, "called, size={}", size); | ||||
|     LOG_DEBUG(Service_AM, "called, size={}", size); | ||||
| } | ||||
|  | ||||
| IApplicationFunctions::IApplicationFunctions() : ServiceFramework("IApplicationFunctions") { | ||||
| @@ -602,21 +602,21 @@ void IApplicationFunctions::PopLaunchParameter(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<AM::IStorage>(buffer); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_AM, "called"); | ||||
|     LOG_DEBUG(Service_AM, "called"); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::CreateApplicationAndRequestToStartForQuest( | ||||
|     Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::EnsureSaveData(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     u128 uid = rp.PopRaw<u128>(); | ||||
|  | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called uid = {:016X}{:016X}", uid[1], uid[0]); | ||||
|     LOG_WARNING(Service, "(STUBBED) called uid = {:016X}{:016X}", uid[1], uid[0]); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|  | ||||
| @@ -644,7 +644,7 @@ void IApplicationFunctions::SetTerminateResult(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called, result=0x{:08X}", result); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called, result=0x{:08X}", result); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::GetDisplayVersion(Kernel::HLERequestContext& ctx) { | ||||
| @@ -652,7 +652,7 @@ void IApplicationFunctions::GetDisplayVersion(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u64>(1); | ||||
|     rb.Push<u64>(0); | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::GetDesiredLanguage(Kernel::HLERequestContext& ctx) { | ||||
| @@ -660,20 +660,20 @@ void IApplicationFunctions::GetDesiredLanguage(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(static_cast<u64>(Service::Set::LanguageCode::EN_US)); | ||||
|     NGLOG_DEBUG(Service_AM, "called"); | ||||
|     LOG_DEBUG(Service_AM, "called"); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::InitializeGamePlayRecording(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::SetGamePlayRecordingState(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::NotifyRunning(Kernel::HLERequestContext& ctx) { | ||||
| @@ -681,7 +681,7 @@ void IApplicationFunctions::NotifyRunning(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u8>(0); // Unknown, seems to be ignored by official processes | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void IApplicationFunctions::GetPseudoDeviceId(Kernel::HLERequestContext& ctx) { | ||||
| @@ -692,7 +692,7 @@ void IApplicationFunctions::GetPseudoDeviceId(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push<u64>(0); | ||||
|     rb.Push<u64>(0); | ||||
|  | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void InstallInterfaces(SM::ServiceManager& service_manager, | ||||
| @@ -717,7 +717,7 @@ IHomeMenuFunctions::IHomeMenuFunctions() : ServiceFramework("IHomeMenuFunctions" | ||||
| void IHomeMenuFunctions::RequestToGetForeground(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     NGLOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| IGlobalStateController::IGlobalStateController() : ServiceFramework("IGlobalStateController") { | ||||
|   | ||||
| @@ -33,63 +33,63 @@ private: | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ICommonStateGetter>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetSelfController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ISelfController>(nvflinger); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetWindowController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IWindowController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetAudioController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IAudioController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetDisplayController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IDisplayController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetProcessWindingController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IProcessWindingController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetDebugFunctions(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IDebugFunctions>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetLibraryAppletCreator(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ILibraryAppletCreator>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetApplicationFunctions(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IApplicationFunctions>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     std::shared_ptr<NVFlinger::NVFlinger> nvflinger; | ||||
| @@ -120,70 +120,70 @@ private: | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ICommonStateGetter>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetSelfController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ISelfController>(nvflinger); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetWindowController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IWindowController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetAudioController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IAudioController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetDisplayController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IDisplayController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetDebugFunctions(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IDebugFunctions>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetLibraryAppletCreator(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ILibraryAppletCreator>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetHomeMenuFunctions(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IHomeMenuFunctions>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetGlobalStateController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IGlobalStateController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetApplicationCreator(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IApplicationCreator>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|     std::shared_ptr<NVFlinger::NVFlinger> nvflinger; | ||||
| }; | ||||
| @@ -192,21 +192,21 @@ void AppletAE::OpenSystemAppletProxy(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ISystemAppletProxy>(nvflinger); | ||||
|     NGLOG_DEBUG(Service_AM, "called"); | ||||
|     LOG_DEBUG(Service_AM, "called"); | ||||
| } | ||||
|  | ||||
| void AppletAE::OpenLibraryAppletProxy(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ILibraryAppletProxy>(nvflinger); | ||||
|     NGLOG_DEBUG(Service_AM, "called"); | ||||
|     LOG_DEBUG(Service_AM, "called"); | ||||
| } | ||||
|  | ||||
| void AppletAE::OpenLibraryAppletProxyOld(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ILibraryAppletProxy>(nvflinger); | ||||
|     NGLOG_DEBUG(Service_AM, "called"); | ||||
|     LOG_DEBUG(Service_AM, "called"); | ||||
| } | ||||
|  | ||||
| AppletAE::AppletAE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger) | ||||
|   | ||||
| @@ -33,56 +33,56 @@ private: | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IAudioController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetDisplayController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IDisplayController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetDebugFunctions(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IDebugFunctions>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetWindowController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IWindowController>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetSelfController(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ISelfController>(nvflinger); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetCommonStateGetter(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ICommonStateGetter>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetLibraryAppletCreator(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<ILibraryAppletCreator>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void GetApplicationFunctions(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IApplicationFunctions>(); | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|         LOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     std::shared_ptr<NVFlinger::NVFlinger> nvflinger; | ||||
| @@ -92,7 +92,7 @@ void AppletOE::OpenApplicationProxy(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IApplicationProxy>(nvflinger); | ||||
|     NGLOG_DEBUG(Service_AM, "called"); | ||||
|     LOG_DEBUG(Service_AM, "called"); | ||||
| } | ||||
|  | ||||
| AppletOE::AppletOE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger) | ||||
|   | ||||
| @@ -27,14 +27,14 @@ void AOC_U::CountAddOnContent(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u64>(0); | ||||
|     NGLOG_WARNING(Service_AOC, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AOC, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u64>(0); | ||||
|     NGLOG_WARNING(Service_AOC, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_AOC, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| void InstallInterfaces(SM::ServiceManager& service_manager) { | ||||
|   | ||||
| @@ -29,7 +29,7 @@ private: | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_WARNING(Service_APM, "(STUBBED) called mode={} config={}", static_cast<u32>(mode), | ||||
|         LOG_WARNING(Service_APM, "(STUBBED) called mode={} config={}", static_cast<u32>(mode), | ||||
|                       config); | ||||
|     } | ||||
|  | ||||
| @@ -42,7 +42,7 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(0); // Performance configuration | ||||
|  | ||||
|         NGLOG_WARNING(Service_APM, "(STUBBED) called mode={}", static_cast<u32>(mode)); | ||||
|         LOG_WARNING(Service_APM, "(STUBBED) called mode={}", static_cast<u32>(mode)); | ||||
|     } | ||||
| }; | ||||
|  | ||||
|   | ||||
| @@ -60,14 +60,14 @@ public: | ||||
|  | ||||
| private: | ||||
|     void GetAudioOutState(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_DEBUG(Service_Audio, "called"); | ||||
|         LOG_DEBUG(Service_Audio, "called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push(static_cast<u32>(audio_out_state)); | ||||
|     } | ||||
|  | ||||
|     void StartAudioOut(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|  | ||||
|         // Start audio | ||||
|         audio_out_state = AudioState::Started; | ||||
| @@ -77,7 +77,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void StopAudioOut(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|  | ||||
|         // Stop audio | ||||
|         audio_out_state = AudioState::Stopped; | ||||
| @@ -89,7 +89,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void RegisterBufferEvent(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -97,7 +97,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void AppendAudioOutBuffer(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|         const u64 key{rp.Pop<u64>()}; | ||||
| @@ -108,7 +108,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetReleasedAudioOutBuffer(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|  | ||||
|         // TODO(st4rk): This is how libtransistor currently implements the | ||||
|         // GetReleasedAudioOutBuffer, it should return the key (a VAddr) to the app and this address | ||||
| @@ -164,7 +164,7 @@ private: | ||||
| }; | ||||
|  | ||||
| void AudOutU::ListAudioOuts(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|     const std::string audio_interface = "AudioInterface"; | ||||
| @@ -180,7 +180,7 @@ void AudOutU::ListAudioOuts(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void AudOutU::OpenAudioOut(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|  | ||||
|     if (!audio_out_interface) { | ||||
|         audio_out_interface = std::make_shared<IAudioOut>(); | ||||
|   | ||||
| @@ -91,7 +91,7 @@ private: | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void StartAudioRenderer(Kernel::HLERequestContext& ctx) { | ||||
| @@ -99,7 +99,7 @@ private: | ||||
|  | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void StopAudioRenderer(Kernel::HLERequestContext& ctx) { | ||||
| @@ -107,7 +107,7 @@ private: | ||||
|  | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void QuerySystemEvent(Kernel::HLERequestContext& ctx) { | ||||
| @@ -117,7 +117,7 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushCopyObjects(system_event); | ||||
|  | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     enum class MemoryPoolStates : u32 { // Should be LE | ||||
| @@ -208,7 +208,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void ListAudioDeviceName(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|         const std::string audio_interface = "AudioInterface"; | ||||
| @@ -220,7 +220,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void SetAudioDeviceOutputVolume(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         f32 volume = static_cast<f32>(rp.Pop<u32>()); | ||||
| @@ -233,7 +233,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|         const std::string audio_interface = "AudioDevice"; | ||||
| @@ -245,7 +245,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void QueryAudioDeviceSystemEvent(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|  | ||||
|         buffer_event->Signal(); | ||||
|  | ||||
| @@ -255,7 +255,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetActiveChannelCount(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(1); | ||||
| @@ -284,7 +284,7 @@ void AudRenU::OpenAudioRenderer(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<Audio::IAudioRenderer>(std::move(params)); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_Audio, "called"); | ||||
|     LOG_DEBUG(Service_Audio, "called"); | ||||
| } | ||||
|  | ||||
| void AudRenU::GetAudioRendererWorkBufferSize(Kernel::HLERequestContext& ctx) { | ||||
| @@ -343,7 +343,7 @@ void AudRenU::GetAudioRendererWorkBufferSize(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u64>(output_sz); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_Audio, "called, buffer_size=0x{:X}", output_sz); | ||||
|     LOG_DEBUG(Service_Audio, "called, buffer_size=0x{:X}", output_sz); | ||||
| } | ||||
|  | ||||
| void AudRenU::GetAudioDevice(Kernel::HLERequestContext& ctx) { | ||||
| @@ -352,7 +352,7 @@ void AudRenU::GetAudioDevice(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<Audio::IAudioDevice>(); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_Audio, "called"); | ||||
|     LOG_DEBUG(Service_Audio, "called"); | ||||
| } | ||||
|  | ||||
| bool AudRenU::IsFeatureSupported(AudioFeatures feature, u32_le revision) const { | ||||
|   | ||||
| @@ -10,7 +10,7 @@ | ||||
| namespace Service::Audio { | ||||
|  | ||||
| void HwOpus::GetWorkBufferSize(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(0x4000); | ||||
|   | ||||
| @@ -36,7 +36,7 @@ void Module::Interface::CreateBcatService(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IBcatService>(); | ||||
|     NGLOG_DEBUG(Service_BCAT, "called"); | ||||
|     LOG_DEBUG(Service_BCAT, "called"); | ||||
| } | ||||
|  | ||||
| Module::Interface::Interface(std::shared_ptr<Module> module, const char* name) | ||||
|   | ||||
| @@ -16,13 +16,13 @@ Module::Interface::Interface(std::shared_ptr<Module> module, const char* name) | ||||
| void Module::Interface::ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp(ctx); | ||||
|     u32 error_code = rp.Pop<u32>(); | ||||
|     NGLOG_WARNING(Service_Fatal, "(STUBBED) called, error_code=0x{:X}", error_code); | ||||
|     LOG_WARNING(Service_Fatal, "(STUBBED) called, error_code=0x{:X}", error_code); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|  | ||||
| void Module::Interface::ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_Fatal, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_Fatal, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|   | ||||
| @@ -25,14 +25,14 @@ ResultCode RegisterFileSystem(std::unique_ptr<FileSys::FileSystemFactory>&& fact | ||||
|     ASSERT_MSG(inserted, "Tried to register more than one system with same id code"); | ||||
|  | ||||
|     auto& filesystem = result.first->second; | ||||
|     NGLOG_DEBUG(Service_FS, "Registered file system {} with id code 0x{:08X}", | ||||
|     LOG_DEBUG(Service_FS, "Registered file system {} with id code 0x{:08X}", | ||||
|                 filesystem->GetName(), static_cast<u32>(type)); | ||||
|     return RESULT_SUCCESS; | ||||
| } | ||||
|  | ||||
| ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenFileSystem(Type type, | ||||
|                                                                       FileSys::Path& path) { | ||||
|     NGLOG_TRACE(Service_FS, "Opening FileSystem with type={}", static_cast<u32>(type)); | ||||
|     LOG_TRACE(Service_FS, "Opening FileSystem with type={}", static_cast<u32>(type)); | ||||
|  | ||||
|     auto itr = filesystem_map.find(type); | ||||
|     if (itr == filesystem_map.end()) { | ||||
| @@ -44,7 +44,7 @@ ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenFileSystem(Type type, | ||||
| } | ||||
|  | ||||
| ResultCode FormatFileSystem(Type type) { | ||||
|     NGLOG_TRACE(Service_FS, "Formatting FileSystem with type={}", static_cast<u32>(type)); | ||||
|     LOG_TRACE(Service_FS, "Formatting FileSystem with type={}", static_cast<u32>(type)); | ||||
|  | ||||
|     auto itr = filesystem_map.find(type); | ||||
|     if (itr == filesystem_map.end()) { | ||||
|   | ||||
| @@ -36,7 +36,7 @@ private: | ||||
|         const s64 offset = rp.Pop<s64>(); | ||||
|         const s64 length = rp.Pop<s64>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called, offset=0x{:X}, length={}", offset, length); | ||||
|         LOG_DEBUG(Service_FS, "called, offset=0x{:X}, length={}", offset, length); | ||||
|  | ||||
|         // Error checking | ||||
|         if (length < 0) { | ||||
| @@ -88,7 +88,7 @@ private: | ||||
|         const s64 offset = rp.Pop<s64>(); | ||||
|         const s64 length = rp.Pop<s64>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called, offset=0x{:X}, length={}", offset, length); | ||||
|         LOG_DEBUG(Service_FS, "called, offset=0x{:X}, length={}", offset, length); | ||||
|  | ||||
|         // Error checking | ||||
|         if (length < 0) { | ||||
| @@ -125,7 +125,7 @@ private: | ||||
|         const s64 offset = rp.Pop<s64>(); | ||||
|         const s64 length = rp.Pop<s64>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called, offset=0x{:X}, length={}", offset, length); | ||||
|         LOG_DEBUG(Service_FS, "called, offset=0x{:X}, length={}", offset, length); | ||||
|  | ||||
|         // Error checking | ||||
|         if (length < 0) { | ||||
| @@ -153,7 +153,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void Flush(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_DEBUG(Service_FS, "called"); | ||||
|         LOG_DEBUG(Service_FS, "called"); | ||||
|         backend->Flush(); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
| @@ -164,7 +164,7 @@ private: | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 size = rp.Pop<u64>(); | ||||
|         backend->SetSize(size); | ||||
|         NGLOG_DEBUG(Service_FS, "called, size={}", size); | ||||
|         LOG_DEBUG(Service_FS, "called, size={}", size); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -172,7 +172,7 @@ private: | ||||
|  | ||||
|     void GetSize(Kernel::HLERequestContext& ctx) { | ||||
|         const u64 size = backend->GetSize(); | ||||
|         NGLOG_DEBUG(Service_FS, "called, size={}", size); | ||||
|         LOG_DEBUG(Service_FS, "called, size={}", size); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 4}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -198,7 +198,7 @@ private: | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 unk = rp.Pop<u64>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called, unk=0x{:X}", unk); | ||||
|         LOG_DEBUG(Service_FS, "called, unk=0x{:X}", unk); | ||||
|  | ||||
|         // Calculate how many entries we can fit in the output buffer | ||||
|         u64 count_entries = ctx.GetWriteBufferSize() / sizeof(FileSys::Entry); | ||||
| @@ -220,7 +220,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetEntryCount(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_DEBUG(Service_FS, "called"); | ||||
|         LOG_DEBUG(Service_FS, "called"); | ||||
|  | ||||
|         u64 count = backend->GetEntryCount(); | ||||
|  | ||||
| @@ -264,7 +264,7 @@ public: | ||||
|         u64 mode = rp.Pop<u64>(); | ||||
|         u32 size = rp.Pop<u32>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called file {} mode 0x{:X} size 0x{:08X}", name, mode, size); | ||||
|         LOG_DEBUG(Service_FS, "called file {} mode 0x{:X} size 0x{:08X}", name, mode, size); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(backend->CreateFile(name, size)); | ||||
| @@ -276,7 +276,7 @@ public: | ||||
|         auto file_buffer = ctx.ReadBuffer(); | ||||
|         std::string name = Common::StringFromBuffer(file_buffer); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called file {}", name); | ||||
|         LOG_DEBUG(Service_FS, "called file {}", name); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(backend->DeleteFile(name)); | ||||
| @@ -288,7 +288,7 @@ public: | ||||
|         auto file_buffer = ctx.ReadBuffer(); | ||||
|         std::string name = Common::StringFromBuffer(file_buffer); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called directory {}", name); | ||||
|         LOG_DEBUG(Service_FS, "called directory {}", name); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(backend->CreateDirectory(name)); | ||||
| @@ -306,7 +306,7 @@ public: | ||||
|         Memory::ReadBlock(ctx.BufferDescriptorX()[1].Address(), buffer.data(), buffer.size()); | ||||
|         std::string dst_name = Common::StringFromBuffer(buffer); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called file '{}' to file '{}'", src_name, dst_name); | ||||
|         LOG_DEBUG(Service_FS, "called file '{}' to file '{}'", src_name, dst_name); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(backend->RenameFile(src_name, dst_name)); | ||||
| @@ -320,7 +320,7 @@ public: | ||||
|  | ||||
|         auto mode = static_cast<FileSys::Mode>(rp.Pop<u32>()); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called file {} mode {}", name, static_cast<u32>(mode)); | ||||
|         LOG_DEBUG(Service_FS, "called file {} mode {}", name, static_cast<u32>(mode)); | ||||
|  | ||||
|         auto result = backend->OpenFile(name, mode); | ||||
|         if (result.Failed()) { | ||||
| @@ -345,7 +345,7 @@ public: | ||||
|         // TODO(Subv): Implement this filter. | ||||
|         u32 filter_flags = rp.Pop<u32>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called directory {} filter {}", name, filter_flags); | ||||
|         LOG_DEBUG(Service_FS, "called directory {} filter {}", name, filter_flags); | ||||
|  | ||||
|         auto result = backend->OpenDirectory(name); | ||||
|         if (result.Failed()) { | ||||
| @@ -367,7 +367,7 @@ public: | ||||
|         auto file_buffer = ctx.ReadBuffer(); | ||||
|         std::string name = Common::StringFromBuffer(file_buffer); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_FS, "called file {}", name); | ||||
|         LOG_DEBUG(Service_FS, "called file {}", name); | ||||
|  | ||||
|         auto result = backend->GetEntryType(name); | ||||
|         if (result.Failed()) { | ||||
| @@ -382,7 +382,7 @@ public: | ||||
|     } | ||||
|  | ||||
|     void Commit(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -498,14 +498,14 @@ void FSP_SRV::TryLoadRomFS() { | ||||
| } | ||||
|  | ||||
| void FSP_SRV::Initialize(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|  | ||||
| void FSP_SRV::MountSdCard(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_DEBUG(Service_FS, "called"); | ||||
|     LOG_DEBUG(Service_FS, "called"); | ||||
|  | ||||
|     FileSys::Path unused; | ||||
|     auto filesystem = OpenFileSystem(Type::SDMC, unused).Unwrap(); | ||||
| @@ -522,14 +522,14 @@ void FSP_SRV::CreateSaveData(Kernel::HLERequestContext& ctx) { | ||||
|     auto save_create_struct = rp.PopRaw<std::array<u8, 0x40>>(); | ||||
|     u128 uid = rp.PopRaw<u128>(); | ||||
|  | ||||
|     NGLOG_WARNING(Service_FS, "(STUBBED) called uid = {:016X}{:016X}", uid[1], uid[0]); | ||||
|     LOG_WARNING(Service_FS, "(STUBBED) called uid = {:016X}{:016X}", uid[1], uid[0]); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|  | ||||
| void FSP_SRV::MountSaveData(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|  | ||||
|     FileSys::Path unused; | ||||
|     auto filesystem = OpenFileSystem(Type::SaveData, unused).Unwrap(); | ||||
| @@ -540,7 +540,7 @@ void FSP_SRV::MountSaveData(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void FSP_SRV::GetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_FS, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| @@ -548,12 +548,12 @@ void FSP_SRV::GetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void FSP_SRV::OpenDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_DEBUG(Service_FS, "called"); | ||||
|     LOG_DEBUG(Service_FS, "called"); | ||||
|  | ||||
|     TryLoadRomFS(); | ||||
|     if (!romfs) { | ||||
|         // TODO (bunnei): Find the right error code to use here | ||||
|         NGLOG_CRITICAL(Service_FS, "no file system interface available!"); | ||||
|         LOG_CRITICAL(Service_FS, "no file system interface available!"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(ResultCode(-1)); | ||||
|         return; | ||||
| @@ -562,7 +562,7 @@ void FSP_SRV::OpenDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx) { | ||||
|     // Attempt to open a StorageBackend interface to the RomFS | ||||
|     auto storage = romfs->OpenFile({}, {}); | ||||
|     if (storage.Failed()) { | ||||
|         NGLOG_CRITICAL(Service_FS, "no storage interface available!"); | ||||
|         LOG_CRITICAL(Service_FS, "no storage interface available!"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(storage.Code()); | ||||
|         return; | ||||
| @@ -574,7 +574,7 @@ void FSP_SRV::OpenDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void FSP_SRV::OpenRomStorage(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_FS, "(STUBBED) called, using OpenDataStorageByCurrentProcess"); | ||||
|     LOG_WARNING(Service_FS, "(STUBBED) called, using OpenDataStorageByCurrentProcess"); | ||||
|     OpenDataStorageByCurrentProcess(ctx); | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -13,7 +13,7 @@ namespace Service::Friend { | ||||
| void Module::Interface::CreateFriendService(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     NGLOG_WARNING(Service_Friend, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_Friend, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| Module::Interface::Interface(std::shared_ptr<Module> module, const char* name) | ||||
|   | ||||
| @@ -53,7 +53,7 @@ private: | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushCopyObjects(shared_mem); | ||||
|         NGLOG_DEBUG(Service_HID, "called"); | ||||
|         LOG_DEBUG(Service_HID, "called"); | ||||
|     } | ||||
|  | ||||
|     void LoadInputDevices() { | ||||
| @@ -267,7 +267,7 @@ private: | ||||
|     void ActivateVibrationDevice(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
| }; | ||||
|  | ||||
| @@ -399,144 +399,144 @@ private: | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IAppletResource>(applet_resource); | ||||
|         NGLOG_DEBUG(Service_HID, "called"); | ||||
|         LOG_DEBUG(Service_HID, "called"); | ||||
|     } | ||||
|  | ||||
|     void ActivateDebugPad(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void ActivateTouchScreen(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void ActivateMouse(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void ActivateKeyboard(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void StartSixAxisSensor(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SetGyroscopeZeroDriftMode(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SetSupportedNpadStyleSet(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void GetSupportedNpadStyleSet(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(0); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SetSupportedNpadIdType(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void ActivateNpad(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void AcquireNpadStyleSetUpdateEventHandle(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushCopyObjects(event); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void GetPlayerLedPattern(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SetNpadJoyHoldType(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void GetNpadJoyHoldType(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push(joy_hold_type); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SetNpadJoyAssignmentModeSingleByDefault(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SendVibrationValue(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void GetActualVibrationValue(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SetNpadJoyAssignmentModeDual(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void SetNpadHandheldActivationMode(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void GetVibrationDeviceInfo(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 4}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u64>(0); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void CreateActiveVibrationDeviceList(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IActiveVibrationDeviceList>(); | ||||
|         NGLOG_DEBUG(Service_HID, "called"); | ||||
|         LOG_DEBUG(Service_HID, "called"); | ||||
|     } | ||||
|  | ||||
|     void SendVibrationValues(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
| }; | ||||
|  | ||||
|   | ||||
| @@ -141,19 +141,19 @@ private: | ||||
|         if (header.IsTailLog()) { | ||||
|             switch (header.severity) { | ||||
|             case MessageHeader::Severity::Trace: | ||||
|                 NGLOG_TRACE(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 LOG_TRACE(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 break; | ||||
|             case MessageHeader::Severity::Info: | ||||
|                 NGLOG_INFO(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 LOG_INFO(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 break; | ||||
|             case MessageHeader::Severity::Warning: | ||||
|                 NGLOG_WARNING(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 LOG_WARNING(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 break; | ||||
|             case MessageHeader::Severity::Error: | ||||
|                 NGLOG_ERROR(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 LOG_ERROR(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 break; | ||||
|             case MessageHeader::Severity::Critical: | ||||
|                 NGLOG_CRITICAL(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 LOG_CRITICAL(Debug_Emulated, "{}", log_stream.str()); | ||||
|                 break; | ||||
|             } | ||||
|         } | ||||
| @@ -178,7 +178,7 @@ void LM::Initialize(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<Logger>(); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_LM, "called"); | ||||
|     LOG_DEBUG(Service_LM, "called"); | ||||
| } | ||||
|  | ||||
| LM::LM() : ServiceFramework("lm") { | ||||
|   | ||||
| @@ -14,7 +14,7 @@ void InstallInterfaces(SM::ServiceManager& service_manager) { | ||||
| } | ||||
|  | ||||
| void MM_U::Initialize(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_MM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_MM, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
| @@ -25,13 +25,13 @@ void MM_U::SetAndWait(Kernel::HLERequestContext& ctx) { | ||||
|     max = rp.Pop<u32>(); | ||||
|     current = min; | ||||
|  | ||||
|     NGLOG_WARNING(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max); | ||||
|     LOG_WARNING(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|  | ||||
| void MM_U::Get(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_MM, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_MM, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(current); | ||||
|   | ||||
| @@ -64,7 +64,7 @@ private: | ||||
|     }; | ||||
|  | ||||
|     void Initialize(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called"); | ||||
|  | ||||
|         state = State::Initialized; | ||||
|  | ||||
| @@ -78,7 +78,7 @@ private: | ||||
|  | ||||
|         ctx.WriteBuffer(&device_handle, sizeof(device_handle)); | ||||
|  | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called, array_size={}", array_size); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called, array_size={}", array_size); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -88,7 +88,7 @@ private: | ||||
|     void AttachActivateEvent(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 dev_handle = rp.Pop<u64>(); | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -98,7 +98,7 @@ private: | ||||
|     void AttachDeactivateEvent(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 dev_handle = rp.Pop<u64>(); | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -106,14 +106,14 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetState(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(static_cast<u32>(state)); | ||||
|     } | ||||
|  | ||||
|     void GetDeviceState(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(static_cast<u32>(device_state)); | ||||
| @@ -122,7 +122,7 @@ private: | ||||
|     void GetNpadId(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 dev_handle = rp.Pop<u64>(); | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(npad_id); | ||||
| @@ -131,7 +131,7 @@ private: | ||||
|     void AttachAvailabilityChangeEvent(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 dev_handle = rp.Pop<u64>(); | ||||
|         NGLOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|         LOG_WARNING(Service_NFP, "(STUBBED) called, dev_handle=0x{:X}", dev_handle); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -148,7 +148,7 @@ private: | ||||
| }; | ||||
|  | ||||
| void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_DEBUG(Service_NFP, "called"); | ||||
|     LOG_DEBUG(Service_NFP, "called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IUser>(); | ||||
|   | ||||
| @@ -62,33 +62,33 @@ public: | ||||
|  | ||||
| private: | ||||
|     void GetRequestState(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(0); | ||||
|     } | ||||
|  | ||||
|     void GetResult(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|     } | ||||
|  | ||||
|     void GetSystemEventReadableHandles(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushCopyObjects(event1, event2); | ||||
|     } | ||||
|  | ||||
|     void Cancel(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|     } | ||||
|  | ||||
|     void SetConnectionConfirmationOption(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|     } | ||||
| @@ -114,7 +114,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void GetClientId(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 4}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u64>(0); | ||||
| @@ -125,7 +125,7 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IScanRequest>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_NIFM, "called"); | ||||
|         LOG_DEBUG(Service_NIFM, "called"); | ||||
|     } | ||||
|     void CreateRequest(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
| @@ -133,10 +133,10 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<IRequest>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_NIFM, "called"); | ||||
|         LOG_DEBUG(Service_NIFM, "called"); | ||||
|     } | ||||
|     void RemoveNetworkProfile(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_NIFM, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|     } | ||||
| @@ -146,7 +146,7 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushIpcInterface<INetworkProfile>(); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_NIFM, "called"); | ||||
|         LOG_DEBUG(Service_NIFM, "called"); | ||||
|     } | ||||
| }; | ||||
|  | ||||
| @@ -196,14 +196,14 @@ void Module::Interface::CreateGeneralServiceOld(Kernel::HLERequestContext& ctx) | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IGeneralService>(); | ||||
|     NGLOG_DEBUG(Service_NIFM, "called"); | ||||
|     LOG_DEBUG(Service_NIFM, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::CreateGeneralService(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IGeneralService>(); | ||||
|     NGLOG_DEBUG(Service_NIFM, "called"); | ||||
|     LOG_DEBUG(Service_NIFM, "called"); | ||||
| } | ||||
|  | ||||
| Module::Interface::Interface(std::shared_ptr<Module> module, const char* name) | ||||
|   | ||||
| @@ -52,7 +52,7 @@ PL_U::PL_U() : ServiceFramework("pl:u") { | ||||
|         ASSERT(file.GetSize() == SHARED_FONT_MEM_SIZE); | ||||
|         file.ReadBytes(shared_font->data(), shared_font->size()); | ||||
|     } else { | ||||
|         NGLOG_WARNING(Service_NS, "Unable to load shared font: {}", filepath); | ||||
|         LOG_WARNING(Service_NS, "Unable to load shared font: {}", filepath); | ||||
|     } | ||||
| } | ||||
|  | ||||
| @@ -60,7 +60,7 @@ void PL_U::RequestLoad(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     const u32 shared_font_type{rp.Pop<u32>()}; | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NS, "called, shared_font_type={}", shared_font_type); | ||||
|     LOG_DEBUG(Service_NS, "called, shared_font_type={}", shared_font_type); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
| @@ -69,7 +69,7 @@ void PL_U::GetLoadState(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     const u32 font_id{rp.Pop<u32>()}; | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NS, "called, font_id={}", font_id); | ||||
|     LOG_DEBUG(Service_NS, "called, font_id={}", font_id); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(static_cast<u32>(LoadState::Done)); | ||||
| @@ -79,7 +79,7 @@ void PL_U::GetSize(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     const u32 font_id{rp.Pop<u32>()}; | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NS, "called, font_id={}", font_id); | ||||
|     LOG_DEBUG(Service_NS, "called, font_id={}", font_id); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(SHARED_FONT_REGIONS[font_id].size); | ||||
| @@ -89,7 +89,7 @@ void PL_U::GetSharedMemoryAddressOffset(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     const u32 font_id{rp.Pop<u32>()}; | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NS, "called, font_id={}", font_id); | ||||
|     LOG_DEBUG(Service_NS, "called, font_id={}", font_id); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(SHARED_FONT_REGIONS[font_id].offset); | ||||
| @@ -110,7 +110,7 @@ void PL_U::GetSharedMemoryNativeHandle(Kernel::HLERequestContext& ctx) { | ||||
|         Kernel::MemoryPermission::Read, SHARED_FONT_MEM_VADDR, Kernel::MemoryRegion::BASE, | ||||
|         "PL_U:shared_font_mem"); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NS, "called"); | ||||
|     LOG_DEBUG(Service_NS, "called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushCopyObjects(shared_font_mem); | ||||
| @@ -119,7 +119,7 @@ void PL_U::GetSharedMemoryNativeHandle(Kernel::HLERequestContext& ctx) { | ||||
| void PL_U::GetSharedFontInOrderOfPriority(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     const u64 language_code{rp.Pop<u64>()}; // TODO(ogniK): Find out what this is used for | ||||
|     NGLOG_DEBUG(Service_NS, "called, language_code=%lx", language_code); | ||||
|     LOG_DEBUG(Service_NS, "called, language_code=%lx", language_code); | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|     std::vector<u32> font_codes; | ||||
|     std::vector<u32> font_offsets; | ||||
|   | ||||
| @@ -20,7 +20,7 @@ u32 nvdisp_disp0::ioctl(Ioctl command, const std::vector<u8>& input, std::vector | ||||
| void nvdisp_disp0::flip(u32 buffer_handle, u32 offset, u32 format, u32 width, u32 height, | ||||
|                         u32 stride, NVFlinger::BufferQueue::BufferTransformFlags transform) { | ||||
|     VAddr addr = nvmap_dev->GetObjectAddress(buffer_handle); | ||||
|     NGLOG_WARNING(Service, | ||||
|     LOG_WARNING(Service, | ||||
|                   "Drawing from address {:X} offset {:08X} Width {} Height {} Stride {} Format {}", | ||||
|                   addr, offset, width, height, stride, format); | ||||
|  | ||||
|   | ||||
| @@ -14,7 +14,7 @@ | ||||
| namespace Service::Nvidia::Devices { | ||||
|  | ||||
| u32 nvhost_as_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|     LOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|                 command.raw, input.size(), output.size()); | ||||
|  | ||||
|     switch (static_cast<IoctlCommand>(command.raw)) { | ||||
| @@ -42,14 +42,14 @@ u32 nvhost_as_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vecto | ||||
| u32 nvhost_as_gpu::InitalizeEx(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlInitalizeEx params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, big_page_size=0x{:X}", params.big_page_size); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, big_page_size=0x{:X}", params.big_page_size); | ||||
|     return 0; | ||||
| } | ||||
|  | ||||
| u32 nvhost_as_gpu::AllocateSpace(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlAllocSpace params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, pages={:X}, page_size={:X}, flags={:X}", params.pages, | ||||
|     LOG_DEBUG(Service_NVDRV, "called, pages={:X}, page_size={:X}, flags={:X}", params.pages, | ||||
|                 params.page_size, params.flags); | ||||
|  | ||||
|     auto& gpu = Core::System::GetInstance().GPU(); | ||||
| @@ -67,7 +67,7 @@ u32 nvhost_as_gpu::AllocateSpace(const std::vector<u8>& input, std::vector<u8>& | ||||
| u32 nvhost_as_gpu::Remap(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     size_t num_entries = input.size() / sizeof(IoctlRemapEntry); | ||||
|  | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, num_entries=0x{:X}", num_entries); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, num_entries=0x{:X}", num_entries); | ||||
|  | ||||
|     std::vector<IoctlRemapEntry> entries(num_entries); | ||||
|     std::memcpy(entries.data(), input.data(), input.size()); | ||||
| @@ -75,7 +75,7 @@ u32 nvhost_as_gpu::Remap(const std::vector<u8>& input, std::vector<u8>& output) | ||||
|     auto& gpu = Core::System::GetInstance().GPU(); | ||||
|  | ||||
|     for (const auto& entry : entries) { | ||||
|         NGLOG_WARNING(Service_NVDRV, "remap entry, offset=0x{:X} handle=0x{:X} pages=0x{:X}", | ||||
|         LOG_WARNING(Service_NVDRV, "remap entry, offset=0x{:X} handle=0x{:X} pages=0x{:X}", | ||||
|                       entry.offset, entry.nvmap_handle, entry.pages); | ||||
|         Tegra::GPUVAddr offset = static_cast<Tegra::GPUVAddr>(entry.offset) << 0x10; | ||||
|  | ||||
| @@ -98,7 +98,7 @@ u32 nvhost_as_gpu::MapBufferEx(const std::vector<u8>& input, std::vector<u8>& ou | ||||
|     IoctlMapBufferEx params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NVDRV, | ||||
|     LOG_DEBUG(Service_NVDRV, | ||||
|                 "called, flags={:X}, nvmap_handle={:X}, buffer_offset={}, mapping_size={}" | ||||
|                 ", offset={}", | ||||
|                 params.flags, params.nvmap_handle, params.buffer_offset, params.mapping_size, | ||||
| @@ -148,7 +148,7 @@ u32 nvhost_as_gpu::UnmapBuffer(const std::vector<u8>& input, std::vector<u8>& ou | ||||
|     IoctlUnmapBuffer params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, offset=0x{:X}", params.offset); | ||||
|     LOG_DEBUG(Service_NVDRV, "called, offset=0x{:X}", params.offset); | ||||
|  | ||||
|     auto& gpu = Core::System::GetInstance().GPU(); | ||||
|  | ||||
| @@ -170,7 +170,7 @@ u32 nvhost_as_gpu::UnmapBuffer(const std::vector<u8>& input, std::vector<u8>& ou | ||||
| u32 nvhost_as_gpu::BindChannel(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlBindChannel params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, fd={:X}", params.fd); | ||||
|     LOG_DEBUG(Service_NVDRV, "called, fd={:X}", params.fd); | ||||
|     channel = params.fd; | ||||
|     return 0; | ||||
| } | ||||
| @@ -178,7 +178,7 @@ u32 nvhost_as_gpu::BindChannel(const std::vector<u8>& input, std::vector<u8>& ou | ||||
| u32 nvhost_as_gpu::GetVARegions(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlGetVaRegions params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, buf_addr={:X}, buf_size={:X}", params.buf_addr, | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, buf_addr={:X}, buf_size={:X}", params.buf_addr, | ||||
|                   params.buf_size); | ||||
|  | ||||
|     params.buf_size = 0x30; | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| namespace Service::Nvidia::Devices { | ||||
|  | ||||
| u32 nvhost_ctrl::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|     LOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|                 command.raw, input.size(), output.size()); | ||||
|  | ||||
|     switch (static_cast<IoctlCommand>(command.raw)) { | ||||
| @@ -29,7 +29,7 @@ u32 nvhost_ctrl::ioctl(Ioctl command, const std::vector<u8>& input, std::vector< | ||||
| u32 nvhost_ctrl::NvOsGetConfigU32(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IocGetConfigParams params{}; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(params)); | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, setting={}!{}", params.domain_str.data(), | ||||
|     LOG_DEBUG(Service_NVDRV, "called, setting={}!{}", params.domain_str.data(), | ||||
|                 params.param_str.data()); | ||||
|  | ||||
|     if (!strcmp(params.domain_str.data(), "nv")) { | ||||
| @@ -53,7 +53,7 @@ u32 nvhost_ctrl::IocCtrlEventWait(const std::vector<u8>& input, std::vector<u8>& | ||||
|                                   bool is_async) { | ||||
|     IocCtrlEventWaitParams params{}; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(params)); | ||||
|     NGLOG_WARNING(Service_NVDRV, | ||||
|     LOG_WARNING(Service_NVDRV, | ||||
|                   "(STUBBED) called, syncpt_id={}, threshold={}, timeout={}, is_async={}", | ||||
|                   params.syncpt_id, params.threshold, params.timeout, is_async); | ||||
|  | ||||
| @@ -64,7 +64,7 @@ u32 nvhost_ctrl::IocCtrlEventWait(const std::vector<u8>& input, std::vector<u8>& | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl::IocCtrlEventRegister(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     // TODO(bunnei): Implement this. | ||||
|     return 0; | ||||
| } | ||||
|   | ||||
| @@ -10,7 +10,7 @@ | ||||
| namespace Service::Nvidia::Devices { | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|     LOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|                 command.raw, input.size(), output.size()); | ||||
|  | ||||
|     switch (static_cast<IoctlCommand>(command.raw)) { | ||||
| @@ -36,7 +36,7 @@ u32 nvhost_ctrl_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vec | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::GetCharacteristics(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|     IoctlCharacteristics params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     params.gc.arch = 0x120; | ||||
| @@ -83,7 +83,7 @@ u32 nvhost_ctrl_gpu::GetCharacteristics(const std::vector<u8>& input, std::vecto | ||||
| u32 nvhost_ctrl_gpu::GetTPCMasks(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlGpuGetTpcMasksArgs params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_INFO(Service_NVDRV, "called, mask=0x{:X}, mask_buf_addr=0x{:X}", params.mask_buf_size, | ||||
|     LOG_INFO(Service_NVDRV, "called, mask=0x{:X}, mask_buf_addr=0x{:X}", params.mask_buf_size, | ||||
|                params.mask_buf_addr); | ||||
|     // TODO(ogniK): Confirm value on hardware | ||||
|     if (params.mask_buf_size) | ||||
| @@ -95,7 +95,7 @@ u32 nvhost_ctrl_gpu::GetTPCMasks(const std::vector<u8>& input, std::vector<u8>& | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::GetActiveSlotMask(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|     IoctlActiveSlotMask params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     params.slot = 0x07; | ||||
| @@ -105,7 +105,7 @@ u32 nvhost_ctrl_gpu::GetActiveSlotMask(const std::vector<u8>& input, std::vector | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::ZCullGetCtxSize(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|     IoctlZcullGetCtxSize params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     params.size = 0x1; | ||||
| @@ -114,7 +114,7 @@ u32 nvhost_ctrl_gpu::ZCullGetCtxSize(const std::vector<u8>& input, std::vector<u | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::ZCullGetInfo(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|     IoctlNvgpuGpuZcullGetInfoArgs params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     params.width_align_pixels = 0x20; | ||||
| @@ -132,7 +132,7 @@ u32 nvhost_ctrl_gpu::ZCullGetInfo(const std::vector<u8>& input, std::vector<u8>& | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::ZBCSetTable(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     IoctlZbcSetTable params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     // TODO(ogniK): What does this even actually do? | ||||
| @@ -141,7 +141,7 @@ u32 nvhost_ctrl_gpu::ZBCSetTable(const std::vector<u8>& input, std::vector<u8>& | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::ZBCQueryTable(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     IoctlZbcQueryTable params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     // TODO : To implement properly | ||||
| @@ -150,7 +150,7 @@ u32 nvhost_ctrl_gpu::ZBCQueryTable(const std::vector<u8>& input, std::vector<u8> | ||||
| } | ||||
|  | ||||
| u32 nvhost_ctrl_gpu::FlushL2(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     IoctlFlushL2 params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     // TODO : To implement properly | ||||
|   | ||||
| @@ -12,7 +12,7 @@ | ||||
| namespace Service::Nvidia::Devices { | ||||
|  | ||||
| u32 nvhost_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|     LOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|                 command.raw, input.size(), output.size()); | ||||
|  | ||||
|     switch (static_cast<IoctlCommand>(command.raw)) { | ||||
| @@ -51,13 +51,13 @@ u32 nvhost_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u | ||||
| u32 nvhost_gpu::SetNVMAPfd(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlSetNvmapFD params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, fd={}", params.nvmap_fd); | ||||
|     LOG_DEBUG(Service_NVDRV, "called, fd={}", params.nvmap_fd); | ||||
|     nvmap_fd = params.nvmap_fd; | ||||
|     return 0; | ||||
| } | ||||
|  | ||||
| u32 nvhost_gpu::SetClientData(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|     IoctlClientData params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     user_data = params.data; | ||||
| @@ -65,7 +65,7 @@ u32 nvhost_gpu::SetClientData(const std::vector<u8>& input, std::vector<u8>& out | ||||
| } | ||||
|  | ||||
| u32 nvhost_gpu::GetClientData(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|     IoctlClientData params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     params.data = user_data; | ||||
| @@ -75,7 +75,7 @@ u32 nvhost_gpu::GetClientData(const std::vector<u8>& input, std::vector<u8>& out | ||||
|  | ||||
| u32 nvhost_gpu::ZCullBind(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     std::memcpy(&zcull_params, input.data(), input.size()); | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, gpu_va={:X}, mode={:X}", zcull_params.gpu_va, | ||||
|     LOG_DEBUG(Service_NVDRV, "called, gpu_va={:X}, mode={:X}", zcull_params.gpu_va, | ||||
|                 zcull_params.mode); | ||||
|     std::memcpy(output.data(), &zcull_params, output.size()); | ||||
|     return 0; | ||||
| @@ -84,7 +84,7 @@ u32 nvhost_gpu::ZCullBind(const std::vector<u8>& input, std::vector<u8>& output) | ||||
| u32 nvhost_gpu::SetErrorNotifier(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlSetErrorNotifier params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, offset={:X}, size={:X}, mem={:X}", | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, offset={:X}, size={:X}, mem={:X}", | ||||
|                   params.offset, params.size, params.mem); | ||||
|     std::memcpy(output.data(), ¶ms, output.size()); | ||||
|     return 0; | ||||
| @@ -92,14 +92,14 @@ u32 nvhost_gpu::SetErrorNotifier(const std::vector<u8>& input, std::vector<u8>& | ||||
|  | ||||
| u32 nvhost_gpu::SetChannelPriority(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     std::memcpy(&channel_priority, input.data(), input.size()); | ||||
|     NGLOG_DEBUG(Service_NVDRV, "(STUBBED) called, priority={:X}", channel_priority); | ||||
|     LOG_DEBUG(Service_NVDRV, "(STUBBED) called, priority={:X}", channel_priority); | ||||
|     return 0; | ||||
| } | ||||
|  | ||||
| u32 nvhost_gpu::AllocGPFIFOEx2(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlAllocGpfifoEx2 params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_WARNING(Service_NVDRV, | ||||
|     LOG_WARNING(Service_NVDRV, | ||||
|                   "(STUBBED) called, num_entries={:X}, flags={:X}, unk0={:X}, " | ||||
|                   "unk1={:X}, unk2={:X}, unk3={:X}", | ||||
|                   params.num_entries, params.flags, params.unk0, params.unk1, params.unk2, | ||||
| @@ -113,7 +113,7 @@ u32 nvhost_gpu::AllocGPFIFOEx2(const std::vector<u8>& input, std::vector<u8>& ou | ||||
| u32 nvhost_gpu::AllocateObjectContext(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlAllocObjCtx params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, class_num={:X}, flags={:X}", params.class_num, | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, class_num={:X}, flags={:X}", params.class_num, | ||||
|                   params.flags); | ||||
|     params.obj_id = 0x0; | ||||
|     std::memcpy(output.data(), ¶ms, output.size()); | ||||
| @@ -126,7 +126,7 @@ u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& outp | ||||
|     } | ||||
|     IoctlSubmitGpfifo params{}; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(IoctlSubmitGpfifo)); | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, gpfifo={:X}, num_entries={:X}, flags={:X}", | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, gpfifo={:X}, num_entries={:X}, flags={:X}", | ||||
|                   params.gpfifo, params.num_entries, params.flags); | ||||
|  | ||||
|     auto entries = std::vector<IoctlGpfifoEntry>(); | ||||
| @@ -146,7 +146,7 @@ u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& outp | ||||
| u32 nvhost_gpu::GetWaitbase(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlGetWaitbase params{}; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(IoctlGetWaitbase)); | ||||
|     NGLOG_INFO(Service_NVDRV, "called, unknown=0x{:X}", params.unknown); | ||||
|     LOG_INFO(Service_NVDRV, "called, unknown=0x{:X}", params.unknown); | ||||
|     params.value = 0; // Seems to be hard coded at 0 | ||||
|     std::memcpy(output.data(), ¶ms, output.size()); | ||||
|     return 0; | ||||
| @@ -155,7 +155,7 @@ u32 nvhost_gpu::GetWaitbase(const std::vector<u8>& input, std::vector<u8>& outpu | ||||
| u32 nvhost_gpu::ChannelSetTimeout(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlChannelSetTimeout params{}; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(IoctlChannelSetTimeout)); | ||||
|     NGLOG_INFO(Service_NVDRV, "called, timeout=0x{:X}", params.timeout); | ||||
|     LOG_INFO(Service_NVDRV, "called, timeout=0x{:X}", params.timeout); | ||||
|     return 0; | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| namespace Service::Nvidia::Devices { | ||||
|  | ||||
| u32 nvhost_nvdec::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|     LOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}", | ||||
|                 command.raw, input.size(), output.size()); | ||||
|  | ||||
|     switch (static_cast<IoctlCommand>(command.raw)) { | ||||
| @@ -24,7 +24,7 @@ u32 nvhost_nvdec::ioctl(Ioctl command, const std::vector<u8>& input, std::vector | ||||
| u32 nvhost_nvdec::SetNVMAPfd(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IoctlSetNvmapFD params{}; | ||||
|     std::memcpy(¶ms, input.data(), input.size()); | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, fd={}", params.nvmap_fd); | ||||
|     LOG_DEBUG(Service_NVDRV, "called, fd={}", params.nvmap_fd); | ||||
|     nvmap_fd = params.nvmap_fd; | ||||
|     return 0; | ||||
| } | ||||
|   | ||||
| @@ -52,7 +52,7 @@ u32 nvmap::IocCreate(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     u32 handle = next_handle++; | ||||
|     handles[handle] = std::move(object); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NVDRV, "size=0x{:08X}", params.size); | ||||
|     LOG_DEBUG(Service_NVDRV, "size=0x{:08X}", params.size); | ||||
|  | ||||
|     params.handle = handle; | ||||
|  | ||||
| @@ -73,7 +73,7 @@ u32 nvmap::IocAlloc(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     object->addr = params.addr; | ||||
|     object->status = Object::Status::Allocated; | ||||
|  | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called, addr={:X}", params.addr); | ||||
|     LOG_DEBUG(Service_NVDRV, "called, addr={:X}", params.addr); | ||||
|  | ||||
|     std::memcpy(output.data(), ¶ms, sizeof(params)); | ||||
|     return 0; | ||||
| @@ -83,7 +83,7 @@ u32 nvmap::IocGetId(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IocGetIdParams params; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(params)); | ||||
|  | ||||
|     NGLOG_WARNING(Service_NVDRV, "called"); | ||||
|     LOG_WARNING(Service_NVDRV, "called"); | ||||
|  | ||||
|     auto object = GetObject(params.handle); | ||||
|     ASSERT(object); | ||||
| @@ -98,7 +98,7 @@ u32 nvmap::IocFromId(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IocFromIdParams params; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(params)); | ||||
|  | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|  | ||||
|     auto itr = std::find_if(handles.begin(), handles.end(), | ||||
|                             [&](const auto& entry) { return entry.second->id == params.id; }); | ||||
| @@ -119,7 +119,7 @@ u32 nvmap::IocParam(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IocParamParams params; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(params)); | ||||
|  | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called type={}", params.param); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called type={}", params.param); | ||||
|  | ||||
|     auto object = GetObject(params.handle); | ||||
|     ASSERT(object); | ||||
| @@ -157,7 +157,7 @@ u32 nvmap::IocFree(const std::vector<u8>& input, std::vector<u8>& output) { | ||||
|     IocFreeParams params; | ||||
|     std::memcpy(¶ms, input.data(), sizeof(params)); | ||||
|  | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|  | ||||
|     auto itr = handles.find(params.handle); | ||||
|     ASSERT(itr != handles.end()); | ||||
|   | ||||
| @@ -12,7 +12,7 @@ | ||||
| namespace Service::Nvidia { | ||||
|  | ||||
| void NVDRV::Open(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|  | ||||
|     const auto& buffer = ctx.ReadBuffer(); | ||||
|     std::string device_name(buffer.begin(), buffer.end()); | ||||
| @@ -25,7 +25,7 @@ void NVDRV::Open(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|  | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     u32 fd = rp.Pop<u32>(); | ||||
| @@ -41,7 +41,7 @@ void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void NVDRV::Close(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_DEBUG(Service_NVDRV, "called"); | ||||
|     LOG_DEBUG(Service_NVDRV, "called"); | ||||
|  | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     u32 fd = rp.Pop<u32>(); | ||||
| @@ -53,7 +53,7 @@ void NVDRV::Close(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void NVDRV::Initialize(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(0); | ||||
| @@ -63,7 +63,7 @@ void NVDRV::QueryEvent(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     u32 fd = rp.Pop<u32>(); | ||||
|     u32 event_id = rp.Pop<u32>(); | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, fd={:X}, event_id={:X}", fd, event_id); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, fd={:X}, event_id={:X}", fd, event_id); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 3, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| @@ -75,14 +75,14 @@ void NVDRV::SetClientPID(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     pid = rp.Pop<u64>(); | ||||
|  | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, pid=0x{:X}", pid); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called, pid=0x{:X}", pid); | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(0); | ||||
| } | ||||
|  | ||||
| void NVDRV::FinishInitialize(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_NVDRV, "(STUBBED) called"); | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|   | ||||
| @@ -23,7 +23,7 @@ void BufferQueue::SetPreallocatedBuffer(u32 slot, IGBPBuffer& igbp_buffer) { | ||||
|     buffer.igbp_buffer = igbp_buffer; | ||||
|     buffer.status = Buffer::Status::Free; | ||||
|  | ||||
|     NGLOG_WARNING(Service, "Adding graphics buffer {}", slot); | ||||
|     LOG_WARNING(Service, "Adding graphics buffer {}", slot); | ||||
|  | ||||
|     queue.emplace_back(buffer); | ||||
|  | ||||
| @@ -94,7 +94,7 @@ void BufferQueue::ReleaseBuffer(u32 slot) { | ||||
| } | ||||
|  | ||||
| u32 BufferQueue::Query(QueryType type) { | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called type={}", static_cast<u32>(type)); | ||||
|     LOG_WARNING(Service, "(STUBBED) called type={}", static_cast<u32>(type)); | ||||
|     switch (type) { | ||||
|     case QueryType::NativeWindowFormat: | ||||
|         // TODO(Subv): Use an enum for this | ||||
|   | ||||
| @@ -48,7 +48,7 @@ NVFlinger::~NVFlinger() { | ||||
| } | ||||
|  | ||||
| u64 NVFlinger::OpenDisplay(const std::string& name) { | ||||
|     NGLOG_WARNING(Service, "Opening display {}", name); | ||||
|     LOG_WARNING(Service, "Opening display {}", name); | ||||
|  | ||||
|     // TODO(Subv): Currently we only support the Default display. | ||||
|     ASSERT(name == "Default"); | ||||
|   | ||||
| @@ -112,7 +112,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void Initialize(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_PCTL, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_PCTL, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 0}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|     } | ||||
| @@ -122,14 +122,14 @@ void Module::Interface::CreateService(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IParentalControlService>(); | ||||
|     NGLOG_DEBUG(Service_PCTL, "called"); | ||||
|     LOG_DEBUG(Service_PCTL, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::CreateServiceWithoutInitialize(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<IParentalControlService>(); | ||||
|     NGLOG_DEBUG(Service_PCTL, "called"); | ||||
|     LOG_DEBUG(Service_PCTL, "called"); | ||||
| } | ||||
|  | ||||
| Module::Interface::Interface(std::shared_ptr<Module> module, const char* name) | ||||
|   | ||||
| @@ -27,7 +27,7 @@ PlayReport::PlayReport(const char* name) : ServiceFramework(name) { | ||||
|  | ||||
| void PlayReport::SaveReportWithUser(Kernel::HLERequestContext& ctx) { | ||||
|     // TODO(ogniK): Do we want to add play report? | ||||
|     NGLOG_WARNING(Service_PREPO, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_PREPO, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|   | ||||
| @@ -122,7 +122,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext | ||||
|     } | ||||
|     buf.push_back('}'); | ||||
|  | ||||
|     NGLOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf)); | ||||
|     LOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf)); | ||||
|     UNIMPLEMENTED(); | ||||
| } | ||||
|  | ||||
| @@ -133,7 +133,7 @@ void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) { | ||||
|         return ReportUnimplementedFunction(ctx, info); | ||||
|     } | ||||
|  | ||||
|     NGLOG_TRACE( | ||||
|     LOG_TRACE( | ||||
|         Service, "{}", | ||||
|         MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str()); | ||||
|     handler_invoker(this, info->handler_callback, ctx); | ||||
| @@ -206,12 +206,12 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | ||||
|     VI::InstallInterfaces(*sm, nv_flinger); | ||||
|     Set::InstallInterfaces(*sm); | ||||
|  | ||||
|     NGLOG_DEBUG(Service, "initialized OK"); | ||||
|     LOG_DEBUG(Service, "initialized OK"); | ||||
| } | ||||
|  | ||||
| /// Shutdown ServiceManager | ||||
| void Shutdown() { | ||||
|     g_kernel_named_ports.clear(); | ||||
|     NGLOG_DEBUG(Service, "shutdown OK"); | ||||
|     LOG_DEBUG(Service, "shutdown OK"); | ||||
| } | ||||
| } // namespace Service | ||||
|   | ||||
| @@ -37,7 +37,7 @@ void SET::GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(static_cast<u64>(available_language_codes.size())); | ||||
|  | ||||
|     NGLOG_DEBUG(Service_SET, "called"); | ||||
|     LOG_DEBUG(Service_SET, "called"); | ||||
| } | ||||
|  | ||||
| SET::SET() : ServiceFramework("set") { | ||||
|   | ||||
| @@ -16,7 +16,7 @@ void SET_SYS::GetColorSetId(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(0); | ||||
|  | ||||
|     NGLOG_WARNING(Service_SET, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_SET, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| SET_SYS::SET_SYS() : ServiceFramework("set:sys") { | ||||
|   | ||||
| @@ -17,7 +17,7 @@ void Controller::ConvertSessionToDomain(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(1); // Converted sessions start with 1 request handler | ||||
|  | ||||
|     NGLOG_DEBUG(Service, "called, server_session={}", ctx.Session()->GetObjectId()); | ||||
|     LOG_DEBUG(Service, "called, server_session={}", ctx.Session()->GetObjectId()); | ||||
| } | ||||
|  | ||||
| void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) { | ||||
| @@ -29,11 +29,11 @@ void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) { | ||||
|     Kernel::SharedPtr<Kernel::ClientSession> session{ctx.Session()->parent->client}; | ||||
|     rb.PushMoveObjects(session); | ||||
|  | ||||
|     NGLOG_DEBUG(Service, "called, session={}", session->GetObjectId()); | ||||
|     LOG_DEBUG(Service, "called, session={}", session->GetObjectId()); | ||||
| } | ||||
|  | ||||
| void Controller::DuplicateSessionEx(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called, using DuplicateSession"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called, using DuplicateSession"); | ||||
|  | ||||
|     DuplicateSession(ctx); | ||||
| } | ||||
| @@ -43,7 +43,7 @@ void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) { | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push<u32>(0x500); | ||||
|  | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called"); | ||||
| } | ||||
|  | ||||
| Controller::Controller() : ServiceFramework("IpcController") { | ||||
|   | ||||
| @@ -86,7 +86,7 @@ SM::~SM() = default; | ||||
| void SM::Initialize(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     NGLOG_DEBUG(Service_SM, "called"); | ||||
|     LOG_DEBUG(Service_SM, "called"); | ||||
| } | ||||
|  | ||||
| void SM::GetService(Kernel::HLERequestContext& ctx) { | ||||
| @@ -102,7 +102,7 @@ void SM::GetService(Kernel::HLERequestContext& ctx) { | ||||
|     if (client_port.Failed()) { | ||||
|         IPC::ResponseBuilder rb = rp.MakeBuilder(2, 0, 0); | ||||
|         rb.Push(client_port.Code()); | ||||
|         NGLOG_ERROR(Service_SM, "called service={} -> error 0x{:08X}", name, | ||||
|         LOG_ERROR(Service_SM, "called service={} -> error 0x{:08X}", name, | ||||
|                     client_port.Code().raw); | ||||
|         if (name.length() == 0) | ||||
|             return; // LibNX Fix | ||||
| @@ -113,7 +113,7 @@ void SM::GetService(Kernel::HLERequestContext& ctx) { | ||||
|     auto session = client_port.Unwrap()->Connect(); | ||||
|     ASSERT(session.Succeeded()); | ||||
|     if (session.Succeeded()) { | ||||
|         NGLOG_DEBUG(Service_SM, "called service={} -> session={}", name, (*session)->GetObjectId()); | ||||
|         LOG_DEBUG(Service_SM, "called service={} -> session={}", name, (*session)->GetObjectId()); | ||||
|         IPC::ResponseBuilder rb = | ||||
|             rp.MakeBuilder(2, 0, 1, IPC::ResponseBuilder::Flags::AlwaysMoveHandles); | ||||
|         rb.Push(session.Code()); | ||||
|   | ||||
| @@ -8,7 +8,7 @@ | ||||
| namespace Service::Sockets { | ||||
|  | ||||
| void BSD::RegisterClient(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|  | ||||
| @@ -17,7 +17,7 @@ void BSD::RegisterClient(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void BSD::StartMonitoring(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|  | ||||
| @@ -32,7 +32,7 @@ void BSD::Socket(Kernel::HLERequestContext& ctx) { | ||||
|     u32 type = rp.Pop<u32>(); | ||||
|     u32 protocol = rp.Pop<u32>(); | ||||
|  | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called domain={} type={} protocol={}", domain, type, | ||||
|     LOG_WARNING(Service, "(STUBBED) called domain={} type={} protocol={}", domain, type, | ||||
|                   protocol); | ||||
|  | ||||
|     u32 fd = next_fd++; | ||||
| @@ -45,7 +45,7 @@ void BSD::Socket(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void BSD::Connect(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|  | ||||
| @@ -55,7 +55,7 @@ void BSD::Connect(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void BSD::SendTo(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|  | ||||
| @@ -65,7 +65,7 @@ void BSD::SendTo(Kernel::HLERequestContext& ctx) { | ||||
| } | ||||
|  | ||||
| void BSD::Close(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|  | ||||
|   | ||||
| @@ -10,7 +10,7 @@ namespace Service::Sockets { | ||||
| void SFDNSRES::GetAddrInfo(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|     NGLOG_WARNING(Service, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|  | ||||
|   | ||||
| @@ -28,7 +28,7 @@ void Module::Interface::GetRandomBytes(Kernel::HLERequestContext& ctx) { | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     NGLOG_DEBUG(Service_SPL, "called"); | ||||
|     LOG_DEBUG(Service_SPL, "called"); | ||||
| } | ||||
|  | ||||
| void InstallInterfaces(SM::ServiceManager& service_manager) { | ||||
|   | ||||
| @@ -65,7 +65,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void SetOption(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|         IPC::ResponseBuilder rb = rp.MakeBuilder(2, 0, 0); | ||||
| @@ -73,7 +73,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void CreateConnection(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -82,7 +82,7 @@ private: | ||||
| }; | ||||
|  | ||||
| void SSL::CreateContext(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| @@ -103,7 +103,7 @@ SSL::SSL() : ServiceFramework("ssl") { | ||||
| } | ||||
|  | ||||
| void SSL::SetInterfaceVersion(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_SSL, "(STUBBED) called"); | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     u32 unk1 = rp.Pop<u32>(); // Probably minor/major? | ||||
|     u32 unk2 = rp.Pop<u32>(); // TODO(ogniK): Figure out what this does | ||||
|   | ||||
| @@ -33,14 +33,14 @@ private: | ||||
|         const s64 time_since_epoch{std::chrono::duration_cast<std::chrono::seconds>( | ||||
|                                        std::chrono::system_clock::now().time_since_epoch()) | ||||
|                                        .count()}; | ||||
|         NGLOG_DEBUG(Service_Time, "called"); | ||||
|         LOG_DEBUG(Service_Time, "called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 4}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u64>(time_since_epoch); | ||||
|     } | ||||
|  | ||||
|     void GetSystemClockContext(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Time, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Time, "(STUBBED) called"); | ||||
|         SystemClockContext system_clock_ontext{}; | ||||
|         IPC::ResponseBuilder rb{ctx, (sizeof(SystemClockContext) / 4) + 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -59,7 +59,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void GetCurrentTimePoint(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_DEBUG(Service_Time, "called"); | ||||
|         LOG_DEBUG(Service_Time, "called"); | ||||
|         SteadyClockTimePoint steady_clock_time_point{ | ||||
|             CoreTiming::cyclesToMs(CoreTiming::GetTicks()) / 1000}; | ||||
|         IPC::ResponseBuilder rb{ctx, (sizeof(SteadyClockTimePoint) / 4) + 2}; | ||||
| @@ -91,21 +91,21 @@ private: | ||||
|     TimeZoneRule my_time_zone_rule{}; | ||||
|  | ||||
|     void GetDeviceLocationName(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_DEBUG(Service_Time, "called"); | ||||
|         LOG_DEBUG(Service_Time, "called"); | ||||
|         IPC::ResponseBuilder rb{ctx, (sizeof(LocationName) / 4) + 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushRaw(location_name); | ||||
|     } | ||||
|  | ||||
|     void GetTotalLocationNameCount(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Time, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Time, "(STUBBED) called"); | ||||
|         IPC::ResponseBuilder rb{ctx, 3}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u32>(0); | ||||
|     } | ||||
|  | ||||
|     void LoadTimeZoneRule(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_Time, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_Time, "(STUBBED) called"); | ||||
|  | ||||
|         ctx.WriteBuffer(&my_time_zone_rule, sizeof(TimeZoneRule)); | ||||
|  | ||||
| @@ -117,7 +117,7 @@ private: | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 posix_time = rp.Pop<u64>(); | ||||
|  | ||||
|         NGLOG_WARNING(Service_Time, "(STUBBED) called, posix_time=0x{:016X}", posix_time); | ||||
|         LOG_WARNING(Service_Time, "(STUBBED) called, posix_time=0x{:016X}", posix_time); | ||||
|  | ||||
|         TimeZoneRule time_zone_rule{}; | ||||
|         auto buffer = ctx.ReadBuffer(); | ||||
| @@ -138,7 +138,7 @@ private: | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         const u64 posix_time = rp.Pop<u64>(); | ||||
|  | ||||
|         NGLOG_WARNING(Service_Time, "(STUBBED) called, posix_time=0x{:016X}", posix_time); | ||||
|         LOG_WARNING(Service_Time, "(STUBBED) called, posix_time=0x{:016X}", posix_time); | ||||
|  | ||||
|         CalendarTime calendar_time{2018, 1, 1, 0, 0, 0}; | ||||
|         CalendarAdditionalInfo additional_info{}; | ||||
| @@ -176,35 +176,35 @@ void Module::Interface::GetStandardUserSystemClock(Kernel::HLERequestContext& ct | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ISystemClock>(); | ||||
|     NGLOG_DEBUG(Service_Time, "called"); | ||||
|     LOG_DEBUG(Service_Time, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::GetStandardNetworkSystemClock(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ISystemClock>(); | ||||
|     NGLOG_DEBUG(Service_Time, "called"); | ||||
|     LOG_DEBUG(Service_Time, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::GetStandardSteadyClock(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ISteadyClock>(); | ||||
|     NGLOG_DEBUG(Service_Time, "called"); | ||||
|     LOG_DEBUG(Service_Time, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::GetTimeZoneService(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ITimeZoneService>(); | ||||
|     NGLOG_DEBUG(Service_Time, "called"); | ||||
|     LOG_DEBUG(Service_Time, "called"); | ||||
| } | ||||
|  | ||||
| void Module::Interface::GetStandardLocalSystemClock(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.PushIpcInterface<ISystemClock>(); | ||||
|     NGLOG_DEBUG(Service_Time, "called"); | ||||
|     LOG_DEBUG(Service_Time, "called"); | ||||
| } | ||||
|  | ||||
| Module::Interface::Interface(std::shared_ptr<Module> time, const char* name) | ||||
|   | ||||
| @@ -470,7 +470,7 @@ private: | ||||
|         u32 flags = rp.Pop<u32>(); | ||||
|         auto buffer_queue = nv_flinger->GetBufferQueue(id); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_VI, "called, transaction={:X}", static_cast<u32>(transaction)); | ||||
|         LOG_DEBUG(Service_VI, "called, transaction={:X}", static_cast<u32>(transaction)); | ||||
|  | ||||
|         if (transaction == TransactionId::Connect) { | ||||
|             IGBPConnectRequestParcel request{ctx.ReadBuffer()}; | ||||
| @@ -532,7 +532,7 @@ private: | ||||
|             IGBPQueryResponseParcel response{value}; | ||||
|             ctx.WriteBuffer(response.Serialize()); | ||||
|         } else if (transaction == TransactionId::CancelBuffer) { | ||||
|             NGLOG_WARNING(Service_VI, "(STUBBED) called, transaction=CancelBuffer"); | ||||
|             LOG_WARNING(Service_VI, "(STUBBED) called, transaction=CancelBuffer"); | ||||
|         } else { | ||||
|             ASSERT_MSG(false, "Unimplemented"); | ||||
|         } | ||||
| @@ -547,7 +547,7 @@ private: | ||||
|         s32 addval = rp.PopRaw<s32>(); | ||||
|         u32 type = rp.Pop<u32>(); | ||||
|  | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called id={}, addval={:08X}, type={:08X}", id, addval, | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called id={}, addval={:08X}, type={:08X}", id, addval, | ||||
|                       type); | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -562,7 +562,7 @@ private: | ||||
|  | ||||
|         // TODO(Subv): Find out what this actually is. | ||||
|  | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called id={}, unknown={:08X}", id, unknown); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called id={}, unknown={:08X}", id, unknown); | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.PushCopyObjects(buffer_queue->GetNativeHandle()); | ||||
| @@ -625,7 +625,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void SetLayerZ(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u64 layer_id = rp.Pop<u64>(); | ||||
|         u64 z_value = rp.Pop<u64>(); | ||||
| @@ -640,7 +640,7 @@ private: | ||||
|         bool visibility = rp.Pop<bool>(); | ||||
|         IPC::ResponseBuilder rb = rp.MakeBuilder(2, 0, 0); | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called, layer_id=0x{:08X}, visibility={}", layer_id, | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called, layer_id=0x{:08X}, visibility={}", layer_id, | ||||
|                       visibility); | ||||
|     } | ||||
| }; | ||||
| @@ -723,7 +723,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void CloseDisplay(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u64 display = rp.Pop<u64>(); | ||||
|  | ||||
| @@ -732,7 +732,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void CreateManagedLayer(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u32 unknown = rp.Pop<u32>(); | ||||
|         rp.Skip(1, false); | ||||
| @@ -747,7 +747,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void AddToLayerStack(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u32 stack = rp.Pop<u32>(); | ||||
|         u64 layer_id = rp.Pop<u64>(); | ||||
| @@ -762,7 +762,7 @@ private: | ||||
|         bool visibility = rp.Pop<bool>(); | ||||
|         IPC::ResponseBuilder rb = rp.MakeBuilder(2, 0, 0); | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called, layer_id=0x{:X}, visibility={}", layer_id, | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called, layer_id=0x{:X}, visibility={}", layer_id, | ||||
|                       visibility); | ||||
|     } | ||||
|  | ||||
| @@ -776,7 +776,7 @@ public: | ||||
|  | ||||
| private: | ||||
|     void GetRelayService(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -784,7 +784,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetSystemDisplayService(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -792,7 +792,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetManagerDisplayService(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -800,7 +800,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetIndirectDisplayTransactionService(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
| @@ -808,7 +808,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void OpenDisplay(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         auto name_buf = rp.PopRaw<std::array<u8, 0x40>>(); | ||||
|         auto end = std::find(name_buf.begin(), name_buf.end(), '\0'); | ||||
| @@ -823,7 +823,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void CloseDisplay(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u64 display_id = rp.Pop<u64>(); | ||||
|  | ||||
| @@ -832,7 +832,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetDisplayResolution(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u64 display_id = rp.Pop<u64>(); | ||||
|  | ||||
| @@ -849,7 +849,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void SetLayerScalingMode(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u32 scaling_mode = rp.Pop<u32>(); | ||||
|         u64 unknown = rp.Pop<u64>(); | ||||
| @@ -865,11 +865,11 @@ private: | ||||
|         IPC::ResponseBuilder rb = rp.MakeBuilder(4, 0, 0); | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         rb.Push<u64>(1); | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void OpenLayer(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_DEBUG(Service_VI, "called"); | ||||
|         LOG_DEBUG(Service_VI, "called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         auto name_buf = rp.PopRaw<std::array<u8, 0x40>>(); | ||||
|         auto end = std::find(name_buf.begin(), name_buf.end(), '\0'); | ||||
| @@ -889,7 +889,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void CreateStrayLayer(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_DEBUG(Service_VI, "called"); | ||||
|         LOG_DEBUG(Service_VI, "called"); | ||||
|  | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u32 flags = rp.Pop<u32>(); | ||||
| @@ -909,7 +909,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void DestroyStrayLayer(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|  | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u64 layer_id = rp.Pop<u64>(); | ||||
| @@ -919,7 +919,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     void GetDisplayVsyncEvent(Kernel::HLERequestContext& ctx) { | ||||
|         NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|         u64 display_id = rp.Pop<u64>(); | ||||
|  | ||||
| @@ -968,7 +968,7 @@ Module::Interface::Interface(std::shared_ptr<Module> module, const char* name, | ||||
|     : ServiceFramework(name), module(std::move(module)), nv_flinger(std::move(nv_flinger)) {} | ||||
|  | ||||
| void Module::Interface::GetDisplayService(Kernel::HLERequestContext& ctx) { | ||||
|     NGLOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|     LOG_WARNING(Service_VI, "(STUBBED) called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 James Rowe
					James Rowe