Message ID | 20241016032518.539495-16-matthew.brost@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Introduce GPU SVM and Xe SVM implementation | expand |
On Tue, 2024-10-15 at 20:25 -0700, Matthew Brost wrote: > Support for system allocator bindings in SRAM fully in place, enable > the > implementation. > > Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> > --- > drivers/gpu/drm/xe/xe_vm.c | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c > index 158fbb1c3f28..8eed820079ba 100644 > --- a/drivers/gpu/drm/xe/xe_vm.c > +++ b/drivers/gpu/drm/xe/xe_vm.c > @@ -2962,12 +2962,6 @@ static int vm_bind_ioctl_check_args(struct > xe_device *xe, > u16 pat_index = (*bind_ops)[i].pat_index; > u16 coh_mode; > > - /* FIXME: Disabling system allocator for now */ > - if (XE_IOCTL_DBG(xe, is_system_allocator)) { > - err = -EOPNOTSUPP; > - goto free_bind_ops; > - } > - > if (XE_IOCTL_DBG(xe, pat_index >= xe- > >pat.n_entries)) { > err = -EINVAL; > goto free_bind_ops;
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c index 158fbb1c3f28..8eed820079ba 100644 --- a/drivers/gpu/drm/xe/xe_vm.c +++ b/drivers/gpu/drm/xe/xe_vm.c @@ -2962,12 +2962,6 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, u16 pat_index = (*bind_ops)[i].pat_index; u16 coh_mode; - /* FIXME: Disabling system allocator for now */ - if (XE_IOCTL_DBG(xe, is_system_allocator)) { - err = -EOPNOTSUPP; - goto free_bind_ops; - } - if (XE_IOCTL_DBG(xe, pat_index >= xe->pat.n_entries)) { err = -EINVAL; goto free_bind_ops;
Support for system allocator bindings in SRAM fully in place, enable the implementation. Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- drivers/gpu/drm/xe/xe_vm.c | 6 ------ 1 file changed, 6 deletions(-)