diff options
| author | 2023-01-24 09:29:37 -0500 | |
|---|---|---|
| committer | 2023-01-24 09:29:37 -0500 | |
| commit | a68af583ea378b48e2ed5a19f519a815ba89e40f (patch) | |
| tree | 2983c14a7d4bc2797259c7d97462a439bec629f3 /src/input_common/helpers/joycon_protocol/common_protocol.h | |
| parent | Merge pull request #9555 from abouvier/catch2-update (diff) | |
| parent | core: hid: Make use of SCOPE_EXIT and SCOPE_GUARD where applicable (diff) | |
| download | yuzu-a68af583ea378b48e2ed5a19f519a815ba89e40f.tar.gz yuzu-a68af583ea378b48e2ed5a19f519a815ba89e40f.tar.xz yuzu-a68af583ea378b48e2ed5a19f519a815ba89e40f.zip | |
Merge pull request #9492 from german77/joycon_release
Input_common: Implement custom joycon driver v2
Diffstat (limited to 'src/input_common/helpers/joycon_protocol/common_protocol.h')
| -rw-r--r-- | src/input_common/helpers/joycon_protocol/common_protocol.h | 173 |
1 files changed, 173 insertions, 0 deletions
diff --git a/src/input_common/helpers/joycon_protocol/common_protocol.h b/src/input_common/helpers/joycon_protocol/common_protocol.h new file mode 100644 index 000000000..903bcf402 --- /dev/null +++ b/src/input_common/helpers/joycon_protocol/common_protocol.h | |||
| @@ -0,0 +1,173 @@ | |||
| 1 | // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | // Based on dkms-hid-nintendo implementation, CTCaer joycon toolkit and dekuNukem reverse | ||
| 5 | // engineering https://github.com/nicman23/dkms-hid-nintendo/blob/master/src/hid-nintendo.c | ||
| 6 | // https://github.com/CTCaer/jc_toolkit | ||
| 7 | // https://github.com/dekuNukem/Nintendo_Switch_Reverse_Engineering | ||
| 8 | |||
| 9 | #pragma once | ||
| 10 | |||
| 11 | #include <memory> | ||
| 12 | #include <span> | ||
| 13 | #include <vector> | ||
| 14 | |||
| 15 | #include "common/common_types.h" | ||
| 16 | #include "input_common/helpers/joycon_protocol/joycon_types.h" | ||
| 17 | |||
| 18 | namespace InputCommon::Joycon { | ||
| 19 | |||
| 20 | /// Joycon driver functions that handle low level communication | ||
| 21 | class JoyconCommonProtocol { | ||
| 22 | public: | ||
| 23 | explicit JoyconCommonProtocol(std::shared_ptr<JoyconHandle> hidapi_handle_); | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Sets handle to blocking. In blocking mode, SDL_hid_read() will wait (block) until there is | ||
| 27 | * data to read before returning. | ||
| 28 | */ | ||
| 29 | void SetBlocking(); | ||
| 30 | |||
| 31 | /** | ||
| 32 | * Sets handle to non blocking. In non-blocking mode calls to SDL_hid_read() will return | ||
| 33 | * immediately with a value of 0 if there is no data to be read | ||
| 34 | */ | ||
| 35 | void SetNonBlocking(); | ||
| 36 | |||
| 37 | /** | ||
| 38 | * Sends a request to obtain the joycon type from device | ||
| 39 | * @returns controller type of the joycon | ||
| 40 | */ | ||
| 41 | DriverResult GetDeviceType(ControllerType& controller_type); | ||
| 42 | |||
| 43 | /** | ||
| 44 | * Verifies and sets the joycon_handle if device is valid | ||
| 45 | * @param device info from the driver | ||
| 46 | * @returns success if the device is valid | ||
| 47 | */ | ||
| 48 | DriverResult CheckDeviceAccess(SDL_hid_device_info* device); | ||
| 49 | |||
| 50 | /** | ||
| 51 | * Sends a request to set the polling mode of the joycon | ||
| 52 | * @param report_mode polling mode to be set | ||
| 53 | */ | ||
| 54 | DriverResult SetReportMode(Joycon::ReportMode report_mode); | ||
| 55 | |||
| 56 | /** | ||
| 57 | * Sends data to the joycon device | ||
| 58 | * @param buffer data to be send | ||
| 59 | */ | ||
| 60 | DriverResult SendData(std::span<const u8> buffer); | ||
| 61 | |||
| 62 | /** | ||
| 63 | * Waits for incoming data of the joycon device that matchs the subcommand | ||
| 64 | * @param sub_command type of data to be returned | ||
| 65 | * @returns a buffer containing the responce | ||
| 66 | */ | ||
| 67 | DriverResult GetSubCommandResponse(SubCommand sub_command, std::vector<u8>& output); | ||
| 68 | |||
| 69 | /** | ||
| 70 | * Sends a sub command to the device and waits for it's reply | ||
| 71 | * @param sc sub command to be send | ||
| 72 | * @param buffer data to be send | ||
| 73 | * @returns output buffer containing the responce | ||
| 74 | */ | ||
| 75 | DriverResult SendSubCommand(SubCommand sc, std::span<const u8> buffer, std::vector<u8>& output); | ||
| 76 | |||
| 77 | /** | ||
| 78 | * Sends a sub command to the device and waits for it's reply and ignores the output | ||
| 79 | * @param sc sub command to be send | ||
| 80 | * @param buffer data to be send | ||
| 81 | */ | ||
| 82 | DriverResult SendSubCommand(SubCommand sc, std::span<const u8> buffer); | ||
| 83 | |||
| 84 | /** | ||
| 85 | * Sends a mcu command to the device | ||
| 86 | * @param sc sub command to be send | ||
| 87 | * @param buffer data to be send | ||
| 88 | */ | ||
| 89 | DriverResult SendMCUCommand(SubCommand sc, std::span<const u8> buffer); | ||
| 90 | |||
| 91 | /** | ||
| 92 | * Sends vibration data to the joycon | ||
| 93 | * @param buffer data to be send | ||
| 94 | */ | ||
| 95 | DriverResult SendVibrationReport(std::span<const u8> buffer); | ||
| 96 | |||
| 97 | /** | ||
| 98 | * Reads the SPI memory stored on the joycon | ||
| 99 | * @param Initial address location | ||
| 100 | * @param size in bytes to be read | ||
| 101 | * @returns output buffer containing the responce | ||
| 102 | */ | ||
| 103 | DriverResult ReadSPI(CalAddr addr, u8 size, std::vector<u8>& output); | ||
| 104 | |||
| 105 | /** | ||
| 106 | * Enables MCU chip on the joycon | ||
| 107 | * @param enable if true the chip will be enabled | ||
| 108 | */ | ||
| 109 | DriverResult EnableMCU(bool enable); | ||
| 110 | |||
| 111 | /** | ||
| 112 | * Configures the MCU to the correspoinding mode | ||
| 113 | * @param MCUConfig configuration | ||
| 114 | */ | ||
| 115 | DriverResult ConfigureMCU(const MCUConfig& config); | ||
| 116 | |||
| 117 | /** | ||
| 118 | * Waits until there's MCU data available. On timeout returns error | ||
| 119 | * @param report mode of the expected reply | ||
| 120 | * @returns a buffer containing the responce | ||
| 121 | */ | ||
| 122 | DriverResult GetMCUDataResponse(ReportMode report_mode_, std::vector<u8>& output); | ||
| 123 | |||
| 124 | /** | ||
| 125 | * Sends data to the MCU chip and waits for it's reply | ||
| 126 | * @param report mode of the expected reply | ||
| 127 | * @param sub command to be send | ||
| 128 | * @param buffer data to be send | ||
| 129 | * @returns output buffer containing the responce | ||
| 130 | */ | ||
| 131 | DriverResult SendMCUData(ReportMode report_mode, SubCommand sc, std::span<const u8> buffer, | ||
| 132 | std::vector<u8>& output); | ||
| 133 | |||
| 134 | /** | ||
| 135 | * Wait's until the MCU chip is on the specified mode | ||
| 136 | * @param report mode of the expected reply | ||
| 137 | * @param MCUMode configuration | ||
| 138 | */ | ||
| 139 | DriverResult WaitSetMCUMode(ReportMode report_mode, MCUMode mode); | ||
| 140 | |||
| 141 | /** | ||
| 142 | * Calculates the checksum from the MCU data | ||
| 143 | * @param buffer containing the data to be send | ||
| 144 | * @param size of the buffer in bytes | ||
| 145 | * @returns byte with the correct checksum | ||
| 146 | */ | ||
| 147 | u8 CalculateMCU_CRC8(u8* buffer, u8 size) const; | ||
| 148 | |||
| 149 | private: | ||
| 150 | /** | ||
| 151 | * Increments and returns the packet counter of the handle | ||
| 152 | * @param joycon_handle device to send the data | ||
| 153 | * @returns packet counter value | ||
| 154 | */ | ||
| 155 | u8 GetCounter(); | ||
| 156 | |||
| 157 | std::shared_ptr<JoyconHandle> hidapi_handle; | ||
| 158 | }; | ||
| 159 | |||
| 160 | class ScopedSetBlocking { | ||
| 161 | public: | ||
| 162 | explicit ScopedSetBlocking(JoyconCommonProtocol* self) : m_self{self} { | ||
| 163 | m_self->SetBlocking(); | ||
| 164 | } | ||
| 165 | |||
| 166 | ~ScopedSetBlocking() { | ||
| 167 | m_self->SetNonBlocking(); | ||
| 168 | } | ||
| 169 | |||
| 170 | private: | ||
| 171 | JoyconCommonProtocol* m_self{}; | ||
| 172 | }; | ||
| 173 | } // namespace InputCommon::Joycon | ||