Rewrite nvservices (#800)
* Start rewriting nvservices internals TODO: - nvgpu device interface - nvhost generic device interface * Some clean up and fixes - Make sure to remove the fd of a closed channel. - NvFileDevice now doesn't implement Disposable as it was never used. - Rename NvHostCtrlGetConfigurationArgument to GetConfigurationArguments to follow calling convention. - Make sure to check every ioctls magic. * Finalize migration for ioctl standard variant TODO: ioctl2 migration * Implement SubmitGpfifoEx and fix nvdec * Implement Ioctl3 * Implement some ioctl3 required by recent games * Remove unused code and outdated comments * Return valid event handles with QueryEvent Also add an exception for unimplemented event ids. This commit doesn't implement accurately the events, this only define different events for different event ids. * Rename all occurance of FileDevice to DeviceFile * Restub SetClientPid to not cause regressions * Address comments * Remove GlobalStateTable * Address comments * Align variables in ioctl3 * Some missing alignments * GetVaRegionsArguments realign * Make Owner public in NvDeviceFile * Address LDj3SNuD's comments
This commit is contained in:
parent
848cda1837
commit
9426ef3f06
75 changed files with 2798 additions and 2005 deletions
|
@ -0,0 +1,32 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices
|
||||
{
|
||||
enum NvInternalResult : int
|
||||
{
|
||||
Success = 0,
|
||||
OperationNotPermitted = -1,
|
||||
NoEntry = -2,
|
||||
Interrupted = -4,
|
||||
IoError = -5,
|
||||
DeviceNotFound = -6,
|
||||
BadFileNumber = -9,
|
||||
TryAgain = -11,
|
||||
OutOfMemory = -12,
|
||||
AccessDenied = -13,
|
||||
BadAddress = -14,
|
||||
Busy = -16,
|
||||
NotADirectory = -20,
|
||||
InvalidInput = -22,
|
||||
FileTableOverflow = -23,
|
||||
Unknown0x18 = -24,
|
||||
NotSupported = -25,
|
||||
FileTooBig = -27,
|
||||
NoSpaceLeft = -28,
|
||||
ReadOnlyAttribute = -30,
|
||||
NotImplemented = -38,
|
||||
InvalidState = -40,
|
||||
Restart = -85,
|
||||
InvalidAddress = -99,
|
||||
TimedOut = -110,
|
||||
Unknown0x72 = -114,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue