You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tested on real hardware: PAL SCPH-50004 with a clone adapter (Spartan-3 XC3S50AN + JM20330, board rev 080825V9) and a 4 TB GPT/exFAT drive.
Test build: current master (a13b5971) plus only this PR's diff, fully stock bdm/bdmfs_fatfs/ata_bd modules — none of the out-of-tree patches. Baseline for comparison: stock master fails mass0: mount on this adapter with -EIO, because the falsely asserted SPD_CAPS_DVR bit truncates capacity to 28-bit and GPT parsing rejects the disk.
The runtime detection fires correctly on this adapter (SPD_REG16(0x20) != 1), ata_dvrp_workaround is cleared, the full capacity is reported and the GPT/exFAT volume mounts and enumerates. This supersedes #914 nicely — closing that one.
Scope note for anyone reading along: data transfers beyond 128 GiB on these clones still hit two separate hardware faults (DMA address wrap and a multi-sector PIO burst limit) that this PR does not claim to address; characterization at https://github.com/LAP87/ps2-gamestar-pio.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes and fixes #914