summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* arm_dynarmic_32: Remove disabling of block linking on arm64Gravatar Merry2023-06-271-5/+0
|
* core: hid: Allow to read bin files while switch controller is availableGravatar german772023-06-241-4/+10
|
* input_common: Dont try to read/write data from 3rd party controllersGravatar german772023-06-241-0/+5
|
* Merge pull request #10859 from liamwhite/no-more-atomic-waitGravatar liamwhite2023-06-234-18/+10
|\ | | | | general: remove atomic signal and wait
| * general: remove atomic signal and waitGravatar Liam2023-06-224-18/+10
| |
* | Merge pull request #10842 from german77/native_mifareGravatar liamwhite2023-06-2310-132/+209
|\ \ | | | | | | input_common: Implement native mifare/skylander support for joycons/pro controller
| * | input_common: Implement native mifare supportGravatar Narr the Reg2023-06-2110-132/+209
| | |
* | | vfs_real: lock concurrent accessesGravatar Liam2023-06-232-25/+45
| | |
* | | Merge pull request #10457 from Kelebek1/optimiseGravatar bunnei2023-06-2237-275/+270
|\ \ \ | | | | | | | | Remove memory allocations in some hot paths
| * | | Remove memory allocations in some hot pathsGravatar Kelebek12023-06-2237-275/+270
| | |/ | |/|
* | | Merge pull request #10806 from liamwhite/worst-fs-implementation-everGravatar bunnei2023-06-223-24/+42
|\ \ \ | |/ / |/| | vfs_real: misc optimizations
| * | vfs_real: ensure size cache is reset on writeGravatar Liam2023-06-161-0/+2
| | |
| * | patch_manager: remove unnecessary GetSize callsGravatar Liam2023-06-161-5/+4
| | |
| * | vfs_real: misc optimizationsGravatar Liam2023-06-162-19/+36
| | |
* | | Merge pull request #10086 from Morph1984/coretiming-ng-1Gravatar bunnei2023-06-2115-131/+45
|\ \ \ | | | | | | | | core_timing: Use CNTPCT as the guest CPU tick
| * | | nvdisp: Fix SingleCore frametime reportingGravatar Morph2023-06-071-1/+1
| | | |
| * | | core_timing: Fix SingleCore cycle timerGravatar Morph2023-06-073-27/+11
| | | |
| * | | (wall, native)_clock: Add GetGPUTickGravatar Morph2023-06-072-0/+10
| | | | | | | | | | | | | | | | Allows us to directly calculate the GPU tick without double conversion to and from the host clock tick.
| * | | time: Use compile time division for TimeSpanType conversionGravatar Morph2023-06-075-11/+15
| | | |
| * | | core_timing: Use CNTPCT as the guest CPU tickGravatar Morph2023-06-077-100/+15
| | | | | | | | | | | | | | | | | | | | Previously, we were mixing the raw CPU frequency and CNTFRQ. The raw CPU frequency (1020 MHz) should've never been used as CNTPCT (whose frequency is CNTFRQ) is the only counter available.
| * | | nvnflinger: Acquire lock prior to signaling the vsync variableGravatar Morph2023-06-071-1/+2
| | | |
* | | | Merge pull request #10841 from liamwhite/math-is-hardGravatar bunnei2023-06-211-4/+10
|\ \ \ \ | | | | | | | | | | vfs_concat: fix offset calculation when not aligned to file boundary
| * | | | vfs_concat: verify short readGravatar Liam2023-06-191-0/+5
| | | | |
| * | | | vfs_concat: fix offset calculation when not aligned to file boundaryGravatar Liam2023-06-181-4/+5
| | | | |
* | | | | time_zone_manager: Add null terminatorGravatar lat9nq2023-06-201-2/+4
| | | | | | | | | | | | | | | | | | | | We aren't null-terminating this string after the copy, and we need to.
* | | | | time_zone_manager: Stop on commaGravatar lat9nq2023-06-201-1/+3
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a deviation from the reference time zone implementation. The actual code will set a pointer to the time zone name here, but for us we have a limited number of characters to work with, and the name of the time zone here could be larger than 8 characters. We can make the assumption that time zone names greater than five characters in length include a comma that denotes more data. Nintendo just truncates that data for the name, so we can do the same. time_zone_manager: Check for length of array Just to be double sure that we never break past the array length, directly compare against it.
* | | | Merge pull request #10797 from lat9nq/tzdb-patchGravatar bunnei2023-06-173-11/+6
|\ \ \ \ | | | | | | | | | | time: Various time zone fixes
| * | | | time_zone_service: Always write time zone rule dataGravatar lat9nq2023-06-171-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Switch firmware will initialize this data even if the given parameters are invalid. We should do the same.
| * | | | time_zone_manager: Compare to the correct booleanGravatar lat9nq2023-06-151-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reference implementation does not compare the booleans as we had them. Use the correct ones as in the reference. Also adds an assert. I have been made aware of a crash here and am not able to reproduce currently.
| * | | | nx_tzdb: Correct Antarctica spellingGravatar lat9nq2023-06-151-1/+1
| | |/ / | |/| |
* | | | k_thread: Use a mutex and cond_var to sync boolGravatar lat9nq2023-06-172-5/+14
| |_|/ |/| | | | | | | | | | | std::atomic<bool> is broken on MinGW and causes deadlocks there. Use a normal cond var in its stead.
* | | Merge pull request #10731 from german77/misc_fixesGravatar liamwhite2023-06-1610-115/+198
|\ \ \ | |/ / |/| | service: nfc: Accuracy fixes
| * | service: nfc: Read tag protocol only for nfc backendGravatar Narr the Reg2023-06-142-5/+6
| | |
| * | service: nfc: Accuracy fixesGravatar Narr the Reg2023-06-1410-110/+192
| | |
* | | Merge pull request #10729 from liamwhite/windows-is-a-memeGravatar bunnei2023-06-142-99/+118
|\ \ \ | |/ / |/| | vfs_real: add file LRU cache for open file limits
| * | vfs_real: require file existence on openGravatar Liam2023-06-131-0/+4
| | |
| * | vfs_real: add simplified open file cacheGravatar Liam2023-06-132-1/+18
| | |
| * | vfs_real: lazily open filesGravatar Liam2023-06-132-11/+3
| | |
| * | vfs_real: add file LRU cache for open file limitsGravatar Liam2023-06-132-100/+106
| | |
* | | Merge pull request #10603 from lat9nq/tz-more-completeGravatar bunnei2023-06-139-693/+297
|\ \ \ | | | | | | | | core,common: Implement missing time zone data/computations
| * | | tz_manager: Fix comparison to wrong integerGravatar lat9nq2023-06-051-1/+1
| | | |
| * | | tz_manager: Implement missing transition timesGravatar lat9nq2023-06-051-1/+59
| | | | | | | | | | | | | | | | time_zone_manager: Use s64 storage
| * | | tz_manager: Warn on unimplemented codeGravatar lat9nq2023-06-051-0/+7
| | | |
| * | | tz_manager: Fix character offset not advancingGravatar lat9nq2023-06-051-0/+1
| | | |
| * | | tz_manager: Fix off-by-one errorGravatar lat9nq2023-06-051-4/+4
| | | |
| * | | time_zone_binary: Add zoneinfo dataGravatar lat9nq2023-06-052-643/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds the basic time zone data for the system archive. time_zone_binary: Implement full system archive time_zone_binary: Remove unneeded template tz_binary: Make GenerateFiles static
| * | | time: Implement missing servicesGravatar Narr the Reg2023-06-057-11/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements GetTotalLocationNameCount LoadLocationNameList and GetTimeZoneRuleVersion. tz-manager: Fix sign issue
| * | | time_zone_manager: Implement go_ahead/go_backGravatar lat9nq2023-06-051-1/+39
| | | |
| * | | tz_content_manager: Try the system time zone firstGravatar lat9nq2023-06-051-2/+9
| | | | | | | | | | | | | | | | | | | | If we can't find the normal time zone string, try searching for the closest one.
| * | | time: Remove auto timezone considerationGravatar lat9nq2023-06-053-33/+3
| | | | | | | | | | | | | | | | | | | | GetTimeZoneString no longer reports a setting unique to yuzu, so we can assume a valid timezone string in core.