Re: [PATCH v3 05/14] drm/panthor: Add GEM logical block

2024-01-15 Thread Boris Brezillon
On Thu, 7 Dec 2023 16:38:33 + Steven Price wrote: > > + > > + ret = panthor_vm_unmap_range(vm, bo->va_node.start, > > +panthor_kernel_bo_size(bo)); > > + if (ret) > > + goto out_free_bo; > > + > > + panthor_vm_free_va(vm, &bo->va_node); > > +

Re: [PATCH v3 05/14] drm/panthor: Add GEM logical block

2023-12-07 Thread Steven Price
On 04/12/2023 17:32, Boris Brezillon wrote: > Anything relating to GEM object management is placed here. Nothing > particularly interesting here, given the implementation is based on > drm_gem_shmem_object, which is doing most of the work. > > v3: > - Add acks for the MIT/GPL2 relicensing > - Prov

[PATCH v3 05/14] drm/panthor: Add GEM logical block

2023-12-04 Thread Boris Brezillon
Anything relating to GEM object management is placed here. Nothing particularly interesting here, given the implementation is based on drm_gem_shmem_object, which is doing most of the work. v3: - Add acks for the MIT/GPL2 relicensing - Provide a panthor_kernel_bo abstraction for buffer objects man