2 * Copyright (C) 2016 Cavium, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
9 #include <linux/acpi.h>
10 #include <linux/module.h>
11 #include <linux/interrupt.h>
12 #include <linux/pci.h>
13 #include <linux/netdevice.h>
14 #include <linux/etherdevice.h>
15 #include <linux/phy.h>
17 #include <linux/of_mdio.h>
18 #include <linux/of_net.h>
21 #include "thunder_bgx.h"
23 #define DRV_NAME "thunder-xcv"
24 #define DRV_VERSION "1.0"
26 /* Register offsets */
27 #define XCV_RESET 0x00
28 #define PORT_EN BIT_ULL(63)
29 #define CLK_RESET BIT_ULL(15)
30 #define DLL_RESET BIT_ULL(11)
31 #define COMP_EN BIT_ULL(7)
32 #define TX_PKT_RESET BIT_ULL(3)
33 #define TX_DATA_RESET BIT_ULL(2)
34 #define RX_PKT_RESET BIT_ULL(1)
35 #define RX_DATA_RESET BIT_ULL(0)
36 #define XCV_DLL_CTL 0x10
37 #define CLKRX_BYP BIT_ULL(23)
38 #define CLKTX_BYP BIT_ULL(15)
39 #define XCV_COMP_CTL 0x20
40 #define DRV_BYP BIT_ULL(63)
43 #define XCV_INT_W1S 0x48
44 #define XCV_INT_ENA_W1C 0x50
45 #define XCV_INT_ENA_W1S 0x58
46 #define XCV_INBND_STATUS 0x80
47 #define XCV_BATCH_CRD_RET 0x100
50 void __iomem
*reg_base
;
54 static struct xcv
*xcv
;
56 /* Supported devices */
57 static const struct pci_device_id xcv_id_table
[] = {
58 { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM
, 0xA056) },
59 { 0, } /* end of table */
62 MODULE_AUTHOR("Cavium Inc");
63 MODULE_DESCRIPTION("Cavium Thunder RGX/XCV Driver");
64 MODULE_LICENSE("GPL v2");
65 MODULE_VERSION(DRV_VERSION
);
66 MODULE_DEVICE_TABLE(pci
, xcv_id_table
);
68 void xcv_init_hw(void)
72 /* Take DLL out of reset */
73 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
75 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
77 /* Take clock tree out of reset */
78 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
80 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
81 /* Wait for DLL to lock */
84 /* Configure DLL - enable or bypass
85 * TX no bypass, RX bypass
87 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_DLL_CTL
);
90 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_DLL_CTL
);
92 /* Enable compensation controller and force the
93 * write to be visible to HW by readig back.
95 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
97 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
98 readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
99 /* Wait for compensation state machine to lock */
102 /* enable the XCV block */
103 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
105 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
107 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
109 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
111 EXPORT_SYMBOL(xcv_init_hw
);
113 void xcv_setup_link(bool link_up
, int link_speed
)
119 pr_err("XCV init not done, probe may have failed\n");
123 if (link_speed
== 100)
125 else if (link_speed
== 10)
129 /* set operating speed */
130 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_CTL
);
133 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_CTL
);
135 /* Reset datapaths */
136 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
137 cfg
|= TX_DATA_RESET
| RX_DATA_RESET
;
138 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
140 /* Enable the packet flow */
141 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
142 cfg
|= TX_PKT_RESET
| RX_PKT_RESET
;
143 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
145 /* Return credits to RGX */
146 writeq_relaxed(0x01, xcv
->reg_base
+ XCV_BATCH_CRD_RET
);
148 /* Disable packet flow */
149 cfg
= readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
150 cfg
&= ~(TX_PKT_RESET
| RX_PKT_RESET
);
151 writeq_relaxed(cfg
, xcv
->reg_base
+ XCV_RESET
);
152 readq_relaxed(xcv
->reg_base
+ XCV_RESET
);
155 EXPORT_SYMBOL(xcv_setup_link
);
157 static int xcv_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
160 struct device
*dev
= &pdev
->dev
;
162 xcv
= devm_kzalloc(dev
, sizeof(struct xcv
), GFP_KERNEL
);
167 pci_set_drvdata(pdev
, xcv
);
169 err
= pci_enable_device(pdev
);
171 dev_err(dev
, "Failed to enable PCI device\n");
175 err
= pci_request_regions(pdev
, DRV_NAME
);
177 dev_err(dev
, "PCI request regions failed 0x%x\n", err
);
178 goto err_disable_device
;
181 /* MAP configuration registers */
182 xcv
->reg_base
= pcim_iomap(pdev
, PCI_CFG_REG_BAR_NUM
, 0);
183 if (!xcv
->reg_base
) {
184 dev_err(dev
, "XCV: Cannot map CSR memory space, aborting\n");
186 goto err_release_regions
;
192 pci_release_regions(pdev
);
194 pci_disable_device(pdev
);
196 devm_kfree(dev
, xcv
);
201 static void xcv_remove(struct pci_dev
*pdev
)
203 struct device
*dev
= &pdev
->dev
;
206 devm_kfree(dev
, xcv
);
210 pci_release_regions(pdev
);
211 pci_disable_device(pdev
);
214 static struct pci_driver xcv_driver
= {
216 .id_table
= xcv_id_table
,
218 .remove
= xcv_remove
,
221 static int __init
xcv_init_module(void)
223 pr_info("%s, ver %s\n", DRV_NAME
, DRV_VERSION
);
225 return pci_register_driver(&xcv_driver
);
228 static void __exit
xcv_cleanup_module(void)
230 pci_unregister_driver(&xcv_driver
);
233 module_init(xcv_init_module
);
234 module_exit(xcv_cleanup_module
);