diff options
author | Thierry Reding <treding@nvidia.com> | 2022-03-24 13:30:25 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2022-04-06 16:12:36 +0300 |
commit | 3e9c4584336149146fe15cb5703fc10a2ca2d2a0 (patch) | |
tree | ce6d362db2350799672bcb167c46d0105d7bade9 /include/linux/host1x.h | |
parent | fe696ccb277d332dc4e625b5b20b988b04d16c04 (diff) | |
download | linux-3e9c4584336149146fe15cb5703fc10a2ca2d2a0.tar.xz |
gpu: host1x: Do not use mapping cache for job submissions
Buffer mappings used in job submissions are usually small and not
rapidly reused as opposed to framebuffers (which are usually large and
rapidly reused, for example when page-flipping between double-buffered
framebuffers). Avoid going through the mapping cache for these buffers
since the cache would also lead to leaks if nobody is ever releasing
the cache's last reference. For DRM/KMS these last references are
dropped when the framebuffers are removed and therefore no longer
needed.
While at it, also add a note about the need to explicitly remove the
final reference to the mapping in the cache.
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'include/linux/host1x.h')
-rw-r--r-- | include/linux/host1x.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/host1x.h b/include/linux/host1x.h index 00278853eadf..c0bf4e581fe9 100644 --- a/include/linux/host1x.h +++ b/include/linux/host1x.h @@ -31,6 +31,11 @@ u64 host1x_get_dma_mask(struct host1x *host1x); * struct host1x_bo_cache - host1x buffer object cache * @mappings: list of mappings * @lock: synchronizes accesses to the list of mappings + * + * Note that entries are not periodically evicted from this cache and instead need to be + * explicitly released. This is used primarily for DRM/KMS where the cache's reference is + * released when the last reference to a buffer object represented by a mapping in this + * cache is dropped. */ struct host1x_bo_cache { struct list_head mappings; |