summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2021-04-08pctl_module: Update to 12.xgerman77
2021-04-08pcie: Use proper namesgerman77
2021-04-08olsc: Update to 12.xgerman77
2021-04-08pl_u: Update to 12.xgerman77
2021-04-08ldr: Use proper namesgerman77
2021-04-08arp: Use proper names, update to 12.xgerman77
2021-04-08caps_u: Update to 12.xgerman77
2021-04-08caps_a: Update to 12.xgerman77
2021-04-08bpc: Use proper namesgerman77
2021-04-08bcat_module: Update to 12.xgerman77
2021-04-08codecctl: Use proper namesgerman77
2021-04-08audren_u: Use proper namesgerman77
2021-04-08audren_a: Use proper namesgerman77
2021-04-08audrec_u: Use proper names, update to 12.xgerman77
2021-04-08audrec_a: Use proper namesgerman77
2021-04-08audout_u: Use proper namesgerman77
2021-04-08audout_a: Use proper namesgerman77
2021-04-08audin_u: Use proper namesgerman77
2021-04-08audin_a: Use proper namesgerman77
2021-04-08Merge pull request #6155 from ameerj/kernel-12-rescntbunnei
kernel: Increase event and session counts
2021-04-08Merge pull request #6157 from Morph1984/am-update-12.xbunnei
service: am: Update service function tables
2021-04-08Merge pull request #6062 from ameerj/auto-stubbunnei
service: Add a toggle for auto stub fallback
2021-04-08externals: Search for shared opus installation.Markus Wick
We had used conan for opus before, but there was a bug in the AVX detection. However we still had the Findopus.cmake file within the repository, but not used. This patch reenables the Findopus helper and prefer the system wide installation of opus.
2021-04-08Merge pull request #6145 from lat9nq/nvhost_empty_memcpybunnei
nvhost_nvdec_common: Avoid memcpy with null pointers
2021-04-08service: time: Setup the network clock with the local clock contextMorph
Setting the network time allows some time based events using the network clock to not reset.
2021-04-08Merge pull request #6154 from lioncash/svcrange2bunnei
svc: Expand SVC tables
2021-04-08service: hid: Stub SetAnalogStickUseCenterClampMorph
- Used by eBASEBALLパワフルプロ野球2020
2021-04-07Merge pull request #6160 from Morph1984/fs-update-12.xbunnei
service: fs: Update service function tables
2021-04-07service: time: Fix CalculateStandardUserSystemClockDifferenceByUserMorph
CalculateStandardUserSystemClockDifferenceByUser passes in the ClockSnapshots through 2 input buffers and not as raw arguments. Fix this by reading the 2 input buffers instead of popping raw arguments.
2021-04-07Merge pull request #6143 from lat9nq/nvhost_null_memcpybunnei
nvhost_ctrl_gpu: Avoid sending null pointer to memcpy
2021-04-07Merge pull request #6159 from Morph1984/acc-update-12.xbunnei
service: acc: Update service function tables
2021-04-07video_core/gpu_thread: Implement a ShutDown method.Markus Wick
This was implicitly done by `is_powered_on = false`, however the explicit method allows us to block until the GPU is actually gone. This should fix a race condition while removing the other subsystems while the GPU is still active.
2021-04-07Merge pull request #6153 from lioncash/svcrangebunnei
process_capability: Handle extended SVC range
2021-04-07hwopus: Update to 12.xMorph
2021-04-07IFile: Update to 12.xMorph
2021-04-07fsp-srv: Update to 12.xMorph
2021-04-07dauth_o: Update to 11.xMorph
2021-04-07acc_u1: Update to 12.xMorph
2021-04-07acc_su: Update to 12.xMorph
2021-04-07hid: Update service function tablesgerman77
2021-04-07ISelfController: Update to 11.xMorph
2021-04-07IApplicationFunctions: Update to 11.xMorph
2021-04-07IDebugFunctions: Update to 12.xMorph
2021-04-07ICommonStateGetter: Update to 12.xMorph
2021-04-07IGlobalStateController: Update to 12.xMorph
2021-04-07IHomeMenuFunctions: Update to 12.xMorph
2021-04-07Amend bizarre clang-format suggestionsLioncash
2021-04-07k_scoped_scheduler_lock_and_sleep: Mark class as [[nodiscard]]Lioncash
Prevents logic bugs from slipping through.
2021-04-07k_scoped_lock: delete copy and move assignment operatorsLioncash
If we delete the copy and move constructor, we should also be deleting the copy and move assignment operators (and even if this were intended, it would be pretty odd to not document why it's done this way).
2021-04-07k_scoped_lock: Mark class as [[nodiscard]]Lioncash
Prevents logic bugs of the kind described in the previous commit from slipping through.