Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2018, Intel Corporation. */
3
4#include "ice_common.h"
5
6/**
7 * ice_aq_read_nvm
8 * @hw: pointer to the HW struct
9 * @module_typeid: module pointer location in words from the NVM beginning
10 * @offset: byte offset from the module beginning
11 * @length: length of the section to be read (in bytes from the offset)
12 * @data: command buffer (size [bytes] = length)
13 * @last_command: tells if this is the last command in a series
14 * @cd: pointer to command details structure or NULL
15 *
16 * Read the NVM using the admin queue commands (0x0701)
17 */
18static enum ice_status
19ice_aq_read_nvm(struct ice_hw *hw, u16 module_typeid, u32 offset, u16 length,
20 void *data, bool last_command, struct ice_sq_cd *cd)
21{
22 struct ice_aq_desc desc;
23 struct ice_aqc_nvm *cmd;
24
25 cmd = &desc.params.nvm;
26
27 /* In offset the highest byte must be zeroed. */
28 if (offset & 0xFF000000)
29 return ICE_ERR_PARAM;
30
31 ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_nvm_read);
32
33 /* If this is the last command in a series, set the proper flag. */
34 if (last_command)
35 cmd->cmd_flags |= ICE_AQC_NVM_LAST_CMD;
36 cmd->module_typeid = cpu_to_le16(module_typeid);
37 cmd->offset_low = cpu_to_le16(offset & 0xFFFF);
38 cmd->offset_high = (offset >> 16) & 0xFF;
39 cmd->length = cpu_to_le16(length);
40
41 return ice_aq_send_cmd(hw, &desc, data, length, cd);
42}
43
44/**
45 * ice_check_sr_access_params - verify params for Shadow RAM R/W operations.
46 * @hw: pointer to the HW structure
47 * @offset: offset in words from module start
48 * @words: number of words to access
49 */
50static enum ice_status
51ice_check_sr_access_params(struct ice_hw *hw, u32 offset, u16 words)
52{
53 if ((offset + words) > hw->nvm.sr_words) {
54 ice_debug(hw, ICE_DBG_NVM,
55 "NVM error: offset beyond SR lmt.\n");
56 return ICE_ERR_PARAM;
57 }
58
59 if (words > ICE_SR_SECTOR_SIZE_IN_WORDS) {
60 /* We can access only up to 4KB (one sector), in one AQ write */
61 ice_debug(hw, ICE_DBG_NVM,
62 "NVM error: tried to access %d words, limit is %d.\n",
63 words, ICE_SR_SECTOR_SIZE_IN_WORDS);
64 return ICE_ERR_PARAM;
65 }
66
67 if (((offset + (words - 1)) / ICE_SR_SECTOR_SIZE_IN_WORDS) !=
68 (offset / ICE_SR_SECTOR_SIZE_IN_WORDS)) {
69 /* A single access cannot spread over two sectors */
70 ice_debug(hw, ICE_DBG_NVM,
71 "NVM error: cannot spread over two sectors.\n");
72 return ICE_ERR_PARAM;
73 }
74
75 return 0;
76}
77
78/**
79 * ice_read_sr_aq - Read Shadow RAM.
80 * @hw: pointer to the HW structure
81 * @offset: offset in words from module start
82 * @words: number of words to read
83 * @data: buffer for words reads from Shadow RAM
84 * @last_command: tells the AdminQ that this is the last command
85 *
86 * Reads 16-bit word buffers from the Shadow RAM using the admin command.
87 */
88static enum ice_status
89ice_read_sr_aq(struct ice_hw *hw, u32 offset, u16 words, u16 *data,
90 bool last_command)
91{
92 enum ice_status status;
93
94 status = ice_check_sr_access_params(hw, offset, words);
95
96 /* values in "offset" and "words" parameters are sized as words
97 * (16 bits) but ice_aq_read_nvm expects these values in bytes.
98 * So do this conversion while calling ice_aq_read_nvm.
99 */
100 if (!status)
101 status = ice_aq_read_nvm(hw, 0, 2 * offset, 2 * words, data,
102 last_command, NULL);
103
104 return status;
105}
106
107/**
108 * ice_read_sr_word_aq - Reads Shadow RAM via AQ
109 * @hw: pointer to the HW structure
110 * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
111 * @data: word read from the Shadow RAM
112 *
113 * Reads one 16 bit word from the Shadow RAM using the ice_read_sr_aq method.
114 */
115static enum ice_status
116ice_read_sr_word_aq(struct ice_hw *hw, u16 offset, u16 *data)
117{
118 enum ice_status status;
119
120 status = ice_read_sr_aq(hw, offset, 1, data, true);
121 if (!status)
122 *data = le16_to_cpu(*(__force __le16 *)data);
123
124 return status;
125}
126
127/**
128 * ice_read_sr_buf_aq - Reads Shadow RAM buf via AQ
129 * @hw: pointer to the HW structure
130 * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
131 * @words: (in) number of words to read; (out) number of words actually read
132 * @data: words read from the Shadow RAM
133 *
134 * Reads 16 bit words (data buf) from the SR using the ice_read_sr_aq
135 * method. Ownership of the NVM is taken before reading the buffer and later
136 * released.
137 */
138static enum ice_status
139ice_read_sr_buf_aq(struct ice_hw *hw, u16 offset, u16 *words, u16 *data)
140{
141 enum ice_status status;
142 bool last_cmd = false;
143 u16 words_read = 0;
144 u16 i = 0;
145
146 do {
147 u16 read_size, off_w;
148
149 /* Calculate number of bytes we should read in this step.
150 * It's not allowed to read more than one page at a time or
151 * to cross page boundaries.
152 */
153 off_w = offset % ICE_SR_SECTOR_SIZE_IN_WORDS;
154 read_size = off_w ?
155 min_t(u16, *words,
156 (ICE_SR_SECTOR_SIZE_IN_WORDS - off_w)) :
157 min_t(u16, (*words - words_read),
158 ICE_SR_SECTOR_SIZE_IN_WORDS);
159
160 /* Check if this is last command, if so set proper flag */
161 if ((words_read + read_size) >= *words)
162 last_cmd = true;
163
164 status = ice_read_sr_aq(hw, offset, read_size,
165 data + words_read, last_cmd);
166 if (status)
167 goto read_nvm_buf_aq_exit;
168
169 /* Increment counter for words already read and move offset to
170 * new read location
171 */
172 words_read += read_size;
173 offset += read_size;
174 } while (words_read < *words);
175
176 for (i = 0; i < *words; i++)
177 data[i] = le16_to_cpu(((__force __le16 *)data)[i]);
178
179read_nvm_buf_aq_exit:
180 *words = words_read;
181 return status;
182}
183
184/**
185 * ice_acquire_nvm - Generic request for acquiring the NVM ownership
186 * @hw: pointer to the HW structure
187 * @access: NVM access type (read or write)
188 *
189 * This function will request NVM ownership.
190 */
191static enum ice_status
192ice_acquire_nvm(struct ice_hw *hw, enum ice_aq_res_access_type access)
193{
194 if (hw->nvm.blank_nvm_mode)
195 return 0;
196
197 return ice_acquire_res(hw, ICE_NVM_RES_ID, access, ICE_NVM_TIMEOUT);
198}
199
200/**
201 * ice_release_nvm - Generic request for releasing the NVM ownership
202 * @hw: pointer to the HW structure
203 *
204 * This function will release NVM ownership.
205 */
206static void ice_release_nvm(struct ice_hw *hw)
207{
208 if (hw->nvm.blank_nvm_mode)
209 return;
210
211 ice_release_res(hw, ICE_NVM_RES_ID);
212}
213
214/**
215 * ice_read_sr_word - Reads Shadow RAM word and acquire NVM if necessary
216 * @hw: pointer to the HW structure
217 * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
218 * @data: word read from the Shadow RAM
219 *
220 * Reads one 16 bit word from the Shadow RAM using the ice_read_sr_word_aq.
221 */
222static enum ice_status
223ice_read_sr_word(struct ice_hw *hw, u16 offset, u16 *data)
224{
225 enum ice_status status;
226
227 status = ice_acquire_nvm(hw, ICE_RES_READ);
228 if (!status) {
229 status = ice_read_sr_word_aq(hw, offset, data);
230 ice_release_nvm(hw);
231 }
232
233 return status;
234}
235
236/**
237 * ice_init_nvm - initializes NVM setting
238 * @hw: pointer to the HW struct
239 *
240 * This function reads and populates NVM settings such as Shadow RAM size,
241 * max_timeout, and blank_nvm_mode
242 */
243enum ice_status ice_init_nvm(struct ice_hw *hw)
244{
245 struct ice_nvm_info *nvm = &hw->nvm;
246 u16 eetrack_lo, eetrack_hi;
247 enum ice_status status = 0;
248 u32 fla, gens_stat;
249 u8 sr_size;
250
251 /* The SR size is stored regardless of the NVM programming mode
252 * as the blank mode may be used in the factory line.
253 */
254 gens_stat = rd32(hw, GLNVM_GENS);
255 sr_size = (gens_stat & GLNVM_GENS_SR_SIZE_M) >> GLNVM_GENS_SR_SIZE_S;
256
257 /* Switching to words (sr_size contains power of 2) */
258 nvm->sr_words = BIT(sr_size) * ICE_SR_WORDS_IN_1KB;
259
260 /* Check if we are in the normal or blank NVM programming mode */
261 fla = rd32(hw, GLNVM_FLA);
262 if (fla & GLNVM_FLA_LOCKED_M) { /* Normal programming mode */
263 nvm->blank_nvm_mode = false;
264 } else { /* Blank programming mode */
265 nvm->blank_nvm_mode = true;
266 status = ICE_ERR_NVM_BLANK_MODE;
267 ice_debug(hw, ICE_DBG_NVM,
268 "NVM init error: unsupported blank mode.\n");
269 return status;
270 }
271
272 status = ice_read_sr_word(hw, ICE_SR_NVM_DEV_STARTER_VER, &hw->nvm.ver);
273 if (status) {
274 ice_debug(hw, ICE_DBG_INIT,
275 "Failed to read DEV starter version.\n");
276 return status;
277 }
278
279 status = ice_read_sr_word(hw, ICE_SR_NVM_EETRACK_LO, &eetrack_lo);
280 if (status) {
281 ice_debug(hw, ICE_DBG_INIT, "Failed to read EETRACK lo.\n");
282 return status;
283 }
284 status = ice_read_sr_word(hw, ICE_SR_NVM_EETRACK_HI, &eetrack_hi);
285 if (status) {
286 ice_debug(hw, ICE_DBG_INIT, "Failed to read EETRACK hi.\n");
287 return status;
288 }
289
290 hw->nvm.eetrack = (eetrack_hi << 16) | eetrack_lo;
291
292 return status;
293}
294
295/**
296 * ice_read_sr_buf - Reads Shadow RAM buf and acquire lock if necessary
297 * @hw: pointer to the HW structure
298 * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
299 * @words: (in) number of words to read; (out) number of words actually read
300 * @data: words read from the Shadow RAM
301 *
302 * Reads 16 bit words (data buf) from the SR using the ice_read_nvm_buf_aq
303 * method. The buf read is preceded by the NVM ownership take
304 * and followed by the release.
305 */
306enum ice_status
307ice_read_sr_buf(struct ice_hw *hw, u16 offset, u16 *words, u16 *data)
308{
309 enum ice_status status;
310
311 status = ice_acquire_nvm(hw, ICE_RES_READ);
312 if (!status) {
313 status = ice_read_sr_buf_aq(hw, offset, words, data);
314 ice_release_nvm(hw);
315 }
316
317 return status;
318}
319
320/**
321 * ice_nvm_validate_checksum
322 * @hw: pointer to the HW struct
323 *
324 * Verify NVM PFA checksum validity (0x0706)
325 */
326enum ice_status ice_nvm_validate_checksum(struct ice_hw *hw)
327{
328 struct ice_aqc_nvm_checksum *cmd;
329 struct ice_aq_desc desc;
330 enum ice_status status;
331
332 status = ice_acquire_nvm(hw, ICE_RES_READ);
333 if (status)
334 return status;
335
336 cmd = &desc.params.nvm_checksum;
337
338 ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_nvm_checksum);
339 cmd->flags = ICE_AQC_NVM_CHECKSUM_VERIFY;
340
341 status = ice_aq_send_cmd(hw, &desc, NULL, 0, NULL);
342 ice_release_nvm(hw);
343
344 if (!status)
345 if (le16_to_cpu(cmd->checksum) != ICE_AQC_NVM_CHECKSUM_CORRECT)
346 status = ICE_ERR_NVM_CHECKSUM;
347
348 return status;
349}
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2018, Intel Corporation. */
3
4#include "ice_common.h"
5
6/**
7 * ice_aq_read_nvm
8 * @hw: pointer to the hw struct
9 * @module_typeid: module pointer location in words from the NVM beginning
10 * @offset: byte offset from the module beginning
11 * @length: length of the section to be read (in bytes from the offset)
12 * @data: command buffer (size [bytes] = length)
13 * @last_command: tells if this is the last command in a series
14 * @cd: pointer to command details structure or NULL
15 *
16 * Read the NVM using the admin queue commands (0x0701)
17 */
18static enum ice_status
19ice_aq_read_nvm(struct ice_hw *hw, u8 module_typeid, u32 offset, u16 length,
20 void *data, bool last_command, struct ice_sq_cd *cd)
21{
22 struct ice_aq_desc desc;
23 struct ice_aqc_nvm *cmd;
24
25 cmd = &desc.params.nvm;
26
27 /* In offset the highest byte must be zeroed. */
28 if (offset & 0xFF000000)
29 return ICE_ERR_PARAM;
30
31 ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_nvm_read);
32
33 /* If this is the last command in a series, set the proper flag. */
34 if (last_command)
35 cmd->cmd_flags |= ICE_AQC_NVM_LAST_CMD;
36 cmd->module_typeid = module_typeid;
37 cmd->offset = cpu_to_le32(offset);
38 cmd->length = cpu_to_le16(length);
39
40 return ice_aq_send_cmd(hw, &desc, data, length, cd);
41}
42
43/**
44 * ice_check_sr_access_params - verify params for Shadow RAM R/W operations.
45 * @hw: pointer to the HW structure
46 * @offset: offset in words from module start
47 * @words: number of words to access
48 */
49static enum ice_status
50ice_check_sr_access_params(struct ice_hw *hw, u32 offset, u16 words)
51{
52 if ((offset + words) > hw->nvm.sr_words) {
53 ice_debug(hw, ICE_DBG_NVM,
54 "NVM error: offset beyond SR lmt.\n");
55 return ICE_ERR_PARAM;
56 }
57
58 if (words > ICE_SR_SECTOR_SIZE_IN_WORDS) {
59 /* We can access only up to 4KB (one sector), in one AQ write */
60 ice_debug(hw, ICE_DBG_NVM,
61 "NVM error: tried to access %d words, limit is %d.\n",
62 words, ICE_SR_SECTOR_SIZE_IN_WORDS);
63 return ICE_ERR_PARAM;
64 }
65
66 if (((offset + (words - 1)) / ICE_SR_SECTOR_SIZE_IN_WORDS) !=
67 (offset / ICE_SR_SECTOR_SIZE_IN_WORDS)) {
68 /* A single access cannot spread over two sectors */
69 ice_debug(hw, ICE_DBG_NVM,
70 "NVM error: cannot spread over two sectors.\n");
71 return ICE_ERR_PARAM;
72 }
73
74 return 0;
75}
76
77/**
78 * ice_read_sr_aq - Read Shadow RAM.
79 * @hw: pointer to the HW structure
80 * @offset: offset in words from module start
81 * @words: number of words to read
82 * @data: buffer for words reads from Shadow RAM
83 * @last_command: tells the AdminQ that this is the last command
84 *
85 * Reads 16-bit word buffers from the Shadow RAM using the admin command.
86 */
87static enum ice_status
88ice_read_sr_aq(struct ice_hw *hw, u32 offset, u16 words, u16 *data,
89 bool last_command)
90{
91 enum ice_status status;
92
93 status = ice_check_sr_access_params(hw, offset, words);
94
95 /* values in "offset" and "words" parameters are sized as words
96 * (16 bits) but ice_aq_read_nvm expects these values in bytes.
97 * So do this conversion while calling ice_aq_read_nvm.
98 */
99 if (!status)
100 status = ice_aq_read_nvm(hw, 0, 2 * offset, 2 * words, data,
101 last_command, NULL);
102
103 return status;
104}
105
106/**
107 * ice_read_sr_word_aq - Reads Shadow RAM via AQ
108 * @hw: pointer to the HW structure
109 * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
110 * @data: word read from the Shadow RAM
111 *
112 * Reads one 16 bit word from the Shadow RAM using the ice_read_sr_aq method.
113 */
114static enum ice_status
115ice_read_sr_word_aq(struct ice_hw *hw, u16 offset, u16 *data)
116{
117 enum ice_status status;
118
119 status = ice_read_sr_aq(hw, offset, 1, data, true);
120 if (!status)
121 *data = le16_to_cpu(*(__le16 *)data);
122
123 return status;
124}
125
126/**
127 * ice_acquire_nvm - Generic request for acquiring the NVM ownership
128 * @hw: pointer to the HW structure
129 * @access: NVM access type (read or write)
130 *
131 * This function will request NVM ownership.
132 */
133static enum
134ice_status ice_acquire_nvm(struct ice_hw *hw,
135 enum ice_aq_res_access_type access)
136{
137 if (hw->nvm.blank_nvm_mode)
138 return 0;
139
140 return ice_acquire_res(hw, ICE_NVM_RES_ID, access);
141}
142
143/**
144 * ice_release_nvm - Generic request for releasing the NVM ownership
145 * @hw: pointer to the HW structure
146 *
147 * This function will release NVM ownership.
148 */
149static void ice_release_nvm(struct ice_hw *hw)
150{
151 if (hw->nvm.blank_nvm_mode)
152 return;
153
154 ice_release_res(hw, ICE_NVM_RES_ID);
155}
156
157/**
158 * ice_read_sr_word - Reads Shadow RAM word and acquire NVM if necessary
159 * @hw: pointer to the HW structure
160 * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
161 * @data: word read from the Shadow RAM
162 *
163 * Reads one 16 bit word from the Shadow RAM using the ice_read_sr_word_aq.
164 */
165static enum ice_status
166ice_read_sr_word(struct ice_hw *hw, u16 offset, u16 *data)
167{
168 enum ice_status status;
169
170 status = ice_acquire_nvm(hw, ICE_RES_READ);
171 if (!status) {
172 status = ice_read_sr_word_aq(hw, offset, data);
173 ice_release_nvm(hw);
174 }
175
176 return status;
177}
178
179/**
180 * ice_init_nvm - initializes NVM setting
181 * @hw: pointer to the hw struct
182 *
183 * This function reads and populates NVM settings such as Shadow RAM size,
184 * max_timeout, and blank_nvm_mode
185 */
186enum ice_status ice_init_nvm(struct ice_hw *hw)
187{
188 struct ice_nvm_info *nvm = &hw->nvm;
189 u16 eetrack_lo, eetrack_hi;
190 enum ice_status status = 0;
191 u32 fla, gens_stat;
192 u8 sr_size;
193
194 /* The SR size is stored regardless of the nvm programming mode
195 * as the blank mode may be used in the factory line.
196 */
197 gens_stat = rd32(hw, GLNVM_GENS);
198 sr_size = (gens_stat & GLNVM_GENS_SR_SIZE_M) >> GLNVM_GENS_SR_SIZE_S;
199
200 /* Switching to words (sr_size contains power of 2) */
201 nvm->sr_words = BIT(sr_size) * ICE_SR_WORDS_IN_1KB;
202
203 /* Check if we are in the normal or blank NVM programming mode */
204 fla = rd32(hw, GLNVM_FLA);
205 if (fla & GLNVM_FLA_LOCKED_M) { /* Normal programming mode */
206 nvm->blank_nvm_mode = false;
207 } else { /* Blank programming mode */
208 nvm->blank_nvm_mode = true;
209 status = ICE_ERR_NVM_BLANK_MODE;
210 ice_debug(hw, ICE_DBG_NVM,
211 "NVM init error: unsupported blank mode.\n");
212 return status;
213 }
214
215 status = ice_read_sr_word(hw, ICE_SR_NVM_DEV_STARTER_VER, &hw->nvm.ver);
216 if (status) {
217 ice_debug(hw, ICE_DBG_INIT,
218 "Failed to read DEV starter version.\n");
219 return status;
220 }
221
222 status = ice_read_sr_word(hw, ICE_SR_NVM_EETRACK_LO, &eetrack_lo);
223 if (status) {
224 ice_debug(hw, ICE_DBG_INIT, "Failed to read EETRACK lo.\n");
225 return status;
226 }
227 status = ice_read_sr_word(hw, ICE_SR_NVM_EETRACK_HI, &eetrack_hi);
228 if (status) {
229 ice_debug(hw, ICE_DBG_INIT, "Failed to read EETRACK hi.\n");
230 return status;
231 }
232
233 hw->nvm.eetrack = (eetrack_hi << 16) | eetrack_lo;
234
235 return status;
236}