This source file includes following definitions.
- intel_guc_fw_init_early
- guc_prepare_xfer
- guc_xfer_rsa
- guc_ready
- guc_wait_ucode
- intel_guc_fw_upload
1
2
3
4
5
6
7
8
9
10
11
12 #include "gt/intel_gt.h"
13 #include "intel_guc_fw.h"
14 #include "i915_drv.h"
15
16
17
18
19
20
21
22 void intel_guc_fw_init_early(struct intel_guc *guc)
23 {
24 struct drm_i915_private *i915 = guc_to_gt(guc)->i915;
25
26 intel_uc_fw_init_early(&guc->fw, INTEL_UC_FW_TYPE_GUC, HAS_GT_UC(i915),
27 INTEL_INFO(i915)->platform, INTEL_REVID(i915));
28 }
29
30 static void guc_prepare_xfer(struct intel_uncore *uncore)
31 {
32 u32 shim_flags = GUC_DISABLE_SRAM_INIT_TO_ZEROES |
33 GUC_ENABLE_READ_CACHE_LOGIC |
34 GUC_ENABLE_MIA_CACHING |
35 GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA |
36 GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA |
37 GUC_ENABLE_MIA_CLOCK_GATING;
38
39
40 intel_uncore_write(uncore, GUC_SHIM_CONTROL, shim_flags);
41
42 if (IS_GEN9_LP(uncore->i915))
43 intel_uncore_write(uncore, GEN9LP_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
44 else
45 intel_uncore_write(uncore, GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
46
47 if (IS_GEN(uncore->i915, 9)) {
48
49 intel_uncore_rmw(uncore, GEN7_MISCCPCTL,
50 0, GEN8_DOP_CLOCK_GATE_GUC_ENABLE);
51
52
53 intel_uncore_write(uncore, GUC_ARAT_C6DIS, 0x1FF);
54 }
55 }
56
57
58 static void guc_xfer_rsa(struct intel_uc_fw *guc_fw,
59 struct intel_uncore *uncore)
60 {
61 u32 rsa[UOS_RSA_SCRATCH_COUNT];
62 size_t copied;
63 int i;
64
65 copied = intel_uc_fw_copy_rsa(guc_fw, rsa, sizeof(rsa));
66 GEM_BUG_ON(copied < sizeof(rsa));
67
68 for (i = 0; i < UOS_RSA_SCRATCH_COUNT; i++)
69 intel_uncore_write(uncore, UOS_RSA_SCRATCH(i), rsa[i]);
70 }
71
72
73
74
75
76
77
78
79
80
81 static inline bool guc_ready(struct intel_uncore *uncore, u32 *status)
82 {
83 u32 val = intel_uncore_read(uncore, GUC_STATUS);
84 u32 uk_val = val & GS_UKERNEL_MASK;
85
86 *status = val;
87 return (uk_val == GS_UKERNEL_READY) ||
88 ((val & GS_MIA_CORE_STATE) && (uk_val == GS_UKERNEL_LAPIC_DONE));
89 }
90
91 static int guc_wait_ucode(struct intel_uncore *uncore)
92 {
93 u32 status;
94 int ret;
95
96
97
98
99
100
101
102
103
104 ret = wait_for(guc_ready(uncore, &status), 100);
105 DRM_DEBUG_DRIVER("GuC status %#x\n", status);
106
107 if ((status & GS_BOOTROM_MASK) == GS_BOOTROM_RSA_FAILED) {
108 DRM_ERROR("GuC firmware signature verification failed\n");
109 ret = -ENOEXEC;
110 }
111
112 if ((status & GS_UKERNEL_MASK) == GS_UKERNEL_EXCEPTION) {
113 DRM_ERROR("GuC firmware exception. EIP: %#x\n",
114 intel_uncore_read(uncore, SOFT_SCRATCH(13)));
115 ret = -ENXIO;
116 }
117
118 return ret;
119 }
120
121
122
123
124
125
126
127
128
129
130
131
132
133 int intel_guc_fw_upload(struct intel_guc *guc)
134 {
135 struct intel_gt *gt = guc_to_gt(guc);
136 struct intel_uncore *uncore = gt->uncore;
137 int ret;
138
139 guc_prepare_xfer(uncore);
140
141
142
143
144
145
146 guc_xfer_rsa(&guc->fw, uncore);
147
148
149
150
151
152 ret = intel_uc_fw_upload(&guc->fw, gt, 0x2000, UOS_MOVE);
153 if (ret)
154 goto out;
155
156 ret = guc_wait_ucode(uncore);
157 if (ret)
158 goto out;
159
160 intel_uc_fw_change_status(&guc->fw, INTEL_UC_FIRMWARE_RUNNING);
161 return 0;
162
163 out:
164 intel_uc_fw_change_status(&guc->fw, INTEL_UC_FIRMWARE_FAIL);
165 return ret;
166 }