i915_sysfs.c 18.5 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
38 39
static u32 calc_residency(struct drm_device *dev,
			  i915_reg_t reg)
B
Ben Widawsky 已提交
40
{
41
	struct drm_i915_private *dev_priv = to_i915(dev);
B
Ben Widawsky 已提交
42
	u64 raw_time; /* 32b value may overflow during fixed point math */
43
	u64 units = 128ULL, div = 100000ULL;
44
	u32 ret;
B
Ben Widawsky 已提交
45

46
	if (!intel_enable_rc6())
B
Ben Widawsky 已提交
47 48
		return 0;

49 50
	intel_runtime_pm_get(dev_priv);

51
	/* On VLV and CHV, residency time is in CZ units rather than 1.28us */
52
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
53 54
		units = 1;
		div = dev_priv->czclk_freq;
55

56 57
		if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
			units <<= 8;
58 59 60
	} else if (IS_BROXTON(dev)) {
		units = 1;
		div = 1200;		/* 833.33ns */
61 62 63
	}

	raw_time = I915_READ(reg) * units;
64 65 66 67
	ret = DIV_ROUND_UP_ULL(raw_time, div);

	intel_runtime_pm_put(dev_priv);
	return ret;
B
Ben Widawsky 已提交
68 69 70
}

static ssize_t
B
Ben Widawsky 已提交
71
show_rc6_mask(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
72
{
73
	return snprintf(buf, PAGE_SIZE, "%x\n", intel_enable_rc6());
B
Ben Widawsky 已提交
74 75 76
}

static ssize_t
B
Ben Widawsky 已提交
77
show_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
78
{
79
	struct drm_minor *dminor = dev_get_drvdata(kdev);
B
Ben Widawsky 已提交
80
	u32 rc6_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6);
81
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency);
B
Ben Widawsky 已提交
82 83 84
}

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

static ssize_t
B
Ben Widawsky 已提交
93
show_rc6pp_ms(struct device *kdev, struct device_attribute *attr, char *buf)
B
Ben Widawsky 已提交
94
{
95
	struct drm_minor *dminor = dev_to_drm_minor(kdev);
B
Ben Widawsky 已提交
96
	u32 rc6pp_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6pp);
97
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6pp_residency);
B
Ben Widawsky 已提交
98 99
}

100 101 102 103 104 105 106 107
static ssize_t
show_media_rc6_ms(struct device *kdev, struct device_attribute *attr, char *buf)
{
	struct drm_minor *dminor = dev_get_drvdata(kdev);
	u32 rc6_residency = calc_residency(dminor->dev, VLV_GT_MEDIA_RC6);
	return snprintf(buf, PAGE_SIZE, "%u\n", rc6_residency);
}

B
Ben Widawsky 已提交
108 109 110 111
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);
112
static DEVICE_ATTR(media_rc6_residency_ms, S_IRUGO, show_media_rc6_ms, NULL);
B
Ben Widawsky 已提交
113 114 115 116 117 118 119 120 121 122 123

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

static struct attribute_group rc6_attr_group = {
	.name = power_group_name,
	.attrs =  rc6_attrs
};
124 125 126 127 128 129 130 131 132 133 134

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

static struct attribute_group rc6p_attr_group = {
	.name = power_group_name,
	.attrs =  rc6p_attrs
};
135 136 137 138 139 140 141 142 143 144

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

static struct attribute_group media_rc6_attr_group = {
	.name = power_group_name,
	.attrs =  media_rc6_attrs
};
145
#endif
B
Ben Widawsky 已提交
146

147 148
static int l3_access_valid(struct drm_device *dev, loff_t offset)
{
149
	if (!HAS_L3_DPF(dev))
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
		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)
{
G
Geliang Tang 已提交
166
	struct device *dev = kobj_to_dev(kobj);
167
	struct drm_minor *dminor = dev_to_drm_minor(dev);
168
	struct drm_device *drm_dev = dminor->dev;
169
	struct drm_i915_private *dev_priv = to_i915(drm_dev);
170
	int slice = (int)(uintptr_t)attr->private;
171
	int ret;
172

173 174
	count = round_down(count, 4);

175 176 177 178
	ret = l3_access_valid(drm_dev, offset);
	if (ret)
		return ret;

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

181 182 183 184
	ret = i915_mutex_lock_interruptible(drm_dev);
	if (ret)
		return ret;

185 186 187 188 189 190
	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);
191 192 193

	mutex_unlock(&drm_dev->struct_mutex);

B
Ben Widawsky 已提交
194
	return count;
195 196 197 198 199 200 201
}

static ssize_t
i915_l3_write(struct file *filp, struct kobject *kobj,
	      struct bin_attribute *attr, char *buf,
	      loff_t offset, size_t count)
{
G
Geliang Tang 已提交
202
	struct device *dev = kobj_to_dev(kobj);
203
	struct drm_minor *dminor = dev_to_drm_minor(dev);
204
	struct drm_device *drm_dev = dminor->dev;
205
	struct drm_i915_private *dev_priv = to_i915(drm_dev);
206
	struct i915_gem_context *ctx;
207
	u32 *temp = NULL; /* Just here to make handling failures easy */
208
	int slice = (int)(uintptr_t)attr->private;
209 210
	int ret;

211 212 213
	if (!HAS_HW_CONTEXTS(drm_dev))
		return -ENXIO;

214 215 216 217 218 219 220 221
	ret = l3_access_valid(drm_dev, offset);
	if (ret)
		return ret;

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

222
	if (!dev_priv->l3_parity.remap_info[slice]) {
223 224 225 226 227 228 229 230 231 232 233 234
		temp = kzalloc(GEN7_L3LOG_SIZE, GFP_KERNEL);
		if (!temp) {
			mutex_unlock(&drm_dev->struct_mutex);
			return -ENOMEM;
		}
	}

	/* 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)
235
		dev_priv->l3_parity.remap_info[slice] = temp;
236

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

239 240 241
	/* 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);
242 243 244 245 246 247 248 249 250 251 252

	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,
253 254 255 256 257 258 259 260 261 262 263
	.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
264 265
};

266
static ssize_t gt_act_freq_mhz_show(struct device *kdev,
267 268
				    struct device_attribute *attr, char *buf)
{
269
	struct drm_minor *minor = dev_to_drm_minor(kdev);
270
	struct drm_device *dev = minor->dev;
271
	struct drm_i915_private *dev_priv = to_i915(dev);
272 273
	int ret;

274 275
	intel_runtime_pm_get(dev_priv);

276
	mutex_lock(&dev_priv->rps.hw_lock);
277
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
278
		u32 freq;
279
		freq = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
280
		ret = intel_gpu_freq(dev_priv, (freq >> 8) & 0xff);
281 282
	} else {
		u32 rpstat = I915_READ(GEN6_RPSTAT1);
283 284 285
		if (IS_GEN9(dev_priv))
			ret = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT;
		else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
286 287 288
			ret = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
		else
			ret = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
289
		ret = intel_gpu_freq(dev_priv, ret);
290 291 292 293 294 295 296 297 298 299 300 301 302
	}
	mutex_unlock(&dev_priv->rps.hw_lock);

	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)
{
	struct drm_minor *minor = dev_to_drm_minor(kdev);
	struct drm_device *dev = minor->dev;
303
	struct drm_i915_private *dev_priv = to_i915(dev);
304

305 306 307
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
				       dev_priv->rps.cur_freq));
308 309
}

310 311 312 313 314 315
static ssize_t gt_boost_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
	struct drm_minor *minor = dev_to_drm_minor(kdev);
	struct drm_i915_private *dev_priv = to_i915(minor->dev);

	return snprintf(buf, PAGE_SIZE, "%d\n",
316 317
			intel_gpu_freq(dev_priv,
				       dev_priv->rps.boost_freq));
318 319 320 321 322 323 324 325
}

static ssize_t gt_boost_freq_mhz_store(struct device *kdev,
				       struct device_attribute *attr,
				       const char *buf, size_t count)
{
	struct drm_minor *minor = dev_to_drm_minor(kdev);
	struct drm_device *dev = minor->dev;
326
	struct drm_i915_private *dev_priv = to_i915(dev);
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	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);
	if (val < dev_priv->rps.min_freq || val > dev_priv->rps.max_freq)
		return -EINVAL;

	mutex_lock(&dev_priv->rps.hw_lock);
	dev_priv->rps.boost_freq = val;
	mutex_unlock(&dev_priv->rps.hw_lock);

	return count;
}

346 347 348
static ssize_t vlv_rpe_freq_mhz_show(struct device *kdev,
				     struct device_attribute *attr, char *buf)
{
349
	struct drm_minor *minor = dev_to_drm_minor(kdev);
350
	struct drm_device *dev = minor->dev;
351
	struct drm_i915_private *dev_priv = to_i915(dev);
352

353 354 355
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
				       dev_priv->rps.efficient_freq));
356 357
}

358 359
static ssize_t gt_max_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
360
	struct drm_minor *minor = dev_to_drm_minor(kdev);
361
	struct drm_device *dev = minor->dev;
362
	struct drm_i915_private *dev_priv = to_i915(dev);
363

364 365 366
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
				       dev_priv->rps.max_freq_softlimit));
367 368
}

369 370 371 372
static ssize_t gt_max_freq_mhz_store(struct device *kdev,
				     struct device_attribute *attr,
				     const char *buf, size_t count)
{
373
	struct drm_minor *minor = dev_to_drm_minor(kdev);
374
	struct drm_device *dev = minor->dev;
375
	struct drm_i915_private *dev_priv = to_i915(dev);
376
	u32 val;
377 378 379 380 381 382
	ssize_t ret;

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

383 384
	intel_runtime_pm_get(dev_priv);

385
	mutex_lock(&dev_priv->rps.hw_lock);
386

387
	val = intel_freq_opcode(dev_priv, val);
388

389 390
	if (val < dev_priv->rps.min_freq ||
	    val > dev_priv->rps.max_freq ||
391
	    val < dev_priv->rps.min_freq_softlimit) {
392
		mutex_unlock(&dev_priv->rps.hw_lock);
393
		intel_runtime_pm_put(dev_priv);
394 395 396
		return -EINVAL;
	}

397
	if (val > dev_priv->rps.rp0_freq)
398
		DRM_DEBUG("User requested overclocking to %d\n",
399
			  intel_gpu_freq(dev_priv, val));
400

401
	dev_priv->rps.max_freq_softlimit = val;
402

403 404 405 406 407 408 409
	val = clamp_t(int, dev_priv->rps.cur_freq,
		      dev_priv->rps.min_freq_softlimit,
		      dev_priv->rps.max_freq_softlimit);

	/* 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. */
410
	intel_set_rps(dev_priv, val);
411

412
	mutex_unlock(&dev_priv->rps.hw_lock);
413

414 415
	intel_runtime_pm_put(dev_priv);

416 417 418
	return count;
}

419 420
static ssize_t gt_min_freq_mhz_show(struct device *kdev, struct device_attribute *attr, char *buf)
{
421
	struct drm_minor *minor = dev_to_drm_minor(kdev);
422
	struct drm_device *dev = minor->dev;
423
	struct drm_i915_private *dev_priv = to_i915(dev);
424

425 426 427
	return snprintf(buf, PAGE_SIZE, "%d\n",
			intel_gpu_freq(dev_priv,
				       dev_priv->rps.min_freq_softlimit));
428 429
}

430 431 432 433
static ssize_t gt_min_freq_mhz_store(struct device *kdev,
				     struct device_attribute *attr,
				     const char *buf, size_t count)
{
434
	struct drm_minor *minor = dev_to_drm_minor(kdev);
435
	struct drm_device *dev = minor->dev;
436
	struct drm_i915_private *dev_priv = to_i915(dev);
437
	u32 val;
438 439 440 441 442 443
	ssize_t ret;

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

444 445
	intel_runtime_pm_get(dev_priv);

446
	mutex_lock(&dev_priv->rps.hw_lock);
447

448
	val = intel_freq_opcode(dev_priv, val);
449

450 451 452
	if (val < dev_priv->rps.min_freq ||
	    val > dev_priv->rps.max_freq ||
	    val > dev_priv->rps.max_freq_softlimit) {
453
		mutex_unlock(&dev_priv->rps.hw_lock);
454
		intel_runtime_pm_put(dev_priv);
455 456 457
		return -EINVAL;
	}

458
	dev_priv->rps.min_freq_softlimit = val;
459

460 461 462 463 464 465 466
	val = clamp_t(int, dev_priv->rps.cur_freq,
		      dev_priv->rps.min_freq_softlimit,
		      dev_priv->rps.max_freq_softlimit);

	/* 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. */
467
	intel_set_rps(dev_priv, val);
468

469
	mutex_unlock(&dev_priv->rps.hw_lock);
470

471 472
	intel_runtime_pm_put(dev_priv);

473 474 475 476
	return count;

}

477
static DEVICE_ATTR(gt_act_freq_mhz, S_IRUGO, gt_act_freq_mhz_show, NULL);
478
static DEVICE_ATTR(gt_cur_freq_mhz, S_IRUGO, gt_cur_freq_mhz_show, NULL);
479
static DEVICE_ATTR(gt_boost_freq_mhz, S_IRUGO, gt_boost_freq_mhz_show, gt_boost_freq_mhz_store);
480 481
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);
482

483
static DEVICE_ATTR(vlv_rpe_freq_mhz, S_IRUGO, vlv_rpe_freq_mhz_show, NULL);
484 485 486 487 488 489 490 491 492

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)
{
493
	struct drm_minor *minor = dev_to_drm_minor(kdev);
494
	struct drm_device *dev = minor->dev;
495
	struct drm_i915_private *dev_priv = to_i915(dev);
496
	u32 val;
497

498 499 500 501 502 503 504
	if (attr == &dev_attr_gt_RP0_freq_mhz)
		val = intel_gpu_freq(dev_priv, dev_priv->rps.rp0_freq);
	else if (attr == &dev_attr_gt_RP1_freq_mhz)
		val = intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq);
	else if (attr == &dev_attr_gt_RPn_freq_mhz)
		val = intel_gpu_freq(dev_priv, dev_priv->rps.min_freq);
	else
505
		BUG();
506

507
	return snprintf(buf, PAGE_SIZE, "%d\n", val);
508 509
}

510
static const struct attribute *gen6_attrs[] = {
511
	&dev_attr_gt_act_freq_mhz.attr,
512
	&dev_attr_gt_cur_freq_mhz.attr,
513
	&dev_attr_gt_boost_freq_mhz.attr,
514 515
	&dev_attr_gt_max_freq_mhz.attr,
	&dev_attr_gt_min_freq_mhz.attr,
516 517 518
	&dev_attr_gt_RP0_freq_mhz.attr,
	&dev_attr_gt_RP1_freq_mhz.attr,
	&dev_attr_gt_RPn_freq_mhz.attr,
519 520 521
	NULL,
};

522
static const struct attribute *vlv_attrs[] = {
523
	&dev_attr_gt_act_freq_mhz.attr,
524
	&dev_attr_gt_cur_freq_mhz.attr,
525
	&dev_attr_gt_boost_freq_mhz.attr,
526 527
	&dev_attr_gt_max_freq_mhz.attr,
	&dev_attr_gt_min_freq_mhz.attr,
528 529 530
	&dev_attr_gt_RP0_freq_mhz.attr,
	&dev_attr_gt_RP1_freq_mhz.attr,
	&dev_attr_gt_RPn_freq_mhz.attr,
531 532 533 534
	&dev_attr_vlv_rpe_freq_mhz.attr,
	NULL,
};

535 536 537 538 539
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 已提交
540
	struct device *kdev = kobj_to_dev(kobj);
541
	struct drm_minor *minor = dev_to_drm_minor(kdev);
542 543 544 545 546 547 548 549
	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));

550
	ret = i915_error_state_buf_init(&error_str, to_i915(dev), count, off);
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
	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)
{
G
Geliang Tang 已提交
575
	struct device *kdev = kobj_to_dev(kobj);
576
	struct drm_minor *minor = dev_to_drm_minor(kdev);
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
	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 已提交
600 601 602 603
void i915_setup_sysfs(struct drm_device *dev)
{
	int ret;

604
#ifdef CONFIG_PM
605
	if (HAS_RC6(dev)) {
606
		ret = sysfs_merge_group(&dev->primary->kdev->kobj,
607 608 609 610
					&rc6_attr_group);
		if (ret)
			DRM_ERROR("RC6 residency sysfs setup failed\n");
	}
611 612 613 614 615 616
	if (HAS_RC6p(dev)) {
		ret = sysfs_merge_group(&dev->primary->kdev->kobj,
					&rc6p_attr_group);
		if (ret)
			DRM_ERROR("RC6p residency sysfs setup failed\n");
	}
617
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
618 619 620 621 622
		ret = sysfs_merge_group(&dev->primary->kdev->kobj,
					&media_rc6_attr_group);
		if (ret)
			DRM_ERROR("Media RC6 residency sysfs setup failed\n");
	}
623
#endif
624
	if (HAS_L3_DPF(dev)) {
625
		ret = device_create_bin_file(dev->primary->kdev, &dpf_attrs);
626 627
		if (ret)
			DRM_ERROR("l3 parity sysfs setup failed\n");
628 629

		if (NUM_L3_SLICES(dev) > 1) {
630
			ret = device_create_bin_file(dev->primary->kdev,
631 632 633 634
						     &dpf_attrs_1);
			if (ret)
				DRM_ERROR("l3 parity slice 1 setup failed\n");
		}
635
	}
636

637
	ret = 0;
638
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
639
		ret = sysfs_create_files(&dev->primary->kdev->kobj, vlv_attrs);
640
	else if (INTEL_INFO(dev)->gen >= 6)
641
		ret = sysfs_create_files(&dev->primary->kdev->kobj, gen6_attrs);
642 643
	if (ret)
		DRM_ERROR("RPS sysfs setup failed\n");
644

645
	ret = sysfs_create_bin_file(&dev->primary->kdev->kobj,
646 647 648
				    &error_state_attr);
	if (ret)
		DRM_ERROR("error_state sysfs setup failed\n");
B
Ben Widawsky 已提交
649 650 651 652
}

void i915_teardown_sysfs(struct drm_device *dev)
{
653
	sysfs_remove_bin_file(&dev->primary->kdev->kobj, &error_state_attr);
654
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
655
		sysfs_remove_files(&dev->primary->kdev->kobj, vlv_attrs);
656
	else
657 658 659
		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);
660
#ifdef CONFIG_PM
661
	sysfs_unmerge_group(&dev->primary->kdev->kobj, &rc6_attr_group);
662
	sysfs_unmerge_group(&dev->primary->kdev->kobj, &rc6p_attr_group);
663
#endif
B
Ben Widawsky 已提交
664
}