Displaying 6 results from an estimated 6 matches for "radeon_gem_object_create".
2020 Sep 15
1
[PATCH v2 12/21] drm/radeon: Introduce GEM object functions
GEM object functions deprecate several similar callback interfaces in
struct drm_driver. This patch replaces the per-driver callbacks with
per-instance callbacks in radeon.
v2:
* move object-function instance to radeon_gem.c (Christian)
* set callbacks in radeon_gem_object_create() (Christian)
Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de>
---
drivers/gpu/drm/radeon/radeon_drv.c | 23 +--------------------
drivers/gpu/drm/radeon/radeon_gem.c | 31 +++++++++++++++++++++++++----
2 files changed, 28 insertions(+), 26 deletions(-)
diff --git a/drivers/gpu/dr...
2020 Sep 15
0
[PATCH v2 12/21] drm/radeon: Introduce GEM object functions
...rmann:
> GEM object functions deprecate several similar callback interfaces in
> struct drm_driver. This patch replaces the per-driver callbacks with
> per-instance callbacks in radeon.
>
> v2:
> * move object-function instance to radeon_gem.c (Christian)
> * set callbacks in radeon_gem_object_create() (Christian)
>
> Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de>
Reviewed-by: Christian K?nig <christian.koenig at amd.com>
> ---
> drivers/gpu/drm/radeon/radeon_drv.c | 23 +--------------------
> drivers/gpu/drm/radeon/radeon_gem.c | 31 +++++++++++++++++...
2010 Aug 17
0
Re: [GIT PULL] devel/pat + devel/kms.fixes-0.5 on RV730 PRO [Radeon HD 4650]
...021>] ? ttm_buffer_object_init+0x333/0x35c [ttm]
> [<ffffffff8121b817>] __list_add+0x68/0x81
> [<ffffffffa00d69e7>] radeon_object_create+0x1cd/0x1e2 [radeon]
> [<ffffffffa00d67d2>] ? radeon_ttm_object_object_destroy+0x0/0x48 [radeon]
> [<ffffffffa00e0bc6>] radeon_gem_object_create+0x8b/0xf9 [radeon]
> [<ffffffff810449ef>] ? __wake_up+0x3f/0x48
> [<ffffffffa00e0c34>] ? radeon_gem_create_ioctl+0x0/0xda [radeon]
> [<ffffffffa00e0c89>] radeon_gem_create_ioctl+0x55/0xda [radeon]
> [<ffffffff811d6339>] ? avc_has_perm+0x57/0x69
> [<fff...
2010 Aug 18
2
Re: [GIT PULL] devel/pat + devel/kms.fixes-0.5 on RV730 PRO [Radeon HD 4650] Stack trace
...021>] ? ttm_buffer_object_init+0x333/0x35c [ttm]
> [<ffffffff8121b817>] __list_add+0x68/0x81
> [<ffffffffa00d69e7>] radeon_object_create+0x1cd/0x1e2 [radeon]
> [<ffffffffa00d67d2>] ? radeon_ttm_object_object_destroy+0x0/0x48 [radeon]
> [<ffffffffa00e0bc6>] radeon_gem_object_create+0x8b/0xf9 [radeon]
> [<ffffffff810449ef>] ? __wake_up+0x3f/0x48
> [<ffffffffa00e0c34>] ? radeon_gem_create_ioctl+0x0/0xda [radeon]
> [<ffffffffa00e0c89>] radeon_gem_create_ioctl+0x55/0xda [radeon]
> [<ffffffff811d6339>] ? avc_has_perm+0x57/0x69
> [<fff...
2020 Sep 23
25
[PATCH v3 00/22] Convert all remaining drivers to GEM object functions
The GEM and PRIME related callbacks in struct drm_driver are deprecated in
favor of GEM object functions in struct drm_gem_object_funcs. This patchset
converts the remaining drivers to object functions and removes most of the
obsolete interfaces.
Version 3 of this patchset mostly fixes drm_gem_prime_handle_to_fd and
updates i.MX's dcss driver. The driver was missing from earlier versions
and
2020 Sep 15
40
[PATCH v2 00/21] Convert all remaining drivers to GEM object functions
The GEM and PRIME related callbacks in struct drm_driver are deprecated in
favor of GEM object functions in struct drm_gem_object_funcs. This patchset
converts the remaining drivers to object functions and removes most of the
obsolete interfaces.
Patches #1 to #16 and #18 to #19 convert DRM drivers to GEM object functions,
one by one. Each patch moves existing callbacks from struct drm_driver to