event/octeontx: probe ssovf pcie devices
[dpdk.git] / drivers / event / octeontx / ssovf_probe.c
1 /*
2  *   BSD LICENSE
3  *
4  *   Copyright (C) Cavium networks Ltd. 2017.
5  *
6  *   Redistribution and use in source and binary forms, with or without
7  *   modification, are permitted provided that the following conditions
8  *   are met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *     * Redistributions in binary form must reproduce the above copyright
13  *       notice, this list of conditions and the following disclaimer in
14  *       the documentation and/or other materials provided with the
15  *       distribution.
16  *     * Neither the name of Cavium networks nor the names of its
17  *       contributors may be used to endorse or promote products derived
18  *       from this software without specific prior written permission.
19  *
20  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <rte_atomic.h>
34 #include <rte_common.h>
35 #include <rte_eal.h>
36 #include <rte_io.h>
37 #include <rte_pci.h>
38
39 #include "ssovf_evdev.h"
40
41 struct ssovf_res {
42         uint16_t domain;
43         uint16_t vfid;
44         void *bar0;
45         void *bar2;
46 };
47
48 struct ssodev {
49         uint8_t total_ssovfs;
50         struct ssovf_res grp[SSO_MAX_VHGRP];
51 };
52 static struct ssodev sdev;
53
54 /* SSOVF pcie device aka event queue probe */
55
56 static int
57 ssovf_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
58 {
59         uint64_t val;
60         uint16_t vfid;
61         uint8_t *idreg;
62         struct ssovf_res *res;
63
64         RTE_SET_USED(pci_drv);
65
66         /* For secondary processes, the primary has done all the work */
67         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
68                 return 0;
69
70         if (pci_dev->mem_resource[0].addr == NULL ||
71                         pci_dev->mem_resource[2].addr == NULL) {
72                 ssovf_log_err("Empty bars %p %p",
73                         pci_dev->mem_resource[0].addr,
74                         pci_dev->mem_resource[2].addr);
75                 return -ENODEV;
76         }
77         idreg = pci_dev->mem_resource[0].addr;
78         idreg += SSO_VHGRP_AQ_THR;
79         val = rte_read64(idreg);
80
81         /* Write back the default value of aq_thr */
82         rte_write64((1ULL << 33) - 1, idreg);
83         vfid = (val >> 16) & 0xffff;
84         if (vfid >= SSO_MAX_VHGRP) {
85                 ssovf_log_err("Invalid vfid (%d/%d)", vfid, SSO_MAX_VHGRP);
86                 return -EINVAL;
87         }
88
89         res = &sdev.grp[vfid];
90         res->vfid = vfid;
91         res->bar0 = pci_dev->mem_resource[0].addr;
92         res->bar2 = pci_dev->mem_resource[2].addr;
93         res->domain = val & 0xffff;
94
95         sdev.total_ssovfs++;
96         rte_wmb();
97         ssovf_log_dbg("Domain=%d group=%d total_ssovfs=%d", res->domain,
98                         res->vfid, sdev.total_ssovfs);
99         return 0;
100 }
101
102 static const struct rte_pci_id pci_ssovf_map[] = {
103         {
104                 RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM,
105                                 PCI_DEVICE_ID_OCTEONTX_SSOGRP_VF)
106         },
107         {
108                 .vendor_id = 0,
109         },
110 };
111
112 static struct rte_pci_driver pci_ssovf = {
113         .id_table = pci_ssovf_map,
114         .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
115         .probe = ssovf_probe,
116 };
117
118 RTE_PMD_REGISTER_PCI(octeontx_ssovf, pci_ssovf);