i915_sysfs.c 17.1 KB
Newer Older
B
Ben Widawsky 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * Copyright © 2012 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 * Authors:
 *    Ben Widawsky <ben@bwidawsk.net>
 *
 */

#include <linux/device.h>
#include <linux/module.h>
#include <linux/stat.h>
#include <linux/sysfs.h>
32
#include "intel_drv.h"
B
Ben Widawsky 已提交
33 34
#include "i915_drv.h"

35
#define dev_to_drm_minor(d) dev_get_drvdata((d))
36

37
#ifdef CONFIG_PM
B
Ben Widawsky 已提交
38 39 40 41
static u32 calc_residency(struct drm_device *dev, const u32 reg)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	u64 raw_time; /* 32b value may overflow during fixed point math */
42
	u64 units = 128ULL, div = 100000ULL, bias = 100ULL;
43
	u32 ret;
B
Ben Widawsky 已提交
44 45 46 47

	if (!intel_enable_rc6(dev))
		return 0;

48 49
	intel_runtime_pm_get(dev_priv);

50 51 52 53 54 55 56 57
	/* On VLV, residency time is in CZ units rather than 1.28us */
	if (IS_VALLEYVIEW(dev)) {
		u32 clkctl2;

		clkctl2 = I915_READ(VLV_CLK_CTL2) >>
			CLK_CTL2_CZCOUNT_30NS_SHIFT;
		if (!clkctl2) {
			WARN(!clkctl2, "bogus CZ count value");
58 59
			ret = 0;
			goto out;
60 61 62 63 64 65 66 67 68
		}
		units = DIV_ROUND_UP_ULL(30ULL * bias, (u64)clkctl2);
		if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
			units <<= 8;

		div = 1000000ULL * bias;
	}

	raw_time = I915_READ(reg) * units;
69 70 71 72 73
	ret = DIV_ROUND_UP_ULL(raw_time, div);

out:
	intel_runtime_pm_put(dev_priv);
	return ret;
B
Ben Widawsky 已提交
74 75 76
}

static ssize_t
B
Ben Widawsky 已提交
77
show_rc6_mask(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
78
{
79
	struct drm_minor *dminor = dev_to_drm_minor(kdev);
80
	return snprintf(buf, PAGE_SIZE, "%x\n", intel_enable_rc6(dminor->dev));
B
Ben Widawsky 已提交
81 82 83
}

static ssize_t
B
Ben Widawsky 已提交
84
show_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
85
{
86
	struct drm_minor *dminor = dev_get_drvdata(kdev);
B
Ben Widawsky 已提交
87
	u32 rc6_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6);
88
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency);
B
Ben Widawsky 已提交
89 90 91
}

static ssize_t
B
Ben Widawsky 已提交
92
show_rc6p_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
93
{
94
	struct drm_minor *dminor = dev_to_drm_minor(kdev);
B
Ben Widawsky 已提交
95
	u32 rc6p_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6p);
96 97
	if (IS_VALLEYVIEW(dminor->dev))
		rc6p_residency = 0;
98
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6p_residency);
B
Ben Widawsky 已提交
99 100 101
}

static ssize_t
B
Ben Widawsky 已提交
102
show_rc6pp_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
103
{
104
	struct drm_minor *dminor = dev_to_drm_minor(kdev);
B
Ben Widawsky 已提交
105
	u32 rc6pp_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6pp);
106 107
	if (IS_VALLEYVIEW(dminor->dev))
		rc6pp_residency = 0;
108
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6pp_residency);
B
Ben Widawsky 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
}

static DEVICE_ATTR(rc6_enable, S_IRUGO, show_rc6_mask, NULL);
static DEVICE_ATTR(rc6_residency_ms, S_IRUGO, show_rc6_ms, NULL);
static DEVICE_ATTR(rc6p_residency_ms, S_IRUGO, show_rc6p_ms, NULL);
static DEVICE_ATTR(rc6pp_residency_ms, S_IRUGO, show_rc6pp_ms, NULL);

static struct attribute *rc6_attrs[] = {
	&dev_attr_rc6_enable.attr,
	&dev_attr_rc6_residency_ms.attr,
	&dev_attr_rc6p_residency_ms.attr,
	&dev_attr_rc6pp_residency_ms.attr,
	NULL
};

static struct attribute_group rc6_attr_group = {
	.name = power_group_name,
	.attrs =  rc6_attrs
};
128
#endif
B
Ben Widawsky 已提交
129

130 131
static int l3_access_valid(struct drm_device *dev, loff_t offset)
{
132
	if (!HAS_L3_DPF(dev))
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
		return -EPERM;

	if (offset % 4 != 0)
		return -EINVAL;

	if (offset >= GEN7_L3LOG_SIZE)
		return -ENXIO;

	return 0;
}

static ssize_t
i915_l3_read(struct file *filp, struct kobject *kobj,
	     struct bin_attribute *attr, char *buf,
	     loff_t offset, size_t count)
{
	struct device *dev = container_of(kobj, struct device, kobj);
150
	struct drm_minor *dminor = dev_to_drm_minor(dev);
151 152
	struct drm_device *drm_dev = dminor->dev;
	struct drm_i915_private *dev_priv = drm_dev->dev_private;
153
	int slice = (int)(uintptr_t)attr->private;
154
	int ret;
155

156 157
	count = round_down(count, 4);

158 159 160 161
	ret = l3_access_valid(drm_dev, offset);
	if (ret)
		return ret;

D
Dan Carpenter 已提交
162
	count = min_t(size_t, GEN7_L3LOG_SIZE - offset, count);
163

164 165 166 167
	ret = i915_mutex_lock_interruptible(drm_dev);
	if (ret)
		return ret;

168 169 170 171 172 173
	if (dev_priv->l3_parity.remap_info[slice])
		memcpy(buf,
		       dev_priv->l3_parity.remap_info[slice] + (offset/4),
		       count);
	else
		memset(buf, 0, count);
174 175 176

	mutex_unlock(&drm_dev->struct_mutex);

B
Ben Widawsky 已提交
177
	return count;
178 179 180 181 182 183 184 185
}

static ssize_t
i915_l3_write(struct file *filp, struct kobject *kobj,
	      struct bin_attribute *attr, char *buf,
	      loff_t offset, size_t count)
{
	struct device *dev = container_of(kobj, struct device, kobj);
186
	struct drm_minor *dminor = dev_to_drm_minor(dev);
187 188
	struct drm_device *drm_dev = dminor->dev;
	struct drm_i915_private *dev_priv = drm_dev->dev_private;
189
	struct i915_hw_context *ctx;
190
	u32 *temp = NULL; /* Just here to make handling failures easy */
191
	int slice = (int)(uintptr_t)attr->private;
192 193
	int ret;

194 195 196
	if (!HAS_HW_CONTEXTS(drm_dev))
		return -ENXIO;

197 198 199 200 201 202 203 204
	ret = l3_access_valid(drm_dev, offset);
	if (ret)
		return ret;

	ret = i915_mutex_lock_interruptible(drm_dev);
	if (ret)
		return ret;

205
	if (!dev_priv->l3_parity.remap_info[slice]) {
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
		temp = kzalloc(GEN7_L3LOG_SIZE, GFP_KERNEL);
		if (!temp) {
			mutex_unlock(&drm_dev->struct_mutex);
			return -ENOMEM;
		}
	}

	ret = i915_gpu_idle(drm_dev);
	if (ret) {
		kfree(temp);
		mutex_unlock(&drm_dev->struct_mutex);
		return ret;
	}

	/* TODO: Ideally we really want a GPU reset here to make sure errors
	 * aren't propagated. Since I cannot find a stable way to reset the GPU
	 * at this point it is left as a TODO.
	*/
	if (temp)
225
		dev_priv->l3_parity.remap_info[slice] = temp;
226

227
	memcpy(dev_priv->l3_parity.remap_info[slice] + (offset/4), buf, count);
228

229 230 231
	/* NB: We defer the remapping until we switch to the context */
	list_for_each_entry(ctx, &dev_priv->context_list, link)
		ctx->remap_slice |= (1<<slice);
232 233 234 235 236 237 238 239 240 241 242

	mutex_unlock(&drm_dev->struct_mutex);

	return count;
}

static struct bin_attribute dpf_attrs = {
	.attr = {.name = "l3_parity", .mode = (S_IRUSR | S_IWUSR)},
	.size = GEN7_L3LOG_SIZE,
	.read = i915_l3_read,
	.write = i915_l3_write,
243 244 245 246 247 248 249 250 251 252 253
	.mmap = NULL,
	.private = (void *)0
};

static struct bin_attribute dpf_attrs_1 = {
	.attr = {.name = "l3_parity_slice_1", .mode = (S_IRUSR | S_IWUSR)},
	.size = GEN7_L3LOG_SIZE,
	.read = i915_l3_read,
	.write = i915_l3_write,
	.mmap = NULL,
	.private = (void *)1
254 255
};

256 257 258
static ssize_t gt_cur_freq_mhz_show(struct device *kdev,
				    struct device_attribute *attr, char *buf)
{
259
	struct drm_minor *minor = dev_to_drm_minor(kdev);
260 261 262 263
	struct drm_device *dev = minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret;

264 265
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

266
	mutex_lock(&dev_priv->rps.hw_lock);
267 268
	if (IS_VALLEYVIEW(dev_priv->dev)) {
		u32 freq;
269
		freq = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
270
		ret = vlv_gpu_freq(dev_priv, (freq >> 8) & 0xff);
271
	} else {
272
		ret = dev_priv->rps.cur_delay * GT_FREQUENCY_MULTIPLIER;
273
	}
274
	mutex_unlock(&dev_priv->rps.hw_lock);
275

276
	return snprintf(buf, PAGE_SIZE, "%d\n", ret);
277 278
}

279 280 281
static ssize_t vlv_rpe_freq_mhz_show(struct device *kdev,
				     struct device_attribute *attr, char *buf)
{
282
	struct drm_minor *minor = dev_to_drm_minor(kdev);
283 284 285 286
	struct drm_device *dev = minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;

	return snprintf(buf, PAGE_SIZE, "%d\n",
287
			vlv_gpu_freq(dev_priv, dev_priv->rps.rpe_delay));
288 289
}

290 291
static ssize_t gt_max_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
292
	struct drm_minor *minor = dev_to_drm_minor(kdev);
293 294 295 296
	struct drm_device *dev = minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret;

297 298
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

299
	mutex_lock(&dev_priv->rps.hw_lock);
300
	if (IS_VALLEYVIEW(dev_priv->dev))
301
		ret = vlv_gpu_freq(dev_priv, dev_priv->rps.max_delay);
302 303
	else
		ret = dev_priv->rps.max_delay * GT_FREQUENCY_MULTIPLIER;
304
	mutex_unlock(&dev_priv->rps.hw_lock);
305

306
	return snprintf(buf, PAGE_SIZE, "%d\n", ret);
307 308
}

309 310 311 312
static ssize_t gt_max_freq_mhz_store(struct device *kdev,
				     struct device_attribute *attr,
				     const char *buf, size_t count)
{
313
	struct drm_minor *minor = dev_to_drm_minor(kdev);
314 315
	struct drm_device *dev = minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
316
	u32 val, rp_state_cap, hw_max, hw_min, non_oc_max;
317 318 319 320 321 322
	ssize_t ret;

	ret = kstrtou32(buf, 0, &val);
	if (ret)
		return ret;

323 324
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

325
	mutex_lock(&dev_priv->rps.hw_lock);
326

327
	if (IS_VALLEYVIEW(dev_priv->dev)) {
328
		val = vlv_freq_opcode(dev_priv, val);
329 330 331 332 333 334

		hw_max = valleyview_rps_max_freq(dev_priv);
		hw_min = valleyview_rps_min_freq(dev_priv);
		non_oc_max = hw_max;
	} else {
		val /= GT_FREQUENCY_MULTIPLIER;
335

336 337 338 339 340 341 342 343
		rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
		hw_max = dev_priv->rps.hw_max;
		non_oc_max = (rp_state_cap & 0xff);
		hw_min = ((rp_state_cap & 0xff0000) >> 16);
	}

	if (val < hw_min || val > hw_max ||
	    val < dev_priv->rps.min_delay) {
344
		mutex_unlock(&dev_priv->rps.hw_lock);
345 346 347
		return -EINVAL;
	}

348 349 350 351
	if (val > non_oc_max)
		DRM_DEBUG("User requested overclocking to %d\n",
			  val * GT_FREQUENCY_MULTIPLIER);

352 353
	dev_priv->rps.max_delay = val;

354
	if (dev_priv->rps.cur_delay > val) {
355 356
		if (IS_VALLEYVIEW(dev))
			valleyview_set_rps(dev, val);
357
		else
358
			gen6_set_rps(dev, val);
359
	}
360 361 362 363 364
	else if (!IS_VALLEYVIEW(dev))
		/* We still need gen6_set_rps to process the new max_delay
		   and update the interrupt limits even though frequency
		   request is unchanged. */
		gen6_set_rps(dev, dev_priv->rps.cur_delay);
365

366
	mutex_unlock(&dev_priv->rps.hw_lock);
367 368 369 370

	return count;
}

371 372
static ssize_t gt_min_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
373
	struct drm_minor *minor = dev_to_drm_minor(kdev);
374 375 376 377
	struct drm_device *dev = minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret;

378 379
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

380
	mutex_lock(&dev_priv->rps.hw_lock);
381
	if (IS_VALLEYVIEW(dev_priv->dev))
382
		ret = vlv_gpu_freq(dev_priv, dev_priv->rps.min_delay);
383 384
	else
		ret = dev_priv->rps.min_delay * GT_FREQUENCY_MULTIPLIER;
385
	mutex_unlock(&dev_priv->rps.hw_lock);
386

387
	return snprintf(buf, PAGE_SIZE, "%d\n", ret);
388 389
}

390 391 392 393
static ssize_t gt_min_freq_mhz_store(struct device *kdev,
				     struct device_attribute *attr,
				     const char *buf, size_t count)
{
394
	struct drm_minor *minor = dev_to_drm_minor(kdev);
395 396 397 398 399 400 401 402 403
	struct drm_device *dev = minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 val, rp_state_cap, hw_max, hw_min;
	ssize_t ret;

	ret = kstrtou32(buf, 0, &val);
	if (ret)
		return ret;

404 405
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

406
	mutex_lock(&dev_priv->rps.hw_lock);
407

408
	if (IS_VALLEYVIEW(dev)) {
409
		val = vlv_freq_opcode(dev_priv, val);
410 411 412 413 414 415 416 417 418 419

		hw_max = valleyview_rps_max_freq(dev_priv);
		hw_min = valleyview_rps_min_freq(dev_priv);
	} else {
		val /= GT_FREQUENCY_MULTIPLIER;

		rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
		hw_max = dev_priv->rps.hw_max;
		hw_min = ((rp_state_cap & 0xff0000) >> 16);
	}
420 421

	if (val < hw_min || val > hw_max || val > dev_priv->rps.max_delay) {
422
		mutex_unlock(&dev_priv->rps.hw_lock);
423 424 425
		return -EINVAL;
	}

426 427
	dev_priv->rps.min_delay = val;

428 429 430 431
	if (dev_priv->rps.cur_delay < val) {
		if (IS_VALLEYVIEW(dev))
			valleyview_set_rps(dev, val);
		else
432
			gen6_set_rps(dev, val);
433
	}
434 435 436 437 438
	else if (!IS_VALLEYVIEW(dev))
		/* We still need gen6_set_rps to process the new min_delay
		   and update the interrupt limits even though frequency
		   request is unchanged. */
		gen6_set_rps(dev, dev_priv->rps.cur_delay);
439

440
	mutex_unlock(&dev_priv->rps.hw_lock);
441 442 443 444 445

	return count;

}

446
static DEVICE_ATTR(gt_cur_freq_mhz, S_IRUGO, gt_cur_freq_mhz_show, NULL);
447 448
static DEVICE_ATTR(gt_max_freq_mhz, S_IRUGO | S_IWUSR, gt_max_freq_mhz_show, gt_max_freq_mhz_store);
static DEVICE_ATTR(gt_min_freq_mhz, S_IRUGO | S_IWUSR, gt_min_freq_mhz_show, gt_min_freq_mhz_store);
449

450
static DEVICE_ATTR(vlv_rpe_freq_mhz, S_IRUGO, vlv_rpe_freq_mhz_show, NULL);
451 452 453 454 455 456 457 458 459

static ssize_t gt_rp_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf);
static DEVICE_ATTR(gt_RP0_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL);
static DEVICE_ATTR(gt_RP1_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL);
static DEVICE_ATTR(gt_RPn_freq_mhz, S_IRUGO, gt_rp_mhz_show, NULL);

/* For now we have a static number of RP states */
static ssize_t gt_rp_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
460
	struct drm_minor *minor = dev_to_drm_minor(kdev);
461 462 463 464 465 466 467 468
	struct drm_device *dev = minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 val, rp_state_cap;
	ssize_t ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
469
	intel_runtime_pm_get(dev_priv);
470
	rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
471
	intel_runtime_pm_put(dev_priv);
472 473 474 475 476 477 478 479 480 481 482
	mutex_unlock(&dev->struct_mutex);

	if (attr == &dev_attr_gt_RP0_freq_mhz) {
		val = ((rp_state_cap & 0x0000ff) >> 0) * GT_FREQUENCY_MULTIPLIER;
	} else if (attr == &dev_attr_gt_RP1_freq_mhz) {
		val = ((rp_state_cap & 0x00ff00) >> 8) * GT_FREQUENCY_MULTIPLIER;
	} else if (attr == &dev_attr_gt_RPn_freq_mhz) {
		val = ((rp_state_cap & 0xff0000) >> 16) * GT_FREQUENCY_MULTIPLIER;
	} else {
		BUG();
	}
483
	return snprintf(buf, PAGE_SIZE, "%d\n", val);
484 485
}

486 487 488 489
static const struct attribute *gen6_attrs[] = {
	&dev_attr_gt_cur_freq_mhz.attr,
	&dev_attr_gt_max_freq_mhz.attr,
	&dev_attr_gt_min_freq_mhz.attr,
490 491 492
	&dev_attr_gt_RP0_freq_mhz.attr,
	&dev_attr_gt_RP1_freq_mhz.attr,
	&dev_attr_gt_RPn_freq_mhz.attr,
493 494 495
	NULL,
};

496 497 498 499 500 501 502 503
static const struct attribute *vlv_attrs[] = {
	&dev_attr_gt_cur_freq_mhz.attr,
	&dev_attr_gt_max_freq_mhz.attr,
	&dev_attr_gt_min_freq_mhz.attr,
	&dev_attr_vlv_rpe_freq_mhz.attr,
	NULL,
};

504 505 506 507 508 509
static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
				struct bin_attribute *attr, char *buf,
				loff_t off, size_t count)
{

	struct device *kdev = container_of(kobj, struct device, kobj);
510
	struct drm_minor *minor = dev_to_drm_minor(kdev);
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
	struct drm_device *dev = minor->dev;
	struct i915_error_state_file_priv error_priv;
	struct drm_i915_error_state_buf error_str;
	ssize_t ret_count = 0;
	int ret;

	memset(&error_priv, 0, sizeof(error_priv));

	ret = i915_error_state_buf_init(&error_str, count, off);
	if (ret)
		return ret;

	error_priv.dev = dev;
	i915_error_state_get(dev, &error_priv);

	ret = i915_error_state_to_str(&error_str, &error_priv);
	if (ret)
		goto out;

	ret_count = count < error_str.bytes ? count : error_str.bytes;

	memcpy(buf, error_str.buf, ret_count);
out:
	i915_error_state_put(&error_priv);
	i915_error_state_buf_release(&error_str);

	return ret ?: ret_count;
}

static ssize_t error_state_write(struct file *file, struct kobject *kobj,
				 struct bin_attribute *attr, char *buf,
				 loff_t off, size_t count)
{
	struct device *kdev = container_of(kobj, struct device, kobj);
545
	struct drm_minor *minor = dev_to_drm_minor(kdev);
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
	struct drm_device *dev = minor->dev;
	int ret;

	DRM_DEBUG_DRIVER("Resetting error state\n");

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

	i915_destroy_error_state(dev);
	mutex_unlock(&dev->struct_mutex);

	return count;
}

static struct bin_attribute error_state_attr = {
	.attr.name = "error",
	.attr.mode = S_IRUSR | S_IWUSR,
	.size = 0,
	.read = error_state_read,
	.write = error_state_write,
};

B
Ben Widawsky 已提交
569 570 571 572
void i915_setup_sysfs(struct drm_device *dev)
{
	int ret;

573
#ifdef CONFIG_PM
574
	if (INTEL_INFO(dev)->gen >= 6) {
575
		ret = sysfs_merge_group(&dev->primary->kdev->kobj,
576 577 578 579
					&rc6_attr_group);
		if (ret)
			DRM_ERROR("RC6 residency sysfs setup failed\n");
	}
580
#endif
581
	if (HAS_L3_DPF(dev)) {
582
		ret = device_create_bin_file(dev->primary->kdev, &dpf_attrs);
583 584
		if (ret)
			DRM_ERROR("l3 parity sysfs setup failed\n");
585 586

		if (NUM_L3_SLICES(dev) > 1) {
587
			ret = device_create_bin_file(dev->primary->kdev,
588 589 590 591
						     &dpf_attrs_1);
			if (ret)
				DRM_ERROR("l3 parity slice 1 setup failed\n");
		}
592
	}
593

594 595
	ret = 0;
	if (IS_VALLEYVIEW(dev))
596
		ret = sysfs_create_files(&dev->primary->kdev->kobj, vlv_attrs);
597
	else if (INTEL_INFO(dev)->gen >= 6)
598
		ret = sysfs_create_files(&dev->primary->kdev->kobj, gen6_attrs);
599 600
	if (ret)
		DRM_ERROR("RPS sysfs setup failed\n");
601

602
	ret = sysfs_create_bin_file(&dev->primary->kdev->kobj,
603 604 605
				    &error_state_attr);
	if (ret)
		DRM_ERROR("error_state sysfs setup failed\n");
B
Ben Widawsky 已提交
606 607 608 609
}

void i915_teardown_sysfs(struct drm_device *dev)
{
610
	sysfs_remove_bin_file(&dev->primary->kdev->kobj, &error_state_attr);
611
	if (IS_VALLEYVIEW(dev))
612
		sysfs_remove_files(&dev->primary->kdev->kobj, vlv_attrs);
613
	else
614 615 616
		sysfs_remove_files(&dev->primary->kdev->kobj, gen6_attrs);
	device_remove_bin_file(dev->primary->kdev,  &dpf_attrs_1);
	device_remove_bin_file(dev->primary->kdev,  &dpf_attrs);
617
#ifdef CONFIG_PM
618
	sysfs_unmerge_group(&dev->primary->kdev->kobj, &rc6_attr_group);
619
#endif
B
Ben Widawsky 已提交
620
}