mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 15:16:34 +00:00
166318ba77
* sdmmc: begin skeletoning sdmmc driver * sdmmc: add most of SdHostStandardController * sdmmc: implement most of SdmmcController * sdmmc: Sdmmc2Controller * sdmmc: skeleton implementation of Sdmmc1Controller * sdmmc: complete abstract logic for Sdmmc1 power controller * sdmmc: implement gpio handling for sdmmc1-register-control * sdmmc: implement pinmux handling for sdmmc1-register-control * sdmmc: fix building for arm32 and in stratosphere context * sdmmc: implement voltage enable/set for sdmmc1-register-control * util: move T(V)SNPrintf from kernel to util * sdmmc: implement BaseDeviceAccessor * sdmmc: implement MmcDeviceAccessor * sdmmc: implement clock reset controller for register api * sdmmc: fix bug in WaitWhileCommandInhibit, add mmc accessors * exo: add sdmmc test program * sdmmc: fix speed mode extension, add CheckMmcConnection for debug * sdmmc: add DeviceDetector, gpio: implement client api * gpio: modernize client api instead of doing it the lazy way * sdmmc: SdCardDeviceAccessor impl * sdmmc: update test program to read first two sectors of sd card * sdmmc: fix vref sel * sdmmc: finish outward-facing api (untested) * ams: changes for libvapours including tegra register defs * sdmmc: remove hwinit
113 lines
4.7 KiB
C++
113 lines
4.7 KiB
C++
/*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
#include <stratosphere.hpp>
|
|
|
|
namespace ams::gpio {
|
|
|
|
class RemotePadSessionImpl {
|
|
private:
|
|
::GpioPadSession srv;
|
|
public:
|
|
RemotePadSessionImpl(::GpioPadSession &p) : srv(p) { /* ... */ }
|
|
|
|
~RemotePadSessionImpl() { ::gpioPadClose(std::addressof(this->srv)); }
|
|
public:
|
|
/* Actual commands. */
|
|
Result SetDirection(gpio::Direction direction) {
|
|
return ::gpioPadSetDirection(std::addressof(this->srv), static_cast<::GpioDirection>(static_cast<u32>(direction)));
|
|
}
|
|
|
|
Result GetDirection(ams::sf::Out<gpio::Direction> out) {
|
|
static_assert(sizeof(gpio::Direction) == sizeof(::GpioDirection));
|
|
return ::gpioPadGetDirection(std::addressof(this->srv), reinterpret_cast<::GpioDirection *>(out.GetPointer()));
|
|
}
|
|
|
|
Result SetInterruptMode(gpio::InterruptMode mode) {
|
|
return ::gpioPadSetInterruptMode(std::addressof(this->srv), static_cast<::GpioInterruptMode>(static_cast<u32>(mode)));
|
|
}
|
|
|
|
Result GetInterruptMode(ams::sf::Out<gpio::InterruptMode> out) {
|
|
static_assert(sizeof(gpio::InterruptMode) == sizeof(::GpioInterruptMode));
|
|
return ::gpioPadGetInterruptMode(std::addressof(this->srv), reinterpret_cast<::GpioInterruptMode *>(out.GetPointer()));
|
|
}
|
|
|
|
Result SetInterruptEnable(bool enable) {
|
|
return ::gpioPadSetInterruptEnable(std::addressof(this->srv), enable);
|
|
}
|
|
|
|
Result GetInterruptEnable(ams::sf::Out<bool> out) {
|
|
return ::gpioPadGetInterruptEnable(std::addressof(this->srv), out.GetPointer());
|
|
}
|
|
|
|
Result GetInterruptStatus(ams::sf::Out<gpio::InterruptStatus> out) {
|
|
static_assert(sizeof(gpio::InterruptStatus) == sizeof(::GpioInterruptStatus));
|
|
return ::gpioPadGetInterruptStatus(std::addressof(this->srv), reinterpret_cast<::GpioInterruptStatus *>(out.GetPointer()));
|
|
}
|
|
|
|
Result ClearInterruptStatus() {
|
|
return ::gpioPadClearInterruptStatus(std::addressof(this->srv));
|
|
}
|
|
|
|
Result SetValue(gpio::GpioValue value) {
|
|
return ::gpioPadSetValue(std::addressof(this->srv), static_cast<::GpioValue>(static_cast<u32>(value)));
|
|
}
|
|
|
|
Result GetValue(ams::sf::Out<gpio::GpioValue> out) {
|
|
static_assert(sizeof(gpio::GpioValue) == sizeof(::GpioValue));
|
|
return ::gpioPadGetValue(std::addressof(this->srv), reinterpret_cast<::GpioValue *>(out.GetPointer()));
|
|
}
|
|
|
|
Result BindInterrupt(ams::sf::OutCopyHandle out) {
|
|
::Event ev;
|
|
R_TRY(::gpioPadBindInterrupt(std::addressof(this->srv), std::addressof(ev)));
|
|
out.SetValue(ev.revent);
|
|
return ResultSuccess();
|
|
}
|
|
|
|
Result UnbindInterrupt() {
|
|
return ::gpioPadUnbindInterrupt(std::addressof(this->srv));
|
|
}
|
|
|
|
Result SetDebounceEnabled(bool enable) {
|
|
return ::gpioPadSetDebounceEnabled(std::addressof(this->srv), enable);
|
|
}
|
|
|
|
Result GetDebounceEnabled(ams::sf::Out<bool> out) {
|
|
return ::gpioPadGetDebounceEnabled(std::addressof(this->srv), out.GetPointer());
|
|
}
|
|
|
|
Result SetDebounceTime(s32 ms) {
|
|
return ::gpioPadSetDebounceTime(std::addressof(this->srv), ms);
|
|
}
|
|
|
|
Result GetDebounceTime(ams::sf::Out<s32> out) {
|
|
return ::gpioPadGetDebounceTime(std::addressof(this->srv), out.GetPointer());
|
|
}
|
|
|
|
Result SetValueForSleepState(gpio::GpioValue value) {
|
|
/* TODO: libnx bindings. */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result GetValueForSleepState(ams::sf::Out<gpio::GpioValue> out) {
|
|
/* TODO: libnx bindings. */
|
|
AMS_ABORT();
|
|
}
|
|
};
|
|
static_assert(gpio::sf::IsIPadSession<RemotePadSessionImpl>);
|
|
|
|
}
|