net/hinic/base: add HW interfaces for SR-IOV
[dpdk.git] / drivers / net / hinic / base / hinic_pmd_hwif.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Huawei Technologies Co., Ltd
3  */
4
5 #include <rte_bus_pci.h>
6
7 #include "hinic_compat.h"
8 #include "hinic_csr.h"
9 #include "hinic_pmd_hwdev.h"
10 #include "hinic_pmd_hwif.h"
11
12 #define HINIC_CFG_REGS_BAR      0
13 #define HINIC_INTR_MSI_BAR      2
14 #define HINIC_DB_MEM_BAR        4
15
16 #define PAGE_SIZE_4K            0x1000
17 #define PAGE_SIZE_64K           0x10000
18
19 #define HINIC_MSIX_CNT_RESEND_TIMER_SHIFT       29
20 #define HINIC_MSIX_CNT_RESEND_TIMER_MASK        0x7U
21
22 #define HINIC_MSIX_CNT_SET(val, member)         \
23                 (((val) & HINIC_MSIX_CNT_##member##_MASK) << \
24                 HINIC_MSIX_CNT_##member##_SHIFT)
25
26 /**
27  * hwif_ready - test if the HW initialization passed
28  * @hwdev: the pointer to the private hardware device object
29  * Return: 0 - success, negative - failure
30  */
31 static int hwif_ready(struct hinic_hwdev *hwdev)
32 {
33         u32 addr, attr0, attr1;
34
35         addr   = HINIC_CSR_FUNC_ATTR1_ADDR;
36         attr1  = hinic_hwif_read_reg(hwdev->hwif, addr);
37         if (!HINIC_AF1_GET(attr1, MGMT_INIT_STATUS))
38                 return -EBUSY;
39
40         addr   = HINIC_CSR_FUNC_ATTR0_ADDR;
41         attr0  = hinic_hwif_read_reg(hwdev->hwif, addr);
42         if ((HINIC_AF0_GET(attr0, FUNC_TYPE) == TYPE_VF) &&
43              !HINIC_AF1_GET(attr1, PF_INIT_STATUS))
44                 return -EBUSY;
45
46         return 0;
47 }
48
49 /**
50  * set_hwif_attr - set the attributes as members in hwif
51  * @hwif: the hardware interface of a pci function device
52  * @attr0: the first attribute that was read from the hw
53  * @attr1: the second attribute that was read from the hw
54  * @attr2: the third attribute that was read from the hw
55  */
56 static void set_hwif_attr(struct hinic_hwif *hwif, u32 attr0, u32 attr1,
57                           u32 attr2)
58 {
59         hwif->attr.func_global_idx = HINIC_AF0_GET(attr0, FUNC_GLOBAL_IDX);
60         hwif->attr.port_to_port_idx = HINIC_AF0_GET(attr0, P2P_IDX);
61         hwif->attr.pci_intf_idx = HINIC_AF0_GET(attr0, PCI_INTF_IDX);
62         hwif->attr.vf_in_pf = HINIC_AF0_GET(attr0, VF_IN_PF);
63         hwif->attr.func_type = HINIC_AF0_GET(attr0, FUNC_TYPE);
64
65         hwif->attr.ppf_idx = HINIC_AF1_GET(attr1, PPF_IDX);
66
67         hwif->attr.num_aeqs = BIT(HINIC_AF1_GET(attr1, AEQS_PER_FUNC));
68         hwif->attr.num_ceqs = BIT(HINIC_AF1_GET(attr1, CEQS_PER_FUNC));
69         hwif->attr.num_irqs = BIT(HINIC_AF1_GET(attr1, IRQS_PER_FUNC));
70         hwif->attr.num_dma_attr = BIT(HINIC_AF1_GET(attr1, DMA_ATTR_PER_FUNC));
71
72         hwif->attr.global_vf_id_of_pf = HINIC_AF2_GET(attr2,
73                                                       GLOBAL_VF_ID_OF_PF);
74 }
75
76 /**
77  * get_hwif_attr - read and set the attributes as members in hwif
78  * @hwif: the hardware interface of a pci function device
79  */
80 static void get_hwif_attr(struct hinic_hwif *hwif)
81 {
82         u32 addr, attr0, attr1, attr2;
83
84         addr   = HINIC_CSR_FUNC_ATTR0_ADDR;
85         attr0  = hinic_hwif_read_reg(hwif, addr);
86
87         addr   = HINIC_CSR_FUNC_ATTR1_ADDR;
88         attr1  = hinic_hwif_read_reg(hwif, addr);
89
90         addr   = HINIC_CSR_FUNC_ATTR2_ADDR;
91         attr2  = hinic_hwif_read_reg(hwif, addr);
92
93         set_hwif_attr(hwif, attr0, attr1, attr2);
94 }
95
96 void hinic_set_pf_status(struct hinic_hwif *hwif, enum hinic_pf_status status)
97 {
98         u32 attr5 = HINIC_AF5_SET(status, PF_STATUS);
99         u32 addr  = HINIC_CSR_FUNC_ATTR5_ADDR;
100
101         if (hwif->attr.func_type == TYPE_VF) {
102                 PMD_DRV_LOG(ERR, "VF doesn't support set attr5");
103                 return;
104         }
105
106         hinic_hwif_write_reg(hwif, addr, attr5);
107 }
108
109 enum hinic_pf_status hinic_get_pf_status(struct hinic_hwif *hwif)
110 {
111         u32 attr5 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR5_ADDR);
112
113         return HINIC_AF5_GET(attr5, PF_STATUS);
114 }
115
116 static enum hinic_doorbell_ctrl
117 hinic_get_doorbell_ctrl_status(struct hinic_hwif *hwif)
118 {
119         u32 attr4 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR);
120
121         return HINIC_AF4_GET(attr4, DOORBELL_CTRL);
122 }
123
124 static enum hinic_outbound_ctrl
125 hinic_get_outbound_ctrl_status(struct hinic_hwif *hwif)
126 {
127         u32 attr4 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR);
128
129         return HINIC_AF4_GET(attr4, OUTBOUND_CTRL);
130 }
131
132 void hinic_enable_doorbell(struct hinic_hwif *hwif)
133 {
134         u32 addr, attr4;
135
136         addr = HINIC_CSR_FUNC_ATTR4_ADDR;
137         attr4 = hinic_hwif_read_reg(hwif, addr);
138
139         attr4 = HINIC_AF4_CLEAR(attr4, DOORBELL_CTRL);
140         attr4 |= HINIC_AF4_SET(ENABLE_DOORBELL, DOORBELL_CTRL);
141
142         hinic_hwif_write_reg(hwif, addr, attr4);
143 }
144
145 void hinic_disable_doorbell(struct hinic_hwif *hwif)
146 {
147         u32 addr, attr4;
148
149         addr = HINIC_CSR_FUNC_ATTR4_ADDR;
150         attr4 = hinic_hwif_read_reg(hwif, addr);
151
152         attr4 = HINIC_AF4_CLEAR(attr4, DOORBELL_CTRL);
153         attr4 |= HINIC_AF4_SET(DISABLE_DOORBELL, DOORBELL_CTRL);
154
155         hinic_hwif_write_reg(hwif, addr, attr4);
156 }
157
158 /**
159  * set_ppf - try to set hwif as ppf and set the type of hwif in this case
160  * @hwif: the hardware interface of a pci function device
161  */
162 static void set_ppf(struct hinic_hwif *hwif)
163 {
164         struct hinic_func_attr *attr = &hwif->attr;
165         u32 addr, val, ppf_election;
166
167         /* Read Modify Write */
168         addr  = HINIC_CSR_PPF_ELECTION_ADDR;
169
170         val = hinic_hwif_read_reg(hwif, addr);
171         val = HINIC_PPF_ELECTION_CLEAR(val, IDX);
172
173         ppf_election =  HINIC_PPF_ELECTION_SET(attr->func_global_idx, IDX);
174         val |= ppf_election;
175
176         hinic_hwif_write_reg(hwif, addr, val);
177
178         /* Check PPF */
179         val = hinic_hwif_read_reg(hwif, addr);
180
181         attr->ppf_idx = HINIC_PPF_ELECTION_GET(val, IDX);
182         if (attr->ppf_idx == attr->func_global_idx)
183                 attr->func_type = TYPE_PPF;
184 }
185
186 static void init_db_area_idx(struct hinic_free_db_area *free_db_area)
187 {
188         u32 i;
189
190         for (i = 0; i < HINIC_DB_MAX_AREAS; i++)
191                 free_db_area->db_idx[i] = i;
192
193         free_db_area->alloc_pos = 0;
194         free_db_area->return_pos = 0;
195
196         free_db_area->num_free = HINIC_DB_MAX_AREAS;
197
198         spin_lock_init(&free_db_area->idx_lock);
199 }
200
201 static int get_db_idx(struct hinic_hwif *hwif, u32 *idx)
202 {
203         struct hinic_free_db_area *free_db_area = &hwif->free_db_area;
204         u32 pos;
205         u32 pg_idx;
206
207         spin_lock(&free_db_area->idx_lock);
208
209         if (free_db_area->num_free == 0) {
210                 spin_unlock(&free_db_area->idx_lock);
211                 return -ENOMEM;
212         }
213
214         free_db_area->num_free--;
215
216         pos = free_db_area->alloc_pos++;
217         pos &= HINIC_DB_MAX_AREAS - 1;
218
219         pg_idx = free_db_area->db_idx[pos];
220
221         free_db_area->db_idx[pos] = 0xFFFFFFFF;
222
223         spin_unlock(&free_db_area->idx_lock);
224
225         *idx = pg_idx;
226
227         return 0;
228 }
229
230 static void free_db_idx(struct hinic_hwif *hwif, u32 idx)
231 {
232         struct hinic_free_db_area *free_db_area = &hwif->free_db_area;
233         u32 pos;
234
235         spin_lock(&free_db_area->idx_lock);
236
237         pos = free_db_area->return_pos++;
238         pos &= HINIC_DB_MAX_AREAS - 1;
239
240         free_db_area->db_idx[pos] = idx;
241
242         free_db_area->num_free++;
243
244         spin_unlock(&free_db_area->idx_lock);
245 }
246
247 void hinic_free_db_addr(void *hwdev, void __iomem *db_base)
248 {
249         struct hinic_hwif *hwif = ((struct hinic_hwdev *)hwdev)->hwif;
250         u32 idx = DB_IDX(db_base, hwif->db_base);
251
252         free_db_idx(hwif, idx);
253 }
254
255 int hinic_alloc_db_addr(void *hwdev, void __iomem **db_base)
256 {
257         struct hinic_hwif *hwif = ((struct hinic_hwdev *)hwdev)->hwif;
258         u32 idx;
259         int err;
260
261         err = get_db_idx(hwif, &idx);
262         if (err)
263                 return -EFAULT;
264
265         *db_base = hwif->db_base + idx * HINIC_DB_PAGE_SIZE;
266
267         return 0;
268 }
269
270 void hinic_set_msix_state(void *hwdev, u16 msix_idx, enum hinic_msix_state flag)
271 {
272         struct hinic_hwdev *hw = hwdev;
273         struct hinic_hwif *hwif = hw->hwif;
274         u32 offset = msix_idx * HINIC_PCI_MSIX_ENTRY_SIZE
275                 + HINIC_PCI_MSIX_ENTRY_VECTOR_CTRL;
276         u32 mask_bits;
277
278         /* vfio-pci does not mmap msi-x vector table to user space,
279          * we can not access the space when kernel driver is vfio-pci
280          */
281         if (hw->pcidev_hdl->kdrv == RTE_KDRV_VFIO)
282                 return;
283
284         mask_bits = readl(hwif->intr_regs_base + offset);
285         mask_bits &= ~HINIC_PCI_MSIX_ENTRY_CTRL_MASKBIT;
286         if (flag)
287                 mask_bits |= HINIC_PCI_MSIX_ENTRY_CTRL_MASKBIT;
288
289         writel(mask_bits, hwif->intr_regs_base + offset);
290 }
291
292 static void disable_all_msix(struct hinic_hwdev *hwdev)
293 {
294         u16 num_irqs = hwdev->hwif->attr.num_irqs;
295         u16 i;
296
297         for (i = 0; i < num_irqs; i++)
298                 hinic_set_msix_state(hwdev, i, HINIC_MSIX_DISABLE);
299 }
300
301 /**
302  * Wait for up enable or disable doorbell flush finished.
303  * @hwif: the hardware interface of a pci function device.
304  * @states: Disable or Enable.
305  */
306 int wait_until_doorbell_flush_states(struct hinic_hwif *hwif,
307                                         enum hinic_doorbell_ctrl states)
308 {
309         unsigned long end;
310         enum hinic_doorbell_ctrl db_ctrl;
311
312         end = jiffies +
313                 msecs_to_jiffies(HINIC_WAIT_DOORBELL_AND_OUTBOUND_TIMEOUT);
314         do {
315                 db_ctrl = hinic_get_doorbell_ctrl_status(hwif);
316                 if (db_ctrl == states)
317                         return 0;
318
319                 rte_delay_ms(1);
320         } while (time_before(jiffies, end));
321
322         return -EFAULT;
323 }
324
325 static int wait_until_doorbell_and_outbound_enabled(struct hinic_hwif *hwif)
326 {
327         unsigned long end;
328         enum hinic_doorbell_ctrl db_ctrl;
329         enum hinic_outbound_ctrl outbound_ctrl;
330
331         end = jiffies +
332                 msecs_to_jiffies(HINIC_WAIT_DOORBELL_AND_OUTBOUND_TIMEOUT);
333         do {
334                 db_ctrl = hinic_get_doorbell_ctrl_status(hwif);
335                 outbound_ctrl = hinic_get_outbound_ctrl_status(hwif);
336
337                 if (outbound_ctrl == ENABLE_OUTBOUND &&
338                     db_ctrl == ENABLE_DOORBELL)
339                         return 0;
340
341                 rte_delay_ms(1);
342         } while (time_before(jiffies, end));
343
344         return -EFAULT;
345 }
346
347 u16 hinic_global_func_id(void *hwdev)
348 {
349         struct hinic_hwif *hwif = ((struct hinic_hwdev *)hwdev)->hwif;
350
351         return hwif->attr.func_global_idx;
352 }
353
354 enum func_type hinic_func_type(void *hwdev)
355 {
356         struct hinic_hwif *hwif = ((struct hinic_hwdev *)hwdev)->hwif;
357
358         return hwif->attr.func_type;
359 }
360
361 u8 hinic_ppf_idx(void *hwdev)
362 {
363         struct hinic_hwif *hwif = ((struct hinic_hwdev *)hwdev)->hwif;
364
365         return hwif->attr.ppf_idx;
366 }
367
368 /**
369  * hinic_dma_attr_entry_num - get number id of DMA attribute table.
370  * @hwdev: the pointer to the private hardware device object.
371  * Return: The number id of DMA attribute table.
372  */
373 u8 hinic_dma_attr_entry_num(void *hwdev)
374 {
375         struct hinic_hwif *hwif = ((struct hinic_hwdev *)hwdev)->hwif;
376         return hwif->attr.num_dma_attr;
377 }
378
379 /**
380  * hinic_init_hwif - initialize the hw interface
381  * @hwdev: the pointer to the private hardware device object
382  * @cfg_reg_base: base physical address of configuration registers
383  * @intr_reg_base: base physical address of msi-x vector table
384  * @db_base_phy: base physical address of doorbell registers
385  * @db_base: base virtual address of doorbell registers
386  * @dwqe_mapping: direct wqe io mapping address
387  * Return: 0 - success, negative - failure
388  */
389 static int hinic_init_hwif(struct hinic_hwdev *hwdev, void *cfg_reg_base,
390                     void *intr_reg_base, u64 db_base_phy,
391                     void *db_base, __rte_unused void *dwqe_mapping)
392 {
393         struct hinic_hwif *hwif;
394         int err;
395
396         hwif = hwdev->hwif;
397
398         hwif->cfg_regs_base = (u8 __iomem *)cfg_reg_base;
399         hwif->intr_regs_base = (u8 __iomem *)intr_reg_base;
400
401         hwif->db_base_phy = db_base_phy;
402         hwif->db_base = (u8 __iomem *)db_base;
403         init_db_area_idx(&hwif->free_db_area);
404
405         get_hwif_attr(hwif);
406
407         err = hwif_ready(hwdev);
408         if (err) {
409                 PMD_DRV_LOG(ERR, "Hwif is not ready");
410                 goto hwif_ready_err;
411         }
412
413         err = wait_until_doorbell_and_outbound_enabled(hwif);
414         if (err) {
415                 PMD_DRV_LOG(ERR, "Hw doorbell/outbound is disabled");
416                 goto hwif_ready_err;
417         }
418
419         if (!HINIC_IS_VF(hwdev))
420                 set_ppf(hwif);
421
422         /* disable mgmt cpu report any event */
423         hinic_set_pf_status(hwdev->hwif, HINIC_PF_STATUS_INIT);
424
425         return 0;
426
427 hwif_ready_err:
428         spin_lock_deinit(&hwif->free_db_area.idx_lock);
429
430         return err;
431 }
432
433 #define HINIC_HWIF_ATTR_REG_PRINT_NUM        (6)
434 #define HINIC_HWIF_APICMD_REG_PRINT_NUM      (2)
435 #define HINIC_HWIF_EQ_REG_PRINT_NUM          (2)
436
437 static void hinic_parse_hwif_attr(struct hinic_hwdev *hwdev)
438 {
439         struct hinic_hwif *hwif = hwdev->hwif;
440
441         PMD_DRV_LOG(INFO, "Device %s hwif attribute:", hwdev->pcidev_hdl->name);
442         PMD_DRV_LOG(INFO, "func_idx:%u, p2p_idx:%u, pciintf_idx:%u, "
443                     "vf_in_pf:%u, ppf_idx:%u, global_vf_id:%u, func_type:%u",
444                     hwif->attr.func_global_idx,
445                     hwif->attr.port_to_port_idx, hwif->attr.pci_intf_idx,
446                     hwif->attr.vf_in_pf, hwif->attr.ppf_idx,
447                     hwif->attr.global_vf_id_of_pf, hwif->attr.func_type);
448         PMD_DRV_LOG(INFO, "num_aeqs:%u, num_ceqs:%u, num_irqs:%u, dma_attr:%u",
449                     hwif->attr.num_aeqs, hwif->attr.num_ceqs,
450                     hwif->attr.num_irqs, hwif->attr.num_dma_attr);
451 }
452
453 static void hinic_get_mmio(struct hinic_hwdev *hwdev, void **cfg_regs_base,
454                            void **intr_base, void **db_base)
455 {
456         struct rte_pci_device *pci_dev = hwdev->pcidev_hdl;
457         uint64_t bar0_size;
458         uint64_t bar2_size;
459         uint64_t bar0_phy_addr;
460         uint64_t pagesize = sysconf(_SC_PAGESIZE);
461
462         *cfg_regs_base = pci_dev->mem_resource[HINIC_CFG_REGS_BAR].addr;
463         *intr_base = pci_dev->mem_resource[HINIC_INTR_MSI_BAR].addr;
464         *db_base = pci_dev->mem_resource[HINIC_DB_MEM_BAR].addr;
465
466         bar0_size = pci_dev->mem_resource[HINIC_CFG_REGS_BAR].len;
467         bar2_size = pci_dev->mem_resource[HINIC_INTR_MSI_BAR].len;
468
469         if (pagesize == PAGE_SIZE_64K && (bar0_size % pagesize != 0)) {
470                 bar0_phy_addr =
471                         pci_dev->mem_resource[HINIC_CFG_REGS_BAR].phys_addr;
472                 if (bar0_phy_addr % pagesize != 0 &&
473                 (bar0_size + bar2_size <= pagesize) &&
474                 bar2_size >= bar0_size) {
475                         *cfg_regs_base = (void *)((uint8_t *)(*intr_base)
476                                 + bar2_size);
477                 }
478         }
479 }
480
481 void hinic_hwif_res_free(struct hinic_hwdev *hwdev)
482 {
483         rte_free(hwdev->hwif);
484         hwdev->hwif = NULL;
485 }
486
487 int hinic_hwif_res_init(struct hinic_hwdev *hwdev)
488 {
489         int err = HINIC_ERROR;
490         void *cfg_regs_base, *db_base, *intr_base = NULL;
491
492         /* hinic related init */
493         hwdev->hwif = rte_zmalloc("hinic_hwif", sizeof(*hwdev->hwif),
494                                   RTE_CACHE_LINE_SIZE);
495         if (!hwdev->hwif) {
496                 PMD_DRV_LOG(ERR, "Allocate hwif failed, dev_name: %s",
497                             hwdev->pcidev_hdl->name);
498                 return -ENOMEM;
499         }
500
501         hinic_get_mmio(hwdev, &cfg_regs_base, &intr_base, &db_base);
502
503         err = hinic_init_hwif(hwdev, cfg_regs_base,
504                               intr_base, 0, db_base, NULL);
505         if (err) {
506                 PMD_DRV_LOG(ERR, "Initialize hwif failed, dev_name: %s",
507                             hwdev->pcidev_hdl->name);
508                 goto init_hwif_err;
509         }
510
511         /* disable msix interrupt in hw device */
512         disable_all_msix(hwdev);
513
514         /* print hwif attributes */
515         hinic_parse_hwif_attr(hwdev);
516
517         return HINIC_OK;
518
519 init_hwif_err:
520         rte_free(hwdev->hwif);
521         hwdev->hwif = NULL;
522
523         return err;
524 }
525
526 /**
527  * hinic_misx_intr_clear_resend_bit - clear interrupt resend configuration
528  * @hwdev: the hardware interface of a nic device
529  * @msix_idx: Index of msix interrupt
530  * @clear_resend_en: enable flag of clear resend configuration
531  */
532 void hinic_misx_intr_clear_resend_bit(void *hwdev, u16 msix_idx,
533                                       u8 clear_resend_en)
534 {
535         struct hinic_hwif *hwif = ((struct hinic_hwdev *)hwdev)->hwif;
536         u32 msix_ctrl = 0, addr;
537
538         msix_ctrl = HINIC_MSIX_CNT_SET(clear_resend_en, RESEND_TIMER);
539
540         addr = HINIC_CSR_MSIX_CNT_ADDR(msix_idx);
541
542         hinic_hwif_write_reg(hwif, addr, msix_ctrl);
543 }