qed: Add CONFIG_QED_SRIOV
[cascardo/linux.git] / drivers / net / ethernet / qlogic / qed / qed_hw.c
1 /* QLogic qed NIC Driver
2  * Copyright (c) 2015 QLogic Corporation
3  *
4  * This software is available under the terms of the GNU General Public License
5  * (GPL) Version 2, available from the file COPYING in the main directory of
6  * this source tree.
7  */
8
9 #include <linux/types.h>
10 #include <linux/io.h>
11 #include <linux/delay.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/errno.h>
14 #include <linux/kernel.h>
15 #include <linux/list.h>
16 #include <linux/mutex.h>
17 #include <linux/pci.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
20 #include <linux/string.h>
21 #include <linux/qed/qed_chain.h>
22 #include "qed.h"
23 #include "qed_hsi.h"
24 #include "qed_hw.h"
25 #include "qed_reg_addr.h"
26
27 #define QED_BAR_ACQUIRE_TIMEOUT 1000
28
29 /* Invalid values */
30 #define QED_BAR_INVALID_OFFSET          (cpu_to_le32(-1))
31
32 struct qed_ptt {
33         struct list_head        list_entry;
34         unsigned int            idx;
35         struct pxp_ptt_entry    pxp;
36 };
37
38 struct qed_ptt_pool {
39         struct list_head        free_list;
40         spinlock_t              lock; /* ptt synchronized access */
41         struct qed_ptt          ptts[PXP_EXTERNAL_BAR_PF_WINDOW_NUM];
42 };
43
44 int qed_ptt_pool_alloc(struct qed_hwfn *p_hwfn)
45 {
46         struct qed_ptt_pool *p_pool = kmalloc(sizeof(*p_pool),
47                                               GFP_KERNEL);
48         int i;
49
50         if (!p_pool)
51                 return -ENOMEM;
52
53         INIT_LIST_HEAD(&p_pool->free_list);
54         for (i = 0; i < PXP_EXTERNAL_BAR_PF_WINDOW_NUM; i++) {
55                 p_pool->ptts[i].idx = i;
56                 p_pool->ptts[i].pxp.offset = QED_BAR_INVALID_OFFSET;
57                 p_pool->ptts[i].pxp.pretend.control = 0;
58                 if (i >= RESERVED_PTT_MAX)
59                         list_add(&p_pool->ptts[i].list_entry,
60                                  &p_pool->free_list);
61         }
62
63         p_hwfn->p_ptt_pool = p_pool;
64         spin_lock_init(&p_pool->lock);
65
66         return 0;
67 }
68
69 void qed_ptt_invalidate(struct qed_hwfn *p_hwfn)
70 {
71         struct qed_ptt *p_ptt;
72         int i;
73
74         for (i = 0; i < PXP_EXTERNAL_BAR_PF_WINDOW_NUM; i++) {
75                 p_ptt = &p_hwfn->p_ptt_pool->ptts[i];
76                 p_ptt->pxp.offset = QED_BAR_INVALID_OFFSET;
77         }
78 }
79
80 void qed_ptt_pool_free(struct qed_hwfn *p_hwfn)
81 {
82         kfree(p_hwfn->p_ptt_pool);
83         p_hwfn->p_ptt_pool = NULL;
84 }
85
86 struct qed_ptt *qed_ptt_acquire(struct qed_hwfn *p_hwfn)
87 {
88         struct qed_ptt *p_ptt;
89         unsigned int i;
90
91         /* Take the free PTT from the list */
92         for (i = 0; i < QED_BAR_ACQUIRE_TIMEOUT; i++) {
93                 spin_lock_bh(&p_hwfn->p_ptt_pool->lock);
94
95                 if (!list_empty(&p_hwfn->p_ptt_pool->free_list)) {
96                         p_ptt = list_first_entry(&p_hwfn->p_ptt_pool->free_list,
97                                                  struct qed_ptt, list_entry);
98                         list_del(&p_ptt->list_entry);
99
100                         spin_unlock_bh(&p_hwfn->p_ptt_pool->lock);
101
102                         DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
103                                    "allocated ptt %d\n", p_ptt->idx);
104                         return p_ptt;
105                 }
106
107                 spin_unlock_bh(&p_hwfn->p_ptt_pool->lock);
108                 usleep_range(1000, 2000);
109         }
110
111         DP_NOTICE(p_hwfn, "PTT acquire timeout - failed to allocate PTT\n");
112         return NULL;
113 }
114
115 void qed_ptt_release(struct qed_hwfn *p_hwfn,
116                      struct qed_ptt *p_ptt)
117 {
118         spin_lock_bh(&p_hwfn->p_ptt_pool->lock);
119         list_add(&p_ptt->list_entry, &p_hwfn->p_ptt_pool->free_list);
120         spin_unlock_bh(&p_hwfn->p_ptt_pool->lock);
121 }
122
123 u32 qed_ptt_get_hw_addr(struct qed_hwfn *p_hwfn,
124                         struct qed_ptt *p_ptt)
125 {
126         /* The HW is using DWORDS and we need to translate it to Bytes */
127         return le32_to_cpu(p_ptt->pxp.offset) << 2;
128 }
129
130 static u32 qed_ptt_config_addr(struct qed_ptt *p_ptt)
131 {
132         return PXP_PF_WINDOW_ADMIN_PER_PF_START +
133                p_ptt->idx * sizeof(struct pxp_ptt_entry);
134 }
135
136 u32 qed_ptt_get_bar_addr(struct qed_ptt *p_ptt)
137 {
138         return PXP_EXTERNAL_BAR_PF_WINDOW_START +
139                p_ptt->idx * PXP_EXTERNAL_BAR_PF_WINDOW_SINGLE_SIZE;
140 }
141
142 void qed_ptt_set_win(struct qed_hwfn *p_hwfn,
143                      struct qed_ptt *p_ptt,
144                      u32 new_hw_addr)
145 {
146         u32 prev_hw_addr;
147
148         prev_hw_addr = qed_ptt_get_hw_addr(p_hwfn, p_ptt);
149
150         if (new_hw_addr == prev_hw_addr)
151                 return;
152
153         /* Update PTT entery in admin window */
154         DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
155                    "Updating PTT entry %d to offset 0x%x\n",
156                    p_ptt->idx, new_hw_addr);
157
158         /* The HW is using DWORDS and the address is in Bytes */
159         p_ptt->pxp.offset = cpu_to_le32(new_hw_addr >> 2);
160
161         REG_WR(p_hwfn,
162                qed_ptt_config_addr(p_ptt) +
163                offsetof(struct pxp_ptt_entry, offset),
164                le32_to_cpu(p_ptt->pxp.offset));
165 }
166
167 static u32 qed_set_ptt(struct qed_hwfn *p_hwfn,
168                        struct qed_ptt *p_ptt,
169                        u32 hw_addr)
170 {
171         u32 win_hw_addr = qed_ptt_get_hw_addr(p_hwfn, p_ptt);
172         u32 offset;
173
174         offset = hw_addr - win_hw_addr;
175
176         /* Verify the address is within the window */
177         if (hw_addr < win_hw_addr ||
178             offset >= PXP_EXTERNAL_BAR_PF_WINDOW_SINGLE_SIZE) {
179                 qed_ptt_set_win(p_hwfn, p_ptt, hw_addr);
180                 offset = 0;
181         }
182
183         return qed_ptt_get_bar_addr(p_ptt) + offset;
184 }
185
186 struct qed_ptt *qed_get_reserved_ptt(struct qed_hwfn *p_hwfn,
187                                      enum reserved_ptts ptt_idx)
188 {
189         if (ptt_idx >= RESERVED_PTT_MAX) {
190                 DP_NOTICE(p_hwfn,
191                           "Requested PTT %d is out of range\n", ptt_idx);
192                 return NULL;
193         }
194
195         return &p_hwfn->p_ptt_pool->ptts[ptt_idx];
196 }
197
198 void qed_wr(struct qed_hwfn *p_hwfn,
199             struct qed_ptt *p_ptt,
200             u32 hw_addr, u32 val)
201 {
202         u32 bar_addr = qed_set_ptt(p_hwfn, p_ptt, hw_addr);
203
204         REG_WR(p_hwfn, bar_addr, val);
205         DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
206                    "bar_addr 0x%x, hw_addr 0x%x, val 0x%x\n",
207                    bar_addr, hw_addr, val);
208 }
209
210 u32 qed_rd(struct qed_hwfn *p_hwfn,
211            struct qed_ptt *p_ptt,
212            u32 hw_addr)
213 {
214         u32 bar_addr = qed_set_ptt(p_hwfn, p_ptt, hw_addr);
215         u32 val = REG_RD(p_hwfn, bar_addr);
216
217         DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
218                    "bar_addr 0x%x, hw_addr 0x%x, val 0x%x\n",
219                    bar_addr, hw_addr, val);
220
221         return val;
222 }
223
224 static void qed_memcpy_hw(struct qed_hwfn *p_hwfn,
225                           struct qed_ptt *p_ptt,
226                           void *addr,
227                           u32 hw_addr,
228                           size_t n,
229                           bool to_device)
230 {
231         u32 dw_count, *host_addr, hw_offset;
232         size_t quota, done = 0;
233         u32 __iomem *reg_addr;
234
235         while (done < n) {
236                 quota = min_t(size_t, n - done,
237                               PXP_EXTERNAL_BAR_PF_WINDOW_SINGLE_SIZE);
238
239                 qed_ptt_set_win(p_hwfn, p_ptt, hw_addr + done);
240                 hw_offset = qed_ptt_get_bar_addr(p_ptt);
241
242                 dw_count = quota / 4;
243                 host_addr = (u32 *)((u8 *)addr + done);
244                 reg_addr = (u32 __iomem *)REG_ADDR(p_hwfn, hw_offset);
245                 if (to_device)
246                         while (dw_count--)
247                                 DIRECT_REG_WR(reg_addr++, *host_addr++);
248                 else
249                         while (dw_count--)
250                                 *host_addr++ = DIRECT_REG_RD(reg_addr++);
251
252                 done += quota;
253         }
254 }
255
256 void qed_memcpy_from(struct qed_hwfn *p_hwfn,
257                      struct qed_ptt *p_ptt,
258                      void *dest, u32 hw_addr, size_t n)
259 {
260         DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
261                    "hw_addr 0x%x, dest %p hw_addr 0x%x, size %lu\n",
262                    hw_addr, dest, hw_addr, (unsigned long)n);
263
264         qed_memcpy_hw(p_hwfn, p_ptt, dest, hw_addr, n, false);
265 }
266
267 void qed_memcpy_to(struct qed_hwfn *p_hwfn,
268                    struct qed_ptt *p_ptt,
269                    u32 hw_addr, void *src, size_t n)
270 {
271         DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
272                    "hw_addr 0x%x, hw_addr 0x%x, src %p size %lu\n",
273                    hw_addr, hw_addr, src, (unsigned long)n);
274
275         qed_memcpy_hw(p_hwfn, p_ptt, src, hw_addr, n, true);
276 }
277
278 void qed_fid_pretend(struct qed_hwfn *p_hwfn,
279                      struct qed_ptt *p_ptt,
280                      u16 fid)
281 {
282         u16 control = 0;
283
284         SET_FIELD(control, PXP_PRETEND_CMD_IS_CONCRETE, 1);
285         SET_FIELD(control, PXP_PRETEND_CMD_PRETEND_FUNCTION, 1);
286
287         /* Every pretend undos previous pretends, including
288          * previous port pretend.
289          */
290         SET_FIELD(control, PXP_PRETEND_CMD_PORT, 0);
291         SET_FIELD(control, PXP_PRETEND_CMD_USE_PORT, 0);
292         SET_FIELD(control, PXP_PRETEND_CMD_PRETEND_PORT, 1);
293
294         if (!GET_FIELD(fid, PXP_CONCRETE_FID_VFVALID))
295                 fid = GET_FIELD(fid, PXP_CONCRETE_FID_PFID);
296
297         p_ptt->pxp.pretend.control = cpu_to_le16(control);
298         p_ptt->pxp.pretend.fid.concrete_fid.fid = cpu_to_le16(fid);
299
300         REG_WR(p_hwfn,
301                qed_ptt_config_addr(p_ptt) +
302                offsetof(struct pxp_ptt_entry, pretend),
303                *(u32 *)&p_ptt->pxp.pretend);
304 }
305
306 void qed_port_pretend(struct qed_hwfn *p_hwfn,
307                       struct qed_ptt *p_ptt,
308                       u8 port_id)
309 {
310         u16 control = 0;
311
312         SET_FIELD(control, PXP_PRETEND_CMD_PORT, port_id);
313         SET_FIELD(control, PXP_PRETEND_CMD_USE_PORT, 1);
314         SET_FIELD(control, PXP_PRETEND_CMD_PRETEND_PORT, 1);
315
316         p_ptt->pxp.pretend.control = cpu_to_le16(control);
317
318         REG_WR(p_hwfn,
319                qed_ptt_config_addr(p_ptt) +
320                offsetof(struct pxp_ptt_entry, pretend),
321                *(u32 *)&p_ptt->pxp.pretend);
322 }
323
324 void qed_port_unpretend(struct qed_hwfn *p_hwfn,
325                         struct qed_ptt *p_ptt)
326 {
327         u16 control = 0;
328
329         SET_FIELD(control, PXP_PRETEND_CMD_PORT, 0);
330         SET_FIELD(control, PXP_PRETEND_CMD_USE_PORT, 0);
331         SET_FIELD(control, PXP_PRETEND_CMD_PRETEND_PORT, 1);
332
333         p_ptt->pxp.pretend.control = cpu_to_le16(control);
334
335         REG_WR(p_hwfn,
336                qed_ptt_config_addr(p_ptt) +
337                offsetof(struct pxp_ptt_entry, pretend),
338                *(u32 *)&p_ptt->pxp.pretend);
339 }
340
341 u32 qed_vfid_to_concrete(struct qed_hwfn *p_hwfn, u8 vfid)
342 {
343         u32 concrete_fid = 0;
344
345         SET_FIELD(concrete_fid, PXP_CONCRETE_FID_PFID, p_hwfn->rel_pf_id);
346         SET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFID, vfid);
347         SET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFVALID, 1);
348
349         return concrete_fid;
350 }
351
352 /* DMAE */
353 static void qed_dmae_opcode(struct qed_hwfn *p_hwfn,
354                             const u8 is_src_type_grc,
355                             const u8 is_dst_type_grc,
356                             struct qed_dmae_params *p_params)
357 {
358         u32 opcode = 0;
359         u16 opcodeB = 0;
360
361         /* Whether the source is the PCIe or the GRC.
362          * 0- The source is the PCIe
363          * 1- The source is the GRC.
364          */
365         opcode |= (is_src_type_grc ? DMAE_CMD_SRC_MASK_GRC
366                                    : DMAE_CMD_SRC_MASK_PCIE) <<
367                    DMAE_CMD_SRC_SHIFT;
368         opcode |= ((p_hwfn->rel_pf_id & DMAE_CMD_SRC_PF_ID_MASK) <<
369                    DMAE_CMD_SRC_PF_ID_SHIFT);
370
371         /* The destination of the DMA can be: 0-None 1-PCIe 2-GRC 3-None */
372         opcode |= (is_dst_type_grc ? DMAE_CMD_DST_MASK_GRC
373                                    : DMAE_CMD_DST_MASK_PCIE) <<
374                    DMAE_CMD_DST_SHIFT;
375         opcode |= ((p_hwfn->rel_pf_id & DMAE_CMD_DST_PF_ID_MASK) <<
376                    DMAE_CMD_DST_PF_ID_SHIFT);
377
378         /* Whether to write a completion word to the completion destination:
379          * 0-Do not write a completion word
380          * 1-Write the completion word
381          */
382         opcode |= (DMAE_CMD_COMP_WORD_EN_MASK << DMAE_CMD_COMP_WORD_EN_SHIFT);
383         opcode |= (DMAE_CMD_SRC_ADDR_RESET_MASK <<
384                    DMAE_CMD_SRC_ADDR_RESET_SHIFT);
385
386         if (p_params->flags & QED_DMAE_FLAG_COMPLETION_DST)
387                 opcode |= (1 << DMAE_CMD_COMP_FUNC_SHIFT);
388
389         opcode |= (DMAE_CMD_ENDIANITY << DMAE_CMD_ENDIANITY_MODE_SHIFT);
390
391         opcode |= ((p_hwfn->port_id) << DMAE_CMD_PORT_ID_SHIFT);
392
393         /* reset source address in next go */
394         opcode |= (DMAE_CMD_SRC_ADDR_RESET_MASK <<
395                    DMAE_CMD_SRC_ADDR_RESET_SHIFT);
396
397         /* reset dest address in next go */
398         opcode |= (DMAE_CMD_DST_ADDR_RESET_MASK <<
399                    DMAE_CMD_DST_ADDR_RESET_SHIFT);
400
401         opcodeB |= (DMAE_CMD_SRC_VF_ID_MASK <<
402                     DMAE_CMD_SRC_VF_ID_SHIFT);
403
404         opcodeB |= (DMAE_CMD_DST_VF_ID_MASK <<
405                     DMAE_CMD_DST_VF_ID_SHIFT);
406
407         p_hwfn->dmae_info.p_dmae_cmd->opcode = cpu_to_le32(opcode);
408         p_hwfn->dmae_info.p_dmae_cmd->opcode_b = cpu_to_le16(opcodeB);
409 }
410
411 u32 qed_dmae_idx_to_go_cmd(u8 idx)
412 {
413         /* All the DMAE 'go' registers form an array in internal memory */
414         return DMAE_REG_GO_C0 + (idx << 2);
415 }
416
417 static int
418 qed_dmae_post_command(struct qed_hwfn *p_hwfn,
419                       struct qed_ptt *p_ptt)
420 {
421         struct dmae_cmd *command = p_hwfn->dmae_info.p_dmae_cmd;
422         u8 idx_cmd = p_hwfn->dmae_info.channel, i;
423         int qed_status = 0;
424
425         /* verify address is not NULL */
426         if ((((command->dst_addr_lo == 0) && (command->dst_addr_hi == 0)) ||
427              ((command->src_addr_lo == 0) && (command->src_addr_hi == 0)))) {
428                 DP_NOTICE(p_hwfn,
429                           "source or destination address 0 idx_cmd=%d\n"
430                           "opcode = [0x%08x,0x%04x] len=0x%x src=0x%x:%x dst=0x%x:%x\n",
431                            idx_cmd,
432                            le32_to_cpu(command->opcode),
433                            le16_to_cpu(command->opcode_b),
434                            le16_to_cpu(command->length),
435                            le32_to_cpu(command->src_addr_hi),
436                            le32_to_cpu(command->src_addr_lo),
437                            le32_to_cpu(command->dst_addr_hi),
438                            le32_to_cpu(command->dst_addr_lo));
439
440                 return -EINVAL;
441         }
442
443         DP_VERBOSE(p_hwfn,
444                    NETIF_MSG_HW,
445                    "Posting DMAE command [idx %d]: opcode = [0x%08x,0x%04x] len=0x%x src=0x%x:%x dst=0x%x:%x\n",
446                    idx_cmd,
447                    le32_to_cpu(command->opcode),
448                    le16_to_cpu(command->opcode_b),
449                    le16_to_cpu(command->length),
450                    le32_to_cpu(command->src_addr_hi),
451                    le32_to_cpu(command->src_addr_lo),
452                    le32_to_cpu(command->dst_addr_hi),
453                    le32_to_cpu(command->dst_addr_lo));
454
455         /* Copy the command to DMAE - need to do it before every call
456          * for source/dest address no reset.
457          * The first 9 DWs are the command registers, the 10 DW is the
458          * GO register, and the rest are result registers
459          * (which are read only by the client).
460          */
461         for (i = 0; i < DMAE_CMD_SIZE; i++) {
462                 u32 data = (i < DMAE_CMD_SIZE_TO_FILL) ?
463                            *(((u32 *)command) + i) : 0;
464
465                 qed_wr(p_hwfn, p_ptt,
466                        DMAE_REG_CMD_MEM +
467                        (idx_cmd * DMAE_CMD_SIZE * sizeof(u32)) +
468                        (i * sizeof(u32)), data);
469         }
470
471         qed_wr(p_hwfn, p_ptt,
472                qed_dmae_idx_to_go_cmd(idx_cmd),
473                DMAE_GO_VALUE);
474
475         return qed_status;
476 }
477
478 int qed_dmae_info_alloc(struct qed_hwfn *p_hwfn)
479 {
480         dma_addr_t *p_addr = &p_hwfn->dmae_info.completion_word_phys_addr;
481         struct dmae_cmd **p_cmd = &p_hwfn->dmae_info.p_dmae_cmd;
482         u32 **p_buff = &p_hwfn->dmae_info.p_intermediate_buffer;
483         u32 **p_comp = &p_hwfn->dmae_info.p_completion_word;
484
485         *p_comp = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
486                                      sizeof(u32),
487                                      p_addr,
488                                      GFP_KERNEL);
489         if (!*p_comp) {
490                 DP_NOTICE(p_hwfn, "Failed to allocate `p_completion_word'\n");
491                 goto err;
492         }
493
494         p_addr = &p_hwfn->dmae_info.dmae_cmd_phys_addr;
495         *p_cmd = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
496                                     sizeof(struct dmae_cmd),
497                                     p_addr, GFP_KERNEL);
498         if (!*p_cmd) {
499                 DP_NOTICE(p_hwfn, "Failed to allocate `struct dmae_cmd'\n");
500                 goto err;
501         }
502
503         p_addr = &p_hwfn->dmae_info.intermediate_buffer_phys_addr;
504         *p_buff = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
505                                      sizeof(u32) * DMAE_MAX_RW_SIZE,
506                                      p_addr, GFP_KERNEL);
507         if (!*p_buff) {
508                 DP_NOTICE(p_hwfn, "Failed to allocate `intermediate_buffer'\n");
509                 goto err;
510         }
511
512         p_hwfn->dmae_info.channel = p_hwfn->rel_pf_id;
513
514         return 0;
515 err:
516         qed_dmae_info_free(p_hwfn);
517         return -ENOMEM;
518 }
519
520 void qed_dmae_info_free(struct qed_hwfn *p_hwfn)
521 {
522         dma_addr_t p_phys;
523
524         /* Just make sure no one is in the middle */
525         mutex_lock(&p_hwfn->dmae_info.mutex);
526
527         if (p_hwfn->dmae_info.p_completion_word) {
528                 p_phys = p_hwfn->dmae_info.completion_word_phys_addr;
529                 dma_free_coherent(&p_hwfn->cdev->pdev->dev,
530                                   sizeof(u32),
531                                   p_hwfn->dmae_info.p_completion_word,
532                                   p_phys);
533                 p_hwfn->dmae_info.p_completion_word = NULL;
534         }
535
536         if (p_hwfn->dmae_info.p_dmae_cmd) {
537                 p_phys = p_hwfn->dmae_info.dmae_cmd_phys_addr;
538                 dma_free_coherent(&p_hwfn->cdev->pdev->dev,
539                                   sizeof(struct dmae_cmd),
540                                   p_hwfn->dmae_info.p_dmae_cmd,
541                                   p_phys);
542                 p_hwfn->dmae_info.p_dmae_cmd = NULL;
543         }
544
545         if (p_hwfn->dmae_info.p_intermediate_buffer) {
546                 p_phys = p_hwfn->dmae_info.intermediate_buffer_phys_addr;
547                 dma_free_coherent(&p_hwfn->cdev->pdev->dev,
548                                   sizeof(u32) * DMAE_MAX_RW_SIZE,
549                                   p_hwfn->dmae_info.p_intermediate_buffer,
550                                   p_phys);
551                 p_hwfn->dmae_info.p_intermediate_buffer = NULL;
552         }
553
554         mutex_unlock(&p_hwfn->dmae_info.mutex);
555 }
556
557 static int qed_dmae_operation_wait(struct qed_hwfn *p_hwfn)
558 {
559         u32 wait_cnt = 0;
560         u32 wait_cnt_limit = 10000;
561
562         int qed_status = 0;
563
564         barrier();
565         while (*p_hwfn->dmae_info.p_completion_word != DMAE_COMPLETION_VAL) {
566                 udelay(DMAE_MIN_WAIT_TIME);
567                 if (++wait_cnt > wait_cnt_limit) {
568                         DP_NOTICE(p_hwfn->cdev,
569                                   "Timed-out waiting for operation to complete. Completion word is 0x%08x expected 0x%08x.\n",
570                                   *p_hwfn->dmae_info.p_completion_word,
571                                  DMAE_COMPLETION_VAL);
572                         qed_status = -EBUSY;
573                         break;
574                 }
575
576                 /* to sync the completion_word since we are not
577                  * using the volatile keyword for p_completion_word
578                  */
579                 barrier();
580         }
581
582         if (qed_status == 0)
583                 *p_hwfn->dmae_info.p_completion_word = 0;
584
585         return qed_status;
586 }
587
588 static int qed_dmae_execute_sub_operation(struct qed_hwfn *p_hwfn,
589                                           struct qed_ptt *p_ptt,
590                                           u64 src_addr,
591                                           u64 dst_addr,
592                                           u8 src_type,
593                                           u8 dst_type,
594                                           u32 length)
595 {
596         dma_addr_t phys = p_hwfn->dmae_info.intermediate_buffer_phys_addr;
597         struct dmae_cmd *cmd = p_hwfn->dmae_info.p_dmae_cmd;
598         int qed_status = 0;
599
600         switch (src_type) {
601         case QED_DMAE_ADDRESS_GRC:
602         case QED_DMAE_ADDRESS_HOST_PHYS:
603                 cmd->src_addr_hi = cpu_to_le32(upper_32_bits(src_addr));
604                 cmd->src_addr_lo = cpu_to_le32(lower_32_bits(src_addr));
605                 break;
606         /* for virtual source addresses we use the intermediate buffer. */
607         case QED_DMAE_ADDRESS_HOST_VIRT:
608                 cmd->src_addr_hi = cpu_to_le32(upper_32_bits(phys));
609                 cmd->src_addr_lo = cpu_to_le32(lower_32_bits(phys));
610                 memcpy(&p_hwfn->dmae_info.p_intermediate_buffer[0],
611                        (void *)(uintptr_t)src_addr,
612                        length * sizeof(u32));
613                 break;
614         default:
615                 return -EINVAL;
616         }
617
618         switch (dst_type) {
619         case QED_DMAE_ADDRESS_GRC:
620         case QED_DMAE_ADDRESS_HOST_PHYS:
621                 cmd->dst_addr_hi = cpu_to_le32(upper_32_bits(dst_addr));
622                 cmd->dst_addr_lo = cpu_to_le32(lower_32_bits(dst_addr));
623                 break;
624         /* for virtual source addresses we use the intermediate buffer. */
625         case QED_DMAE_ADDRESS_HOST_VIRT:
626                 cmd->dst_addr_hi = cpu_to_le32(upper_32_bits(phys));
627                 cmd->dst_addr_lo = cpu_to_le32(lower_32_bits(phys));
628                 break;
629         default:
630                 return -EINVAL;
631         }
632
633         cmd->length = cpu_to_le16((u16)length);
634
635         qed_dmae_post_command(p_hwfn, p_ptt);
636
637         qed_status = qed_dmae_operation_wait(p_hwfn);
638
639         if (qed_status) {
640                 DP_NOTICE(p_hwfn,
641                           "qed_dmae_host2grc: Wait Failed. source_addr 0x%llx, grc_addr 0x%llx, size_in_dwords 0x%x\n",
642                           src_addr,
643                           dst_addr,
644                           length);
645                 return qed_status;
646         }
647
648         if (dst_type == QED_DMAE_ADDRESS_HOST_VIRT)
649                 memcpy((void *)(uintptr_t)(dst_addr),
650                        &p_hwfn->dmae_info.p_intermediate_buffer[0],
651                        length * sizeof(u32));
652
653         return 0;
654 }
655
656 static int qed_dmae_execute_command(struct qed_hwfn *p_hwfn,
657                                     struct qed_ptt *p_ptt,
658                                     u64 src_addr, u64 dst_addr,
659                                     u8 src_type, u8 dst_type,
660                                     u32 size_in_dwords,
661                                     struct qed_dmae_params *p_params)
662 {
663         dma_addr_t phys = p_hwfn->dmae_info.completion_word_phys_addr;
664         u16 length_cur = 0, i = 0, cnt_split = 0, length_mod = 0;
665         struct dmae_cmd *cmd = p_hwfn->dmae_info.p_dmae_cmd;
666         u64 src_addr_split = 0, dst_addr_split = 0;
667         u16 length_limit = DMAE_MAX_RW_SIZE;
668         int qed_status = 0;
669         u32 offset = 0;
670
671         qed_dmae_opcode(p_hwfn,
672                         (src_type == QED_DMAE_ADDRESS_GRC),
673                         (dst_type == QED_DMAE_ADDRESS_GRC),
674                         p_params);
675
676         cmd->comp_addr_lo = cpu_to_le32(lower_32_bits(phys));
677         cmd->comp_addr_hi = cpu_to_le32(upper_32_bits(phys));
678         cmd->comp_val = cpu_to_le32(DMAE_COMPLETION_VAL);
679
680         /* Check if the grc_addr is valid like < MAX_GRC_OFFSET */
681         cnt_split = size_in_dwords / length_limit;
682         length_mod = size_in_dwords % length_limit;
683
684         src_addr_split = src_addr;
685         dst_addr_split = dst_addr;
686
687         for (i = 0; i <= cnt_split; i++) {
688                 offset = length_limit * i;
689
690                 if (!(p_params->flags & QED_DMAE_FLAG_RW_REPL_SRC)) {
691                         if (src_type == QED_DMAE_ADDRESS_GRC)
692                                 src_addr_split = src_addr + offset;
693                         else
694                                 src_addr_split = src_addr + (offset * 4);
695                 }
696
697                 if (dst_type == QED_DMAE_ADDRESS_GRC)
698                         dst_addr_split = dst_addr + offset;
699                 else
700                         dst_addr_split = dst_addr + (offset * 4);
701
702                 length_cur = (cnt_split == i) ? length_mod : length_limit;
703
704                 /* might be zero on last iteration */
705                 if (!length_cur)
706                         continue;
707
708                 qed_status = qed_dmae_execute_sub_operation(p_hwfn,
709                                                             p_ptt,
710                                                             src_addr_split,
711                                                             dst_addr_split,
712                                                             src_type,
713                                                             dst_type,
714                                                             length_cur);
715                 if (qed_status) {
716                         DP_NOTICE(p_hwfn,
717                                   "qed_dmae_execute_sub_operation Failed with error 0x%x. source_addr 0x%llx, destination addr 0x%llx, size_in_dwords 0x%x\n",
718                                   qed_status,
719                                   src_addr,
720                                   dst_addr,
721                                   length_cur);
722                         break;
723                 }
724         }
725
726         return qed_status;
727 }
728
729 int qed_dmae_host2grc(struct qed_hwfn *p_hwfn,
730                       struct qed_ptt *p_ptt,
731                       u64 source_addr,
732                       u32 grc_addr,
733                       u32 size_in_dwords,
734                       u32 flags)
735 {
736         u32 grc_addr_in_dw = grc_addr / sizeof(u32);
737         struct qed_dmae_params params;
738         int rc;
739
740         memset(&params, 0, sizeof(struct qed_dmae_params));
741         params.flags = flags;
742
743         mutex_lock(&p_hwfn->dmae_info.mutex);
744
745         rc = qed_dmae_execute_command(p_hwfn, p_ptt, source_addr,
746                                       grc_addr_in_dw,
747                                       QED_DMAE_ADDRESS_HOST_VIRT,
748                                       QED_DMAE_ADDRESS_GRC,
749                                       size_in_dwords, &params);
750
751         mutex_unlock(&p_hwfn->dmae_info.mutex);
752
753         return rc;
754 }
755
756 u16 qed_get_qm_pq(struct qed_hwfn *p_hwfn,
757                   enum protocol_type proto,
758                   union qed_qm_pq_params *p_params)
759 {
760         u16 pq_id = 0;
761
762         if ((proto == PROTOCOLID_CORE || proto == PROTOCOLID_ETH) &&
763             !p_params) {
764                 DP_NOTICE(p_hwfn,
765                           "Protocol %d received NULL PQ params\n",
766                           proto);
767                 return 0;
768         }
769
770         switch (proto) {
771         case PROTOCOLID_CORE:
772                 if (p_params->core.tc == LB_TC)
773                         pq_id = p_hwfn->qm_info.pure_lb_pq;
774                 else
775                         pq_id = p_hwfn->qm_info.offload_pq;
776                 break;
777         case PROTOCOLID_ETH:
778                 pq_id = p_params->eth.tc;
779                 break;
780         default:
781                 pq_id = 0;
782         }
783
784         pq_id = CM_TX_PQ_BASE + pq_id + RESC_START(p_hwfn, QED_PQ);
785
786         return pq_id;
787 }