2016-12-08 08:43:27 +01:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-06-06 10:29:46 +02:00
|
|
|
#include "core/hle/ipc.h"
|
2017-12-01 20:37:00 +01:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
2016-12-29 21:38:47 +01:00
|
|
|
#include "core/hle/kernel/event.h"
|
2017-06-06 10:29:46 +02:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
2016-12-08 08:43:27 +01:00
|
|
|
#include "core/hle/service/nfc/nfc.h"
|
|
|
|
#include "core/hle/service/nfc/nfc_m.h"
|
|
|
|
#include "core/hle/service/nfc/nfc_u.h"
|
|
|
|
|
|
|
|
namespace Service {
|
|
|
|
namespace NFC {
|
|
|
|
|
2016-12-29 21:38:47 +01:00
|
|
|
static Kernel::SharedPtr<Kernel::Event> tag_in_range_event;
|
2017-01-14 08:42:56 +01:00
|
|
|
static Kernel::SharedPtr<Kernel::Event> tag_out_of_range_event;
|
|
|
|
static TagState nfc_tag_state = TagState::NotInitialized;
|
|
|
|
static CommunicationStatus nfc_status = CommunicationStatus::NfcInitialized;
|
|
|
|
|
|
|
|
void Initialize(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
u8 param = static_cast<u8>(cmd_buff[1] & 0xFF);
|
|
|
|
|
|
|
|
nfc_tag_state = TagState::NotScanning;
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called, param=%u", param);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
u8 param = static_cast<u8>(cmd_buff[1] & 0xFF);
|
|
|
|
nfc_tag_state = TagState::NotInitialized;
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called, param=%u", param);
|
|
|
|
}
|
|
|
|
|
|
|
|
void StartCommunication(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void StopCommunication(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void StartTagScanning(Interface* self) {
|
2017-12-01 20:37:00 +01:00
|
|
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 5, 1, 0); // 0x00050040
|
|
|
|
u16 in_val = rp.Pop<u16>();
|
2017-01-14 08:42:56 +01:00
|
|
|
|
2017-12-01 20:37:00 +01:00
|
|
|
ResultCode result = RESULT_SUCCESS;
|
2017-01-14 08:42:56 +01:00
|
|
|
|
2017-12-01 20:37:00 +01:00
|
|
|
// TODO(shinyquagsire23): Implement NFC tag detection, for now stub result
|
|
|
|
result = ResultCode(ErrCodes::CommandInvalidForState, ErrorModule::NFC,
|
|
|
|
ErrorSummary::InvalidState, ErrorLevel::Status);
|
|
|
|
|
|
|
|
if (result == RESULT_SUCCESS) {
|
|
|
|
nfc_tag_state = TagState::TagInRange;
|
|
|
|
tag_in_range_event->Signal();
|
|
|
|
}
|
|
|
|
|
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
|
|
|
rb.Push(result);
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called, in_val=%04x", in_val);
|
2017-01-14 08:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void StopTagScanning(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
nfc_tag_state = TagState::NotScanning;
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadAmiiboData(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
nfc_tag_state = TagState::TagDataLoaded;
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResetTagScanState(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
nfc_tag_state = TagState::NotScanning;
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
2016-12-29 21:38:47 +01:00
|
|
|
|
|
|
|
void GetTagInRangeEvent(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
cmd_buff[0] = IPC::MakeHeader(0xB, 1, 2);
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw;
|
|
|
|
cmd_buff[2] = IPC::CopyHandleDesc();
|
2017-06-19 04:03:15 +02:00
|
|
|
cmd_buff[3] = Kernel::g_handle_table.Create(tag_in_range_event).Unwrap();
|
2016-12-29 21:38:47 +01:00
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
2017-01-14 08:42:56 +01:00
|
|
|
void GetTagOutOfRangeEvent(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
cmd_buff[0] = IPC::MakeHeader(0xC, 1, 2);
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw;
|
|
|
|
cmd_buff[2] = IPC::CopyHandleDesc();
|
2017-06-19 04:03:15 +02:00
|
|
|
cmd_buff[3] = Kernel::g_handle_table.Create(tag_out_of_range_event).Unwrap();
|
2017-01-14 08:42:56 +01:00
|
|
|
LOG_WARNING(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetTagState(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
cmd_buff[2] = static_cast<u8>(nfc_tag_state);
|
|
|
|
LOG_DEBUG(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommunicationGetStatus(Interface* self) {
|
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
|
|
|
cmd_buff[2] = static_cast<u8>(nfc_status);
|
|
|
|
LOG_DEBUG(Service_NFC, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
2016-12-08 08:43:27 +01:00
|
|
|
void Init() {
|
|
|
|
AddService(new NFC_M());
|
|
|
|
AddService(new NFC_U());
|
2016-12-29 21:38:47 +01:00
|
|
|
|
|
|
|
tag_in_range_event =
|
|
|
|
Kernel::Event::Create(Kernel::ResetType::OneShot, "NFC::tag_in_range_event");
|
2017-01-14 08:42:56 +01:00
|
|
|
tag_out_of_range_event =
|
|
|
|
Kernel::Event::Create(Kernel::ResetType::OneShot, "NFC::tag_out_range_event");
|
|
|
|
nfc_tag_state = TagState::NotInitialized;
|
2016-12-29 21:38:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
|
|
|
tag_in_range_event = nullptr;
|
2017-01-14 08:42:56 +01:00
|
|
|
tag_out_of_range_event = nullptr;
|
2016-12-08 08:43:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace NFC
|
|
|
|
} // namespace Service
|