summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_global.c
diff options
context:
space:
mode:
authorGabriel Krisman Bertazi <krisman@collabora.co.uk>2016-12-30 12:50:49 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2016-12-30 12:52:10 +0100
commitb834ff86a61c236282e68890c17316f6928eebad (patch)
treebd08fb00bbf0acdf90bcb60b800cc6ecf10e311f /drivers/gpu/drm/drm_global.c
parent5bbf92d3eb01cb5adcf613e2532dc918172c598f (diff)
downloadop-kernel-dev-b834ff86a61c236282e68890c17316f6928eebad.zip
op-kernel-dev-b834ff86a61c236282e68890c17316f6928eebad.tar.gz
drm: Update TTM initialization documentation
ttm_global_reference was renamed to drm_global_reference. This updates the documentation to reflect that. While we are there, document the drm_global_reference API and update the initialization interface documentation. Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.co.uk> [danvet: Keep the warning, ttm docs are still massively inadequate.] Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20161228143216.26821-7-krisman@collabora.co.uk
Diffstat (limited to 'drivers/gpu/drm/drm_global.c')
-rw-r--r--drivers/gpu/drm/drm_global.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_global.c b/drivers/gpu/drm/drm_global.c
index b404287..b2dc21e 100644
--- a/drivers/gpu/drm/drm_global.c
+++ b/drivers/gpu/drm/drm_global.c
@@ -63,6 +63,18 @@ void drm_global_release(void)
}
}
+/**
+ * drm_global_item_ref - Initialize and acquire reference to memory
+ * object
+ * @ref: Object for initialization
+ *
+ * This initializes a memory object, allocating memory and calling the
+ * .init() hook. Further calls will increase the reference count for
+ * that item.
+ *
+ * Returns:
+ * Zero on success, non-zero otherwise.
+ */
int drm_global_item_ref(struct drm_global_reference *ref)
{
int ret = 0;
@@ -97,6 +109,17 @@ error_unlock:
}
EXPORT_SYMBOL(drm_global_item_ref);
+/**
+ * drm_global_item_unref - Drop reference to memory
+ * object
+ * @ref: Object being removed
+ *
+ * Drop a reference to the memory object and eventually call the
+ * release() hook. The allocated object should be dropped in the
+ * release() hook or before calling this function
+ *
+ */
+
void drm_global_item_unref(struct drm_global_reference *ref)
{
struct drm_global_item *item = &glob[ref->global_type];
OpenPOWER on IntegriCloud