1
2
3
4
5
6
7
8
9
10#include <linux/sysfs.h>
11
12#include "i915_drv.h"
13#include "i915_oa_hsw.h"
14
15static const struct i915_oa_reg b_counter_config_render_basic[] = {
16 { _MMIO(0x2724), 0x00800000 },
17 { _MMIO(0x2720), 0x00000000 },
18 { _MMIO(0x2714), 0x00800000 },
19 { _MMIO(0x2710), 0x00000000 },
20};
21
22static const struct i915_oa_reg flex_eu_config_render_basic[] = {
23};
24
25static const struct i915_oa_reg mux_config_render_basic[] = {
26 { _MMIO(0x9840), 0x00000080 },
27 { _MMIO(0x253a4), 0x01600000 },
28 { _MMIO(0x25440), 0x00100000 },
29 { _MMIO(0x25128), 0x00000000 },
30 { _MMIO(0x2691c), 0x00000800 },
31 { _MMIO(0x26aa0), 0x01500000 },
32 { _MMIO(0x26b9c), 0x00006000 },
33 { _MMIO(0x2791c), 0x00000800 },
34 { _MMIO(0x27aa0), 0x01500000 },
35 { _MMIO(0x27b9c), 0x00006000 },
36 { _MMIO(0x2641c), 0x00000400 },
37 { _MMIO(0x25380), 0x00000010 },
38 { _MMIO(0x2538c), 0x00000000 },
39 { _MMIO(0x25384), 0x0800aaaa },
40 { _MMIO(0x25400), 0x00000004 },
41 { _MMIO(0x2540c), 0x06029000 },
42 { _MMIO(0x25410), 0x00000002 },
43 { _MMIO(0x25404), 0x5c30ffff },
44 { _MMIO(0x25100), 0x00000016 },
45 { _MMIO(0x25110), 0x00000400 },
46 { _MMIO(0x25104), 0x00000000 },
47 { _MMIO(0x26804), 0x00001211 },
48 { _MMIO(0x26884), 0x00000100 },
49 { _MMIO(0x26900), 0x00000002 },
50 { _MMIO(0x26908), 0x00700000 },
51 { _MMIO(0x26904), 0x00000000 },
52 { _MMIO(0x26984), 0x00001022 },
53 { _MMIO(0x26a04), 0x00000011 },
54 { _MMIO(0x26a80), 0x00000006 },
55 { _MMIO(0x26a88), 0x00000c02 },
56 { _MMIO(0x26a84), 0x00000000 },
57 { _MMIO(0x26b04), 0x00001000 },
58 { _MMIO(0x26b80), 0x00000002 },
59 { _MMIO(0x26b8c), 0x00000007 },
60 { _MMIO(0x26b84), 0x00000000 },
61 { _MMIO(0x27804), 0x00004844 },
62 { _MMIO(0x27884), 0x00000400 },
63 { _MMIO(0x27900), 0x00000002 },
64 { _MMIO(0x27908), 0x0e000000 },
65 { _MMIO(0x27904), 0x00000000 },
66 { _MMIO(0x27984), 0x00004088 },
67 { _MMIO(0x27a04), 0x00000044 },
68 { _MMIO(0x27a80), 0x00000006 },
69 { _MMIO(0x27a88), 0x00018040 },
70 { _MMIO(0x27a84), 0x00000000 },
71 { _MMIO(0x27b04), 0x00004000 },
72 { _MMIO(0x27b80), 0x00000002 },
73 { _MMIO(0x27b8c), 0x000000e0 },
74 { _MMIO(0x27b84), 0x00000000 },
75 { _MMIO(0x26104), 0x00002222 },
76 { _MMIO(0x26184), 0x0c006666 },
77 { _MMIO(0x26284), 0x04000000 },
78 { _MMIO(0x26304), 0x04000000 },
79 { _MMIO(0x26400), 0x00000002 },
80 { _MMIO(0x26410), 0x000000a0 },
81 { _MMIO(0x26404), 0x00000000 },
82 { _MMIO(0x25420), 0x04108020 },
83 { _MMIO(0x25424), 0x1284a420 },
84 { _MMIO(0x2541c), 0x00000000 },
85 { _MMIO(0x25428), 0x00042049 },
86};
87
88static ssize_t
89show_render_basic_id(struct device *kdev, struct device_attribute *attr, char *buf)
90{
91 return sprintf(buf, "1\n");
92}
93
94void
95i915_perf_load_test_config_hsw(struct drm_i915_private *dev_priv)
96{
97 strlcpy(dev_priv->perf.oa.test_config.uuid,
98 "403d8832-1a27-4aa6-a64e-f5389ce7b212",
99 sizeof(dev_priv->perf.oa.test_config.uuid));
100 dev_priv->perf.oa.test_config.id = 1;
101
102 dev_priv->perf.oa.test_config.mux_regs = mux_config_render_basic;
103 dev_priv->perf.oa.test_config.mux_regs_len = ARRAY_SIZE(mux_config_render_basic);
104
105 dev_priv->perf.oa.test_config.b_counter_regs = b_counter_config_render_basic;
106 dev_priv->perf.oa.test_config.b_counter_regs_len = ARRAY_SIZE(b_counter_config_render_basic);
107
108 dev_priv->perf.oa.test_config.flex_regs = flex_eu_config_render_basic;
109 dev_priv->perf.oa.test_config.flex_regs_len = ARRAY_SIZE(flex_eu_config_render_basic);
110
111 dev_priv->perf.oa.test_config.sysfs_metric.name = "403d8832-1a27-4aa6-a64e-f5389ce7b212";
112 dev_priv->perf.oa.test_config.sysfs_metric.attrs = dev_priv->perf.oa.test_config.attrs;
113
114 dev_priv->perf.oa.test_config.attrs[0] = &dev_priv->perf.oa.test_config.sysfs_metric_id.attr;
115
116 dev_priv->perf.oa.test_config.sysfs_metric_id.attr.name = "id";
117 dev_priv->perf.oa.test_config.sysfs_metric_id.attr.mode = 0444;
118 dev_priv->perf.oa.test_config.sysfs_metric_id.show = show_render_basic_id;
119}
120