Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 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> |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 32 | #include "intel_drv.h" |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 33 | #include "i915_drv.h" |
| 34 | |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 35 | #define dev_to_drm_minor(d) dev_get_drvdata((d)) |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 36 | |
Hunt Xu | 5ab3633 | 2012-07-01 03:45:07 +0000 | [diff] [blame] | 37 | #ifdef CONFIG_PM |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 38 | static u32 calc_residency(struct drm_device *dev, |
| 39 | i915_reg_t reg) |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 40 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 41 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 42 | u64 raw_time; /* 32b value may overflow during fixed point math */ |
Ville Syrjälä | 2cc9fab | 2015-09-28 23:43:43 +0300 | [diff] [blame] | 43 | u64 units = 128ULL, div = 100000ULL; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 44 | u32 ret; |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 45 | |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 46 | if (!intel_enable_rc6()) |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 47 | return 0; |
| 48 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 49 | intel_runtime_pm_get(dev_priv); |
| 50 | |
Mika Kuoppala | 542a6b2 | 2014-07-09 14:55:56 +0300 | [diff] [blame] | 51 | /* On VLV and CHV, residency time is in CZ units rather than 1.28us */ |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 52 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 2cc9fab | 2015-09-28 23:43:43 +0300 | [diff] [blame] | 53 | units = 1; |
| 54 | div = dev_priv->czclk_freq; |
Mika Kuoppala | 542a6b2 | 2014-07-09 14:55:56 +0300 | [diff] [blame] | 55 | |
Jesse Barnes | e454a05 | 2013-09-26 17:55:58 -0700 | [diff] [blame] | 56 | if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH) |
| 57 | units <<= 8; |
Imre Deak | d813510 | 2015-09-29 16:28:46 +0300 | [diff] [blame] | 58 | } else if (IS_BROXTON(dev)) { |
| 59 | units = 1; |
| 60 | div = 1200; /* 833.33ns */ |
Jesse Barnes | e454a05 | 2013-09-26 17:55:58 -0700 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | raw_time = I915_READ(reg) * units; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 64 | ret = DIV_ROUND_UP_ULL(raw_time, div); |
| 65 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 66 | intel_runtime_pm_put(dev_priv); |
| 67 | return ret; |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | static ssize_t |
Ben Widawsky | dbdfd8e | 2012-09-07 19:43:38 -0700 | [diff] [blame] | 71 | show_rc6_mask(struct device *kdev, struct device_attribute *attr, char *buf) |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 72 | { |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 73 | return snprintf(buf, PAGE_SIZE, "%x\n", intel_enable_rc6()); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | static ssize_t |
Ben Widawsky | dbdfd8e | 2012-09-07 19:43:38 -0700 | [diff] [blame] | 77 | show_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf) |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 78 | { |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 79 | struct drm_minor *dminor = dev_get_drvdata(kdev); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 80 | u32 rc6_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6); |
Jani Nikula | 3e2a155 | 2013-02-14 10:42:11 +0200 | [diff] [blame] | 81 | return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | static ssize_t |
Ben Widawsky | dbdfd8e | 2012-09-07 19:43:38 -0700 | [diff] [blame] | 85 | show_rc6p_ms(struct device *kdev, struct device_attribute *attr, char *buf) |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 86 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 87 | struct drm_minor *dminor = dev_to_drm_minor(kdev); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 88 | u32 rc6p_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6p); |
Jani Nikula | 3e2a155 | 2013-02-14 10:42:11 +0200 | [diff] [blame] | 89 | return snprintf(buf, PAGE_SIZE, "%u\n", rc6p_residency); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | static ssize_t |
Ben Widawsky | dbdfd8e | 2012-09-07 19:43:38 -0700 | [diff] [blame] | 93 | show_rc6pp_ms(struct device *kdev, struct device_attribute *attr, char *buf) |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 94 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 95 | struct drm_minor *dminor = dev_to_drm_minor(kdev); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 96 | u32 rc6pp_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6pp); |
Jani Nikula | 3e2a155 | 2013-02-14 10:42:11 +0200 | [diff] [blame] | 97 | return snprintf(buf, PAGE_SIZE, "%u\n", rc6pp_residency); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Ville Syrjälä | 626ad6f | 2015-02-26 21:10:27 +0530 | [diff] [blame] | 100 | static ssize_t |
| 101 | show_media_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf) |
| 102 | { |
| 103 | struct drm_minor *dminor = dev_get_drvdata(kdev); |
| 104 | u32 rc6_residency = calc_residency(dminor->dev, VLV_GT_MEDIA_RC6); |
| 105 | return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency); |
| 106 | } |
| 107 | |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 108 | static DEVICE_ATTR(rc6_enable, S_IRUGO, show_rc6_mask, NULL); |
| 109 | static DEVICE_ATTR(rc6_residency_ms, S_IRUGO, show_rc6_ms, NULL); |
| 110 | static DEVICE_ATTR(rc6p_residency_ms, S_IRUGO, show_rc6p_ms, NULL); |
| 111 | static DEVICE_ATTR(rc6pp_residency_ms, S_IRUGO, show_rc6pp_ms, NULL); |
Ville Syrjälä | 626ad6f | 2015-02-26 21:10:27 +0530 | [diff] [blame] | 112 | static DEVICE_ATTR(media_rc6_residency_ms, S_IRUGO, show_media_rc6_ms, NULL); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 113 | |
| 114 | static struct attribute *rc6_attrs[] = { |
| 115 | &dev_attr_rc6_enable.attr, |
| 116 | &dev_attr_rc6_residency_ms.attr, |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 117 | NULL |
| 118 | }; |
| 119 | |
| 120 | static struct attribute_group rc6_attr_group = { |
| 121 | .name = power_group_name, |
| 122 | .attrs = rc6_attrs |
| 123 | }; |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 124 | |
| 125 | static struct attribute *rc6p_attrs[] = { |
| 126 | &dev_attr_rc6p_residency_ms.attr, |
| 127 | &dev_attr_rc6pp_residency_ms.attr, |
| 128 | NULL |
| 129 | }; |
| 130 | |
| 131 | static struct attribute_group rc6p_attr_group = { |
| 132 | .name = power_group_name, |
| 133 | .attrs = rc6p_attrs |
| 134 | }; |
Ville Syrjälä | 626ad6f | 2015-02-26 21:10:27 +0530 | [diff] [blame] | 135 | |
| 136 | static struct attribute *media_rc6_attrs[] = { |
| 137 | &dev_attr_media_rc6_residency_ms.attr, |
| 138 | NULL |
| 139 | }; |
| 140 | |
| 141 | static struct attribute_group media_rc6_attr_group = { |
| 142 | .name = power_group_name, |
| 143 | .attrs = media_rc6_attrs |
| 144 | }; |
Ben Widawsky | 8c3f929 | 2012-09-02 00:24:40 -0700 | [diff] [blame] | 145 | #endif |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 146 | |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 147 | static int l3_access_valid(struct drm_device *dev, loff_t offset) |
| 148 | { |
Ben Widawsky | 040d2ba | 2013-09-19 11:01:40 -0700 | [diff] [blame] | 149 | if (!HAS_L3_DPF(dev)) |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 150 | return -EPERM; |
| 151 | |
| 152 | if (offset % 4 != 0) |
| 153 | return -EINVAL; |
| 154 | |
| 155 | if (offset >= GEN7_L3LOG_SIZE) |
| 156 | return -ENXIO; |
| 157 | |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | static ssize_t |
| 162 | i915_l3_read(struct file *filp, struct kobject *kobj, |
| 163 | struct bin_attribute *attr, char *buf, |
| 164 | loff_t offset, size_t count) |
| 165 | { |
Geliang Tang | 657fb5f | 2016-01-13 22:48:40 +0800 | [diff] [blame] | 166 | struct device *dev = kobj_to_dev(kobj); |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 167 | struct drm_minor *dminor = dev_to_drm_minor(dev); |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 168 | struct drm_device *drm_dev = dminor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 169 | struct drm_i915_private *dev_priv = to_i915(drm_dev); |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 170 | int slice = (int)(uintptr_t)attr->private; |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 171 | int ret; |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 172 | |
Ben Widawsky | 1c3dcd1 | 2013-09-12 22:28:28 -0700 | [diff] [blame] | 173 | count = round_down(count, 4); |
| 174 | |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 175 | ret = l3_access_valid(drm_dev, offset); |
| 176 | if (ret) |
| 177 | return ret; |
| 178 | |
Dan Carpenter | e5ad402 | 2013-09-20 14:20:18 +0300 | [diff] [blame] | 179 | count = min_t(size_t, GEN7_L3LOG_SIZE - offset, count); |
Ben Widawsky | 33618ea | 2013-09-12 22:28:29 -0700 | [diff] [blame] | 180 | |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 181 | ret = i915_mutex_lock_interruptible(drm_dev); |
| 182 | if (ret) |
| 183 | return ret; |
| 184 | |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 185 | if (dev_priv->l3_parity.remap_info[slice]) |
| 186 | memcpy(buf, |
| 187 | dev_priv->l3_parity.remap_info[slice] + (offset/4), |
| 188 | count); |
| 189 | else |
| 190 | memset(buf, 0, count); |
Ben Widawsky | 1c966dd | 2013-09-17 21:12:42 -0700 | [diff] [blame] | 191 | |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 192 | mutex_unlock(&drm_dev->struct_mutex); |
| 193 | |
Ben Widawsky | 1c966dd | 2013-09-17 21:12:42 -0700 | [diff] [blame] | 194 | return count; |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | static ssize_t |
| 198 | i915_l3_write(struct file *filp, struct kobject *kobj, |
| 199 | struct bin_attribute *attr, char *buf, |
| 200 | loff_t offset, size_t count) |
| 201 | { |
Geliang Tang | 657fb5f | 2016-01-13 22:48:40 +0800 | [diff] [blame] | 202 | struct device *dev = kobj_to_dev(kobj); |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 203 | struct drm_minor *dminor = dev_to_drm_minor(dev); |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 204 | struct drm_device *drm_dev = dminor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 205 | struct drm_i915_private *dev_priv = to_i915(drm_dev); |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 206 | struct i915_gem_context *ctx; |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 207 | u32 *temp = NULL; /* Just here to make handling failures easy */ |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 208 | int slice = (int)(uintptr_t)attr->private; |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 209 | int ret; |
| 210 | |
Ben Widawsky | 8245be3 | 2013-11-06 13:56:29 -0200 | [diff] [blame] | 211 | if (!HAS_HW_CONTEXTS(drm_dev)) |
| 212 | return -ENXIO; |
| 213 | |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 214 | ret = l3_access_valid(drm_dev, offset); |
| 215 | if (ret) |
| 216 | return ret; |
| 217 | |
| 218 | ret = i915_mutex_lock_interruptible(drm_dev); |
| 219 | if (ret) |
| 220 | return ret; |
| 221 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 222 | if (!dev_priv->l3_parity.remap_info[slice]) { |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 223 | temp = kzalloc(GEN7_L3LOG_SIZE, GFP_KERNEL); |
| 224 | if (!temp) { |
| 225 | mutex_unlock(&drm_dev->struct_mutex); |
| 226 | return -ENOMEM; |
| 227 | } |
| 228 | } |
| 229 | |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 230 | /* TODO: Ideally we really want a GPU reset here to make sure errors |
| 231 | * aren't propagated. Since I cannot find a stable way to reset the GPU |
| 232 | * at this point it is left as a TODO. |
| 233 | */ |
| 234 | if (temp) |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 235 | dev_priv->l3_parity.remap_info[slice] = temp; |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 236 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 237 | memcpy(dev_priv->l3_parity.remap_info[slice] + (offset/4), buf, count); |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 238 | |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 239 | /* NB: We defer the remapping until we switch to the context */ |
| 240 | list_for_each_entry(ctx, &dev_priv->context_list, link) |
| 241 | ctx->remap_slice |= (1<<slice); |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 242 | |
| 243 | mutex_unlock(&drm_dev->struct_mutex); |
| 244 | |
| 245 | return count; |
| 246 | } |
| 247 | |
| 248 | static struct bin_attribute dpf_attrs = { |
| 249 | .attr = {.name = "l3_parity", .mode = (S_IRUSR | S_IWUSR)}, |
| 250 | .size = GEN7_L3LOG_SIZE, |
| 251 | .read = i915_l3_read, |
| 252 | .write = i915_l3_write, |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 253 | .mmap = NULL, |
| 254 | .private = (void *)0 |
| 255 | }; |
| 256 | |
| 257 | static struct bin_attribute dpf_attrs_1 = { |
| 258 | .attr = {.name = "l3_parity_slice_1", .mode = (S_IRUSR | S_IWUSR)}, |
| 259 | .size = GEN7_L3LOG_SIZE, |
| 260 | .read = i915_l3_read, |
| 261 | .write = i915_l3_write, |
| 262 | .mmap = NULL, |
| 263 | .private = (void *)1 |
Ben Widawsky | 84bc758 | 2012-05-25 16:56:25 -0700 | [diff] [blame] | 264 | }; |
| 265 | |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 266 | static ssize_t gt_act_freq_mhz_show(struct device *kdev, |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 267 | struct device_attribute *attr, char *buf) |
| 268 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 269 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 270 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 271 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 272 | int ret; |
| 273 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 274 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 275 | |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 276 | intel_runtime_pm_get(dev_priv); |
| 277 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 278 | mutex_lock(&dev_priv->rps.hw_lock); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 279 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Jesse Barnes | 177006a | 2013-05-02 10:48:07 -0700 | [diff] [blame] | 280 | u32 freq; |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 281 | freq = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 282 | ret = intel_gpu_freq(dev_priv, (freq >> 8) & 0xff); |
Jesse Barnes | 177006a | 2013-05-02 10:48:07 -0700 | [diff] [blame] | 283 | } else { |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 284 | u32 rpstat = I915_READ(GEN6_RPSTAT1); |
Akash Goel | ed64d66 | 2015-03-06 11:07:22 +0530 | [diff] [blame] | 285 | if (IS_GEN9(dev_priv)) |
| 286 | ret = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT; |
| 287 | else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 288 | ret = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT; |
| 289 | else |
| 290 | ret = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT; |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 291 | ret = intel_gpu_freq(dev_priv, ret); |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 292 | } |
| 293 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 294 | |
| 295 | intel_runtime_pm_put(dev_priv); |
| 296 | |
| 297 | return snprintf(buf, PAGE_SIZE, "%d\n", ret); |
| 298 | } |
| 299 | |
| 300 | static ssize_t gt_cur_freq_mhz_show(struct device *kdev, |
| 301 | struct device_attribute *attr, char *buf) |
| 302 | { |
| 303 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
| 304 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 305 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 306 | int ret; |
| 307 | |
| 308 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 309 | |
| 310 | intel_runtime_pm_get(dev_priv); |
| 311 | |
| 312 | mutex_lock(&dev_priv->rps.hw_lock); |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 313 | ret = intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq); |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 314 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 315 | |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 316 | intel_runtime_pm_put(dev_priv); |
| 317 | |
Jani Nikula | 3e2a155 | 2013-02-14 10:42:11 +0200 | [diff] [blame] | 318 | return snprintf(buf, PAGE_SIZE, "%d\n", ret); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 321 | static ssize_t vlv_rpe_freq_mhz_show(struct device *kdev, |
| 322 | struct device_attribute *attr, char *buf) |
| 323 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 324 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 325 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 326 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 327 | |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 328 | return snprintf(buf, PAGE_SIZE, |
| 329 | "%d\n", |
| 330 | intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq)); |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 331 | } |
| 332 | |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 333 | static ssize_t gt_max_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf) |
| 334 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 335 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 336 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 337 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 338 | int ret; |
| 339 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 340 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 341 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 342 | mutex_lock(&dev_priv->rps.hw_lock); |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 343 | ret = intel_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit); |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 344 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 345 | |
Jani Nikula | 3e2a155 | 2013-02-14 10:42:11 +0200 | [diff] [blame] | 346 | return snprintf(buf, PAGE_SIZE, "%d\n", ret); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 349 | static ssize_t gt_max_freq_mhz_store(struct device *kdev, |
| 350 | struct device_attribute *attr, |
| 351 | const char *buf, size_t count) |
| 352 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 353 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 354 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 355 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 356 | u32 val; |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 357 | ssize_t ret; |
| 358 | |
| 359 | ret = kstrtou32(buf, 0, &val); |
| 360 | if (ret) |
| 361 | return ret; |
| 362 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 363 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 364 | |
Sagar Arun Kamble | 933bfb4 | 2016-02-08 22:47:11 +0530 | [diff] [blame] | 365 | intel_runtime_pm_get(dev_priv); |
| 366 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 367 | mutex_lock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 368 | |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 369 | val = intel_freq_opcode(dev_priv, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 370 | |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 371 | if (val < dev_priv->rps.min_freq || |
| 372 | val > dev_priv->rps.max_freq || |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 373 | val < dev_priv->rps.min_freq_softlimit) { |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 374 | mutex_unlock(&dev_priv->rps.hw_lock); |
Sagar Arun Kamble | 933bfb4 | 2016-02-08 22:47:11 +0530 | [diff] [blame] | 375 | intel_runtime_pm_put(dev_priv); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 376 | return -EINVAL; |
| 377 | } |
| 378 | |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 379 | if (val > dev_priv->rps.rp0_freq) |
Ben Widawsky | 31c7738 | 2013-04-05 14:29:22 -0700 | [diff] [blame] | 380 | DRM_DEBUG("User requested overclocking to %d\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 381 | intel_gpu_freq(dev_priv, val)); |
Ben Widawsky | 31c7738 | 2013-04-05 14:29:22 -0700 | [diff] [blame] | 382 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 383 | dev_priv->rps.max_freq_softlimit = val; |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 384 | |
Ville Syrjälä | f745a80 | 2015-01-23 21:04:23 +0200 | [diff] [blame] | 385 | val = clamp_t(int, dev_priv->rps.cur_freq, |
| 386 | dev_priv->rps.min_freq_softlimit, |
| 387 | dev_priv->rps.max_freq_softlimit); |
| 388 | |
| 389 | /* We still need *_set_rps to process the new max_delay and |
| 390 | * update the interrupt limits and PMINTRMSK even though |
| 391 | * frequency request may be unchanged. */ |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 392 | intel_set_rps(dev_priv, val); |
Chris Wilson | 6917c7b | 2013-11-06 13:56:26 -0200 | [diff] [blame] | 393 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 394 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 395 | |
Sagar Arun Kamble | 933bfb4 | 2016-02-08 22:47:11 +0530 | [diff] [blame] | 396 | intel_runtime_pm_put(dev_priv); |
| 397 | |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 398 | return count; |
| 399 | } |
| 400 | |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 401 | static ssize_t gt_min_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf) |
| 402 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 403 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 404 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 405 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 406 | int ret; |
| 407 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 408 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 409 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 410 | mutex_lock(&dev_priv->rps.hw_lock); |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 411 | ret = intel_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit); |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 412 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 413 | |
Jani Nikula | 3e2a155 | 2013-02-14 10:42:11 +0200 | [diff] [blame] | 414 | return snprintf(buf, PAGE_SIZE, "%d\n", ret); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 415 | } |
| 416 | |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 417 | static ssize_t gt_min_freq_mhz_store(struct device *kdev, |
| 418 | struct device_attribute *attr, |
| 419 | const char *buf, size_t count) |
| 420 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 421 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 422 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 423 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 424 | u32 val; |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 425 | ssize_t ret; |
| 426 | |
| 427 | ret = kstrtou32(buf, 0, &val); |
| 428 | if (ret) |
| 429 | return ret; |
| 430 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 431 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 432 | |
Sagar Arun Kamble | 933bfb4 | 2016-02-08 22:47:11 +0530 | [diff] [blame] | 433 | intel_runtime_pm_get(dev_priv); |
| 434 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 435 | mutex_lock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 436 | |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 437 | val = intel_freq_opcode(dev_priv, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 438 | |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 439 | if (val < dev_priv->rps.min_freq || |
| 440 | val > dev_priv->rps.max_freq || |
| 441 | val > dev_priv->rps.max_freq_softlimit) { |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 442 | mutex_unlock(&dev_priv->rps.hw_lock); |
Sagar Arun Kamble | 933bfb4 | 2016-02-08 22:47:11 +0530 | [diff] [blame] | 443 | intel_runtime_pm_put(dev_priv); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 444 | return -EINVAL; |
| 445 | } |
| 446 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 447 | dev_priv->rps.min_freq_softlimit = val; |
Chris Wilson | 6917c7b | 2013-11-06 13:56:26 -0200 | [diff] [blame] | 448 | |
Ville Syrjälä | f745a80 | 2015-01-23 21:04:23 +0200 | [diff] [blame] | 449 | val = clamp_t(int, dev_priv->rps.cur_freq, |
| 450 | dev_priv->rps.min_freq_softlimit, |
| 451 | dev_priv->rps.max_freq_softlimit); |
| 452 | |
| 453 | /* We still need *_set_rps to process the new min_delay and |
| 454 | * update the interrupt limits and PMINTRMSK even though |
| 455 | * frequency request may be unchanged. */ |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 456 | intel_set_rps(dev_priv, val); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 457 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 458 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 459 | |
Sagar Arun Kamble | 933bfb4 | 2016-02-08 22:47:11 +0530 | [diff] [blame] | 460 | intel_runtime_pm_put(dev_priv); |
| 461 | |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 462 | return count; |
| 463 | |
| 464 | } |
| 465 | |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 466 | static DEVICE_ATTR(gt_act_freq_mhz, S_IRUGO, gt_act_freq_mhz_show, NULL); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 467 | static DEVICE_ATTR(gt_cur_freq_mhz, S_IRUGO, gt_cur_freq_mhz_show, NULL); |
Ben Widawsky | 46ddf19 | 2012-09-12 18:12:07 -0700 | [diff] [blame] | 468 | static DEVICE_ATTR(gt_max_freq_mhz, S_IRUGO | S_IWUSR, gt_max_freq_mhz_show, gt_max_freq_mhz_store); |
| 469 | static DEVICE_ATTR(gt_min_freq_mhz, S_IRUGO | S_IWUSR, gt_min_freq_mhz_show, gt_min_freq_mhz_store); |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 470 | |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 471 | static DEVICE_ATTR(vlv_rpe_freq_mhz, S_IRUGO, vlv_rpe_freq_mhz_show, NULL); |
Ben Widawsky | ac6ae34 | 2012-09-07 19:43:44 -0700 | [diff] [blame] | 472 | |
| 473 | static ssize_t gt_rp_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf); |
| 474 | static DEVICE_ATTR(gt_RP0_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL); |
| 475 | static DEVICE_ATTR(gt_RP1_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL); |
| 476 | static DEVICE_ATTR(gt_RPn_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL); |
| 477 | |
| 478 | /* For now we have a static number of RP states */ |
| 479 | static ssize_t gt_rp_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf) |
| 480 | { |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 481 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Ben Widawsky | ac6ae34 | 2012-09-07 19:43:44 -0700 | [diff] [blame] | 482 | struct drm_device *dev = minor->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 483 | struct drm_i915_private *dev_priv = to_i915(dev); |
Akash Goel | bc4d91f | 2015-02-26 16:09:47 +0530 | [diff] [blame] | 484 | u32 val; |
Ben Widawsky | ac6ae34 | 2012-09-07 19:43:44 -0700 | [diff] [blame] | 485 | |
Akash Goel | bc4d91f | 2015-02-26 16:09:47 +0530 | [diff] [blame] | 486 | if (attr == &dev_attr_gt_RP0_freq_mhz) |
| 487 | val = intel_gpu_freq(dev_priv, dev_priv->rps.rp0_freq); |
| 488 | else if (attr == &dev_attr_gt_RP1_freq_mhz) |
| 489 | val = intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq); |
| 490 | else if (attr == &dev_attr_gt_RPn_freq_mhz) |
| 491 | val = intel_gpu_freq(dev_priv, dev_priv->rps.min_freq); |
| 492 | else |
Ben Widawsky | ac6ae34 | 2012-09-07 19:43:44 -0700 | [diff] [blame] | 493 | BUG(); |
Akash Goel | bc4d91f | 2015-02-26 16:09:47 +0530 | [diff] [blame] | 494 | |
Jani Nikula | 3e2a155 | 2013-02-14 10:42:11 +0200 | [diff] [blame] | 495 | return snprintf(buf, PAGE_SIZE, "%d\n", val); |
Ben Widawsky | ac6ae34 | 2012-09-07 19:43:44 -0700 | [diff] [blame] | 496 | } |
| 497 | |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 498 | static const struct attribute *gen6_attrs[] = { |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 499 | &dev_attr_gt_act_freq_mhz.attr, |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 500 | &dev_attr_gt_cur_freq_mhz.attr, |
| 501 | &dev_attr_gt_max_freq_mhz.attr, |
| 502 | &dev_attr_gt_min_freq_mhz.attr, |
Ben Widawsky | ac6ae34 | 2012-09-07 19:43:44 -0700 | [diff] [blame] | 503 | &dev_attr_gt_RP0_freq_mhz.attr, |
| 504 | &dev_attr_gt_RP1_freq_mhz.attr, |
| 505 | &dev_attr_gt_RPn_freq_mhz.attr, |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 506 | NULL, |
| 507 | }; |
| 508 | |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 509 | static const struct attribute *vlv_attrs[] = { |
Ville Syrjälä | c8c972e | 2015-01-23 21:04:24 +0200 | [diff] [blame] | 510 | &dev_attr_gt_act_freq_mhz.attr, |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 511 | &dev_attr_gt_cur_freq_mhz.attr, |
| 512 | &dev_attr_gt_max_freq_mhz.attr, |
| 513 | &dev_attr_gt_min_freq_mhz.attr, |
Deepak S | 74c4f62 | 2014-07-10 13:16:22 +0530 | [diff] [blame] | 514 | &dev_attr_gt_RP0_freq_mhz.attr, |
| 515 | &dev_attr_gt_RP1_freq_mhz.attr, |
| 516 | &dev_attr_gt_RPn_freq_mhz.attr, |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 517 | &dev_attr_vlv_rpe_freq_mhz.attr, |
| 518 | NULL, |
| 519 | }; |
| 520 | |
Mika Kuoppala | ef86ddc | 2013-06-06 17:38:54 +0300 | [diff] [blame] | 521 | static ssize_t error_state_read(struct file *filp, struct kobject *kobj, |
| 522 | struct bin_attribute *attr, char *buf, |
| 523 | loff_t off, size_t count) |
| 524 | { |
| 525 | |
Geliang Tang | 657fb5f | 2016-01-13 22:48:40 +0800 | [diff] [blame] | 526 | struct device *kdev = kobj_to_dev(kobj); |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 527 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Mika Kuoppala | ef86ddc | 2013-06-06 17:38:54 +0300 | [diff] [blame] | 528 | struct drm_device *dev = minor->dev; |
| 529 | struct i915_error_state_file_priv error_priv; |
| 530 | struct drm_i915_error_state_buf error_str; |
| 531 | ssize_t ret_count = 0; |
| 532 | int ret; |
| 533 | |
| 534 | memset(&error_priv, 0, sizeof(error_priv)); |
| 535 | |
Chris Wilson | 0a4cd7c | 2014-08-22 14:41:39 +0100 | [diff] [blame] | 536 | ret = i915_error_state_buf_init(&error_str, to_i915(dev), count, off); |
Mika Kuoppala | ef86ddc | 2013-06-06 17:38:54 +0300 | [diff] [blame] | 537 | if (ret) |
| 538 | return ret; |
| 539 | |
| 540 | error_priv.dev = dev; |
| 541 | i915_error_state_get(dev, &error_priv); |
| 542 | |
| 543 | ret = i915_error_state_to_str(&error_str, &error_priv); |
| 544 | if (ret) |
| 545 | goto out; |
| 546 | |
| 547 | ret_count = count < error_str.bytes ? count : error_str.bytes; |
| 548 | |
| 549 | memcpy(buf, error_str.buf, ret_count); |
| 550 | out: |
| 551 | i915_error_state_put(&error_priv); |
| 552 | i915_error_state_buf_release(&error_str); |
| 553 | |
| 554 | return ret ?: ret_count; |
| 555 | } |
| 556 | |
| 557 | static ssize_t error_state_write(struct file *file, struct kobject *kobj, |
| 558 | struct bin_attribute *attr, char *buf, |
| 559 | loff_t off, size_t count) |
| 560 | { |
Geliang Tang | 657fb5f | 2016-01-13 22:48:40 +0800 | [diff] [blame] | 561 | struct device *kdev = kobj_to_dev(kobj); |
Dave Airlie | 14c8d110 | 2013-10-11 14:45:30 +1000 | [diff] [blame] | 562 | struct drm_minor *minor = dev_to_drm_minor(kdev); |
Mika Kuoppala | ef86ddc | 2013-06-06 17:38:54 +0300 | [diff] [blame] | 563 | struct drm_device *dev = minor->dev; |
| 564 | int ret; |
| 565 | |
| 566 | DRM_DEBUG_DRIVER("Resetting error state\n"); |
| 567 | |
| 568 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 569 | if (ret) |
| 570 | return ret; |
| 571 | |
| 572 | i915_destroy_error_state(dev); |
| 573 | mutex_unlock(&dev->struct_mutex); |
| 574 | |
| 575 | return count; |
| 576 | } |
| 577 | |
| 578 | static struct bin_attribute error_state_attr = { |
| 579 | .attr.name = "error", |
| 580 | .attr.mode = S_IRUSR | S_IWUSR, |
| 581 | .size = 0, |
| 582 | .read = error_state_read, |
| 583 | .write = error_state_write, |
| 584 | }; |
| 585 | |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 586 | void i915_setup_sysfs(struct drm_device *dev) |
| 587 | { |
| 588 | int ret; |
| 589 | |
Ben Widawsky | 8c3f929 | 2012-09-02 00:24:40 -0700 | [diff] [blame] | 590 | #ifdef CONFIG_PM |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 591 | if (HAS_RC6(dev)) { |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 592 | ret = sysfs_merge_group(&dev->primary->kdev->kobj, |
Daniel Vetter | 112abd2 | 2012-05-31 14:57:43 +0200 | [diff] [blame] | 593 | &rc6_attr_group); |
| 594 | if (ret) |
| 595 | DRM_ERROR("RC6 residency sysfs setup failed\n"); |
| 596 | } |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 597 | if (HAS_RC6p(dev)) { |
| 598 | ret = sysfs_merge_group(&dev->primary->kdev->kobj, |
| 599 | &rc6p_attr_group); |
| 600 | if (ret) |
| 601 | DRM_ERROR("RC6p residency sysfs setup failed\n"); |
| 602 | } |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 603 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 626ad6f | 2015-02-26 21:10:27 +0530 | [diff] [blame] | 604 | ret = sysfs_merge_group(&dev->primary->kdev->kobj, |
| 605 | &media_rc6_attr_group); |
| 606 | if (ret) |
| 607 | DRM_ERROR("Media RC6 residency sysfs setup failed\n"); |
| 608 | } |
Ben Widawsky | 8c3f929 | 2012-09-02 00:24:40 -0700 | [diff] [blame] | 609 | #endif |
Ben Widawsky | 040d2ba | 2013-09-19 11:01:40 -0700 | [diff] [blame] | 610 | if (HAS_L3_DPF(dev)) { |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 611 | ret = device_create_bin_file(dev->primary->kdev, &dpf_attrs); |
Daniel Vetter | 112abd2 | 2012-05-31 14:57:43 +0200 | [diff] [blame] | 612 | if (ret) |
| 613 | DRM_ERROR("l3 parity sysfs setup failed\n"); |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 614 | |
| 615 | if (NUM_L3_SLICES(dev) > 1) { |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 616 | ret = device_create_bin_file(dev->primary->kdev, |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 617 | &dpf_attrs_1); |
| 618 | if (ret) |
| 619 | DRM_ERROR("l3 parity slice 1 setup failed\n"); |
| 620 | } |
Daniel Vetter | 112abd2 | 2012-05-31 14:57:43 +0200 | [diff] [blame] | 621 | } |
Ben Widawsky | df6eedc | 2012-09-07 19:43:40 -0700 | [diff] [blame] | 622 | |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 623 | ret = 0; |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 624 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 625 | ret = sysfs_create_files(&dev->primary->kdev->kobj, vlv_attrs); |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 626 | else if (INTEL_INFO(dev)->gen >= 6) |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 627 | ret = sysfs_create_files(&dev->primary->kdev->kobj, gen6_attrs); |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 628 | if (ret) |
| 629 | DRM_ERROR("RPS sysfs setup failed\n"); |
Mika Kuoppala | ef86ddc | 2013-06-06 17:38:54 +0300 | [diff] [blame] | 630 | |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 631 | ret = sysfs_create_bin_file(&dev->primary->kdev->kobj, |
Mika Kuoppala | ef86ddc | 2013-06-06 17:38:54 +0300 | [diff] [blame] | 632 | &error_state_attr); |
| 633 | if (ret) |
| 634 | DRM_ERROR("error_state sysfs setup failed\n"); |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | void i915_teardown_sysfs(struct drm_device *dev) |
| 638 | { |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 639 | sysfs_remove_bin_file(&dev->primary->kdev->kobj, &error_state_attr); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 640 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 641 | sysfs_remove_files(&dev->primary->kdev->kobj, vlv_attrs); |
Chris Wilson | 97e4eed | 2013-08-26 16:18:54 +0100 | [diff] [blame] | 642 | else |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 643 | sysfs_remove_files(&dev->primary->kdev->kobj, gen6_attrs); |
| 644 | device_remove_bin_file(dev->primary->kdev, &dpf_attrs_1); |
| 645 | device_remove_bin_file(dev->primary->kdev, &dpf_attrs); |
Ben Widawsky | 853c70e | 2012-09-19 10:50:19 -0700 | [diff] [blame] | 646 | #ifdef CONFIG_PM |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 647 | sysfs_unmerge_group(&dev->primary->kdev->kobj, &rc6_attr_group); |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 648 | sysfs_unmerge_group(&dev->primary->kdev->kobj, &rc6p_attr_group); |
Ben Widawsky | 853c70e | 2012-09-19 10:50:19 -0700 | [diff] [blame] | 649 | #endif |
Ben Widawsky | 0136db5 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 650 | } |