summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-04-01Merge pull request #10005 from liamwhite/kernel-atomicsbunnei
kernel: fix unbounded stack usage in atomics
2023-03-29Fixes 'Continous' typoMax Dunbar
2023-03-29Merge pull request #9505 from liamwhite/request-exitliamwhite
applets: implement RequestExit
2023-03-28kernel: fix unbounded stack usage in atomicsLiam
2023-03-28Merge pull request #10003 from german77/disconnectliamwhite
service: hid: Silence warning on MergeSingleJoyAsDualJoy
2023-03-27telemetry: Add waitpkg instructionMorph
2023-03-27x64: Simplify RDTSC on non-MSVC compilersMorph
Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>
2023-03-27core_timing: Make use of MicroSleep for x64 CPUsMorph
For CPUs that support tpause, this should result in significant CPU power savings over thread yield in this spin wait.
2023-03-27x64: Add MicroSleepMorph
MicroSleep allows the processor to pause for a "short" amount of time (in the microsecond range). This is useful for spin-waiting that does not require nanosecond precision. This uses the new TPAUSE instruction introduced on Intel's newest processors as part of the waitpkg instructions. For CPUs that do not support waitpkg instructions, this is equivalent to yield(). Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>
2023-03-27x64: cpu_detect: Add detection of waitpkg instructionsMorph
waitpkg introduces 3 instructions, UMONITOR, UMWAIT and TPAUSE.
2023-03-27Merge pull request #10002 from german77/logliamwhite
qt: Fix log softlock
2023-03-27service: hid: Silence warning on MergeSingleJoyAsDualJoyNarr the Reg
2023-03-27qt: Fix log softlockNarr the Reg
2023-03-27Merge pull request #9984 from liamwhite/global-memoryliamwhite
memory: rename global memory references to application memory
2023-03-27Merge pull request #9995 from german77/plainliamwhite
service: nfp: Add plain amiibo support
2023-03-26service: nfp: Add plain amiibo supportgerman77
2023-03-26tests: mark integer literals as unsignedLiam
2023-03-26container_hash: use climitsLiam
2023-03-25video_core/macro: Make use of Common::HashValueMorph
2023-03-25tests: Implement tests for verifying HashValueMorph
Values were randomly generated and the verification was done against boost 1.79.
2023-03-25common: Port boost's hash_value implementationMorph
Ports a small subset of boost's hash_value implementation (<= 1.80.0).
2023-03-25qt: implement RequestExit for appletsLiam
2023-03-25applets: implement RequestExitLiam
2023-03-24Merge pull request #9985 from liamwhite/funny-memebunnei
vulkan: fix scheduler chunk reserve
2023-03-25Pass GPU page table by referenceRoss Schlaikjer
2023-03-24Merge pull request #9983 from Morph1984/boostliamwhite
CMakeLists: Update boost to 1.81.0
2023-03-24Merge pull request #9981 from german77/nfp_connectliamwhite
nfc: Initialize device when controller is connected
2023-03-24vulkan: fix scheduler chunk reserveLiam
2023-03-24Merge pull request #9975 from liamwhite/more-waitingMorph
vulkan: fix more excessive waiting in scheduler
2023-03-23zstd: Use ZSTD_getFrameContentSize instead of ZSTD_getDecompressedSizeMorph
2023-03-23memory: rename global memory references to application memoryLiam
2023-03-23Merge pull request #9971 from Morph1984/qliamwhite
bounded_threadsafe_queue: Use simplified impl of bounded queue
2023-03-23Merge pull request #9964 from liamwhite/typed-addressliamwhite
kernel: use KTypedAddress for addresses
2023-03-23Merge pull request #9962 from Kelebek1/disable_srgbMorph
[video_core] Disable SRGB border color conversion in samplers
2023-03-22kernel: use KTypedAddress for addressesLiam
2023-03-21bounded_threadsafe_queue: Refactor PopMorph
Introduces PopModes to bring waiting logic into Pop, similar to Push.
2023-03-21bounded_threadsafe_queue: Add producer cv to avoid busy waitingMorph
2023-03-21nfc: Initialize device when controller is connectedNarr the Reg
2023-03-21Merge pull request #9965 from german77/thankYouEpicBoybunnei
config: Fix controller config from resetting
2023-03-21bounded_threadsafe_queue: Deduplicate and add PushModesMorph
Adds the PushModes Try and Wait to allow producers to specify how they want to push their data to the queue if the queue is full. If the queue is full: - Try will fail to push to the queue, returning false. Try only returns true if it successfully pushes to the queue. This may result in items not being pushed into the queue. - Wait will wait until a slot is available to push to the queue, resulting in potential for deadlock if a consumer is not running.
2023-03-21bounded_threadsafe_queue: Add TryPushMorph
2023-03-21logging: Make use of bounded queueMorph
2023-03-21bounded_threadsafe_queue: Use simplified impl of bounded queueMorph
Provides a simplified SPSC, MPSC, and MPMC bounded queue implementation using mutexes.
2023-03-19Merge pull request #9970 from bunnei/string-util-viewbunnei
common: string_util: Use std::string_view for UTF16ToUTF8/UTF8ToUTF16W.
2023-03-19vulkan: fix more excessive waiting in schedulerLiam
2023-03-19kernel: fix LOG_TRACE in ipcLiam
2023-03-18common: string_util: Use std::string_view for UTF16ToUTF8/UTF8ToUTF16W.bunnei
2023-03-17common: bounded_threadsafe_queue: Use polyfill_thread.bunnei
2023-03-17Merge pull request #9778 from behunin/my-box-chevybunnei
gpu_thread: Use bounded queue
2023-03-17Merge pull request #9953 from german77/amiibo_crcbunnei
service: nfp: Actually write correct crc