search for: drm_nouveau_vm_bind_op_unmap

Displaying 7 results from an estimated 7 matches for "drm_nouveau_vm_bind_op_unmap".

2023 Dec 25
2
[PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings
...we see the following warnings when running 'make htmldocs': ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_OP_MAP' description in 'drm_nouveau_vm_bind_op' ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_OP_UNMAP' description in 'drm_nouveau_vm_bind_op' ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_SPARSE' description in 'drm_nouveau_vm_bind_op' ./include/uapi/drm/nouveau_drm.h:336: warning: Excess struct member 'DRM_NOUVEAU_VM_B...
2023 Dec 25
1
[PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings
...>> It's not a problem with this patch. >> The #defines for DRM_NOUVEAU_VM_BIND_OP_MAP etc. have a ';' at the >> end of each line: >> >> struct drm_nouveau_vm_bind_op { >> ???? __u32 op; >> #define DRM_NOUVEAU_VM_BIND_OP_MAP 0x0; >> #define DRM_NOUVEAU_VM_BIND_OP_UNMAP 0x1; >> ???? __u32 flags; >> #define DRM_NOUVEAU_VM_BIND_SPARSE (1 << 8); >> ???? __u32 handle; >> ???? __u32 pad; >> ???? __u64 addr; >> ???? __u64 bo_offset; >> ???? __u64 range; >> }; > > Do we actually ever want preprocessor directive...
2023 Dec 25
2
[PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings
...g warnings when running 'make > htmldocs': > > ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_OP_MAP' description in 'drm_nouveau_vm_bind_op' > ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_OP_UNMAP' description in 'drm_nouveau_vm_bind_op' > ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_SPARSE' description in 'drm_nouveau_vm_bind_op' > ./include/uapi/drm/nouveau_drm.h:336: warning: Excess struct member 'DRM_NO...
2023 Jan 27
1
[PATCH drm-next 05/14] drm/nouveau: new VM_BIND uapi interfaces
...GEM object to the GPU's VA space. The mapping must be fully enclosed by >> + * a previously allocated VA space region. If the region is sparse, existing >> + * sparse mappings are overwritten. >> + */ >> +#define DRM_NOUVEAU_VM_BIND_OP_MAP 0x2 >> +/** >> + * @DRM_NOUVEAU_VM_BIND_OP_UNMAP: >> + * >> + * Unmap an existing mapping in the GPU's VA space. If the region the mapping >> + * is located in is a sparse region, new sparse mappings are created where the >> + * unmapped (memory backed) mapping was mapped previously. >> + */ >> +#define DRM...
2023 Jan 27
1
[PATCH drm-next 05/14] drm/nouveau: new VM_BIND uapi interfaces
...st be >>> fully enclosed by >>> + * a previously allocated VA space region. If the region is sparse, >>> existing >>> + * sparse mappings are overwritten. >>> + */ >>> +#define DRM_NOUVEAU_VM_BIND_OP_MAP 0x2 >>> +/** >>> + * @DRM_NOUVEAU_VM_BIND_OP_UNMAP: >>> + * >>> + * Unmap an existing mapping in the GPU's VA space. If the region >>> the mapping >>> + * is located in is a sparse region, new sparse mappings are >>> created where the >>> + * unmapped (memory backed) mapping was mapped pre...
2023 Jul 25
1
[PATCH drm-misc-next v8 03/12] drm/nouveau: new VM_BIND uapi interfaces
...EM object to the GPU's VA space. Optionally, the > + * &DRM_NOUVEAU_VM_BIND_SPARSE flag can be passed to instruct the > kernel to > + * create sparse mappings for the given range. > + */ > +#define DRM_NOUVEAU_VM_BIND_OP_MAP 0x0 > +/** > + * @DRM_NOUVEAU_VM_BIND_OP_UNMAP: > + * > + * Unmap an existing mapping in the GPU's VA space. If the region > the mapping > + * is located in is a sparse region, new sparse mappings are > created where the > + * unmapped (memory backed) mapping was mapped previously. To > remov...
2023 Jan 27
0
[PATCH drm-next 05/14] drm/nouveau: new VM_BIND uapi interfaces
...g must be fully enclosed by >>>> + * a previously allocated VA space region. If the region is sparse, existing >>>> + * sparse mappings are overwritten. >>>> + */ >>>> +#define DRM_NOUVEAU_VM_BIND_OP_MAP 0x2 >>>> +/** >>>> + * @DRM_NOUVEAU_VM_BIND_OP_UNMAP: >>>> + * >>>> + * Unmap an existing mapping in the GPU's VA space. If the region the mapping >>>> + * is located in is a sparse region, new sparse mappings are created where the >>>> + * unmapped (memory backed) mapping was mapped previously. &gt...