mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
mfc: Fix support for list transfer stall bit with partial support for out of order execution - Also give Sync commands a size so they are properly detected by queue checks
This commit is contained in:
parent
8b476b5bfa
commit
34e01ba3d8
3 changed files with 135 additions and 106 deletions
|
@ -815,7 +815,7 @@ void SPUThread::process_mfc_cmd()
|
|||
case MFC_GETLB_CMD:
|
||||
case MFC_GETLF_CMD:
|
||||
{
|
||||
if (ch_mfc_cmd.size <= max_imm_dma_size && mfc_queue.size() == 0 && (ch_stall_mask & (1u << ch_mfc_cmd.tag)) == 0)
|
||||
if (ch_mfc_cmd.size <= max_imm_dma_size && mfc_queue.size() == 0)
|
||||
{
|
||||
vm::reader_lock lock(vm::try_to_lock);
|
||||
|
||||
|
@ -890,7 +890,7 @@ void SPUThread::process_mfc_cmd()
|
|||
case MFC_EIEIO_CMD:
|
||||
case MFC_SYNC_CMD:
|
||||
{
|
||||
ch_mfc_cmd.size = 0;
|
||||
ch_mfc_cmd.size = 1;
|
||||
|
||||
if (mfc_queue.size() == 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue