FreeBSD kernel amd64 PCI device code
pci_dw_mv.c
Go to the documentation of this file.
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2019 Michal Meloun <mmel@FreeBSD.org>
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 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29/* Armada 8k DesignWare PCIe driver */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD$");
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/bus.h>
37#include <sys/devmap.h>
38#include <sys/proc.h>
39#include <sys/kernel.h>
40#include <sys/malloc.h>
41#include <sys/module.h>
42#include <sys/mutex.h>
43#include <sys/rman.h>
44#include <sys/sysctl.h>
45
46#include <machine/bus.h>
47#include <machine/intr.h>
48#include <machine/resource.h>
49
50#include <dev/extres/clk/clk.h>
51#include <dev/extres/phy/phy.h>
52#include <dev/ofw/ofw_bus.h>
53#include <dev/ofw/ofw_bus_subr.h>
54#include <dev/ofw/ofw_pci.h>
55#include <dev/ofw/ofwpci.h>
56#include <dev/pci/pcivar.h>
57#include <dev/pci/pcireg.h>
59#include <dev/pci/pci_dw.h>
60
61#include "pcib_if.h"
62#include "pci_dw_if.h"
63
64#define MV_GLOBAL_CONTROL_REG 0x8000
65#define PCIE_APP_LTSSM_EN (1 << 2)
66
67#define MV_GLOBAL_STATUS_REG 0x8008
68#define MV_STATUS_RDLH_LINK_UP (1 << 1)
69#define MV_STATUS_PHY_LINK_UP (1 << 9)
70
71#define MV_INT_CAUSE1 0x801C
72#define MV_INT_MASK1 0x8020
73#define INT_A_ASSERT_MASK (1 << 9)
74#define INT_B_ASSERT_MASK (1 << 10)
75#define INT_C_ASSERT_MASK (1 << 11)
76#define INT_D_ASSERT_MASK (1 << 12)
77
78#define MV_INT_CAUSE2 0x8024
79#define MV_INT_MASK2 0x8028
80#define MV_ERR_INT_CAUSE 0x802C
81#define MV_ERR_INT_MASK 0x8030
82
83#define MV_ARCACHE_TRC_REG 0x8050
84#define MV_AWCACHE_TRC_REG 0x8054
85#define MV_ARUSER_REG 0x805C
86#define MV_AWUSER_REG 0x8060
87
88#define MV_MAX_LANES 8
91 device_t dev;
92 phandle_t node;
93 struct resource *irq_res;
96 clk_t clk_core;
97 clk_t clk_reg;
98};
99
100/* Compatible devices. */
101static struct ofw_compat_data compat_data[] = {
102 {"marvell,armada8k-pcie", 1},
103 {NULL, 0},
104};
105
106static int
108{
109 int i, rv;
110
111 for (i = 0; i < MV_MAX_LANES; i++) {
112 rv = phy_get_by_ofw_idx(sc->dev, sc->node, i, &(sc->phy[i]));
113 if (rv != 0 && rv != ENOENT) {
114 device_printf(sc->dev, "Cannot get phy[%d]\n", i);
115/* XXX revert when phy driver will be implemented */
116#if 0
117 goto fail;
118#else
119 continue;
120#endif
121 }
122 if (sc->phy[i] == NULL)
123 continue;
124 rv = phy_enable(sc->phy[i]);
125 if (rv != 0) {
126 device_printf(sc->dev, "Cannot enable phy[%d]\n", i);
127 goto fail;
128 }
129 }
130 return (0);
131
132fail:
133 for (i = 0; i < MV_MAX_LANES; i++) {
134 if (sc->phy[i] == NULL)
135 continue;
136 phy_release(sc->phy[i]);
137 }
138
139 return (rv);
140}
141
142static void
144{
145 uint32_t reg;
146
147 /* Set device configuration to RC */
149 reg &= ~0x000000F0;
150 reg |= 0x000000040;
152
153 /* AxCache master transaction attribures */
156
157 /* AxDomain master transaction attribures */
158 pci_dw_dbi_wr4(sc->dev, MV_ARUSER_REG, 0x0002);
159 pci_dw_dbi_wr4(sc->dev, MV_AWUSER_REG, 0x0002);
160
161 /* Enable all INTx interrupt (virtuual) pins */
166
167 /* Enable local interrupts */
168 pci_dw_dbi_wr4(sc->dev, DW_MSI_INTR0_MASK, 0xFFFFFFFF);
169 pci_dw_dbi_wr4(sc->dev, MV_INT_MASK1, 0x0001FE00);
170 pci_dw_dbi_wr4(sc->dev, MV_INT_MASK2, 0x00000000);
171 pci_dw_dbi_wr4(sc->dev, MV_INT_CAUSE1, 0xFFFFFFFF);
172 pci_dw_dbi_wr4(sc->dev, MV_INT_CAUSE2, 0xFFFFFFFF);
173
174 /* Errors have own interrupt, not yet populated in DTt */
176}
177
178static int pci_mv_intr(void *arg)
179{
180 struct pci_mv_softc *sc = arg;
181 uint32_t cause1, cause2;
182
183 /* Ack all interrups */
184 cause1 = pci_dw_dbi_rd4(sc->dev, MV_INT_CAUSE1);
185 cause2 = pci_dw_dbi_rd4(sc->dev, MV_INT_CAUSE2);
186
187 pci_dw_dbi_wr4(sc->dev, MV_INT_CAUSE1, cause1);
188 pci_dw_dbi_wr4(sc->dev, MV_INT_CAUSE2, cause2);
189 return (FILTER_HANDLED);
190}
191
192static int
193pci_mv_get_link(device_t dev, bool *status)
194{
195 uint32_t reg;
196
200 *status = true;
201 else
202 *status = false;
203
204 return (0);
205}
206
207static int
209{
210
211 if (!ofw_bus_status_okay(dev))
212 return (ENXIO);
213
214 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
215 return (ENXIO);
216
217 device_set_desc(dev, "Marvell Armada8K PCI-E Controller");
218 return (BUS_PROBE_DEFAULT);
219}
220
221static int
223{
224 struct pci_mv_softc *sc;
225 phandle_t node;
226 int rv;
227 int rid;
228
229 sc = device_get_softc(dev);
230 node = ofw_bus_get_node(dev);
231 sc->dev = dev;
232 sc->node = node;
233
234 rid = 0;
235 sc->dw_sc.dbi_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
236 RF_ACTIVE);
237 if (sc->dw_sc.dbi_res == NULL) {
238 device_printf(dev, "Cannot allocate DBI memory\n");
239 rv = ENXIO;
240 goto out;
241 }
242
243 /* PCI interrupt */
244 rid = 0;
245 sc->irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
246 RF_ACTIVE | RF_SHAREABLE);
247 if (sc->irq_res == NULL) {
248 device_printf(dev, "Cannot allocate IRQ resources\n");
249 rv = ENXIO;
250 goto out;
251 }
252
253 /* Clocks */
254 rv = clk_get_by_ofw_name(sc->dev, 0, "core", &sc->clk_core);
255 if (rv != 0) {
256 device_printf(sc->dev, "Cannot get 'core' clock\n");
257 rv = ENXIO;
258 goto out;
259 }
260
261 rv = clk_get_by_ofw_name(sc->dev, 0, "reg", &sc->clk_reg);
262 if (rv != 0) {
263 device_printf(sc->dev, "Cannot get 'reg' clock\n");
264 rv = ENXIO;
265 goto out;
266 }
267
268 rv = clk_enable(sc->clk_core);
269 if (rv != 0) {
270 device_printf(sc->dev, "Cannot enable 'core' clock\n");
271 rv = ENXIO;
272 goto out;
273 }
274
275 rv = clk_enable(sc->clk_reg);
276 if (rv != 0) {
277 device_printf(sc->dev, "Cannot enable 'reg' clock\n");
278 rv = ENXIO;
279 goto out;
280 }
281
282 rv = pci_mv_phy_init(sc);
283 if (rv)
284 goto out;
285
286 rv = pci_dw_init(dev);
287 if (rv != 0)
288 goto out;
289
290 pci_mv_init(sc);
291
292 /* Setup interrupt */
293 if (bus_setup_intr(dev, sc->irq_res, INTR_TYPE_MISC | INTR_MPSAFE,
294 pci_mv_intr, NULL, sc, &sc->intr_cookie)) {
295 device_printf(dev, "cannot setup interrupt handler\n");
296 rv = ENXIO;
297 goto out;
298 }
299
300 return (bus_generic_attach(dev));
301out:
302 /* XXX Cleanup */
303 return (rv);
304}
305
306static device_method_t pci_mv_methods[] = {
307 /* Device interface */
308 DEVMETHOD(device_probe, pci_mv_probe),
309 DEVMETHOD(device_attach, pci_mv_attach),
310
311 DEVMETHOD(pci_dw_get_link, pci_mv_get_link),
312
313 DEVMETHOD_END
314};
315
317 sizeof(struct pci_mv_softc), pci_dw_driver);
318static devclass_t pci_mv_devclass;
319DRIVER_MODULE( pci_mv, simplebus, pci_mv_driver, pci_mv_devclass,
320 NULL, NULL);
int pci_dw_init(device_t dev)
Definition: pci_dw.c:705
#define DW_MSI_INTR0_MASK
Definition: pci_dw.h:60
static void pci_dw_dbi_wr4(device_t dev, u_int reg, uint32_t val)
Definition: pci_dw.h:134
static uint32_t pci_dw_dbi_rd4(device_t dev, u_int reg)
Definition: pci_dw.h:152
u_int reg
Definition: pci_dw_if.m:42
bool * status
Definition: pci_dw_if.m:72
#define INT_B_ASSERT_MASK
Definition: pci_dw_mv.c:74
static device_method_t pci_mv_methods[]
Definition: pci_dw_mv.c:306
static int pci_mv_intr(void *arg)
Definition: pci_dw_mv.c:178
#define INT_A_ASSERT_MASK
Definition: pci_dw_mv.c:73
static void pci_mv_init(struct pci_mv_softc *sc)
Definition: pci_dw_mv.c:143
#define MV_STATUS_RDLH_LINK_UP
Definition: pci_dw_mv.c:68
static int pci_mv_phy_init(struct pci_mv_softc *sc)
Definition: pci_dw_mv.c:107
DRIVER_MODULE(pci_mv, simplebus, pci_mv_driver, pci_mv_devclass, NULL, NULL)
static int pci_mv_probe(device_t dev)
Definition: pci_dw_mv.c:208
#define MV_AWUSER_REG
Definition: pci_dw_mv.c:86
DEFINE_CLASS_1(pcib, pci_mv_driver, pci_mv_methods, sizeof(struct pci_mv_softc), pci_dw_driver)
static devclass_t pci_mv_devclass
Definition: pci_dw_mv.c:318
__FBSDID("$FreeBSD$")
#define MV_MAX_LANES
Definition: pci_dw_mv.c:88
#define MV_INT_MASK2
Definition: pci_dw_mv.c:79
static int pci_mv_attach(device_t dev)
Definition: pci_dw_mv.c:222
#define MV_GLOBAL_STATUS_REG
Definition: pci_dw_mv.c:67
#define MV_ARCACHE_TRC_REG
Definition: pci_dw_mv.c:83
#define INT_D_ASSERT_MASK
Definition: pci_dw_mv.c:76
#define MV_AWCACHE_TRC_REG
Definition: pci_dw_mv.c:84
#define MV_GLOBAL_CONTROL_REG
Definition: pci_dw_mv.c:64
static struct ofw_compat_data compat_data[]
Definition: pci_dw_mv.c:101
#define INT_C_ASSERT_MASK
Definition: pci_dw_mv.c:75
#define MV_INT_CAUSE1
Definition: pci_dw_mv.c:71
#define MV_ERR_INT_MASK
Definition: pci_dw_mv.c:81
#define MV_ARUSER_REG
Definition: pci_dw_mv.c:85
#define MV_STATUS_PHY_LINK_UP
Definition: pci_dw_mv.c:69
#define MV_INT_CAUSE2
Definition: pci_dw_mv.c:78
static int pci_mv_get_link(device_t dev, bool *status)
Definition: pci_dw_mv.c:193
#define MV_INT_MASK1
Definition: pci_dw_mv.c:72
uint16_t rid
Definition: pci_if.m:278
device_t dev
Definition: pcib_if.m:109
INTERFACE pcib
Definition: pcib_if.m:34
struct resource * dbi_res
Definition: pci_dw.h:102
struct resource * irq_res
Definition: pci_dw_mv.c:93
phy_t phy[MV_MAX_LANES]
Definition: pci_dw_mv.c:95
struct pci_dw_softc dw_sc
Definition: pci_dw_mv.c:90
clk_t clk_core
Definition: pci_dw_mv.c:96
device_t dev
Definition: pci_dw_mv.c:91
phandle_t node
Definition: pci_dw_mv.c:92
clk_t clk_reg
Definition: pci_dw_mv.c:97
void * intr_cookie
Definition: pci_dw_mv.c:94