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