xref: /linux/drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c (revision e58e871becec2d3b04ed91c0c16fe8deac9c9dfa)
1 /**********************************************************************
2  * Author: Cavium, Inc.
3  *
4  * Contact: support@cavium.com
5  *          Please include "LiquidIO" in the subject.
6  *
7  * Copyright (c) 2003-2016 Cavium, Inc.
8  *
9  * This file is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License, Version 2, as
11  * published by the Free Software Foundation.
12  *
13  * This file is distributed in the hope that it will be useful, but
14  * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16  * NONINFRINGEMENT.  See the GNU General Public License for more details.
17  ***********************************************************************/
18 #include <linux/pci.h>
19 #include <linux/vmalloc.h>
20 #include <linux/etherdevice.h>
21 #include "liquidio_common.h"
22 #include "octeon_droq.h"
23 #include "octeon_iq.h"
24 #include "response_manager.h"
25 #include "octeon_device.h"
26 #include "cn23xx_pf_device.h"
27 #include "octeon_main.h"
28 #include "octeon_mailbox.h"
29 
30 #define RESET_NOTDONE 0
31 #define RESET_DONE 1
32 
33 /* Change the value of SLI Packet Input Jabber Register to allow
34  * VXLAN TSO packets which can be 64424 bytes, exceeding the
35  * MAX_GSO_SIZE we supplied to the kernel
36  */
37 #define CN23XX_INPUT_JABBER 64600
38 
39 void cn23xx_dump_pf_initialized_regs(struct octeon_device *oct)
40 {
41 	int i = 0;
42 	u32 regval = 0;
43 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
44 
45 	/*In cn23xx_soft_reset*/
46 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%llx\n",
47 		"CN23XX_WIN_WR_MASK_REG", CVM_CAST64(CN23XX_WIN_WR_MASK_REG),
48 		CVM_CAST64(octeon_read_csr64(oct, CN23XX_WIN_WR_MASK_REG)));
49 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
50 		"CN23XX_SLI_SCRATCH1", CVM_CAST64(CN23XX_SLI_SCRATCH1),
51 		CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_SCRATCH1)));
52 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
53 		"CN23XX_RST_SOFT_RST", CN23XX_RST_SOFT_RST,
54 		lio_pci_readq(oct, CN23XX_RST_SOFT_RST));
55 
56 	/*In cn23xx_set_dpi_regs*/
57 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
58 		"CN23XX_DPI_DMA_CONTROL", CN23XX_DPI_DMA_CONTROL,
59 		lio_pci_readq(oct, CN23XX_DPI_DMA_CONTROL));
60 
61 	for (i = 0; i < 6; i++) {
62 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
63 			"CN23XX_DPI_DMA_ENG_ENB", i,
64 			CN23XX_DPI_DMA_ENG_ENB(i),
65 			lio_pci_readq(oct, CN23XX_DPI_DMA_ENG_ENB(i)));
66 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
67 			"CN23XX_DPI_DMA_ENG_BUF", i,
68 			CN23XX_DPI_DMA_ENG_BUF(i),
69 			lio_pci_readq(oct, CN23XX_DPI_DMA_ENG_BUF(i)));
70 	}
71 
72 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n", "CN23XX_DPI_CTL",
73 		CN23XX_DPI_CTL, lio_pci_readq(oct, CN23XX_DPI_CTL));
74 
75 	/*In cn23xx_setup_pcie_mps and cn23xx_setup_pcie_mrrs */
76 	pci_read_config_dword(oct->pci_dev, CN23XX_CONFIG_PCIE_DEVCTL, &regval);
77 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
78 		"CN23XX_CONFIG_PCIE_DEVCTL",
79 		CVM_CAST64(CN23XX_CONFIG_PCIE_DEVCTL), CVM_CAST64(regval));
80 
81 	dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
82 		"CN23XX_DPI_SLI_PRTX_CFG", oct->pcie_port,
83 		CN23XX_DPI_SLI_PRTX_CFG(oct->pcie_port),
84 		lio_pci_readq(oct, CN23XX_DPI_SLI_PRTX_CFG(oct->pcie_port)));
85 
86 	/*In cn23xx_specific_regs_setup */
87 	dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
88 		"CN23XX_SLI_S2M_PORTX_CTL", oct->pcie_port,
89 		CVM_CAST64(CN23XX_SLI_S2M_PORTX_CTL(oct->pcie_port)),
90 		CVM_CAST64(octeon_read_csr64(
91 			oct, CN23XX_SLI_S2M_PORTX_CTL(oct->pcie_port))));
92 
93 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
94 		"CN23XX_SLI_RING_RST", CVM_CAST64(CN23XX_SLI_PKT_IOQ_RING_RST),
95 		(u64)octeon_read_csr64(oct, CN23XX_SLI_PKT_IOQ_RING_RST));
96 
97 	/*In cn23xx_setup_global_mac_regs*/
98 	for (i = 0; i < CN23XX_MAX_MACS; i++) {
99 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
100 			"CN23XX_SLI_PKT_MAC_RINFO64", i,
101 			CVM_CAST64(CN23XX_SLI_PKT_MAC_RINFO64(i, oct->pf_num)),
102 			CVM_CAST64(octeon_read_csr64
103 				(oct, CN23XX_SLI_PKT_MAC_RINFO64
104 					(i, oct->pf_num))));
105 	}
106 
107 	/*In cn23xx_setup_global_input_regs*/
108 	for (i = 0; i < CN23XX_MAX_INPUT_QUEUES; i++) {
109 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
110 			"CN23XX_SLI_IQ_PKT_CONTROL64", i,
111 			CVM_CAST64(CN23XX_SLI_IQ_PKT_CONTROL64(i)),
112 			CVM_CAST64(octeon_read_csr64
113 				(oct, CN23XX_SLI_IQ_PKT_CONTROL64(i))));
114 	}
115 
116 	/*In cn23xx_setup_global_output_regs*/
117 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
118 		"CN23XX_SLI_OQ_WMARK", CVM_CAST64(CN23XX_SLI_OQ_WMARK),
119 		CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_OQ_WMARK)));
120 
121 	for (i = 0; i < CN23XX_MAX_OUTPUT_QUEUES; i++) {
122 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
123 			"CN23XX_SLI_OQ_PKT_CONTROL", i,
124 			CVM_CAST64(CN23XX_SLI_OQ_PKT_CONTROL(i)),
125 			CVM_CAST64(octeon_read_csr(
126 				oct, CN23XX_SLI_OQ_PKT_CONTROL(i))));
127 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
128 			"CN23XX_SLI_OQ_PKT_INT_LEVELS", i,
129 			CVM_CAST64(CN23XX_SLI_OQ_PKT_INT_LEVELS(i)),
130 			CVM_CAST64(octeon_read_csr64(
131 				oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(i))));
132 	}
133 
134 	/*In cn23xx_enable_interrupt and cn23xx_disable_interrupt*/
135 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
136 		"cn23xx->intr_enb_reg64",
137 		CVM_CAST64((long)(cn23xx->intr_enb_reg64)),
138 		CVM_CAST64(readq(cn23xx->intr_enb_reg64)));
139 
140 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
141 		"cn23xx->intr_sum_reg64",
142 		CVM_CAST64((long)(cn23xx->intr_sum_reg64)),
143 		CVM_CAST64(readq(cn23xx->intr_sum_reg64)));
144 
145 	/*In cn23xx_setup_iq_regs*/
146 	for (i = 0; i < CN23XX_MAX_INPUT_QUEUES; i++) {
147 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
148 			"CN23XX_SLI_IQ_BASE_ADDR64", i,
149 			CVM_CAST64(CN23XX_SLI_IQ_BASE_ADDR64(i)),
150 			CVM_CAST64(octeon_read_csr64(
151 				oct, CN23XX_SLI_IQ_BASE_ADDR64(i))));
152 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
153 			"CN23XX_SLI_IQ_SIZE", i,
154 			CVM_CAST64(CN23XX_SLI_IQ_SIZE(i)),
155 			CVM_CAST64(octeon_read_csr
156 				(oct, CN23XX_SLI_IQ_SIZE(i))));
157 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
158 			"CN23XX_SLI_IQ_DOORBELL", i,
159 			CVM_CAST64(CN23XX_SLI_IQ_DOORBELL(i)),
160 			CVM_CAST64(octeon_read_csr64(
161 				oct, CN23XX_SLI_IQ_DOORBELL(i))));
162 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
163 			"CN23XX_SLI_IQ_INSTR_COUNT64", i,
164 			CVM_CAST64(CN23XX_SLI_IQ_INSTR_COUNT64(i)),
165 			CVM_CAST64(octeon_read_csr64(
166 				oct, CN23XX_SLI_IQ_INSTR_COUNT64(i))));
167 	}
168 
169 	/*In cn23xx_setup_oq_regs*/
170 	for (i = 0; i < CN23XX_MAX_OUTPUT_QUEUES; i++) {
171 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
172 			"CN23XX_SLI_OQ_BASE_ADDR64", i,
173 			CVM_CAST64(CN23XX_SLI_OQ_BASE_ADDR64(i)),
174 			CVM_CAST64(octeon_read_csr64(
175 				oct, CN23XX_SLI_OQ_BASE_ADDR64(i))));
176 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
177 			"CN23XX_SLI_OQ_SIZE", i,
178 			CVM_CAST64(CN23XX_SLI_OQ_SIZE(i)),
179 			CVM_CAST64(octeon_read_csr
180 				(oct, CN23XX_SLI_OQ_SIZE(i))));
181 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
182 			"CN23XX_SLI_OQ_BUFF_INFO_SIZE", i,
183 			CVM_CAST64(CN23XX_SLI_OQ_BUFF_INFO_SIZE(i)),
184 			CVM_CAST64(octeon_read_csr(
185 				oct, CN23XX_SLI_OQ_BUFF_INFO_SIZE(i))));
186 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
187 			"CN23XX_SLI_OQ_PKTS_SENT", i,
188 			CVM_CAST64(CN23XX_SLI_OQ_PKTS_SENT(i)),
189 			CVM_CAST64(octeon_read_csr64(
190 				oct, CN23XX_SLI_OQ_PKTS_SENT(i))));
191 		dev_dbg(&oct->pci_dev->dev, "%s(%d)[%llx] : 0x%016llx\n",
192 			"CN23XX_SLI_OQ_PKTS_CREDIT", i,
193 			CVM_CAST64(CN23XX_SLI_OQ_PKTS_CREDIT(i)),
194 			CVM_CAST64(octeon_read_csr64(
195 				oct, CN23XX_SLI_OQ_PKTS_CREDIT(i))));
196 	}
197 
198 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
199 		"CN23XX_SLI_PKT_TIME_INT",
200 		CVM_CAST64(CN23XX_SLI_PKT_TIME_INT),
201 		CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_PKT_TIME_INT)));
202 	dev_dbg(&oct->pci_dev->dev, "%s[%llx] : 0x%016llx\n",
203 		"CN23XX_SLI_PKT_CNT_INT",
204 		CVM_CAST64(CN23XX_SLI_PKT_CNT_INT),
205 		CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_PKT_CNT_INT)));
206 }
207 
208 static int cn23xx_pf_soft_reset(struct octeon_device *oct)
209 {
210 	octeon_write_csr64(oct, CN23XX_WIN_WR_MASK_REG, 0xFF);
211 
212 	dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: BIST enabled for CN23XX soft reset\n",
213 		oct->octeon_id);
214 
215 	octeon_write_csr64(oct, CN23XX_SLI_SCRATCH1, 0x1234ULL);
216 
217 	/* Initiate chip-wide soft reset */
218 	lio_pci_readq(oct, CN23XX_RST_SOFT_RST);
219 	lio_pci_writeq(oct, 1, CN23XX_RST_SOFT_RST);
220 
221 	/* Wait for 100ms as Octeon resets. */
222 	mdelay(100);
223 
224 	if (octeon_read_csr64(oct, CN23XX_SLI_SCRATCH1) == 0x1234ULL) {
225 		dev_err(&oct->pci_dev->dev, "OCTEON[%d]: Soft reset failed\n",
226 			oct->octeon_id);
227 		return 1;
228 	}
229 
230 	dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: Reset completed\n",
231 		oct->octeon_id);
232 
233 	/* restore the  reset value*/
234 	octeon_write_csr64(oct, CN23XX_WIN_WR_MASK_REG, 0xFF);
235 
236 	return 0;
237 }
238 
239 static void cn23xx_enable_error_reporting(struct octeon_device *oct)
240 {
241 	u32 regval;
242 	u32 uncorrectable_err_mask, corrtable_err_status;
243 
244 	pci_read_config_dword(oct->pci_dev, CN23XX_CONFIG_PCIE_DEVCTL, &regval);
245 	if (regval & CN23XX_CONFIG_PCIE_DEVCTL_MASK) {
246 		uncorrectable_err_mask = 0;
247 		corrtable_err_status = 0;
248 		pci_read_config_dword(oct->pci_dev,
249 				      CN23XX_CONFIG_PCIE_UNCORRECT_ERR_MASK,
250 				      &uncorrectable_err_mask);
251 		pci_read_config_dword(oct->pci_dev,
252 				      CN23XX_CONFIG_PCIE_CORRECT_ERR_STATUS,
253 				      &corrtable_err_status);
254 		dev_err(&oct->pci_dev->dev, "PCI-E Fatal error detected;\n"
255 				 "\tdev_ctl_status_reg = 0x%08x\n"
256 				 "\tuncorrectable_error_mask_reg = 0x%08x\n"
257 				 "\tcorrectable_error_status_reg = 0x%08x\n",
258 			    regval, uncorrectable_err_mask,
259 			    corrtable_err_status);
260 	}
261 
262 	regval |= 0xf; /* Enable Link error reporting */
263 
264 	dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: Enabling PCI-E error reporting..\n",
265 		oct->octeon_id);
266 	pci_write_config_dword(oct->pci_dev, CN23XX_CONFIG_PCIE_DEVCTL, regval);
267 }
268 
269 static u32 cn23xx_coprocessor_clock(struct octeon_device *oct)
270 {
271 	/* Bits 29:24 of RST_BOOT[PNR_MUL] holds the ref.clock MULTIPLIER
272 	 * for SLI.
273 	 */
274 
275 	/* TBD: get the info in Hand-shake */
276 	return (((lio_pci_readq(oct, CN23XX_RST_BOOT) >> 24) & 0x3f) * 50);
277 }
278 
279 u32 cn23xx_pf_get_oq_ticks(struct octeon_device *oct, u32 time_intr_in_us)
280 {
281 	/* This gives the SLI clock per microsec */
282 	u32 oqticks_per_us = cn23xx_coprocessor_clock(oct);
283 
284 	oct->pfvf_hsword.coproc_tics_per_us = oqticks_per_us;
285 
286 	/* This gives the clock cycles per millisecond */
287 	oqticks_per_us *= 1000;
288 
289 	/* This gives the oq ticks (1024 core clock cycles) per millisecond */
290 	oqticks_per_us /= 1024;
291 
292 	/* time_intr is in microseconds. The next 2 steps gives the oq ticks
293 	 *  corressponding to time_intr.
294 	 */
295 	oqticks_per_us *= time_intr_in_us;
296 	oqticks_per_us /= 1000;
297 
298 	return oqticks_per_us;
299 }
300 
301 static void cn23xx_setup_global_mac_regs(struct octeon_device *oct)
302 {
303 	u16 mac_no = oct->pcie_port;
304 	u16 pf_num = oct->pf_num;
305 	u64 reg_val;
306 	u64 temp;
307 
308 	/* programming SRN and TRS for each MAC(0..3)  */
309 
310 	dev_dbg(&oct->pci_dev->dev, "%s:Using pcie port %d\n",
311 		__func__, mac_no);
312 	/* By default, mapping all 64 IOQs to  a single MACs */
313 
314 	reg_val =
315 	    octeon_read_csr64(oct, CN23XX_SLI_PKT_MAC_RINFO64(mac_no, pf_num));
316 
317 	if (oct->rev_id == OCTEON_CN23XX_REV_1_1) {
318 		/* setting SRN <6:0>  */
319 		reg_val = pf_num * CN23XX_MAX_RINGS_PER_PF_PASS_1_1;
320 	} else {
321 		/* setting SRN <6:0>  */
322 		reg_val = pf_num * CN23XX_MAX_RINGS_PER_PF;
323 	}
324 
325 	/* setting TRS <23:16> */
326 	reg_val = reg_val |
327 		  (oct->sriov_info.trs << CN23XX_PKT_MAC_CTL_RINFO_TRS_BIT_POS);
328 	/* setting RPVF <39:32> */
329 	temp = oct->sriov_info.rings_per_vf & 0xff;
330 	reg_val |= (temp << CN23XX_PKT_MAC_CTL_RINFO_RPVF_BIT_POS);
331 
332 	/* setting NVFS <55:48> */
333 	temp = oct->sriov_info.max_vfs & 0xff;
334 	reg_val |= (temp << CN23XX_PKT_MAC_CTL_RINFO_NVFS_BIT_POS);
335 
336 	/* write these settings to MAC register */
337 	octeon_write_csr64(oct, CN23XX_SLI_PKT_MAC_RINFO64(mac_no, pf_num),
338 			   reg_val);
339 
340 	dev_dbg(&oct->pci_dev->dev, "SLI_PKT_MAC(%d)_PF(%d)_RINFO : 0x%016llx\n",
341 		mac_no, pf_num, (u64)octeon_read_csr64
342 		(oct, CN23XX_SLI_PKT_MAC_RINFO64(mac_no, pf_num)));
343 }
344 
345 static int cn23xx_reset_io_queues(struct octeon_device *oct)
346 {
347 	int ret_val = 0;
348 	u64 d64;
349 	u32 q_no, srn, ern;
350 	u32 loop = 1000;
351 
352 	srn = oct->sriov_info.pf_srn;
353 	ern = srn + oct->sriov_info.num_pf_rings;
354 
355 	/*As per HRM reg description, s/w cant write 0 to ENB. */
356 	/*to make the queue off, need to set the RST bit. */
357 
358 	/* Reset the Enable bit for all the 64 IQs.  */
359 	for (q_no = srn; q_no < ern; q_no++) {
360 		/* set RST bit to 1. This bit applies to both IQ and OQ */
361 		d64 = octeon_read_csr64(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
362 		d64 = d64 | CN23XX_PKT_INPUT_CTL_RST;
363 		octeon_write_csr64(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no), d64);
364 	}
365 
366 	/*wait until the RST bit is clear or the RST and quite bits are set*/
367 	for (q_no = srn; q_no < ern; q_no++) {
368 		u64 reg_val = octeon_read_csr64(oct,
369 					CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
370 		while ((READ_ONCE(reg_val) & CN23XX_PKT_INPUT_CTL_RST) &&
371 		       !(READ_ONCE(reg_val) & CN23XX_PKT_INPUT_CTL_QUIET) &&
372 		       loop--) {
373 			WRITE_ONCE(reg_val, octeon_read_csr64(
374 			    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no)));
375 		}
376 		if (!loop) {
377 			dev_err(&oct->pci_dev->dev,
378 				"clearing the reset reg failed or setting the quiet reg failed for qno: %u\n",
379 				q_no);
380 			return -1;
381 		}
382 		WRITE_ONCE(reg_val, READ_ONCE(reg_val) &
383 			~CN23XX_PKT_INPUT_CTL_RST);
384 		octeon_write_csr64(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
385 				   READ_ONCE(reg_val));
386 
387 		WRITE_ONCE(reg_val, octeon_read_csr64(
388 			   oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no)));
389 		if (READ_ONCE(reg_val) & CN23XX_PKT_INPUT_CTL_RST) {
390 			dev_err(&oct->pci_dev->dev,
391 				"clearing the reset failed for qno: %u\n",
392 				q_no);
393 			ret_val = -1;
394 		}
395 	}
396 
397 	return ret_val;
398 }
399 
400 static int cn23xx_pf_setup_global_input_regs(struct octeon_device *oct)
401 {
402 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
403 	struct octeon_instr_queue *iq;
404 	u64 intr_threshold, reg_val;
405 	u32 q_no, ern, srn;
406 	u64 pf_num;
407 	u64 vf_num;
408 
409 	pf_num = oct->pf_num;
410 
411 	srn = oct->sriov_info.pf_srn;
412 	ern = srn + oct->sriov_info.num_pf_rings;
413 
414 	if (cn23xx_reset_io_queues(oct))
415 		return -1;
416 
417 	/** Set the MAC_NUM and PVF_NUM in IQ_PKT_CONTROL reg
418 	 * for all queues.Only PF can set these bits.
419 	 * bits 29:30 indicate the MAC num.
420 	 * bits 32:47 indicate the PVF num.
421 	 */
422 	for (q_no = 0; q_no < ern; q_no++) {
423 		reg_val = oct->pcie_port << CN23XX_PKT_INPUT_CTL_MAC_NUM_POS;
424 
425 		/* for VF assigned queues. */
426 		if (q_no < oct->sriov_info.pf_srn) {
427 			vf_num = q_no / oct->sriov_info.rings_per_vf;
428 			vf_num += 1; /* VF1, VF2,........ */
429 		} else {
430 			vf_num = 0;
431 		}
432 
433 		reg_val |= vf_num << CN23XX_PKT_INPUT_CTL_VF_NUM_POS;
434 		reg_val |= pf_num << CN23XX_PKT_INPUT_CTL_PF_NUM_POS;
435 
436 		octeon_write_csr64(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
437 				   reg_val);
438 	}
439 
440 	/* Select ES, RO, NS, RDSIZE,DPTR Fomat#0 for
441 	 * pf queues
442 	 */
443 	for (q_no = srn; q_no < ern; q_no++) {
444 		void __iomem *inst_cnt_reg;
445 
446 		iq = oct->instr_queue[q_no];
447 		if (iq)
448 			inst_cnt_reg = iq->inst_cnt_reg;
449 		else
450 			inst_cnt_reg = (u8 *)oct->mmio[0].hw_addr +
451 				       CN23XX_SLI_IQ_INSTR_COUNT64(q_no);
452 
453 		reg_val =
454 		    octeon_read_csr64(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
455 
456 		reg_val |= CN23XX_PKT_INPUT_CTL_MASK;
457 
458 		octeon_write_csr64(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
459 				   reg_val);
460 
461 		/* Set WMARK level for triggering PI_INT */
462 		/* intr_threshold = CN23XX_DEF_IQ_INTR_THRESHOLD & */
463 		intr_threshold = CFG_GET_IQ_INTR_PKT(cn23xx->conf) &
464 				 CN23XX_PKT_IN_DONE_WMARK_MASK;
465 
466 		writeq((readq(inst_cnt_reg) &
467 			~(CN23XX_PKT_IN_DONE_WMARK_MASK <<
468 			  CN23XX_PKT_IN_DONE_WMARK_BIT_POS)) |
469 		       (intr_threshold << CN23XX_PKT_IN_DONE_WMARK_BIT_POS),
470 		       inst_cnt_reg);
471 	}
472 	return 0;
473 }
474 
475 static void cn23xx_pf_setup_global_output_regs(struct octeon_device *oct)
476 {
477 	u32 reg_val;
478 	u32 q_no, ern, srn;
479 	u64 time_threshold;
480 
481 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
482 
483 	srn = oct->sriov_info.pf_srn;
484 	ern = srn + oct->sriov_info.num_pf_rings;
485 
486 	if (CFG_GET_IS_SLI_BP_ON(cn23xx->conf)) {
487 		octeon_write_csr64(oct, CN23XX_SLI_OQ_WMARK, 32);
488 	} else {
489 		/** Set Output queue watermark to 0 to disable backpressure */
490 		octeon_write_csr64(oct, CN23XX_SLI_OQ_WMARK, 0);
491 	}
492 
493 	for (q_no = srn; q_no < ern; q_no++) {
494 		reg_val = octeon_read_csr(oct, CN23XX_SLI_OQ_PKT_CONTROL(q_no));
495 
496 		/* set IPTR & DPTR */
497 		reg_val |=
498 		    (CN23XX_PKT_OUTPUT_CTL_IPTR | CN23XX_PKT_OUTPUT_CTL_DPTR);
499 
500 		/* reset BMODE */
501 		reg_val &= ~(CN23XX_PKT_OUTPUT_CTL_BMODE);
502 
503 		/* No Relaxed Ordering, No Snoop, 64-bit Byte swap
504 		 * for Output Queue ScatterList
505 		 * reset ROR_P, NSR_P
506 		 */
507 		reg_val &= ~(CN23XX_PKT_OUTPUT_CTL_ROR_P);
508 		reg_val &= ~(CN23XX_PKT_OUTPUT_CTL_NSR_P);
509 
510 #ifdef __LITTLE_ENDIAN_BITFIELD
511 		reg_val &= ~(CN23XX_PKT_OUTPUT_CTL_ES_P);
512 #else
513 		reg_val |= (CN23XX_PKT_OUTPUT_CTL_ES_P);
514 #endif
515 		/* No Relaxed Ordering, No Snoop, 64-bit Byte swap
516 		 * for Output Queue Data
517 		 * reset ROR, NSR
518 		 */
519 		reg_val &= ~(CN23XX_PKT_OUTPUT_CTL_ROR);
520 		reg_val &= ~(CN23XX_PKT_OUTPUT_CTL_NSR);
521 		/* set the ES bit */
522 		reg_val |= (CN23XX_PKT_OUTPUT_CTL_ES);
523 
524 		/* write all the selected settings */
525 		octeon_write_csr(oct, CN23XX_SLI_OQ_PKT_CONTROL(q_no), reg_val);
526 
527 		/* Enabling these interrupt in oct->fn_list.enable_interrupt()
528 		 * routine which called after IOQ init.
529 		 * Set up interrupt packet and time thresholds
530 		 * for all the OQs
531 		 */
532 		time_threshold = cn23xx_pf_get_oq_ticks(
533 		    oct, (u32)CFG_GET_OQ_INTR_TIME(cn23xx->conf));
534 
535 		octeon_write_csr64(oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(q_no),
536 				   (CFG_GET_OQ_INTR_PKT(cn23xx->conf) |
537 				    (time_threshold << 32)));
538 	}
539 
540 	/** Setting the water mark level for pko back pressure **/
541 	writeq(0x40, (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_OQ_WMARK);
542 
543 	/** Disabling setting OQs in reset when ring has no dorebells
544 	 * enabling this will cause of head of line blocking
545 	 */
546 	/* Do it only for pass1.1. and pass1.2 */
547 	if ((oct->rev_id == OCTEON_CN23XX_REV_1_0) ||
548 	    (oct->rev_id == OCTEON_CN23XX_REV_1_1))
549 		writeq(readq((u8 *)oct->mmio[0].hw_addr +
550 				     CN23XX_SLI_GBL_CONTROL) | 0x2,
551 		       (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_GBL_CONTROL);
552 
553 	/** Enable channel-level backpressure */
554 	if (oct->pf_num)
555 		writeq(0xffffffffffffffffULL,
556 		       (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_OUT_BP_EN2_W1S);
557 	else
558 		writeq(0xffffffffffffffffULL,
559 		       (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_OUT_BP_EN_W1S);
560 }
561 
562 static int cn23xx_setup_pf_device_regs(struct octeon_device *oct)
563 {
564 	cn23xx_enable_error_reporting(oct);
565 
566 	/* program the MAC(0..3)_RINFO before setting up input/output regs */
567 	cn23xx_setup_global_mac_regs(oct);
568 
569 	if (cn23xx_pf_setup_global_input_regs(oct))
570 		return -1;
571 
572 	cn23xx_pf_setup_global_output_regs(oct);
573 
574 	/* Default error timeout value should be 0x200000 to avoid host hang
575 	 * when reads invalid register
576 	 */
577 	octeon_write_csr64(oct, CN23XX_SLI_WINDOW_CTL,
578 			   CN23XX_SLI_WINDOW_CTL_DEFAULT);
579 
580 	/* set SLI_PKT_IN_JABBER to handle large VXLAN packets */
581 	octeon_write_csr64(oct, CN23XX_SLI_PKT_IN_JABBER, CN23XX_INPUT_JABBER);
582 	return 0;
583 }
584 
585 static void cn23xx_setup_iq_regs(struct octeon_device *oct, u32 iq_no)
586 {
587 	struct octeon_instr_queue *iq = oct->instr_queue[iq_no];
588 	u64 pkt_in_done;
589 
590 	iq_no += oct->sriov_info.pf_srn;
591 
592 	/* Write the start of the input queue's ring and its size  */
593 	octeon_write_csr64(oct, CN23XX_SLI_IQ_BASE_ADDR64(iq_no),
594 			   iq->base_addr_dma);
595 	octeon_write_csr(oct, CN23XX_SLI_IQ_SIZE(iq_no), iq->max_count);
596 
597 	/* Remember the doorbell & instruction count register addr
598 	 * for this queue
599 	 */
600 	iq->doorbell_reg =
601 	    (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_IQ_DOORBELL(iq_no);
602 	iq->inst_cnt_reg =
603 	    (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_IQ_INSTR_COUNT64(iq_no);
604 	dev_dbg(&oct->pci_dev->dev, "InstQ[%d]:dbell reg @ 0x%p instcnt_reg @ 0x%p\n",
605 		iq_no, iq->doorbell_reg, iq->inst_cnt_reg);
606 
607 	/* Store the current instruction counter (used in flush_iq
608 	 * calculation)
609 	 */
610 	pkt_in_done = readq(iq->inst_cnt_reg);
611 
612 	if (oct->msix_on) {
613 		/* Set CINT_ENB to enable IQ interrupt   */
614 		writeq((pkt_in_done | CN23XX_INTR_CINT_ENB),
615 		       iq->inst_cnt_reg);
616 	} else {
617 		/* Clear the count by writing back what we read, but don't
618 		 * enable interrupts
619 		 */
620 		writeq(pkt_in_done, iq->inst_cnt_reg);
621 	}
622 
623 	iq->reset_instr_cnt = 0;
624 }
625 
626 static void cn23xx_setup_oq_regs(struct octeon_device *oct, u32 oq_no)
627 {
628 	u32 reg_val;
629 	struct octeon_droq *droq = oct->droq[oq_no];
630 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
631 	u64 time_threshold;
632 	u64 cnt_threshold;
633 
634 	oq_no += oct->sriov_info.pf_srn;
635 
636 	octeon_write_csr64(oct, CN23XX_SLI_OQ_BASE_ADDR64(oq_no),
637 			   droq->desc_ring_dma);
638 	octeon_write_csr(oct, CN23XX_SLI_OQ_SIZE(oq_no), droq->max_count);
639 
640 	octeon_write_csr(oct, CN23XX_SLI_OQ_BUFF_INFO_SIZE(oq_no),
641 			 (droq->buffer_size | (OCT_RH_SIZE << 16)));
642 
643 	/* Get the mapped address of the pkt_sent and pkts_credit regs */
644 	droq->pkts_sent_reg =
645 	    (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_OQ_PKTS_SENT(oq_no);
646 	droq->pkts_credit_reg =
647 	    (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_OQ_PKTS_CREDIT(oq_no);
648 
649 	if (!oct->msix_on) {
650 		/* Enable this output queue to generate Packet Timer Interrupt
651 		 */
652 		reg_val =
653 		    octeon_read_csr(oct, CN23XX_SLI_OQ_PKT_CONTROL(oq_no));
654 		reg_val |= CN23XX_PKT_OUTPUT_CTL_TENB;
655 		octeon_write_csr(oct, CN23XX_SLI_OQ_PKT_CONTROL(oq_no),
656 				 reg_val);
657 
658 		/* Enable this output queue to generate Packet Count Interrupt
659 		 */
660 		reg_val =
661 		    octeon_read_csr(oct, CN23XX_SLI_OQ_PKT_CONTROL(oq_no));
662 		reg_val |= CN23XX_PKT_OUTPUT_CTL_CENB;
663 		octeon_write_csr(oct, CN23XX_SLI_OQ_PKT_CONTROL(oq_no),
664 				 reg_val);
665 	} else {
666 		time_threshold = cn23xx_pf_get_oq_ticks(
667 		    oct, (u32)CFG_GET_OQ_INTR_TIME(cn23xx->conf));
668 		cnt_threshold = (u32)CFG_GET_OQ_INTR_PKT(cn23xx->conf);
669 
670 		octeon_write_csr64(
671 		    oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(oq_no),
672 		    ((time_threshold << 32 | cnt_threshold)));
673 	}
674 }
675 
676 static void cn23xx_pf_mbox_thread(struct work_struct *work)
677 {
678 	struct cavium_wk *wk = (struct cavium_wk *)work;
679 	struct octeon_mbox *mbox = (struct octeon_mbox *)wk->ctxptr;
680 	struct octeon_device *oct = mbox->oct_dev;
681 	u64 mbox_int_val, val64;
682 	u32 q_no, i;
683 
684 	if (oct->rev_id < OCTEON_CN23XX_REV_1_1) {
685 		/*read and clear by writing 1*/
686 		mbox_int_val = readq(mbox->mbox_int_reg);
687 		writeq(mbox_int_val, mbox->mbox_int_reg);
688 
689 		for (i = 0; i < oct->sriov_info.num_vfs_alloced; i++) {
690 			q_no = i * oct->sriov_info.rings_per_vf;
691 
692 			val64 = readq(oct->mbox[q_no]->mbox_write_reg);
693 
694 			if (val64 && (val64 != OCTEON_PFVFACK)) {
695 				if (octeon_mbox_read(oct->mbox[q_no]))
696 					octeon_mbox_process_message(
697 					    oct->mbox[q_no]);
698 			}
699 		}
700 
701 		schedule_delayed_work(&wk->work, msecs_to_jiffies(10));
702 	} else {
703 		octeon_mbox_process_message(mbox);
704 	}
705 }
706 
707 static int cn23xx_setup_pf_mbox(struct octeon_device *oct)
708 {
709 	struct octeon_mbox *mbox = NULL;
710 	u16 mac_no = oct->pcie_port;
711 	u16 pf_num = oct->pf_num;
712 	u32 q_no, i;
713 
714 	if (!oct->sriov_info.max_vfs)
715 		return 0;
716 
717 	for (i = 0; i < oct->sriov_info.max_vfs; i++) {
718 		q_no = i * oct->sriov_info.rings_per_vf;
719 
720 		mbox = vmalloc(sizeof(*mbox));
721 		if (!mbox)
722 			goto free_mbox;
723 
724 		memset(mbox, 0, sizeof(struct octeon_mbox));
725 
726 		spin_lock_init(&mbox->lock);
727 
728 		mbox->oct_dev = oct;
729 
730 		mbox->q_no = q_no;
731 
732 		mbox->state = OCTEON_MBOX_STATE_IDLE;
733 
734 		/* PF mbox interrupt reg */
735 		mbox->mbox_int_reg = (u8 *)oct->mmio[0].hw_addr +
736 				     CN23XX_SLI_MAC_PF_MBOX_INT(mac_no, pf_num);
737 
738 		/* PF writes into SIG0 reg */
739 		mbox->mbox_write_reg = (u8 *)oct->mmio[0].hw_addr +
740 				       CN23XX_SLI_PKT_PF_VF_MBOX_SIG(q_no, 0);
741 
742 		/* PF reads from SIG1 reg */
743 		mbox->mbox_read_reg = (u8 *)oct->mmio[0].hw_addr +
744 				      CN23XX_SLI_PKT_PF_VF_MBOX_SIG(q_no, 1);
745 
746 		/*Mail Box Thread creation*/
747 		INIT_DELAYED_WORK(&mbox->mbox_poll_wk.work,
748 				  cn23xx_pf_mbox_thread);
749 		mbox->mbox_poll_wk.ctxptr = (void *)mbox;
750 
751 		oct->mbox[q_no] = mbox;
752 
753 		writeq(OCTEON_PFVFSIG, mbox->mbox_read_reg);
754 	}
755 
756 	if (oct->rev_id < OCTEON_CN23XX_REV_1_1)
757 		schedule_delayed_work(&oct->mbox[0]->mbox_poll_wk.work,
758 				      msecs_to_jiffies(0));
759 
760 	return 0;
761 
762 free_mbox:
763 	while (i) {
764 		i--;
765 		vfree(oct->mbox[i]);
766 	}
767 
768 	return 1;
769 }
770 
771 static int cn23xx_free_pf_mbox(struct octeon_device *oct)
772 {
773 	u32 q_no, i;
774 
775 	if (!oct->sriov_info.max_vfs)
776 		return 0;
777 
778 	for (i = 0; i < oct->sriov_info.max_vfs; i++) {
779 		q_no = i * oct->sriov_info.rings_per_vf;
780 		cancel_delayed_work_sync(
781 		    &oct->mbox[q_no]->mbox_poll_wk.work);
782 		vfree(oct->mbox[q_no]);
783 	}
784 
785 	return 0;
786 }
787 
788 static int cn23xx_enable_io_queues(struct octeon_device *oct)
789 {
790 	u64 reg_val;
791 	u32 srn, ern, q_no;
792 	u32 loop = 1000;
793 
794 	srn = oct->sriov_info.pf_srn;
795 	ern = srn + oct->num_iqs;
796 
797 	for (q_no = srn; q_no < ern; q_no++) {
798 		/* set the corresponding IQ IS_64B bit */
799 		if (oct->io_qmask.iq64B & BIT_ULL(q_no - srn)) {
800 			reg_val = octeon_read_csr64(
801 			    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
802 			reg_val = reg_val | CN23XX_PKT_INPUT_CTL_IS_64B;
803 			octeon_write_csr64(
804 			    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no), reg_val);
805 		}
806 
807 		/* set the corresponding IQ ENB bit */
808 		if (oct->io_qmask.iq & BIT_ULL(q_no - srn)) {
809 			/* IOQs are in reset by default in PEM2 mode,
810 			 * clearing reset bit
811 			 */
812 			reg_val = octeon_read_csr64(
813 			    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
814 
815 			if (reg_val & CN23XX_PKT_INPUT_CTL_RST) {
816 				while ((reg_val & CN23XX_PKT_INPUT_CTL_RST) &&
817 				       !(reg_val &
818 					 CN23XX_PKT_INPUT_CTL_QUIET) &&
819 				       --loop) {
820 					reg_val = octeon_read_csr64(
821 					    oct,
822 					    CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
823 				}
824 				if (!loop) {
825 					dev_err(&oct->pci_dev->dev,
826 						"clearing the reset reg failed or setting the quiet reg failed for qno: %u\n",
827 						q_no);
828 					return -1;
829 				}
830 				reg_val = reg_val & ~CN23XX_PKT_INPUT_CTL_RST;
831 				octeon_write_csr64(
832 				    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
833 				    reg_val);
834 
835 				reg_val = octeon_read_csr64(
836 				    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
837 				if (reg_val & CN23XX_PKT_INPUT_CTL_RST) {
838 					dev_err(&oct->pci_dev->dev,
839 						"clearing the reset failed for qno: %u\n",
840 						q_no);
841 					return -1;
842 				}
843 			}
844 			reg_val = octeon_read_csr64(
845 			    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no));
846 			reg_val = reg_val | CN23XX_PKT_INPUT_CTL_RING_ENB;
847 			octeon_write_csr64(
848 			    oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no), reg_val);
849 		}
850 	}
851 	for (q_no = srn; q_no < ern; q_no++) {
852 		u32 reg_val;
853 		/* set the corresponding OQ ENB bit */
854 		if (oct->io_qmask.oq & BIT_ULL(q_no - srn)) {
855 			reg_val = octeon_read_csr(
856 			    oct, CN23XX_SLI_OQ_PKT_CONTROL(q_no));
857 			reg_val = reg_val | CN23XX_PKT_OUTPUT_CTL_RING_ENB;
858 			octeon_write_csr(oct, CN23XX_SLI_OQ_PKT_CONTROL(q_no),
859 					 reg_val);
860 		}
861 	}
862 	return 0;
863 }
864 
865 static void cn23xx_disable_io_queues(struct octeon_device *oct)
866 {
867 	int q_no, loop;
868 	u64 d64;
869 	u32 d32;
870 	u32 srn, ern;
871 
872 	srn = oct->sriov_info.pf_srn;
873 	ern = srn + oct->num_iqs;
874 
875 	/*** Disable Input Queues. ***/
876 	for (q_no = srn; q_no < ern; q_no++) {
877 		loop = HZ;
878 
879 		/* start the Reset for a particular ring */
880 		WRITE_ONCE(d64, octeon_read_csr64(
881 			   oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no)));
882 		WRITE_ONCE(d64, READ_ONCE(d64) &
883 					(~(CN23XX_PKT_INPUT_CTL_RING_ENB)));
884 		WRITE_ONCE(d64, READ_ONCE(d64) | CN23XX_PKT_INPUT_CTL_RST);
885 		octeon_write_csr64(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
886 				   READ_ONCE(d64));
887 
888 		/* Wait until hardware indicates that the particular IQ
889 		 * is out of reset.
890 		 */
891 		WRITE_ONCE(d64, octeon_read_csr64(
892 					oct, CN23XX_SLI_PKT_IOQ_RING_RST));
893 		while (!(READ_ONCE(d64) & BIT_ULL(q_no)) && loop--) {
894 			WRITE_ONCE(d64, octeon_read_csr64(
895 					oct, CN23XX_SLI_PKT_IOQ_RING_RST));
896 			schedule_timeout_uninterruptible(1);
897 		}
898 
899 		/* Reset the doorbell register for this Input Queue. */
900 		octeon_write_csr(oct, CN23XX_SLI_IQ_DOORBELL(q_no), 0xFFFFFFFF);
901 		while (octeon_read_csr64(oct, CN23XX_SLI_IQ_DOORBELL(q_no)) &&
902 		       loop--) {
903 			schedule_timeout_uninterruptible(1);
904 		}
905 	}
906 
907 	/*** Disable Output Queues. ***/
908 	for (q_no = srn; q_no < ern; q_no++) {
909 		loop = HZ;
910 
911 		/* Wait until hardware indicates that the particular IQ
912 		 * is out of reset.It given that SLI_PKT_RING_RST is
913 		 * common for both IQs and OQs
914 		 */
915 		WRITE_ONCE(d64, octeon_read_csr64(
916 					oct, CN23XX_SLI_PKT_IOQ_RING_RST));
917 		while (!(READ_ONCE(d64) & BIT_ULL(q_no)) && loop--) {
918 			WRITE_ONCE(d64, octeon_read_csr64(
919 					oct, CN23XX_SLI_PKT_IOQ_RING_RST));
920 			schedule_timeout_uninterruptible(1);
921 		}
922 
923 		/* Reset the doorbell register for this Output Queue. */
924 		octeon_write_csr(oct, CN23XX_SLI_OQ_PKTS_CREDIT(q_no),
925 				 0xFFFFFFFF);
926 		while (octeon_read_csr64(oct,
927 					 CN23XX_SLI_OQ_PKTS_CREDIT(q_no)) &&
928 		       loop--) {
929 			schedule_timeout_uninterruptible(1);
930 		}
931 
932 		/* clear the SLI_PKT(0..63)_CNTS[CNT] reg value */
933 		WRITE_ONCE(d32, octeon_read_csr(
934 					oct, CN23XX_SLI_OQ_PKTS_SENT(q_no)));
935 		octeon_write_csr(oct, CN23XX_SLI_OQ_PKTS_SENT(q_no),
936 				 READ_ONCE(d32));
937 	}
938 }
939 
940 static u64 cn23xx_pf_msix_interrupt_handler(void *dev)
941 {
942 	struct octeon_ioq_vector *ioq_vector = (struct octeon_ioq_vector *)dev;
943 	struct octeon_device *oct = ioq_vector->oct_dev;
944 	u64 pkts_sent;
945 	u64 ret = 0;
946 	struct octeon_droq *droq = oct->droq[ioq_vector->droq_index];
947 
948 	dev_dbg(&oct->pci_dev->dev, "In %s octeon_dev @ %p\n", __func__, oct);
949 
950 	if (!droq) {
951 		dev_err(&oct->pci_dev->dev, "23XX bringup FIXME: oct pfnum:%d ioq_vector->ioq_num :%d droq is NULL\n",
952 			oct->pf_num, ioq_vector->ioq_num);
953 		return 0;
954 	}
955 
956 	pkts_sent = readq(droq->pkts_sent_reg);
957 
958 	/* If our device has interrupted, then proceed. Also check
959 	 * for all f's if interrupt was triggered on an error
960 	 * and the PCI read fails.
961 	 */
962 	if (!pkts_sent || (pkts_sent == 0xFFFFFFFFFFFFFFFFULL))
963 		return ret;
964 
965 	/* Write count reg in sli_pkt_cnts to clear these int.*/
966 	if ((pkts_sent & CN23XX_INTR_PO_INT) ||
967 	    (pkts_sent & CN23XX_INTR_PI_INT)) {
968 		if (pkts_sent & CN23XX_INTR_PO_INT)
969 			ret |= MSIX_PO_INT;
970 	}
971 
972 	if (pkts_sent & CN23XX_INTR_PI_INT)
973 		/* We will clear the count when we update the read_index. */
974 		ret |= MSIX_PI_INT;
975 
976 	/* Never need to handle msix mbox intr for pf. They arrive on the last
977 	 * msix
978 	 */
979 	return ret;
980 }
981 
982 static void cn23xx_handle_pf_mbox_intr(struct octeon_device *oct)
983 {
984 	struct delayed_work *work;
985 	u64 mbox_int_val;
986 	u32 i, q_no;
987 
988 	mbox_int_val = readq(oct->mbox[0]->mbox_int_reg);
989 
990 	for (i = 0; i < oct->sriov_info.num_vfs_alloced; i++) {
991 		q_no = i * oct->sriov_info.rings_per_vf;
992 
993 		if (mbox_int_val & BIT_ULL(q_no)) {
994 			writeq(BIT_ULL(q_no),
995 			       oct->mbox[0]->mbox_int_reg);
996 			if (octeon_mbox_read(oct->mbox[q_no])) {
997 				work = &oct->mbox[q_no]->mbox_poll_wk.work;
998 				schedule_delayed_work(work,
999 						      msecs_to_jiffies(0));
1000 			}
1001 		}
1002 	}
1003 }
1004 
1005 static irqreturn_t cn23xx_interrupt_handler(void *dev)
1006 {
1007 	struct octeon_device *oct = (struct octeon_device *)dev;
1008 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
1009 	u64 intr64;
1010 
1011 	dev_dbg(&oct->pci_dev->dev, "In %s octeon_dev @ %p\n", __func__, oct);
1012 	intr64 = readq(cn23xx->intr_sum_reg64);
1013 
1014 	oct->int_status = 0;
1015 
1016 	if (intr64 & CN23XX_INTR_ERR)
1017 		dev_err(&oct->pci_dev->dev, "OCTEON[%d]: Error Intr: 0x%016llx\n",
1018 			oct->octeon_id, CVM_CAST64(intr64));
1019 
1020 	/* When VFs write into MBOX_SIG2 reg,these intr is set in PF */
1021 	if (intr64 & CN23XX_INTR_VF_MBOX)
1022 		cn23xx_handle_pf_mbox_intr(oct);
1023 
1024 	if (oct->msix_on != LIO_FLAG_MSIX_ENABLED) {
1025 		if (intr64 & CN23XX_INTR_PKT_DATA)
1026 			oct->int_status |= OCT_DEV_INTR_PKT_DATA;
1027 	}
1028 
1029 	if (intr64 & (CN23XX_INTR_DMA0_FORCE))
1030 		oct->int_status |= OCT_DEV_INTR_DMA0_FORCE;
1031 	if (intr64 & (CN23XX_INTR_DMA1_FORCE))
1032 		oct->int_status |= OCT_DEV_INTR_DMA1_FORCE;
1033 
1034 	/* Clear the current interrupts */
1035 	writeq(intr64, cn23xx->intr_sum_reg64);
1036 
1037 	return IRQ_HANDLED;
1038 }
1039 
1040 static void cn23xx_bar1_idx_setup(struct octeon_device *oct, u64 core_addr,
1041 				  u32 idx, int valid)
1042 {
1043 	u64 bar1;
1044 	u64 reg_adr;
1045 
1046 	if (!valid) {
1047 		reg_adr = lio_pci_readq(
1048 			oct, CN23XX_PEM_BAR1_INDEX_REG(oct->pcie_port, idx));
1049 		WRITE_ONCE(bar1, reg_adr);
1050 		lio_pci_writeq(oct, (READ_ONCE(bar1) & 0xFFFFFFFEULL),
1051 			       CN23XX_PEM_BAR1_INDEX_REG(oct->pcie_port, idx));
1052 		reg_adr = lio_pci_readq(
1053 			oct, CN23XX_PEM_BAR1_INDEX_REG(oct->pcie_port, idx));
1054 		WRITE_ONCE(bar1, reg_adr);
1055 		return;
1056 	}
1057 
1058 	/*  The PEM(0..3)_BAR1_INDEX(0..15)[ADDR_IDX]<23:4> stores
1059 	 *  bits <41:22> of the Core Addr
1060 	 */
1061 	lio_pci_writeq(oct, (((core_addr >> 22) << 4) | PCI_BAR1_MASK),
1062 		       CN23XX_PEM_BAR1_INDEX_REG(oct->pcie_port, idx));
1063 
1064 	WRITE_ONCE(bar1, lio_pci_readq(
1065 		   oct, CN23XX_PEM_BAR1_INDEX_REG(oct->pcie_port, idx)));
1066 }
1067 
1068 static void cn23xx_bar1_idx_write(struct octeon_device *oct, u32 idx, u32 mask)
1069 {
1070 	lio_pci_writeq(oct, mask,
1071 		       CN23XX_PEM_BAR1_INDEX_REG(oct->pcie_port, idx));
1072 }
1073 
1074 static u32 cn23xx_bar1_idx_read(struct octeon_device *oct, u32 idx)
1075 {
1076 	return (u32)lio_pci_readq(
1077 	    oct, CN23XX_PEM_BAR1_INDEX_REG(oct->pcie_port, idx));
1078 }
1079 
1080 /* always call with lock held */
1081 static u32 cn23xx_update_read_index(struct octeon_instr_queue *iq)
1082 {
1083 	u32 new_idx;
1084 	u32 last_done;
1085 	u32 pkt_in_done = readl(iq->inst_cnt_reg);
1086 
1087 	last_done = pkt_in_done - iq->pkt_in_done;
1088 	iq->pkt_in_done = pkt_in_done;
1089 
1090 	/* Modulo of the new index with the IQ size will give us
1091 	 * the new index.  The iq->reset_instr_cnt is always zero for
1092 	 * cn23xx, so no extra adjustments are needed.
1093 	 */
1094 	new_idx = (iq->octeon_read_index +
1095 		   (u32)(last_done & CN23XX_PKT_IN_DONE_CNT_MASK)) %
1096 		  iq->max_count;
1097 
1098 	return new_idx;
1099 }
1100 
1101 static void cn23xx_enable_pf_interrupt(struct octeon_device *oct, u8 intr_flag)
1102 {
1103 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
1104 	u64 intr_val = 0;
1105 
1106 	/*  Divide the single write to multiple writes based on the flag. */
1107 	/* Enable Interrupt */
1108 	if (intr_flag == OCTEON_ALL_INTR) {
1109 		writeq(cn23xx->intr_mask64, cn23xx->intr_enb_reg64);
1110 	} else if (intr_flag & OCTEON_OUTPUT_INTR) {
1111 		intr_val = readq(cn23xx->intr_enb_reg64);
1112 		intr_val |= CN23XX_INTR_PKT_DATA;
1113 		writeq(intr_val, cn23xx->intr_enb_reg64);
1114 	} else if ((intr_flag & OCTEON_MBOX_INTR) &&
1115 		   (oct->sriov_info.max_vfs > 0)) {
1116 		if (oct->rev_id >= OCTEON_CN23XX_REV_1_1) {
1117 			intr_val = readq(cn23xx->intr_enb_reg64);
1118 			intr_val |= CN23XX_INTR_VF_MBOX;
1119 			writeq(intr_val, cn23xx->intr_enb_reg64);
1120 		}
1121 	}
1122 }
1123 
1124 static void cn23xx_disable_pf_interrupt(struct octeon_device *oct, u8 intr_flag)
1125 {
1126 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
1127 	u64 intr_val = 0;
1128 
1129 	/* Disable Interrupts */
1130 	if (intr_flag == OCTEON_ALL_INTR) {
1131 		writeq(0, cn23xx->intr_enb_reg64);
1132 	} else if (intr_flag & OCTEON_OUTPUT_INTR) {
1133 		intr_val = readq(cn23xx->intr_enb_reg64);
1134 		intr_val &= ~CN23XX_INTR_PKT_DATA;
1135 		writeq(intr_val, cn23xx->intr_enb_reg64);
1136 	} else if ((intr_flag & OCTEON_MBOX_INTR) &&
1137 		   (oct->sriov_info.max_vfs > 0)) {
1138 		if (oct->rev_id >= OCTEON_CN23XX_REV_1_1) {
1139 			intr_val = readq(cn23xx->intr_enb_reg64);
1140 			intr_val &= ~CN23XX_INTR_VF_MBOX;
1141 			writeq(intr_val, cn23xx->intr_enb_reg64);
1142 		}
1143 	}
1144 }
1145 
1146 static void cn23xx_get_pcie_qlmport(struct octeon_device *oct)
1147 {
1148 	oct->pcie_port = (octeon_read_csr(oct, CN23XX_SLI_MAC_NUMBER)) & 0xff;
1149 
1150 	dev_dbg(&oct->pci_dev->dev, "OCTEON: CN23xx uses PCIE Port %d\n",
1151 		oct->pcie_port);
1152 }
1153 
1154 static void cn23xx_get_pf_num(struct octeon_device *oct)
1155 {
1156 	u32 fdl_bit = 0;
1157 
1158 	/** Read Function Dependency Link reg to get the function number */
1159 	pci_read_config_dword(oct->pci_dev, CN23XX_PCIE_SRIOV_FDL, &fdl_bit);
1160 	oct->pf_num = ((fdl_bit >> CN23XX_PCIE_SRIOV_FDL_BIT_POS) &
1161 		       CN23XX_PCIE_SRIOV_FDL_MASK);
1162 }
1163 
1164 static void cn23xx_setup_reg_address(struct octeon_device *oct)
1165 {
1166 	u8 __iomem *bar0_pciaddr = oct->mmio[0].hw_addr;
1167 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
1168 
1169 	oct->reg_list.pci_win_wr_addr_hi =
1170 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_WR_ADDR_HI);
1171 	oct->reg_list.pci_win_wr_addr_lo =
1172 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_WR_ADDR_LO);
1173 	oct->reg_list.pci_win_wr_addr =
1174 	    (u64 __iomem *)(bar0_pciaddr + CN23XX_WIN_WR_ADDR64);
1175 
1176 	oct->reg_list.pci_win_rd_addr_hi =
1177 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_RD_ADDR_HI);
1178 	oct->reg_list.pci_win_rd_addr_lo =
1179 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_RD_ADDR_LO);
1180 	oct->reg_list.pci_win_rd_addr =
1181 	    (u64 __iomem *)(bar0_pciaddr + CN23XX_WIN_RD_ADDR64);
1182 
1183 	oct->reg_list.pci_win_wr_data_hi =
1184 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_WR_DATA_HI);
1185 	oct->reg_list.pci_win_wr_data_lo =
1186 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_WR_DATA_LO);
1187 	oct->reg_list.pci_win_wr_data =
1188 	    (u64 __iomem *)(bar0_pciaddr + CN23XX_WIN_WR_DATA64);
1189 
1190 	oct->reg_list.pci_win_rd_data_hi =
1191 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_RD_DATA_HI);
1192 	oct->reg_list.pci_win_rd_data_lo =
1193 	    (u32 __iomem *)(bar0_pciaddr + CN23XX_WIN_RD_DATA_LO);
1194 	oct->reg_list.pci_win_rd_data =
1195 	    (u64 __iomem *)(bar0_pciaddr + CN23XX_WIN_RD_DATA64);
1196 
1197 	cn23xx_get_pcie_qlmport(oct);
1198 
1199 	cn23xx->intr_mask64 = CN23XX_INTR_MASK;
1200 	if (!oct->msix_on)
1201 		cn23xx->intr_mask64 |= CN23XX_INTR_PKT_TIME;
1202 	if (oct->rev_id >= OCTEON_CN23XX_REV_1_1)
1203 		cn23xx->intr_mask64 |= CN23XX_INTR_VF_MBOX;
1204 
1205 	cn23xx->intr_sum_reg64 =
1206 	    bar0_pciaddr +
1207 	    CN23XX_SLI_MAC_PF_INT_SUM64(oct->pcie_port, oct->pf_num);
1208 	cn23xx->intr_enb_reg64 =
1209 	    bar0_pciaddr +
1210 	    CN23XX_SLI_MAC_PF_INT_ENB64(oct->pcie_port, oct->pf_num);
1211 }
1212 
1213 static int cn23xx_sriov_config(struct octeon_device *oct)
1214 {
1215 	struct octeon_cn23xx_pf *cn23xx = (struct octeon_cn23xx_pf *)oct->chip;
1216 	u32 max_rings, total_rings, max_vfs, rings_per_vf;
1217 	u32 pf_srn, num_pf_rings;
1218 	u32 max_possible_vfs;
1219 
1220 	cn23xx->conf =
1221 		(struct octeon_config *)oct_get_config_info(oct, LIO_23XX);
1222 	switch (oct->rev_id) {
1223 	case OCTEON_CN23XX_REV_1_0:
1224 		max_rings = CN23XX_MAX_RINGS_PER_PF_PASS_1_0;
1225 		max_possible_vfs = CN23XX_MAX_VFS_PER_PF_PASS_1_0;
1226 		break;
1227 	case OCTEON_CN23XX_REV_1_1:
1228 		max_rings = CN23XX_MAX_RINGS_PER_PF_PASS_1_1;
1229 		max_possible_vfs = CN23XX_MAX_VFS_PER_PF_PASS_1_1;
1230 		break;
1231 	default:
1232 		max_rings = CN23XX_MAX_RINGS_PER_PF;
1233 		max_possible_vfs = CN23XX_MAX_VFS_PER_PF;
1234 		break;
1235 	}
1236 
1237 	if (max_rings <= num_present_cpus())
1238 		num_pf_rings = 1;
1239 	else
1240 		num_pf_rings = num_present_cpus();
1241 
1242 #ifdef CONFIG_PCI_IOV
1243 	max_vfs = min_t(u32,
1244 			(max_rings - num_pf_rings), max_possible_vfs);
1245 	rings_per_vf = 1;
1246 #else
1247 	max_vfs = 0;
1248 	rings_per_vf = 0;
1249 #endif
1250 
1251 	total_rings = num_pf_rings + max_vfs;
1252 
1253 	/* the first ring of the pf */
1254 	pf_srn = total_rings - num_pf_rings;
1255 
1256 	oct->sriov_info.trs = total_rings;
1257 	oct->sriov_info.max_vfs = max_vfs;
1258 	oct->sriov_info.rings_per_vf = rings_per_vf;
1259 	oct->sriov_info.pf_srn = pf_srn;
1260 	oct->sriov_info.num_pf_rings = num_pf_rings;
1261 	dev_notice(&oct->pci_dev->dev, "trs:%d max_vfs:%d rings_per_vf:%d pf_srn:%d num_pf_rings:%d\n",
1262 		   oct->sriov_info.trs, oct->sriov_info.max_vfs,
1263 		   oct->sriov_info.rings_per_vf, oct->sriov_info.pf_srn,
1264 		   oct->sriov_info.num_pf_rings);
1265 
1266 	oct->sriov_info.sriov_enabled = 0;
1267 
1268 	return 0;
1269 }
1270 
1271 int setup_cn23xx_octeon_pf_device(struct octeon_device *oct)
1272 {
1273 	if (octeon_map_pci_barx(oct, 0, 0))
1274 		return 1;
1275 
1276 	if (octeon_map_pci_barx(oct, 1, MAX_BAR1_IOREMAP_SIZE)) {
1277 		dev_err(&oct->pci_dev->dev, "%s CN23XX BAR1 map failed\n",
1278 			__func__);
1279 		octeon_unmap_pci_barx(oct, 0);
1280 		return 1;
1281 	}
1282 
1283 	cn23xx_get_pf_num(oct);
1284 
1285 	if (cn23xx_sriov_config(oct)) {
1286 		octeon_unmap_pci_barx(oct, 0);
1287 		octeon_unmap_pci_barx(oct, 1);
1288 		return 1;
1289 	}
1290 
1291 	octeon_write_csr64(oct, CN23XX_SLI_MAC_CREDIT_CNT, 0x3F802080802080ULL);
1292 
1293 	oct->fn_list.setup_iq_regs = cn23xx_setup_iq_regs;
1294 	oct->fn_list.setup_oq_regs = cn23xx_setup_oq_regs;
1295 	oct->fn_list.setup_mbox = cn23xx_setup_pf_mbox;
1296 	oct->fn_list.free_mbox = cn23xx_free_pf_mbox;
1297 
1298 	oct->fn_list.process_interrupt_regs = cn23xx_interrupt_handler;
1299 	oct->fn_list.msix_interrupt_handler = cn23xx_pf_msix_interrupt_handler;
1300 
1301 	oct->fn_list.soft_reset = cn23xx_pf_soft_reset;
1302 	oct->fn_list.setup_device_regs = cn23xx_setup_pf_device_regs;
1303 	oct->fn_list.update_iq_read_idx = cn23xx_update_read_index;
1304 
1305 	oct->fn_list.bar1_idx_setup = cn23xx_bar1_idx_setup;
1306 	oct->fn_list.bar1_idx_write = cn23xx_bar1_idx_write;
1307 	oct->fn_list.bar1_idx_read = cn23xx_bar1_idx_read;
1308 
1309 	oct->fn_list.enable_interrupt = cn23xx_enable_pf_interrupt;
1310 	oct->fn_list.disable_interrupt = cn23xx_disable_pf_interrupt;
1311 
1312 	oct->fn_list.enable_io_queues = cn23xx_enable_io_queues;
1313 	oct->fn_list.disable_io_queues = cn23xx_disable_io_queues;
1314 
1315 	cn23xx_setup_reg_address(oct);
1316 
1317 	oct->coproc_clock_rate = 1000000ULL * cn23xx_coprocessor_clock(oct);
1318 
1319 	return 0;
1320 }
1321 
1322 int validate_cn23xx_pf_config_info(struct octeon_device *oct,
1323 				   struct octeon_config *conf23xx)
1324 {
1325 	if (CFG_GET_IQ_MAX_Q(conf23xx) > CN23XX_MAX_INPUT_QUEUES) {
1326 		dev_err(&oct->pci_dev->dev, "%s: Num IQ (%d) exceeds Max (%d)\n",
1327 			__func__, CFG_GET_IQ_MAX_Q(conf23xx),
1328 			CN23XX_MAX_INPUT_QUEUES);
1329 		return 1;
1330 	}
1331 
1332 	if (CFG_GET_OQ_MAX_Q(conf23xx) > CN23XX_MAX_OUTPUT_QUEUES) {
1333 		dev_err(&oct->pci_dev->dev, "%s: Num OQ (%d) exceeds Max (%d)\n",
1334 			__func__, CFG_GET_OQ_MAX_Q(conf23xx),
1335 			CN23XX_MAX_OUTPUT_QUEUES);
1336 		return 1;
1337 	}
1338 
1339 	if (CFG_GET_IQ_INSTR_TYPE(conf23xx) != OCTEON_32BYTE_INSTR &&
1340 	    CFG_GET_IQ_INSTR_TYPE(conf23xx) != OCTEON_64BYTE_INSTR) {
1341 		dev_err(&oct->pci_dev->dev, "%s: Invalid instr type for IQ\n",
1342 			__func__);
1343 		return 1;
1344 	}
1345 
1346 	if (!(CFG_GET_OQ_INFO_PTR(conf23xx)) ||
1347 	    !(CFG_GET_OQ_REFILL_THRESHOLD(conf23xx))) {
1348 		dev_err(&oct->pci_dev->dev, "%s: Invalid parameter for OQ\n",
1349 			__func__);
1350 		return 1;
1351 	}
1352 
1353 	if (!(CFG_GET_OQ_INTR_TIME(conf23xx))) {
1354 		dev_err(&oct->pci_dev->dev, "%s: Invalid parameter for OQ\n",
1355 			__func__);
1356 		return 1;
1357 	}
1358 
1359 	return 0;
1360 }
1361 
1362 void cn23xx_dump_iq_regs(struct octeon_device *oct)
1363 {
1364 	u32 regval, q_no;
1365 
1366 	dev_dbg(&oct->pci_dev->dev, "SLI_IQ_DOORBELL_0 [0x%x]: 0x%016llx\n",
1367 		CN23XX_SLI_IQ_DOORBELL(0),
1368 		CVM_CAST64(octeon_read_csr64
1369 			(oct, CN23XX_SLI_IQ_DOORBELL(0))));
1370 
1371 	dev_dbg(&oct->pci_dev->dev, "SLI_IQ_BASEADDR_0 [0x%x]: 0x%016llx\n",
1372 		CN23XX_SLI_IQ_BASE_ADDR64(0),
1373 		CVM_CAST64(octeon_read_csr64
1374 			(oct, CN23XX_SLI_IQ_BASE_ADDR64(0))));
1375 
1376 	dev_dbg(&oct->pci_dev->dev, "SLI_IQ_FIFO_RSIZE_0 [0x%x]: 0x%016llx\n",
1377 		CN23XX_SLI_IQ_SIZE(0),
1378 		CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_IQ_SIZE(0))));
1379 
1380 	dev_dbg(&oct->pci_dev->dev, "SLI_CTL_STATUS [0x%x]: 0x%016llx\n",
1381 		CN23XX_SLI_CTL_STATUS,
1382 		CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_CTL_STATUS)));
1383 
1384 	for (q_no = 0; q_no < CN23XX_MAX_INPUT_QUEUES; q_no++) {
1385 		dev_dbg(&oct->pci_dev->dev, "SLI_PKT[%d]_INPUT_CTL [0x%x]: 0x%016llx\n",
1386 			q_no, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
1387 			CVM_CAST64(octeon_read_csr64
1388 				(oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no))));
1389 	}
1390 
1391 	pci_read_config_dword(oct->pci_dev, CN23XX_CONFIG_PCIE_DEVCTL, &regval);
1392 	dev_dbg(&oct->pci_dev->dev, "Config DevCtl [0x%x]: 0x%08x\n",
1393 		CN23XX_CONFIG_PCIE_DEVCTL, regval);
1394 
1395 	dev_dbg(&oct->pci_dev->dev, "SLI_PRT[%d]_CFG [0x%llx]: 0x%016llx\n",
1396 		oct->pcie_port, CN23XX_DPI_SLI_PRTX_CFG(oct->pcie_port),
1397 		CVM_CAST64(lio_pci_readq(
1398 			oct, CN23XX_DPI_SLI_PRTX_CFG(oct->pcie_port))));
1399 
1400 	dev_dbg(&oct->pci_dev->dev, "SLI_S2M_PORT[%d]_CTL [0x%x]: 0x%016llx\n",
1401 		oct->pcie_port, CN23XX_SLI_S2M_PORTX_CTL(oct->pcie_port),
1402 		CVM_CAST64(octeon_read_csr64(
1403 			oct, CN23XX_SLI_S2M_PORTX_CTL(oct->pcie_port))));
1404 }
1405 
1406 int cn23xx_fw_loaded(struct octeon_device *oct)
1407 {
1408 	u64 val;
1409 
1410 	val = octeon_read_csr64(oct, CN23XX_SLI_SCRATCH1);
1411 	return (val >> 1) & 1ULL;
1412 }
1413 
1414 void cn23xx_tell_vf_its_macaddr_changed(struct octeon_device *oct, int vfidx,
1415 					u8 *mac)
1416 {
1417 	if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vfidx)) {
1418 		struct octeon_mbox_cmd mbox_cmd;
1419 
1420 		mbox_cmd.msg.u64 = 0;
1421 		mbox_cmd.msg.s.type = OCTEON_MBOX_REQUEST;
1422 		mbox_cmd.msg.s.resp_needed = 0;
1423 		mbox_cmd.msg.s.cmd = OCTEON_PF_CHANGED_VF_MACADDR;
1424 		mbox_cmd.msg.s.len = 1;
1425 		mbox_cmd.recv_len = 0;
1426 		mbox_cmd.recv_status = 0;
1427 		mbox_cmd.fn = NULL;
1428 		mbox_cmd.fn_arg = 0;
1429 		ether_addr_copy(mbox_cmd.msg.s.params, mac);
1430 		mbox_cmd.q_no = vfidx * oct->sriov_info.rings_per_vf;
1431 		octeon_mbox_write(oct, &mbox_cmd);
1432 	}
1433 }
1434