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