LCOV - code coverage report
Current view: top level - drivers/gpu/drm/i915/gem - i915_gem_context.h (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 73 0.0 %
Date: 2022-03-28 16:04:14 Functions: 0 2 0.0 %
Branches: 0 12 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * SPDX-License-Identifier: MIT
       3                 :            :  *
       4                 :            :  * Copyright © 2016 Intel Corporation
       5                 :            :  */
       6                 :            : 
       7                 :            : #ifndef __I915_GEM_CONTEXT_H__
       8                 :            : #define __I915_GEM_CONTEXT_H__
       9                 :            : 
      10                 :            : #include "i915_gem_context_types.h"
      11                 :            : 
      12                 :            : #include "gt/intel_context.h"
      13                 :            : 
      14                 :            : #include "i915_drv.h"
      15                 :            : #include "i915_gem.h"
      16                 :            : #include "i915_scheduler.h"
      17                 :            : #include "intel_device_info.h"
      18                 :            : 
      19                 :            : struct drm_device;
      20                 :            : struct drm_file;
      21                 :            : 
      22                 :          0 : static inline bool i915_gem_context_is_closed(const struct i915_gem_context *ctx)
      23                 :            : {
      24                 :          0 :         return test_bit(CONTEXT_CLOSED, &ctx->flags);
      25                 :            : }
      26                 :            : 
      27                 :          0 : static inline void i915_gem_context_set_closed(struct i915_gem_context *ctx)
      28                 :            : {
      29                 :          0 :         GEM_BUG_ON(i915_gem_context_is_closed(ctx));
      30                 :          0 :         set_bit(CONTEXT_CLOSED, &ctx->flags);
      31                 :            : }
      32                 :            : 
      33                 :          0 : static inline bool i915_gem_context_no_error_capture(const struct i915_gem_context *ctx)
      34                 :            : {
      35                 :          0 :         return test_bit(UCONTEXT_NO_ERROR_CAPTURE, &ctx->user_flags);
      36                 :            : }
      37                 :            : 
      38                 :          0 : static inline void i915_gem_context_set_no_error_capture(struct i915_gem_context *ctx)
      39                 :            : {
      40                 :          0 :         set_bit(UCONTEXT_NO_ERROR_CAPTURE, &ctx->user_flags);
      41                 :          0 : }
      42                 :            : 
      43                 :          0 : static inline void i915_gem_context_clear_no_error_capture(struct i915_gem_context *ctx)
      44                 :            : {
      45                 :          0 :         clear_bit(UCONTEXT_NO_ERROR_CAPTURE, &ctx->user_flags);
      46                 :          0 : }
      47                 :            : 
      48                 :          0 : static inline bool i915_gem_context_is_bannable(const struct i915_gem_context *ctx)
      49                 :            : {
      50                 :          0 :         return test_bit(UCONTEXT_BANNABLE, &ctx->user_flags);
      51                 :            : }
      52                 :            : 
      53                 :          0 : static inline void i915_gem_context_set_bannable(struct i915_gem_context *ctx)
      54                 :            : {
      55                 :          0 :         set_bit(UCONTEXT_BANNABLE, &ctx->user_flags);
      56                 :          0 : }
      57                 :            : 
      58                 :          0 : static inline void i915_gem_context_clear_bannable(struct i915_gem_context *ctx)
      59                 :            : {
      60                 :          0 :         clear_bit(UCONTEXT_BANNABLE, &ctx->user_flags);
      61                 :          0 : }
      62                 :            : 
      63                 :          0 : static inline bool i915_gem_context_is_recoverable(const struct i915_gem_context *ctx)
      64                 :            : {
      65                 :          0 :         return test_bit(UCONTEXT_RECOVERABLE, &ctx->user_flags);
      66                 :            : }
      67                 :            : 
      68                 :          0 : static inline void i915_gem_context_set_recoverable(struct i915_gem_context *ctx)
      69                 :            : {
      70                 :          0 :         set_bit(UCONTEXT_RECOVERABLE, &ctx->user_flags);
      71                 :          0 : }
      72                 :            : 
      73                 :          0 : static inline void i915_gem_context_clear_recoverable(struct i915_gem_context *ctx)
      74                 :            : {
      75                 :          0 :         clear_bit(UCONTEXT_RECOVERABLE, &ctx->user_flags);
      76                 :          0 : }
      77                 :            : 
      78                 :          0 : static inline bool i915_gem_context_is_persistent(const struct i915_gem_context *ctx)
      79                 :            : {
      80                 :          0 :         return test_bit(UCONTEXT_PERSISTENCE, &ctx->user_flags);
      81                 :            : }
      82                 :            : 
      83                 :          0 : static inline void i915_gem_context_set_persistence(struct i915_gem_context *ctx)
      84                 :            : {
      85                 :          0 :         set_bit(UCONTEXT_PERSISTENCE, &ctx->user_flags);
      86                 :          0 : }
      87                 :            : 
      88                 :          0 : static inline void i915_gem_context_clear_persistence(struct i915_gem_context *ctx)
      89                 :            : {
      90                 :          0 :         clear_bit(UCONTEXT_PERSISTENCE, &ctx->user_flags);
      91                 :          0 : }
      92                 :            : 
      93                 :            : static inline bool
      94                 :          0 : i915_gem_context_user_engines(const struct i915_gem_context *ctx)
      95                 :            : {
      96                 :          0 :         return test_bit(CONTEXT_USER_ENGINES, &ctx->flags);
      97                 :            : }
      98                 :            : 
      99                 :            : static inline void
     100                 :          0 : i915_gem_context_set_user_engines(struct i915_gem_context *ctx)
     101                 :            : {
     102                 :          0 :         set_bit(CONTEXT_USER_ENGINES, &ctx->flags);
     103                 :          0 : }
     104                 :            : 
     105                 :            : static inline void
     106                 :          0 : i915_gem_context_clear_user_engines(struct i915_gem_context *ctx)
     107                 :            : {
     108                 :          0 :         clear_bit(CONTEXT_USER_ENGINES, &ctx->flags);
     109                 :          0 : }
     110                 :            : 
     111                 :            : /* i915_gem_context.c */
     112                 :            : void i915_gem_init__contexts(struct drm_i915_private *i915);
     113                 :            : void i915_gem_driver_release__contexts(struct drm_i915_private *i915);
     114                 :            : 
     115                 :            : int i915_gem_context_open(struct drm_i915_private *i915,
     116                 :            :                           struct drm_file *file);
     117                 :            : void i915_gem_context_close(struct drm_file *file);
     118                 :            : 
     119                 :            : void i915_gem_context_release(struct kref *ctx_ref);
     120                 :            : 
     121                 :            : int i915_gem_vm_create_ioctl(struct drm_device *dev, void *data,
     122                 :            :                              struct drm_file *file);
     123                 :            : int i915_gem_vm_destroy_ioctl(struct drm_device *dev, void *data,
     124                 :            :                               struct drm_file *file);
     125                 :            : 
     126                 :            : int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
     127                 :            :                                   struct drm_file *file);
     128                 :            : int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
     129                 :            :                                    struct drm_file *file);
     130                 :            : int i915_gem_context_getparam_ioctl(struct drm_device *dev, void *data,
     131                 :            :                                     struct drm_file *file_priv);
     132                 :            : int i915_gem_context_setparam_ioctl(struct drm_device *dev, void *data,
     133                 :            :                                     struct drm_file *file_priv);
     134                 :            : int i915_gem_context_reset_stats_ioctl(struct drm_device *dev, void *data,
     135                 :            :                                        struct drm_file *file);
     136                 :            : 
     137                 :            : static inline struct i915_gem_context *
     138                 :          0 : i915_gem_context_get(struct i915_gem_context *ctx)
     139                 :            : {
     140                 :          0 :         kref_get(&ctx->ref);
     141                 :          0 :         return ctx;
     142                 :            : }
     143                 :            : 
     144                 :          0 : static inline void i915_gem_context_put(struct i915_gem_context *ctx)
     145                 :            : {
     146                 :          0 :         kref_put(&ctx->ref, i915_gem_context_release);
     147                 :          0 : }
     148                 :            : 
     149                 :            : static inline struct i915_address_space *
     150                 :          0 : i915_gem_context_vm(struct i915_gem_context *ctx)
     151                 :            : {
     152   [ #  #  #  # ]:          0 :         return rcu_dereference_protected(ctx->vm, lockdep_is_held(&ctx->mutex));
     153                 :            : }
     154                 :            : 
     155                 :            : static inline struct i915_address_space *
     156                 :            : i915_gem_context_get_vm_rcu(struct i915_gem_context *ctx)
     157                 :            : {
     158                 :            :         struct i915_address_space *vm;
     159                 :            : 
     160                 :            :         rcu_read_lock();
     161                 :            :         vm = rcu_dereference(ctx->vm);
     162                 :            :         if (!vm)
     163                 :            :                 vm = &ctx->i915->ggtt.vm;
     164                 :            :         vm = i915_vm_get(vm);
     165                 :            :         rcu_read_unlock();
     166                 :            : 
     167                 :            :         return vm;
     168                 :            : }
     169                 :            : 
     170                 :            : static inline struct i915_gem_engines *
     171                 :          0 : i915_gem_context_engines(struct i915_gem_context *ctx)
     172                 :            : {
     173                 :          0 :         return rcu_dereference_protected(ctx->engines,
     174                 :            :                                          lockdep_is_held(&ctx->engines_mutex));
     175                 :            : }
     176                 :            : 
     177                 :            : static inline struct i915_gem_engines *
     178                 :          0 : i915_gem_context_lock_engines(struct i915_gem_context *ctx)
     179                 :            :         __acquires(&ctx->engines_mutex)
     180                 :            : {
     181                 :          0 :         mutex_lock(&ctx->engines_mutex);
     182   [ #  #  #  # ]:          0 :         return i915_gem_context_engines(ctx);
     183                 :            : }
     184                 :            : 
     185                 :            : static inline void
     186                 :          0 : i915_gem_context_unlock_engines(struct i915_gem_context *ctx)
     187                 :            :         __releases(&ctx->engines_mutex)
     188                 :            : {
     189                 :          0 :         mutex_unlock(&ctx->engines_mutex);
     190                 :            : }
     191                 :            : 
     192                 :            : static inline struct intel_context *
     193                 :          0 : i915_gem_context_get_engine(struct i915_gem_context *ctx, unsigned int idx)
     194                 :            : {
     195                 :          0 :         struct intel_context *ce = ERR_PTR(-EINVAL);
     196                 :            : 
     197                 :          0 :         rcu_read_lock(); {
     198         [ #  # ]:          0 :                 struct i915_gem_engines *e = rcu_dereference(ctx->engines);
     199         [ #  # ]:          0 :                 if (likely(idx < e->num_engines && e->engines[idx]))
     200                 :          0 :                         ce = intel_context_get(e->engines[idx]);
     201                 :          0 :         } rcu_read_unlock();
     202                 :            : 
     203                 :          0 :         return ce;
     204                 :            : }
     205                 :            : 
     206                 :            : static inline void
     207                 :          0 : i915_gem_engines_iter_init(struct i915_gem_engines_iter *it,
     208                 :            :                            struct i915_gem_engines *engines)
     209                 :            : {
     210                 :          0 :         GEM_BUG_ON(!engines);
     211                 :          0 :         it->engines = engines;
     212                 :          0 :         it->idx = 0;
     213                 :          0 : }
     214                 :            : 
     215                 :            : struct intel_context *
     216                 :            : i915_gem_engines_iter_next(struct i915_gem_engines_iter *it);
     217                 :            : 
     218                 :            : #define for_each_gem_engine(ce, engines, it) \
     219                 :            :         for (i915_gem_engines_iter_init(&(it), (engines)); \
     220                 :            :              ((ce) = i915_gem_engines_iter_next(&(it)));)
     221                 :            : 
     222                 :            : struct i915_lut_handle *i915_lut_handle_alloc(void);
     223                 :            : void i915_lut_handle_free(struct i915_lut_handle *lut);
     224                 :            : 
     225                 :            : #endif /* !__I915_GEM_CONTEXT_H__ */

Generated by: LCOV version 1.14