/* * Copyright (c) 2018-2020 Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include #include "gpio_server_pad_session_impl.hpp" namespace ams::gpio::server { class ManagerImpl : public ams::sf::ISharedObject { private: using Allocator = ams::sf::ExpHeapAllocator; using Factory = ams::sf::ObjectFactory; private: lmem::HeapHandle heap_handle; Allocator pad_allocator; u8 heap_buffer[12_KB]; public: ManagerImpl(); ~ManagerImpl(); public: /* Actual commands. */ Result OpenSessionForDev(ams::sf::Out> out, s32 pad_descriptor); Result OpenSession(ams::sf::Out> out, gpio::GpioPadName pad_name); Result OpenSessionForTest(ams::sf::Out> out, gpio::GpioPadName pad_name); Result IsWakeEventActive(ams::sf::Out out, gpio::GpioPadName pad_name); Result GetWakeEventActiveFlagSet(ams::sf::Out out); Result SetWakeEventActiveFlagSetForDebug(gpio::GpioPadName pad_name, bool is_enabled); Result SetWakePinDebugMode(s32 mode); Result OpenSession2(ams::sf::Out> out, DeviceCode device_code, ddsf::AccessMode access_mode); Result IsWakeEventActive2(ams::sf::Out out, DeviceCode device_code); Result SetWakeEventActiveFlagSetForDebug2(DeviceCode device_code, bool is_enabled); Result SetRetryValues(u32 arg0, u32 arg1); }; static_assert(gpio::sf::IsIManager); }