i915_sysfs.c 16.9 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"

D
David Weinehall 已提交
35
static inline struct drm_i915_private *kdev_minor_to_i915(struct device *kdev)
36
{
D
David Weinehall 已提交
37 38
	struct drm_minor *minor = dev_get_drvdata(kdev);
	return to_i915(minor->dev);
39
}
40

41
#ifdef CONFIG_PM
D
David Weinehall 已提交
42
static u32 calc_residency(struct drm_i915_private *dev_priv,
43
			  i915_reg_t reg)
B
Ben Widawsky 已提交
44
{
45 46
	return DIV_ROUND_CLOSEST_ULL(intel_rc6_residency_us(dev_priv, reg),
				     1000);
B
Ben Widawsky 已提交
47 48 49
}

static ssize_t
B
Ben Widawsky 已提交
50
show_rc6_mask(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
51
{
52
	return snprintf(buf, PAGE_SIZE, "%x\n", intel_rc6_enabled());
B
Ben Widawsky 已提交
53 54 55
}

static ssize_t
B
Ben Widawsky 已提交
56
show_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
57
{
D
David Weinehall 已提交
58 59
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
	u32 rc6_residency = calc_residency(dev_priv, GEN6_GT_GFX_RC6);
60
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency);
B
Ben Widawsky 已提交
61 62 63
}

static ssize_t
B
Ben Widawsky 已提交
64
show_rc6p_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
65
{
D
David Weinehall 已提交
66 67
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
	u32 rc6p_residency = calc_residency(dev_priv, GEN6_GT_GFX_RC6p);
68
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6p_residency);
B
Ben Widawsky 已提交
69 70 71
}

static ssize_t
B
Ben Widawsky 已提交
72
show_rc6pp_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
73
{
D
David Weinehall 已提交
74 75
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
	u32 rc6pp_residency = calc_residency(dev_priv, GEN6_GT_GFX_RC6pp);
76
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6pp_residency);
B
Ben Widawsky 已提交
77 78
}

79 80 81
static ssize_t
show_media_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf)
{
D
David Weinehall 已提交
82 83
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
	u32 rc6_residency = calc_residency(dev_priv, VLV_GT_MEDIA_RC6);
84 85 86
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency);
}

B
Ben Widawsky 已提交
87 88 89 90
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);
91
static DEVICE_ATTR(media_rc6_residency_ms, S_IRUGO, show_media_rc6_ms, NULL);
B
Ben Widawsky 已提交
92 93 94 95 96 97 98

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

99
static const struct attribute_group rc6_attr_group = {
B
Ben Widawsky 已提交
100 101 102
	.name = power_group_name,
	.attrs =  rc6_attrs
};
103 104 105 106 107 108 109

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

110
static const struct attribute_group rc6p_attr_group = {
111 112 113
	.name = power_group_name,
	.attrs =  rc6p_attrs
};
114 115 116 117 118 119

static struct attribute *media_rc6_attrs[] = {
	&dev_attr_media_rc6_residency_ms.attr,
	NULL
};

120
static const struct attribute_group media_rc6_attr_group = {
121 122 123
	.name = power_group_name,
	.attrs =  media_rc6_attrs
};
124
#endif
B
Ben Widawsky 已提交
125

D
David Weinehall 已提交
126
static int l3_access_valid(struct drm_i915_private *dev_priv, loff_t offset)
127
{
D
David Weinehall 已提交
128
	if (!HAS_L3_DPF(dev_priv))
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
		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)
{
145
	struct device *kdev = kobj_to_dev(kobj);
D
David Weinehall 已提交
146 147
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
	struct drm_device *dev = &dev_priv->drm;
148
	int slice = (int)(uintptr_t)attr->private;
149
	int ret;
150

151 152
	count = round_down(count, 4);

D
David Weinehall 已提交
153
	ret = l3_access_valid(dev_priv, offset);
154 155 156
	if (ret)
		return ret;

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

159
	ret = i915_mutex_lock_interruptible(dev);
160 161 162
	if (ret)
		return ret;

163 164 165 166 167 168
	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);
169

170
	mutex_unlock(&dev->struct_mutex);
171

B
Ben Widawsky 已提交
172
	return count;
173 174 175 176 177 178 179
}

static ssize_t
i915_l3_write(struct file *filp, struct kobject *kobj,
	      struct bin_attribute *attr, char *buf,
	      loff_t offset, size_t count)
{
180
	struct device *kdev = kobj_to_dev(kobj);
D
David Weinehall 已提交
181 182
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
	struct drm_device *dev = &dev_priv->drm;
183
	struct i915_gem_context *ctx;
184
	int slice = (int)(uintptr_t)attr->private;
185
	u32 **remap_info;
186 187
	int ret;

D
David Weinehall 已提交
188
	ret = l3_access_valid(dev_priv, offset);
189 190 191
	if (ret)
		return ret;

192
	ret = i915_mutex_lock_interruptible(dev);
193 194 195
	if (ret)
		return ret;

196 197 198 199 200 201
	remap_info = &dev_priv->l3_parity.remap_info[slice];
	if (!*remap_info) {
		*remap_info = kzalloc(GEN7_L3LOG_SIZE, GFP_KERNEL);
		if (!*remap_info) {
			ret = -ENOMEM;
			goto out;
202 203 204 205 206 207 208
		}
	}

	/* 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.
	*/
209
	memcpy(*remap_info + (offset/4), buf, count);
210

211
	/* NB: We defer the remapping until we switch to the context */
212
	list_for_each_entry(ctx, &dev_priv->contexts.list, link)
213
		ctx->remap_slice |= (1<<slice);
214

215 216 217
	ret = count;

out:
218
	mutex_unlock(&dev->struct_mutex);
219

220
	return ret;
221 222
}

223
static const struct bin_attribute dpf_attrs = {
224 225 226 227
	.attr = {.name = "l3_parity", .mode = (S_IRUSR | S_IWUSR)},
	.size = GEN7_L3LOG_SIZE,
	.read = i915_l3_read,
	.write = i915_l3_write,
228 229 230 231
	.mmap = NULL,
	.private = (void *)0
};

232
static const struct bin_attribute dpf_attrs_1 = {
233 234 235 236 237 238
	.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
239 240
};

241
static ssize_t gt_act_freq_mhz_show(struct device *kdev,
242 243
				    struct device_attribute *attr, char *buf)
{
D
David Weinehall 已提交
244
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
245 246
	int ret;

247 248
	intel_runtime_pm_get(dev_priv);

249
	mutex_lock(&dev_priv->pcu_lock);
250
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
251
		u32 freq;
252
		freq = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
253
		ret = intel_gpu_freq(dev_priv, (freq >> 8) & 0xff);
254 255
	} else {
		u32 rpstat = I915_READ(GEN6_RPSTAT1);
256
		if (INTEL_GEN(dev_priv) >= 9)
257 258
			ret = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT;
		else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
259 260 261
			ret = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
		else
			ret = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
262
		ret = intel_gpu_freq(dev_priv, ret);
263
	}
264
	mutex_unlock(&dev_priv->pcu_lock);
265 266 267 268 269 270 271 272 273

	intel_runtime_pm_put(dev_priv);

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

static ssize_t gt_cur_freq_mhz_show(struct device *kdev,
				    struct device_attribute *attr, char *buf)
{
D
David Weinehall 已提交
274
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
275

276 277
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
278
				       dev_priv->gt_pm.rps.cur_freq));
279 280
}

281 282
static ssize_t gt_boost_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
D
David Weinehall 已提交
283
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
284 285

	return snprintf(buf, PAGE_SIZE, "%d\n",
286
			intel_gpu_freq(dev_priv,
287
				       dev_priv->gt_pm.rps.boost_freq));
288 289 290 291 292 293
}

static ssize_t gt_boost_freq_mhz_store(struct device *kdev,
				       struct device_attribute *attr,
				       const char *buf, size_t count)
{
D
David Weinehall 已提交
294
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
295
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
296 297 298 299 300 301 302 303 304
	u32 val;
	ssize_t ret;

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

	/* Validate against (static) hardware limits */
	val = intel_freq_opcode(dev_priv, val);
305
	if (val < rps->min_freq || val > rps->max_freq)
306 307
		return -EINVAL;

308
	mutex_lock(&dev_priv->pcu_lock);
309
	rps->boost_freq = val;
310
	mutex_unlock(&dev_priv->pcu_lock);
311 312 313 314

	return count;
}

315 316 317
static ssize_t vlv_rpe_freq_mhz_show(struct device *kdev,
				     struct device_attribute *attr, char *buf)
{
D
David Weinehall 已提交
318
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
319

320 321
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
322
				       dev_priv->gt_pm.rps.efficient_freq));
323 324
}

325 326
static ssize_t gt_max_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
D
David Weinehall 已提交
327
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
328

329 330
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
331
				       dev_priv->gt_pm.rps.max_freq_softlimit));
332 333
}

334 335 336 337
static ssize_t gt_max_freq_mhz_store(struct device *kdev,
				     struct device_attribute *attr,
				     const char *buf, size_t count)
{
D
David Weinehall 已提交
338
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
339
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
340
	u32 val;
341 342 343 344 345 346
	ssize_t ret;

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

347 348
	intel_runtime_pm_get(dev_priv);

349
	mutex_lock(&dev_priv->pcu_lock);
350

351
	val = intel_freq_opcode(dev_priv, val);
352

353 354 355
	if (val < rps->min_freq ||
	    val > rps->max_freq ||
	    val < rps->min_freq_softlimit) {
356
		mutex_unlock(&dev_priv->pcu_lock);
357
		intel_runtime_pm_put(dev_priv);
358 359 360
		return -EINVAL;
	}

361
	if (val > rps->rp0_freq)
362
		DRM_DEBUG("User requested overclocking to %d\n",
363
			  intel_gpu_freq(dev_priv, val));
364

365
	rps->max_freq_softlimit = val;
366

367 368 369
	val = clamp_t(int, rps->cur_freq,
		      rps->min_freq_softlimit,
		      rps->max_freq_softlimit);
370 371 372 373

	/* We still need *_set_rps to process the new max_delay and
	 * update the interrupt limits and PMINTRMSK even though
	 * frequency request may be unchanged. */
374
	ret = intel_set_rps(dev_priv, val);
375

376
	mutex_unlock(&dev_priv->pcu_lock);
377

378 379
	intel_runtime_pm_put(dev_priv);

380
	return ret ?: count;
381 382
}

383 384
static ssize_t gt_min_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
D
David Weinehall 已提交
385
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
386

387 388
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
389
				       dev_priv->gt_pm.rps.min_freq_softlimit));
390 391
}

392 393 394 395
static ssize_t gt_min_freq_mhz_store(struct device *kdev,
				     struct device_attribute *attr,
				     const char *buf, size_t count)
{
D
David Weinehall 已提交
396
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
397
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
398
	u32 val;
399 400 401 402 403 404
	ssize_t ret;

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

405 406
	intel_runtime_pm_get(dev_priv);

407
	mutex_lock(&dev_priv->pcu_lock);
408

409
	val = intel_freq_opcode(dev_priv, val);
410

411 412 413
	if (val < rps->min_freq ||
	    val > rps->max_freq ||
	    val > rps->max_freq_softlimit) {
414
		mutex_unlock(&dev_priv->pcu_lock);
415
		intel_runtime_pm_put(dev_priv);
416 417 418
		return -EINVAL;
	}

419
	rps->min_freq_softlimit = val;
420

421 422 423
	val = clamp_t(int, rps->cur_freq,
		      rps->min_freq_softlimit,
		      rps->max_freq_softlimit);
424 425 426 427

	/* We still need *_set_rps to process the new min_delay and
	 * update the interrupt limits and PMINTRMSK even though
	 * frequency request may be unchanged. */
428
	ret = intel_set_rps(dev_priv, val);
429

430
	mutex_unlock(&dev_priv->pcu_lock);
431

432 433
	intel_runtime_pm_put(dev_priv);

434
	return ret ?: count;
435 436
}

J
Joe Perches 已提交
437 438
static DEVICE_ATTR_RO(gt_act_freq_mhz);
static DEVICE_ATTR_RO(gt_cur_freq_mhz);
J
Joe Perches 已提交
439 440 441
static DEVICE_ATTR_RW(gt_boost_freq_mhz);
static DEVICE_ATTR_RW(gt_max_freq_mhz);
static DEVICE_ATTR_RW(gt_min_freq_mhz);
442

J
Joe Perches 已提交
443
static DEVICE_ATTR_RO(vlv_rpe_freq_mhz);
444 445 446 447 448 449 450 451 452

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)
{
D
David Weinehall 已提交
453
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
454
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
455
	u32 val;
456

457
	if (attr == &dev_attr_gt_RP0_freq_mhz)
458
		val = intel_gpu_freq(dev_priv, rps->rp0_freq);
459
	else if (attr == &dev_attr_gt_RP1_freq_mhz)
460
		val = intel_gpu_freq(dev_priv, rps->rp1_freq);
461
	else if (attr == &dev_attr_gt_RPn_freq_mhz)
462
		val = intel_gpu_freq(dev_priv, rps->min_freq);
463
	else
464
		BUG();
465

466
	return snprintf(buf, PAGE_SIZE, "%d\n", val);
467 468
}

469
static const struct attribute *gen6_attrs[] = {
470
	&dev_attr_gt_act_freq_mhz.attr,
471
	&dev_attr_gt_cur_freq_mhz.attr,
472
	&dev_attr_gt_boost_freq_mhz.attr,
473 474
	&dev_attr_gt_max_freq_mhz.attr,
	&dev_attr_gt_min_freq_mhz.attr,
475 476 477
	&dev_attr_gt_RP0_freq_mhz.attr,
	&dev_attr_gt_RP1_freq_mhz.attr,
	&dev_attr_gt_RPn_freq_mhz.attr,
478 479 480
	NULL,
};

481
static const struct attribute *vlv_attrs[] = {
482
	&dev_attr_gt_act_freq_mhz.attr,
483
	&dev_attr_gt_cur_freq_mhz.attr,
484
	&dev_attr_gt_boost_freq_mhz.attr,
485 486
	&dev_attr_gt_max_freq_mhz.attr,
	&dev_attr_gt_min_freq_mhz.attr,
487 488 489
	&dev_attr_gt_RP0_freq_mhz.attr,
	&dev_attr_gt_RP1_freq_mhz.attr,
	&dev_attr_gt_RPn_freq_mhz.attr,
490 491 492 493
	&dev_attr_vlv_rpe_freq_mhz.attr,
	NULL,
};

494 495
#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)

496 497 498 499 500
static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
				struct bin_attribute *attr, char *buf,
				loff_t off, size_t count)
{

G
Geliang Tang 已提交
501
	struct device *kdev = kobj_to_dev(kobj);
D
David Weinehall 已提交
502
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
503
	struct drm_i915_error_state_buf error_str;
504 505
	struct i915_gpu_state *gpu;
	ssize_t ret;
506

507
	ret = i915_error_state_buf_init(&error_str, dev_priv, count, off);
508 509 510
	if (ret)
		return ret;

511 512
	gpu = i915_first_error_state(dev_priv);
	ret = i915_error_state_to_str(&error_str, gpu);
513 514 515
	if (ret)
		goto out;

516 517
	ret = count < error_str.bytes ? count : error_str.bytes;
	memcpy(buf, error_str.buf, ret);
518 519

out:
520
	i915_gpu_state_put(gpu);
521 522
	i915_error_state_buf_release(&error_str);

523
	return ret;
524 525 526 527 528 529
}

static ssize_t error_state_write(struct file *file, struct kobject *kobj,
				 struct bin_attribute *attr, char *buf,
				 loff_t off, size_t count)
{
G
Geliang Tang 已提交
530
	struct device *kdev = kobj_to_dev(kobj);
D
David Weinehall 已提交
531
	struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
532 533

	DRM_DEBUG_DRIVER("Resetting error state\n");
534
	i915_reset_error_state(dev_priv);
535 536 537 538

	return count;
}

539
static const struct bin_attribute error_state_attr = {
540 541 542 543 544 545 546
	.attr.name = "error",
	.attr.mode = S_IRUSR | S_IWUSR,
	.size = 0,
	.read = error_state_read,
	.write = error_state_write,
};

547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
static void i915_setup_error_capture(struct device *kdev)
{
	if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
		DRM_ERROR("error_state sysfs setup failed\n");
}

static void i915_teardown_error_capture(struct device *kdev)
{
	sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
}
#else
static void i915_setup_error_capture(struct device *kdev) {}
static void i915_teardown_error_capture(struct device *kdev) {}
#endif

D
David Weinehall 已提交
562
void i915_setup_sysfs(struct drm_i915_private *dev_priv)
B
Ben Widawsky 已提交
563
{
D
David Weinehall 已提交
564
	struct device *kdev = dev_priv->drm.primary->kdev;
B
Ben Widawsky 已提交
565 566
	int ret;

567
#ifdef CONFIG_PM
D
David Weinehall 已提交
568 569
	if (HAS_RC6(dev_priv)) {
		ret = sysfs_merge_group(&kdev->kobj,
570 571 572 573
					&rc6_attr_group);
		if (ret)
			DRM_ERROR("RC6 residency sysfs setup failed\n");
	}
D
David Weinehall 已提交
574 575
	if (HAS_RC6p(dev_priv)) {
		ret = sysfs_merge_group(&kdev->kobj,
576 577 578 579
					&rc6p_attr_group);
		if (ret)
			DRM_ERROR("RC6p residency sysfs setup failed\n");
	}
D
David Weinehall 已提交
580 581
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
		ret = sysfs_merge_group(&kdev->kobj,
582 583 584 585
					&media_rc6_attr_group);
		if (ret)
			DRM_ERROR("Media RC6 residency sysfs setup failed\n");
	}
586
#endif
D
David Weinehall 已提交
587 588
	if (HAS_L3_DPF(dev_priv)) {
		ret = device_create_bin_file(kdev, &dpf_attrs);
589 590
		if (ret)
			DRM_ERROR("l3 parity sysfs setup failed\n");
591

D
David Weinehall 已提交
592 593
		if (NUM_L3_SLICES(dev_priv) > 1) {
			ret = device_create_bin_file(kdev,
594 595 596 597
						     &dpf_attrs_1);
			if (ret)
				DRM_ERROR("l3 parity slice 1 setup failed\n");
		}
598
	}
599

600
	ret = 0;
D
David Weinehall 已提交
601 602 603 604
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
		ret = sysfs_create_files(&kdev->kobj, vlv_attrs);
	else if (INTEL_GEN(dev_priv) >= 6)
		ret = sysfs_create_files(&kdev->kobj, gen6_attrs);
605 606
	if (ret)
		DRM_ERROR("RPS sysfs setup failed\n");
607

608
	i915_setup_error_capture(kdev);
B
Ben Widawsky 已提交
609 610
}

D
David Weinehall 已提交
611
void i915_teardown_sysfs(struct drm_i915_private *dev_priv)
B
Ben Widawsky 已提交
612
{
D
David Weinehall 已提交
613 614
	struct device *kdev = dev_priv->drm.primary->kdev;

615 616
	i915_teardown_error_capture(kdev);

D
David Weinehall 已提交
617 618
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
		sysfs_remove_files(&kdev->kobj, vlv_attrs);
619
	else
D
David Weinehall 已提交
620 621 622
		sysfs_remove_files(&kdev->kobj, gen6_attrs);
	device_remove_bin_file(kdev,  &dpf_attrs_1);
	device_remove_bin_file(kdev,  &dpf_attrs);
623
#ifdef CONFIG_PM
D
David Weinehall 已提交
624 625
	sysfs_unmerge_group(&kdev->kobj, &rc6_attr_group);
	sysfs_unmerge_group(&kdev->kobj, &rc6p_attr_group);
626
#endif
B
Ben Widawsky 已提交
627
}