LCOV - code coverage report
Current view: top level - drivers/gpu/drm/i915 - i915_sysfs.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 250 0.0 %
Date: 2022-03-28 13:20:08 Functions: 0 23 0.0 %
Branches: 0 126 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Copyright © 2012 Intel Corporation
       3                 :            :  *
       4                 :            :  * Permission is hereby granted, free of charge, to any person obtaining a
       5                 :            :  * copy of this software and associated documentation files (the "Software"),
       6                 :            :  * to deal in the Software without restriction, including without limitation
       7                 :            :  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
       8                 :            :  * and/or sell copies of the Software, and to permit persons to whom the
       9                 :            :  * Software is furnished to do so, subject to the following conditions:
      10                 :            :  *
      11                 :            :  * The above copyright notice and this permission notice (including the next
      12                 :            :  * paragraph) shall be included in all copies or substantial portions of the
      13                 :            :  * Software.
      14                 :            :  *
      15                 :            :  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      16                 :            :  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      17                 :            :  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
      18                 :            :  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      19                 :            :  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
      20                 :            :  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
      21                 :            :  * IN THE SOFTWARE.
      22                 :            :  *
      23                 :            :  * Authors:
      24                 :            :  *    Ben Widawsky <ben@bwidawsk.net>
      25                 :            :  *
      26                 :            :  */
      27                 :            : 
      28                 :            : #include <linux/device.h>
      29                 :            : #include <linux/module.h>
      30                 :            : #include <linux/stat.h>
      31                 :            : #include <linux/sysfs.h>
      32                 :            : 
      33                 :            : #include "gt/intel_rc6.h"
      34                 :            : #include "gt/intel_rps.h"
      35                 :            : 
      36                 :            : #include "i915_drv.h"
      37                 :            : #include "i915_sysfs.h"
      38                 :            : #include "intel_pm.h"
      39                 :            : #include "intel_sideband.h"
      40                 :            : 
      41                 :          0 : static inline struct drm_i915_private *kdev_minor_to_i915(struct device *kdev)
      42                 :            : {
      43                 :          0 :         struct drm_minor *minor = dev_get_drvdata(kdev);
      44   [ #  #  #  #  :          0 :         return to_i915(minor->dev);
             #  #  #  # ]
      45                 :            : }
      46                 :            : 
      47                 :            : #ifdef CONFIG_PM
      48                 :          0 : static u32 calc_residency(struct drm_i915_private *dev_priv,
      49                 :            :                           i915_reg_t reg)
      50                 :            : {
      51                 :          0 :         intel_wakeref_t wakeref;
      52                 :          0 :         u64 res = 0;
      53                 :            : 
      54         [ #  # ]:          0 :         with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
      55                 :          0 :                 res = intel_rc6_residency_us(&dev_priv->gt.rc6, reg);
      56                 :            : 
      57                 :          0 :         return DIV_ROUND_CLOSEST_ULL(res, 1000);
      58                 :            : }
      59                 :            : 
      60                 :            : static ssize_t
      61                 :          0 : show_rc6_mask(struct device *kdev, struct device_attribute *attr, char *buf)
      62                 :            : {
      63         [ #  # ]:          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
      64                 :          0 :         unsigned int mask;
      65                 :            : 
      66                 :          0 :         mask = 0;
      67                 :          0 :         if (HAS_RC6(dev_priv))
      68                 :            :                 mask |= BIT(0);
      69         [ #  # ]:          0 :         if (HAS_RC6p(dev_priv))
      70                 :          0 :                 mask |= BIT(1);
      71                 :          0 :         if (HAS_RC6pp(dev_priv))
      72                 :            :                 mask |= BIT(2);
      73                 :            : 
      74                 :          0 :         return snprintf(buf, PAGE_SIZE, "%x\n", mask);
      75                 :            : }
      76                 :            : 
      77                 :            : static ssize_t
      78                 :          0 : show_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf)
      79                 :            : {
      80                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
      81                 :          0 :         u32 rc6_residency = calc_residency(dev_priv, GEN6_GT_GFX_RC6);
      82                 :          0 :         return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency);
      83                 :            : }
      84                 :            : 
      85                 :            : static ssize_t
      86                 :          0 : show_rc6p_ms(struct device *kdev, struct device_attribute *attr, char *buf)
      87                 :            : {
      88                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
      89                 :          0 :         u32 rc6p_residency = calc_residency(dev_priv, GEN6_GT_GFX_RC6p);
      90                 :          0 :         return snprintf(buf, PAGE_SIZE, "%u\n", rc6p_residency);
      91                 :            : }
      92                 :            : 
      93                 :            : static ssize_t
      94                 :          0 : show_rc6pp_ms(struct device *kdev, struct device_attribute *attr, char *buf)
      95                 :            : {
      96                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
      97                 :          0 :         u32 rc6pp_residency = calc_residency(dev_priv, GEN6_GT_GFX_RC6pp);
      98                 :          0 :         return snprintf(buf, PAGE_SIZE, "%u\n", rc6pp_residency);
      99                 :            : }
     100                 :            : 
     101                 :            : static ssize_t
     102                 :          0 : show_media_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf)
     103                 :            : {
     104                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     105                 :          0 :         u32 rc6_residency = calc_residency(dev_priv, VLV_GT_MEDIA_RC6);
     106                 :          0 :         return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency);
     107                 :            : }
     108                 :            : 
     109                 :            : static DEVICE_ATTR(rc6_enable, S_IRUGO, show_rc6_mask, NULL);
     110                 :            : static DEVICE_ATTR(rc6_residency_ms, S_IRUGO, show_rc6_ms, NULL);
     111                 :            : static DEVICE_ATTR(rc6p_residency_ms, S_IRUGO, show_rc6p_ms, NULL);
     112                 :            : static DEVICE_ATTR(rc6pp_residency_ms, S_IRUGO, show_rc6pp_ms, NULL);
     113                 :            : static DEVICE_ATTR(media_rc6_residency_ms, S_IRUGO, show_media_rc6_ms, NULL);
     114                 :            : 
     115                 :            : static struct attribute *rc6_attrs[] = {
     116                 :            :         &dev_attr_rc6_enable.attr,
     117                 :            :         &dev_attr_rc6_residency_ms.attr,
     118                 :            :         NULL
     119                 :            : };
     120                 :            : 
     121                 :            : static const struct attribute_group rc6_attr_group = {
     122                 :            :         .name = power_group_name,
     123                 :            :         .attrs =  rc6_attrs
     124                 :            : };
     125                 :            : 
     126                 :            : static struct attribute *rc6p_attrs[] = {
     127                 :            :         &dev_attr_rc6p_residency_ms.attr,
     128                 :            :         &dev_attr_rc6pp_residency_ms.attr,
     129                 :            :         NULL
     130                 :            : };
     131                 :            : 
     132                 :            : static const struct attribute_group rc6p_attr_group = {
     133                 :            :         .name = power_group_name,
     134                 :            :         .attrs =  rc6p_attrs
     135                 :            : };
     136                 :            : 
     137                 :            : static struct attribute *media_rc6_attrs[] = {
     138                 :            :         &dev_attr_media_rc6_residency_ms.attr,
     139                 :            :         NULL
     140                 :            : };
     141                 :            : 
     142                 :            : static const struct attribute_group media_rc6_attr_group = {
     143                 :            :         .name = power_group_name,
     144                 :            :         .attrs =  media_rc6_attrs
     145                 :            : };
     146                 :            : #endif
     147                 :            : 
     148                 :          0 : static int l3_access_valid(struct drm_i915_private *i915, loff_t offset)
     149                 :            : {
     150                 :          0 :         if (!HAS_L3_DPF(i915))
     151                 :            :                 return -EPERM;
     152                 :            : 
     153   [ #  #  #  # ]:          0 :         if (!IS_ALIGNED(offset, sizeof(u32)))
     154                 :            :                 return -EINVAL;
     155                 :            : 
     156   [ #  #  #  # ]:          0 :         if (offset >= GEN7_L3LOG_SIZE)
     157                 :            :                 return -ENXIO;
     158                 :            : 
     159                 :            :         return 0;
     160                 :            : }
     161                 :            : 
     162                 :            : static ssize_t
     163                 :          0 : i915_l3_read(struct file *filp, struct kobject *kobj,
     164                 :            :              struct bin_attribute *attr, char *buf,
     165                 :            :              loff_t offset, size_t count)
     166                 :            : {
     167         [ #  # ]:          0 :         struct device *kdev = kobj_to_dev(kobj);
     168         [ #  # ]:          0 :         struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
     169                 :          0 :         int slice = (int)(uintptr_t)attr->private;
     170                 :          0 :         int ret;
     171                 :            : 
     172         [ #  # ]:          0 :         ret = l3_access_valid(i915, offset);
     173                 :          0 :         if (ret)
     174                 :          0 :                 return ret;
     175                 :            : 
     176                 :          0 :         count = round_down(count, sizeof(u32));
     177                 :          0 :         count = min_t(size_t, GEN7_L3LOG_SIZE - offset, count);
     178                 :          0 :         memset(buf, 0, count);
     179                 :            : 
     180                 :          0 :         spin_lock(&i915->gem.contexts.lock);
     181         [ #  # ]:          0 :         if (i915->l3_parity.remap_info[slice])
     182                 :          0 :                 memcpy(buf,
     183                 :          0 :                        i915->l3_parity.remap_info[slice] + offset / sizeof(u32),
     184                 :            :                        count);
     185                 :          0 :         spin_unlock(&i915->gem.contexts.lock);
     186                 :            : 
     187                 :          0 :         return count;
     188                 :            : }
     189                 :            : 
     190                 :            : static ssize_t
     191                 :          0 : i915_l3_write(struct file *filp, struct kobject *kobj,
     192                 :            :               struct bin_attribute *attr, char *buf,
     193                 :            :               loff_t offset, size_t count)
     194                 :            : {
     195         [ #  # ]:          0 :         struct device *kdev = kobj_to_dev(kobj);
     196         [ #  # ]:          0 :         struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
     197                 :          0 :         int slice = (int)(uintptr_t)attr->private;
     198                 :          0 :         u32 *remap_info, *freeme = NULL;
     199                 :          0 :         struct i915_gem_context *ctx;
     200                 :          0 :         int ret;
     201                 :            : 
     202         [ #  # ]:          0 :         ret = l3_access_valid(i915, offset);
     203                 :          0 :         if (ret)
     204                 :          0 :                 return ret;
     205                 :            : 
     206         [ #  # ]:          0 :         if (count < sizeof(u32))
     207                 :            :                 return -EINVAL;
     208                 :            : 
     209                 :          0 :         remap_info = kzalloc(GEN7_L3LOG_SIZE, GFP_KERNEL);
     210         [ #  # ]:          0 :         if (!remap_info)
     211                 :            :                 return -ENOMEM;
     212                 :            : 
     213                 :          0 :         spin_lock(&i915->gem.contexts.lock);
     214                 :            : 
     215         [ #  # ]:          0 :         if (i915->l3_parity.remap_info[slice]) {
     216                 :            :                 freeme = remap_info;
     217                 :            :                 remap_info = i915->l3_parity.remap_info[slice];
     218                 :            :         } else {
     219                 :          0 :                 i915->l3_parity.remap_info[slice] = remap_info;
     220                 :            :         }
     221                 :            : 
     222                 :          0 :         count = round_down(count, sizeof(u32));
     223                 :          0 :         memcpy(remap_info + offset / sizeof(u32), buf, count);
     224                 :            : 
     225                 :            :         /* NB: We defer the remapping until we switch to the context */
     226         [ #  # ]:          0 :         list_for_each_entry(ctx, &i915->gem.contexts.list, link)
     227                 :          0 :                 ctx->remap_slice |= BIT(slice);
     228                 :            : 
     229                 :          0 :         spin_unlock(&i915->gem.contexts.lock);
     230                 :          0 :         kfree(freeme);
     231                 :            : 
     232                 :            :         /*
     233                 :            :          * TODO: Ideally we really want a GPU reset here to make sure errors
     234                 :            :          * aren't propagated. Since I cannot find a stable way to reset the GPU
     235                 :            :          * at this point it is left as a TODO.
     236                 :            :         */
     237                 :            : 
     238                 :          0 :         return count;
     239                 :            : }
     240                 :            : 
     241                 :            : static const struct bin_attribute dpf_attrs = {
     242                 :            :         .attr = {.name = "l3_parity", .mode = (S_IRUSR | S_IWUSR)},
     243                 :            :         .size = GEN7_L3LOG_SIZE,
     244                 :            :         .read = i915_l3_read,
     245                 :            :         .write = i915_l3_write,
     246                 :            :         .mmap = NULL,
     247                 :            :         .private = (void *)0
     248                 :            : };
     249                 :            : 
     250                 :            : static const struct bin_attribute dpf_attrs_1 = {
     251                 :            :         .attr = {.name = "l3_parity_slice_1", .mode = (S_IRUSR | S_IWUSR)},
     252                 :            :         .size = GEN7_L3LOG_SIZE,
     253                 :            :         .read = i915_l3_read,
     254                 :            :         .write = i915_l3_write,
     255                 :            :         .mmap = NULL,
     256                 :            :         .private = (void *)1
     257                 :            : };
     258                 :            : 
     259                 :          0 : static ssize_t gt_act_freq_mhz_show(struct device *kdev,
     260                 :            :                                     struct device_attribute *attr, char *buf)
     261                 :            : {
     262                 :          0 :         struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
     263                 :          0 :         struct intel_rps *rps = &i915->gt.rps;
     264                 :            : 
     265                 :          0 :         return snprintf(buf, PAGE_SIZE, "%d\n",
     266                 :            :                         intel_rps_read_actual_frequency(rps));
     267                 :            : }
     268                 :            : 
     269                 :          0 : static ssize_t gt_cur_freq_mhz_show(struct device *kdev,
     270                 :            :                                     struct device_attribute *attr, char *buf)
     271                 :            : {
     272                 :          0 :         struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
     273                 :          0 :         struct intel_rps *rps = &i915->gt.rps;
     274                 :            : 
     275                 :          0 :         return snprintf(buf, PAGE_SIZE, "%d\n",
     276                 :          0 :                         intel_gpu_freq(rps, rps->cur_freq));
     277                 :            : }
     278                 :            : 
     279                 :          0 : static ssize_t gt_boost_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
     280                 :            : {
     281                 :          0 :         struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
     282                 :          0 :         struct intel_rps *rps = &i915->gt.rps;
     283                 :            : 
     284                 :          0 :         return snprintf(buf, PAGE_SIZE, "%d\n",
     285                 :          0 :                         intel_gpu_freq(rps, rps->boost_freq));
     286                 :            : }
     287                 :            : 
     288                 :          0 : static ssize_t gt_boost_freq_mhz_store(struct device *kdev,
     289                 :            :                                        struct device_attribute *attr,
     290                 :            :                                        const char *buf, size_t count)
     291                 :            : {
     292                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     293                 :          0 :         struct intel_rps *rps = &dev_priv->gt.rps;
     294                 :          0 :         bool boost = false;
     295                 :          0 :         ssize_t ret;
     296                 :          0 :         u32 val;
     297                 :            : 
     298                 :          0 :         ret = kstrtou32(buf, 0, &val);
     299         [ #  # ]:          0 :         if (ret)
     300                 :            :                 return ret;
     301                 :            : 
     302                 :            :         /* Validate against (static) hardware limits */
     303                 :          0 :         val = intel_freq_opcode(rps, val);
     304   [ #  #  #  # ]:          0 :         if (val < rps->min_freq || val > rps->max_freq)
     305                 :            :                 return -EINVAL;
     306                 :            : 
     307                 :          0 :         mutex_lock(&rps->lock);
     308         [ #  # ]:          0 :         if (val != rps->boost_freq) {
     309                 :          0 :                 rps->boost_freq = val;
     310                 :          0 :                 boost = atomic_read(&rps->num_waiters);
     311                 :            :         }
     312                 :          0 :         mutex_unlock(&rps->lock);
     313         [ #  # ]:          0 :         if (boost)
     314                 :          0 :                 schedule_work(&rps->work);
     315                 :            : 
     316                 :          0 :         return count;
     317                 :            : }
     318                 :            : 
     319                 :          0 : static ssize_t vlv_rpe_freq_mhz_show(struct device *kdev,
     320                 :            :                                      struct device_attribute *attr, char *buf)
     321                 :            : {
     322                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     323                 :          0 :         struct intel_rps *rps = &dev_priv->gt.rps;
     324                 :            : 
     325                 :          0 :         return snprintf(buf, PAGE_SIZE, "%d\n",
     326                 :          0 :                         intel_gpu_freq(rps, rps->efficient_freq));
     327                 :            : }
     328                 :            : 
     329                 :          0 : static ssize_t gt_max_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
     330                 :            : {
     331                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     332                 :          0 :         struct intel_rps *rps = &dev_priv->gt.rps;
     333                 :            : 
     334                 :          0 :         return snprintf(buf, PAGE_SIZE, "%d\n",
     335                 :          0 :                         intel_gpu_freq(rps, rps->max_freq_softlimit));
     336                 :            : }
     337                 :            : 
     338                 :          0 : static ssize_t gt_max_freq_mhz_store(struct device *kdev,
     339                 :            :                                      struct device_attribute *attr,
     340                 :            :                                      const char *buf, size_t count)
     341                 :            : {
     342                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     343                 :          0 :         struct intel_rps *rps = &dev_priv->gt.rps;
     344                 :          0 :         ssize_t ret;
     345                 :          0 :         u32 val;
     346                 :            : 
     347                 :          0 :         ret = kstrtou32(buf, 0, &val);
     348         [ #  # ]:          0 :         if (ret)
     349                 :            :                 return ret;
     350                 :            : 
     351                 :          0 :         mutex_lock(&rps->lock);
     352                 :            : 
     353                 :          0 :         val = intel_freq_opcode(rps, val);
     354         [ #  # ]:          0 :         if (val < rps->min_freq ||
     355         [ #  # ]:          0 :             val > rps->max_freq ||
     356         [ #  # ]:          0 :             val < rps->min_freq_softlimit) {
     357                 :          0 :                 ret = -EINVAL;
     358                 :          0 :                 goto unlock;
     359                 :            :         }
     360                 :            : 
     361         [ #  # ]:          0 :         if (val > rps->rp0_freq)
     362                 :          0 :                 DRM_DEBUG("User requested overclocking to %d\n",
     363                 :            :                           intel_gpu_freq(rps, val));
     364                 :            : 
     365                 :          0 :         rps->max_freq_softlimit = val;
     366                 :            : 
     367                 :          0 :         val = clamp_t(int, rps->cur_freq,
     368                 :            :                       rps->min_freq_softlimit,
     369                 :            :                       rps->max_freq_softlimit);
     370                 :            : 
     371                 :            :         /*
     372                 :            :          * We still need *_set_rps to process the new max_delay and
     373                 :            :          * update the interrupt limits and PMINTRMSK even though
     374                 :            :          * frequency request may be unchanged.
     375                 :            :          */
     376                 :          0 :         intel_rps_set(rps, val);
     377                 :            : 
     378                 :          0 : unlock:
     379                 :          0 :         mutex_unlock(&rps->lock);
     380                 :            : 
     381         [ #  # ]:          0 :         return ret ?: count;
     382                 :            : }
     383                 :            : 
     384                 :          0 : static ssize_t gt_min_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
     385                 :            : {
     386                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     387                 :          0 :         struct intel_rps *rps = &dev_priv->gt.rps;
     388                 :            : 
     389                 :          0 :         return snprintf(buf, PAGE_SIZE, "%d\n",
     390                 :          0 :                         intel_gpu_freq(rps, rps->min_freq_softlimit));
     391                 :            : }
     392                 :            : 
     393                 :          0 : static ssize_t gt_min_freq_mhz_store(struct device *kdev,
     394                 :            :                                      struct device_attribute *attr,
     395                 :            :                                      const char *buf, size_t count)
     396                 :            : {
     397                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     398                 :          0 :         struct intel_rps *rps = &dev_priv->gt.rps;
     399                 :          0 :         ssize_t ret;
     400                 :          0 :         u32 val;
     401                 :            : 
     402                 :          0 :         ret = kstrtou32(buf, 0, &val);
     403         [ #  # ]:          0 :         if (ret)
     404                 :            :                 return ret;
     405                 :            : 
     406                 :          0 :         mutex_lock(&rps->lock);
     407                 :            : 
     408                 :          0 :         val = intel_freq_opcode(rps, val);
     409         [ #  # ]:          0 :         if (val < rps->min_freq ||
     410         [ #  # ]:          0 :             val > rps->max_freq ||
     411         [ #  # ]:          0 :             val > rps->max_freq_softlimit) {
     412                 :          0 :                 ret = -EINVAL;
     413                 :          0 :                 goto unlock;
     414                 :            :         }
     415                 :            : 
     416                 :          0 :         rps->min_freq_softlimit = val;
     417                 :            : 
     418                 :          0 :         val = clamp_t(int, rps->cur_freq,
     419                 :            :                       rps->min_freq_softlimit,
     420                 :            :                       rps->max_freq_softlimit);
     421                 :            : 
     422                 :            :         /*
     423                 :            :          * We still need *_set_rps to process the new min_delay and
     424                 :            :          * update the interrupt limits and PMINTRMSK even though
     425                 :            :          * frequency request may be unchanged.
     426                 :            :          */
     427                 :          0 :         intel_rps_set(rps, val);
     428                 :            : 
     429                 :          0 : unlock:
     430                 :          0 :         mutex_unlock(&rps->lock);
     431                 :            : 
     432         [ #  # ]:          0 :         return ret ?: count;
     433                 :            : }
     434                 :            : 
     435                 :            : static DEVICE_ATTR_RO(gt_act_freq_mhz);
     436                 :            : static DEVICE_ATTR_RO(gt_cur_freq_mhz);
     437                 :            : static DEVICE_ATTR_RW(gt_boost_freq_mhz);
     438                 :            : static DEVICE_ATTR_RW(gt_max_freq_mhz);
     439                 :            : static DEVICE_ATTR_RW(gt_min_freq_mhz);
     440                 :            : 
     441                 :            : static DEVICE_ATTR_RO(vlv_rpe_freq_mhz);
     442                 :            : 
     443                 :            : static ssize_t gt_rp_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf);
     444                 :            : static DEVICE_ATTR(gt_RP0_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL);
     445                 :            : static DEVICE_ATTR(gt_RP1_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL);
     446                 :            : static DEVICE_ATTR(gt_RPn_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL);
     447                 :            : 
     448                 :            : /* For now we have a static number of RP states */
     449                 :          0 : static ssize_t gt_rp_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
     450                 :            : {
     451         [ #  # ]:          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     452                 :          0 :         struct intel_rps *rps = &dev_priv->gt.rps;
     453                 :          0 :         u32 val;
     454                 :            : 
     455         [ #  # ]:          0 :         if (attr == &dev_attr_gt_RP0_freq_mhz)
     456                 :          0 :                 val = intel_gpu_freq(rps, rps->rp0_freq);
     457         [ #  # ]:          0 :         else if (attr == &dev_attr_gt_RP1_freq_mhz)
     458                 :          0 :                 val = intel_gpu_freq(rps, rps->rp1_freq);
     459         [ #  # ]:          0 :         else if (attr == &dev_attr_gt_RPn_freq_mhz)
     460                 :          0 :                 val = intel_gpu_freq(rps, rps->min_freq);
     461                 :            :         else
     462                 :          0 :                 BUG();
     463                 :            : 
     464                 :          0 :         return snprintf(buf, PAGE_SIZE, "%d\n", val);
     465                 :            : }
     466                 :            : 
     467                 :            : static const struct attribute * const gen6_attrs[] = {
     468                 :            :         &dev_attr_gt_act_freq_mhz.attr,
     469                 :            :         &dev_attr_gt_cur_freq_mhz.attr,
     470                 :            :         &dev_attr_gt_boost_freq_mhz.attr,
     471                 :            :         &dev_attr_gt_max_freq_mhz.attr,
     472                 :            :         &dev_attr_gt_min_freq_mhz.attr,
     473                 :            :         &dev_attr_gt_RP0_freq_mhz.attr,
     474                 :            :         &dev_attr_gt_RP1_freq_mhz.attr,
     475                 :            :         &dev_attr_gt_RPn_freq_mhz.attr,
     476                 :            :         NULL,
     477                 :            : };
     478                 :            : 
     479                 :            : static const struct attribute * const vlv_attrs[] = {
     480                 :            :         &dev_attr_gt_act_freq_mhz.attr,
     481                 :            :         &dev_attr_gt_cur_freq_mhz.attr,
     482                 :            :         &dev_attr_gt_boost_freq_mhz.attr,
     483                 :            :         &dev_attr_gt_max_freq_mhz.attr,
     484                 :            :         &dev_attr_gt_min_freq_mhz.attr,
     485                 :            :         &dev_attr_gt_RP0_freq_mhz.attr,
     486                 :            :         &dev_attr_gt_RP1_freq_mhz.attr,
     487                 :            :         &dev_attr_gt_RPn_freq_mhz.attr,
     488                 :            :         &dev_attr_vlv_rpe_freq_mhz.attr,
     489                 :            :         NULL,
     490                 :            : };
     491                 :            : 
     492                 :            : #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
     493                 :            : 
     494                 :          0 : static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
     495                 :            :                                 struct bin_attribute *attr, char *buf,
     496                 :            :                                 loff_t off, size_t count)
     497                 :            : {
     498                 :            : 
     499                 :          0 :         struct device *kdev = kobj_to_dev(kobj);
     500                 :          0 :         struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
     501                 :          0 :         struct i915_gpu_coredump *gpu;
     502                 :          0 :         ssize_t ret;
     503                 :            : 
     504                 :          0 :         gpu = i915_first_error_state(i915);
     505         [ #  # ]:          0 :         if (IS_ERR(gpu)) {
     506                 :          0 :                 ret = PTR_ERR(gpu);
     507         [ #  # ]:          0 :         } else if (gpu) {
     508                 :          0 :                 ret = i915_gpu_coredump_copy_to_buffer(gpu, buf, off, count);
     509                 :          0 :                 i915_gpu_coredump_put(gpu);
     510                 :            :         } else {
     511                 :          0 :                 const char *str = "No error state collected\n";
     512                 :          0 :                 size_t len = strlen(str);
     513                 :            : 
     514                 :          0 :                 ret = min_t(size_t, count, len - off);
     515                 :          0 :                 memcpy(buf, str + off, ret);
     516                 :            :         }
     517                 :            : 
     518                 :          0 :         return ret;
     519                 :            : }
     520                 :            : 
     521                 :          0 : static ssize_t error_state_write(struct file *file, struct kobject *kobj,
     522                 :            :                                  struct bin_attribute *attr, char *buf,
     523                 :            :                                  loff_t off, size_t count)
     524                 :            : {
     525                 :          0 :         struct device *kdev = kobj_to_dev(kobj);
     526                 :          0 :         struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
     527                 :            : 
     528                 :          0 :         DRM_DEBUG_DRIVER("Resetting error state\n");
     529                 :          0 :         i915_reset_error_state(dev_priv);
     530                 :            : 
     531                 :          0 :         return count;
     532                 :            : }
     533                 :            : 
     534                 :            : static const struct bin_attribute error_state_attr = {
     535                 :            :         .attr.name = "error",
     536                 :            :         .attr.mode = S_IRUSR | S_IWUSR,
     537                 :            :         .size = 0,
     538                 :            :         .read = error_state_read,
     539                 :            :         .write = error_state_write,
     540                 :            : };
     541                 :            : 
     542                 :          0 : static void i915_setup_error_capture(struct device *kdev)
     543                 :            : {
     544         [ #  # ]:          0 :         if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
     545                 :          0 :                 DRM_ERROR("error_state sysfs setup failed\n");
     546                 :          0 : }
     547                 :            : 
     548                 :          0 : static void i915_teardown_error_capture(struct device *kdev)
     549                 :            : {
     550                 :          0 :         sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
     551                 :            : }
     552                 :            : #else
     553                 :            : static void i915_setup_error_capture(struct device *kdev) {}
     554                 :            : static void i915_teardown_error_capture(struct device *kdev) {}
     555                 :            : #endif
     556                 :            : 
     557                 :          0 : void i915_setup_sysfs(struct drm_i915_private *dev_priv)
     558                 :            : {
     559                 :          0 :         struct device *kdev = dev_priv->drm.primary->kdev;
     560                 :          0 :         int ret;
     561                 :            : 
     562                 :            : #ifdef CONFIG_PM
     563         [ #  # ]:          0 :         if (HAS_RC6(dev_priv)) {
     564                 :          0 :                 ret = sysfs_merge_group(&kdev->kobj,
     565                 :            :                                         &rc6_attr_group);
     566         [ #  # ]:          0 :                 if (ret)
     567                 :          0 :                         DRM_ERROR("RC6 residency sysfs setup failed\n");
     568                 :            :         }
     569         [ #  # ]:          0 :         if (HAS_RC6p(dev_priv)) {
     570                 :          0 :                 ret = sysfs_merge_group(&kdev->kobj,
     571                 :            :                                         &rc6p_attr_group);
     572         [ #  # ]:          0 :                 if (ret)
     573                 :          0 :                         DRM_ERROR("RC6p residency sysfs setup failed\n");
     574                 :            :         }
     575   [ #  #  #  # ]:          0 :         if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
     576                 :          0 :                 ret = sysfs_merge_group(&kdev->kobj,
     577                 :            :                                         &media_rc6_attr_group);
     578         [ #  # ]:          0 :                 if (ret)
     579                 :          0 :                         DRM_ERROR("Media RC6 residency sysfs setup failed\n");
     580                 :            :         }
     581                 :            : #endif
     582         [ #  # ]:          0 :         if (HAS_L3_DPF(dev_priv)) {
     583                 :          0 :                 ret = device_create_bin_file(kdev, &dpf_attrs);
     584         [ #  # ]:          0 :                 if (ret)
     585                 :          0 :                         DRM_ERROR("l3 parity sysfs setup failed\n");
     586                 :            : 
     587   [ #  #  #  # ]:          0 :                 if (NUM_L3_SLICES(dev_priv) > 1) {
     588                 :          0 :                         ret = device_create_bin_file(kdev,
     589                 :            :                                                      &dpf_attrs_1);
     590         [ #  # ]:          0 :                         if (ret)
     591                 :          0 :                                 DRM_ERROR("l3 parity slice 1 setup failed\n");
     592                 :            :                 }
     593                 :            :         }
     594                 :            : 
     595                 :          0 :         ret = 0;
     596   [ #  #  #  # ]:          0 :         if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
     597                 :          0 :                 ret = sysfs_create_files(&kdev->kobj, vlv_attrs);
     598         [ #  # ]:          0 :         else if (INTEL_GEN(dev_priv) >= 6)
     599                 :          0 :                 ret = sysfs_create_files(&kdev->kobj, gen6_attrs);
     600         [ #  # ]:          0 :         if (ret)
     601                 :          0 :                 DRM_ERROR("RPS sysfs setup failed\n");
     602                 :            : 
     603                 :          0 :         i915_setup_error_capture(kdev);
     604                 :          0 : }
     605                 :            : 
     606                 :          0 : void i915_teardown_sysfs(struct drm_i915_private *dev_priv)
     607                 :            : {
     608                 :          0 :         struct device *kdev = dev_priv->drm.primary->kdev;
     609                 :            : 
     610                 :          0 :         i915_teardown_error_capture(kdev);
     611                 :            : 
     612   [ #  #  #  # ]:          0 :         if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
     613                 :          0 :                 sysfs_remove_files(&kdev->kobj, vlv_attrs);
     614                 :            :         else
     615                 :          0 :                 sysfs_remove_files(&kdev->kobj, gen6_attrs);
     616                 :          0 :         device_remove_bin_file(kdev,  &dpf_attrs_1);
     617                 :          0 :         device_remove_bin_file(kdev,  &dpf_attrs);
     618                 :            : #ifdef CONFIG_PM
     619                 :          0 :         sysfs_unmerge_group(&kdev->kobj, &rc6_attr_group);
     620                 :          0 :         sysfs_unmerge_group(&kdev->kobj, &rc6p_attr_group);
     621                 :            : #endif
     622                 :          0 : }

Generated by: LCOV version 1.14