aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Nv/NvIoctl.cs
blob: 40e35fa7aaac568ef9db25903b59e8f7e1a78459 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Runtime.InteropServices;

namespace Ryujinx.HLE.HOS.Services.Nv
{
    [StructLayout(LayoutKind.Sequential)]
    struct NvIoctl
    {
        public const int NvHostCustomMagic = 0x00;
        public const int NvMapCustomMagic = 0x01;
        public const int NvGpuAsMagic = 0x41;
        public const int NvGpuMagic = 0x47;
        public const int NvHostMagic = 0x48;

        private const int NumberBits = 8;
        private const int TypeBits = 8;
        private const int SizeBits = 14;
        private const int DirectionBits = 2;

        private const int NumberShift = 0;
        private const int TypeShift = NumberShift + NumberBits;
        private const int SizeShift = TypeShift + TypeBits;
        private const int DirectionShift = SizeShift + SizeBits;

        private const int NumberMask = (1 << NumberBits) - 1;
        private const int TypeMask = (1 << TypeBits) - 1;
        private const int SizeMask = (1 << SizeBits) - 1;
        private const int DirectionMask = (1 << DirectionBits) - 1;

        [Flags]
        public enum Direction : uint
        {
            None = 0,
            Read = 1,
            Write = 2,
        }

        public uint RawValue;

        public readonly uint Number => (RawValue >> NumberShift) & NumberMask;
        public readonly uint Type => (RawValue >> TypeShift) & TypeMask;
        public readonly uint Size => (RawValue >> SizeShift) & SizeMask;
        public readonly Direction DirectionValue => (Direction)((RawValue >> DirectionShift) & DirectionMask);
    }
}