RE: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property

2025-04-03 Thread Cavitt, Jonathan
; Wajdeczko, Michal ; Mrozek, Michal ; Jadav, Raag ; Harrison, John C Subject: Re: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property > > On Thu, Apr 03, 2025 at 09:24:47AM -0700, Cavitt, Jonathan wrote: > > -Original Message- > > From: Briano, Ivan > >

Re: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property

2025-04-03 Thread ivan.briano
inux.intel.com; Brost, Matthew ; > Zhang, Jianxun ; Lin, Shuicheng > ; dri-devel@lists.freedesktop.org; Wajdeczko, Michal > ; Mrozek, Michal ; > Jadav, Raag ; Harrison, John C > > Subject: Re: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property > > > > On Tue

RE: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property

2025-04-03 Thread Cavitt, Jonathan
; Wajdeczko, Michal ; Mrozek, Michal ; Jadav, Raag ; Harrison, John C Subject: Re: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property > > On Tue, Apr 01, 2025 at 10:26:54PM +, Jonathan Cavitt wrote: > > +/** struct xe_vm_fault - Describes faults for > > %DRM_XE_VM_G

Re: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property

2025-04-02 Thread Jianxun Zhang
On 4/2/25 18:19, Jianxun Zhang wrote: On 4/1/25 15:26, Jonathan Cavitt wrote: Add initial declarations for the drm_xe_vm_get_property ioctl. v2: - Expand kernel docs for drm_xe_vm_get_property (Jianxun) v3: - Remove address type external definitions (Jianxun) - Add fault type to xe_drm_fa

Re: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property

2025-04-02 Thread Jianxun Zhang
On 4/1/25 15:26, Jonathan Cavitt wrote: Add initial declarations for the drm_xe_vm_get_property ioctl. v2: - Expand kernel docs for drm_xe_vm_get_property (Jianxun) v3: - Remove address type external definitions (Jianxun) - Add fault type to xe_drm_fault struct (Jianxun) v4: - Remove engine

Re: [PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property

2025-04-02 Thread ivan.briano
On Tue, Apr 01, 2025 at 10:26:54PM +, Jonathan Cavitt wrote: > +/** struct xe_vm_fault - Describes faults for %DRM_XE_VM_GET_PROPERTY_FAULTS > */ > +struct xe_vm_fault { > + /** @address: Address of the fault */ > + __u64 address; > + /** @address_precision: Precision of faulted ad

[PATCH v16 3/5] drm/xe/uapi: Define drm_xe_vm_get_property

2025-04-01 Thread Jonathan Cavitt
Add initial declarations for the drm_xe_vm_get_property ioctl. v2: - Expand kernel docs for drm_xe_vm_get_property (Jianxun) v3: - Remove address type external definitions (Jianxun) - Add fault type to xe_drm_fault struct (Jianxun) v4: - Remove engine class and instance (Ivan) Signed-off-by: Jo