libnx  v4.7.0
ioctl.h
1 #pragma once
2 #include "types.h"
3 
4 // The below defines are based on Linux kernel ioctl.h.
5 #define _NV_IOC_NRBITS 8
6 #define _NV_IOC_TYPEBITS 8
7 #define _NV_IOC_SIZEBITS 14
8 #define _NV_IOC_DIRBITS 2
9 
10 #define _NV_IOC_NRMASK ((1 << _NV_IOC_NRBITS)-1)
11 #define _NV_IOC_TYPEMASK ((1 << _NV_IOC_TYPEBITS)-1)
12 #define _NV_IOC_SIZEMASK ((1 << _NV_IOC_SIZEBITS)-1)
13 #define _NV_IOC_DIRMASK ((1 << _NV_IOC_DIRBITS)-1)
14 
15 #define _NV_IOC_NRSHIFT 0
16 #define _NV_IOC_TYPESHIFT (_NV_IOC_NRSHIFT+_NV_IOC_NRBITS)
17 #define _NV_IOC_SIZESHIFT (_NV_IOC_TYPESHIFT+_NV_IOC_TYPEBITS)
18 #define _NV_IOC_DIRSHIFT (_NV_IOC_SIZESHIFT+_NV_IOC_SIZEBITS)
19 
20 // Direction bits.
21 #define _NV_IOC_NONE 0U
22 #define _NV_IOC_WRITE 1U
23 #define _NV_IOC_READ 2U
24 
25 #define _NV_IOC(dir,type,nr,size) \
26  (((dir) << _NV_IOC_DIRSHIFT) | \
27  ((type) << _NV_IOC_TYPESHIFT) | \
28  ((nr) << _NV_IOC_NRSHIFT) | \
29  ((size) << _NV_IOC_SIZESHIFT))
30 
31 /* used to create numbers */
32 #define _NV_IO(type,nr) _NV_IOC(_NV_IOC_NONE,(type),(nr),0)
33 #define _NV_IOR(type,nr,size) _NV_IOC(_NV_IOC_READ,(type),(nr),sizeof(size))
34 #define _NV_IOW(type,nr,size) _NV_IOC(_NV_IOC_WRITE,(type),(nr),sizeof(size))
35 #define _NV_IOWR(type,nr,size) _NV_IOC(_NV_IOC_READ|_NV_IOC_WRITE,(type),(nr),sizeof(size))
36 
37 /* used to decode ioctl numbers.. */
38 #define _NV_IOC_DIR(nr) (((nr) >> _NV_IOC_DIRSHIFT) & _NV_IOC_DIRMASK)
39 #define _NV_IOC_TYPE(nr) (((nr) >> _NV_IOC_TYPESHIFT) & _NV_IOC_TYPEMASK)
40 #define _NV_IOC_NR(nr) (((nr) >> _NV_IOC_NRSHIFT) & _NV_IOC_NRMASK)
41 #define _NV_IOC_SIZE(nr) (((nr) >> _NV_IOC_SIZESHIFT) & _NV_IOC_SIZEMASK)
42 
43 #define __nv_in
44 #define __nv_out
45 #define __nv_inout
46 
47 typedef struct {
48  u32 width_align_pixels; // 0x20 (32)
49  u32 height_align_pixels; // 0x20 (32)
50  u32 pixel_squares_by_aliquots; // 0x400 (1024)
51  u32 aliquot_total; // 0x800 (2048)
52  u32 region_byte_multiplier; // 0x20 (32)
53  u32 region_header_size; // 0x20 (32)
54  u32 subregion_header_size; // 0xC0 (192)
55  u32 subregion_width_align_pixels; // 0x20 (32)
56  u32 subregion_height_align_pixels; // 0x40 (64)
57  u32 subregion_count; // 0x10 (16)
59 
60 typedef struct {
61  u32 color_ds[4];
62  u32 color_l2[4];
63  u32 depth;
64  u32 ref_cnt;
65  u32 format;
66  u32 type;
67  u32 size;
69 
70 typedef struct {
71  u32 arch; // 0x120 (NVGPU_GPU_ARCH_GM200)
72  u32 impl; // 0xB (NVGPU_GPU_IMPL_GM20B)
73  u32 rev; // 0xA1 (Revision A1)
74  u32 num_gpc; // 0x1
75  u64 L2_cache_size; // 0x40000
76  u64 on_board_video_memory_size; // 0x0 (not used)
77  u32 num_tpc_per_gpc; // 0x2
78  u32 bus_type; // 0x20 (NVGPU_GPU_BUS_TYPE_AXI)
79  u32 big_page_size; // 0x20000
80  u32 compression_page_size; // 0x20000
81  u32 pde_coverage_bit_count; // 0x1B
82  u32 available_big_page_sizes; // 0x30000
83  u32 gpc_mask; // 0x1
84  u32 sm_arch_sm_version; // 0x503 (Maxwell Generation 5.0.3?)
85  u32 sm_arch_spa_version; // 0x503 (Maxwell Generation 5.0.3?)
86  u32 sm_arch_warp_count; // 0x80
87  u32 gpu_va_bit_count; // 0x28
88  u32 reserved; // NULL
89  u64 flags; // 0x55
90  u32 twod_class; // 0x902D (FERMI_TWOD_A)
91  u32 threed_class; // 0xB197 (MAXWELL_B)
92  u32 compute_class; // 0xB1C0 (MAXWELL_COMPUTE_B)
93  u32 gpfifo_class; // 0xB06F (MAXWELL_CHANNEL_GPFIFO_A)
94  u32 inline_to_memory_class; // 0xA140 (KEPLER_INLINE_TO_MEMORY_B)
95  u32 dma_copy_class; // 0xB0B5 (MAXWELL_DMA_COPY_A)
96  u32 max_fbps_count; // 0x1
97  u32 fbp_en_mask; // 0x0 (disabled)
98  u32 max_ltc_per_fbp; // 0x2
99  u32 max_lts_per_ltc; // 0x1
100  u32 max_tex_per_tpc; // 0x0 (not supported)
101  u32 max_gpc_count; // 0x1
102  u32 rop_l2_en_mask_0; // 0x21D70 (fuse_status_opt_rop_l2_fbp_r)
103  u32 rop_l2_en_mask_1; // 0x0
104  u64 chipname; // 0x6230326D67 ("gm20b")
105  u64 gr_compbit_store_base_hw; // 0x0 (not supported)
107 
108 typedef struct {
109  u64 offset;
110  u32 page_size;
111  u32 pad;
112  u64 pages;
114 
115 typedef struct {
116  u32 slot; // always 0x07 (?)
117  u32 mask;
119 
120 typedef struct {
121  u64 timestamp;
122  u64 reserved;
124 
125 typedef struct {
126  u32 id;
127  u32 value;
128 } nvioctl_fence;
129 
130 typedef struct {
131  union {
132  u64 desc;
133  u32 desc32[2];
134  };
136 
137 typedef struct {
138  u32 mem;
139  u32 offset;
140  u32 words;
142 
143 typedef struct {
144  u32 cmdbuf_mem;
145  u32 cmdbuf_offset;
146  u32 target;
147  u32 target_offset;
148 } nvioctl_reloc;
149 
150 typedef struct {
151  u32 shift;
153 
154 typedef struct {
155  u32 syncpt_id;
156  u32 syncpt_incrs;
158 
159 typedef struct {
160  u32 handle;
161  u32 iova;
163 
164 typedef struct {
165  u32 rate;
166  u32 moduleid;
168 
169 #define NVGPU_ZBC_TYPE_INVALID 0
170 #define NVGPU_ZBC_TYPE_COLOR 1
171 #define NVGPU_ZBC_TYPE_DEPTH 2
172 
173 // Used with nvioctlNvmap_Param().
174 typedef enum nvioctl_map_param {
175  NvMapParam_Size = 1,
176  NvMapParam_Alignment = 2,
177  NvMapParam_Base = 3,
178  NvMapParam_Heap = 4,
179  NvMapParam_Kind = 5
180 } NvMapParam;
181 
182 // Used with nvioctlChannel_AllocObjCtx().
183 typedef enum nvioctl_channel_obj_classnum {
184  NvClassNumber_2D = 0x902D,
185  NvClassNumber_3D = 0xB197,
186  NvClassNumber_Compute = 0xB1C0,
187  NvClassNumber_Kepler = 0xA140,
188  NvClassNumber_DMA = 0xB0B5,
189  NvClassNumber_ChannelGpfifo = 0xB06F
190 } NvClassNumber;
191 
192 // Used with nvioctlChannel_SetPriority().
193 typedef enum nvioctl_channel_priority {
194  NvChannelPriority_Low = 50,
195  NvChannelPriority_Medium = 100,
196  NvChannelPriority_High = 150
197 } NvChannelPriority;
198 
199 // Used with nvioctlChannel_ZCullBind().
200 typedef enum {
201  NvZcullConfig_Global = 0,
202  NvZcullConfig_NoCtxSwitch = 1,
203  NvZcullConfig_SeparateBuffer = 2,
204  NvZcullConfig_PartOfRegularBuffer = 3
205 } NvZcullConfig;
206 
207 // Used with nvioctlNvhostAsGpu_AllocSpace().
208 typedef enum {
209  NvAllocSpaceFlags_FixedOffset = 1,
210  NvAllocSpaceFlags_Sparse = 2,
211 } NvAllocSpaceFlags;
212 
213 // Used with nvioctlNvhostAsGpu_MapBufferEx().
214 typedef enum {
215  NvMapBufferFlags_FixedOffset = 1,
216  NvMapBufferFlags_IsCacheable = 4,
217  NvMapBufferFlags_Modify = 0x100,
218 } NvMapBufferFlags;
219 
220 typedef enum {
221  NvNotificationType_FifoErrorIdleTimeout=8,
222  NvNotificationType_GrErrorSwNotify=13,
223  NvNotificationType_GrSemaphoreTimeout=24,
224  NvNotificationType_GrIllegalNotify=25,
225  NvNotificationType_FifoErrorMmuErrFlt=31,
226  NvNotificationType_PbdmaError=32,
227  NvNotificationType_ResetChannelVerifError=43,
228  NvNotificationType_PbdmaPushbufferCrcMismatch=80
229 } NvNotificationType;
230 
231 typedef struct {
232  u64 timestamp;
233  u32 info32; // see NvNotificationType
234  u16 info16;
235  u16 status; // always -1
237 
238 typedef struct {
239  u32 type;
240  u32 info[31];
241 } NvError;
242 
243 Result nvioctlNvhostCtrl_SyncptRead(u32 fd, u32 id, u32* out);
244 Result nvioctlNvhostCtrl_SyncptIncr(u32 fd, u32 id);
245 Result nvioctlNvhostCtrl_SyncptWait(u32 fd, u32 id, u32 threshold, u32 timeout);
246 Result nvioctlNvhostCtrl_EventSignal(u32 fd, u32 event_id);
247 Result nvioctlNvhostCtrl_EventWait(u32 fd, u32 syncpt_id, u32 threshold, s32 timeout, u32 event_id, u32 *out);
248 Result nvioctlNvhostCtrl_EventWaitAsync(u32 fd, u32 syncpt_id, u32 threshold, s32 timeout, u32 event_id);
249 Result nvioctlNvhostCtrl_EventRegister(u32 fd, u32 event_id);
250 Result nvioctlNvhostCtrl_EventUnregister(u32 fd, u32 event_id);
251 
252 Result nvioctlNvhostCtrlGpu_ZCullGetCtxSize(u32 fd, u32 *out);
253 Result nvioctlNvhostCtrlGpu_ZCullGetInfo(u32 fd, nvioctl_zcull_info *out);
254 Result nvioctlNvhostCtrlGpu_ZbcSetTable(u32 fd, const u32 color_ds[4], const u32 color_l2[4], u32 depth, u32 format, u32 type);
255 Result nvioctlNvhostCtrlGpu_ZbcQueryTable(u32 fd, u32 index, nvioctl_zbc_entry *out);
256 Result nvioctlNvhostCtrlGpu_GetCharacteristics(u32 fd, nvioctl_gpu_characteristics *out);
257 Result nvioctlNvhostCtrlGpu_GetTpcMasks(u32 fd, void *buffer, size_t size);
258 Result nvioctlNvhostCtrlGpu_ZbcGetActiveSlotMask(u32 fd, nvioctl_zbc_slot_mask *out);
259 Result nvioctlNvhostCtrlGpu_GetGpuTime(u32 fd, nvioctl_gpu_time *out);
260 
261 Result nvioctlNvhostAsGpu_BindChannel(u32 fd, u32 channel_fd);
262 Result nvioctlNvhostAsGpu_AllocSpace(u32 fd, u32 pages, u32 page_size, u32 flags, u64 align_or_offset, u64 *offset);
263 Result nvioctlNvhostAsGpu_FreeSpace(u32 fd, u64 offset, u32 pages, u32 page_size);
264 Result nvioctlNvhostAsGpu_MapBufferEx(u32 fd, u32 flags, u32 kind, u32 nvmap_handle, u32 page_size, u64 buffer_offset, u64 mapping_size, u64 input_offset, u64 *offset);
265 Result nvioctlNvhostAsGpu_UnmapBuffer(u32 fd, u64 offset);
266 Result nvioctlNvhostAsGpu_GetVARegions(u32 fd, nvioctl_va_region regions[2]);
267 Result nvioctlNvhostAsGpu_InitializeEx(u32 fd, u32 flags, u32 big_page_size);
268 
269 Result nvioctlNvmap_Create(u32 fd, u32 size, u32 *nvmap_handle);
270 Result nvioctlNvmap_FromId(u32 fd, u32 id, u32 *nvmap_handle);
271 Result nvioctlNvmap_Alloc(u32 fd, u32 nvmap_handle, u32 heapmask, u32 flags, u32 align, u8 kind, void* addr);
272 Result nvioctlNvmap_Free(u32 fd, u32 nvmap_handle);
273 Result nvioctlNvmap_Param(u32 fd, u32 nvmap_handle, NvMapParam param, u32 *result);
274 Result nvioctlNvmap_GetId(u32 fd, u32 nvmap_handle, u32 *id);
275 
276 Result nvioctlChannel_SetNvmapFd(u32 fd, u32 nvmap_fd);
277 Result nvioctlChannel_SubmitGpfifo(u32 fd, nvioctl_gpfifo_entry *entries, u32 num_entries, u32 flags, nvioctl_fence *fence_inout);
278 Result nvioctlChannel_KickoffPb(u32 fd, nvioctl_gpfifo_entry *entries, u32 num_entries, u32 flags, nvioctl_fence *fence_inout);
279 Result nvioctlChannel_AllocObjCtx(u32 fd, u32 class_num, u32 flags, u64* id_out);
280 Result nvioctlChannel_ZCullBind(u32 fd, u64 gpu_va, u32 mode);
281 Result nvioctlChannel_SetErrorNotifier(u32 fd, u32 enable);
282 Result nvioctlChannel_GetErrorInfo(u32 fd, NvError* out);
283 Result nvioctlChannel_GetErrorNotification(u32 fd, NvNotification* out);
284 Result nvioctlChannel_SetPriority(u32 fd, u32 priority);
285 Result nvioctlChannel_SetTimeout(u32 fd, u32 timeout);
286 Result nvioctlChannel_AllocGpfifoEx2(u32 fd, u32 num_entries, u32 flags, u32 unk0, u32 unk1, u32 unk2, u32 unk3, nvioctl_fence *fence_out);
287 Result nvioctlChannel_SetUserData(u32 fd, void* addr);
288 Result nvioctlChannel_Submit(u32 fd, const nvioctl_cmdbuf *cmdbufs, u32 num_cmdbufs, const nvioctl_reloc *relocs, const nvioctl_reloc_shift *reloc_shifts, u32 num_relocs,
289  const nvioctl_syncpt_incr *syncpt_incrs, u32 num_syncpt_incrs, nvioctl_fence *fences, u32 num_fences);
290 Result nvioctlChannel_GetSyncpt(u32 fd, u32 module_id, u32 *syncpt);
291 Result nvioctlChannel_GetModuleClockRate(u32 fd, u32 module_id, u32 *freq);
292 Result nvioctlChannel_SetModuleClockRate(u32 fd, u32 module_id, u32 freq);
293 Result nvioctlChannel_MapCommandBuffer(u32 fd, nvioctl_command_buffer_map *maps, u32 num_maps, bool compressed);
294 Result nvioctlChannel_UnmapCommandBuffer(u32 fd, const nvioctl_command_buffer_map *maps, u32 num_maps, bool compressed);
295 Result nvioctlChannel_SetSubmitTimeout(u32 fd, u32 timeout);
Definition: ioctl.h:238
Definition: ioctl.h:231
Definition: ioctl.h:164
Definition: ioctl.h:137
Definition: ioctl.h:159
Definition: ioctl.h:125
Definition: ioctl.h:130
Definition: ioctl.h:70
Definition: ioctl.h:120
Definition: ioctl.h:150
Definition: ioctl.h:143
Definition: ioctl.h:154
Definition: ioctl.h:108
Definition: ioctl.h:60
Definition: ioctl.h:115
Definition: ioctl.h:47
Various system types.
uint64_t u64
64-bit unsigned integer.
Definition: types.h:22
uint8_t u8
8-bit unsigned integer.
Definition: types.h:19
uint16_t u16
16-bit unsigned integer.
Definition: types.h:20
u32 Result
Function error code result type.
Definition: types.h:44
int32_t s32
32-bit signed integer.
Definition: types.h:27
uint32_t u32
32-bit unsigned integer.
Definition: types.h:21