summaryrefslogtreecommitdiff
path: root/drivers/pci/controller/mobiveil/pcie-layerscape-gen4-ep.c
blob: 78a3b250c23f319e4a0747fefeb87937f422604e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// SPDX-License-Identifier: GPL-2.0
/*
 * PCIe controller EP driver for Freescale Layerscape SoCs
 *
 * Copyright 2019 NXP
 *
 * Author: Xiaowei Bao <xiaowei.bao@nxp.com>
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/of_pci.h>
#include <linux/of_platform.h>
#include <linux/of_address.h>
#include <linux/pci.h>
#include <linux/platform_device.h>
#include <linux/resource.h>

#include "pcie-mobiveil.h"

#define PCIE_LX2_BAR_NUM	4

#define to_ls_pcie_g4_ep(x)	dev_get_drvdata((x)->dev)

struct ls_pcie_g4_ep {
	struct mobiveil_pcie		*mv_pci;
};

static const struct of_device_id ls_pcie_g4_ep_of_match[] = {
	{ .compatible = "fsl,lx2160a-pcie-ep",},
	{ },
};

static const struct pci_epc_features ls_pcie_g4_epc_features = {
	.linkup_notifier = false,
	.msi_capable = true,
	.msix_capable = true,
	.reserved_bar = (1 << BAR_4) | (1 << BAR_5),
};

static const struct pci_epc_features*
ls_pcie_g4_ep_get_features(struct mobiveil_pcie_ep *ep)
{
	return &ls_pcie_g4_epc_features;
}

static void ls_pcie_g4_ep_init(struct mobiveil_pcie_ep *ep)
{
	struct mobiveil_pcie *mv_pci = to_mobiveil_pcie_from_ep(ep);
	int win_idx;
	u8 bar;
	u32 val;

	/*
	 * Errata: unsupported request error on inbound posted write
	 * transaction, PCIe controller reports advisory error instead
	 * of uncorrectable error message to RC.
	 * workaround: set the bit20(unsupported_request_Error_severity) with
	 * value 1 in uncorrectable_Error_Severity_Register, make the
	 * unsupported request error generate the fatal error.
	 */
	val =  csr_readl(mv_pci, CFG_UNCORRECTABLE_ERROR_SEVERITY);
	val |= 1 << UNSUPPORTED_REQUEST_ERROR_SHIFT;
	csr_writel(mv_pci, val, CFG_UNCORRECTABLE_ERROR_SEVERITY);

	ep->bar_num = PCIE_LX2_BAR_NUM;

	for (bar = BAR_0; bar < ep->epc->max_functions * ep->bar_num; bar++)
		mobiveil_pcie_ep_reset_bar(mv_pci, bar);

	for (win_idx = 0; win_idx < ep->apio_wins; win_idx++)
		mobiveil_pcie_disable_ob_win(mv_pci, win_idx);
}

static int ls_pcie_g4_ep_raise_irq(struct mobiveil_pcie_ep *ep, u8 func_no,
				   enum pci_epc_irq_type type,
				   u16 interrupt_num)
{
	struct mobiveil_pcie *mv_pci = to_mobiveil_pcie_from_ep(ep);

	switch (type) {
	case PCI_EPC_IRQ_LEGACY:
		return mobiveil_pcie_ep_raise_legacy_irq(ep, func_no);
	case PCI_EPC_IRQ_MSI:
		return mobiveil_pcie_ep_raise_msi_irq(ep, func_no,
						      interrupt_num);
	case PCI_EPC_IRQ_MSIX:
		return mobiveil_pcie_ep_raise_msix_irq(ep, func_no,
						       interrupt_num);
	default:
		dev_err(&mv_pci->pdev->dev, "UNKNOWN IRQ type\n");
	}

	return 0;
}

static const struct mobiveil_pcie_ep_ops pcie_ep_ops = {
	.ep_init = ls_pcie_g4_ep_init,
	.raise_irq = ls_pcie_g4_ep_raise_irq,
	.get_features = ls_pcie_g4_ep_get_features,
};

static int __init ls_pcie_gen4_add_pcie_ep(struct ls_pcie_g4_ep *ls_ep,
					   struct platform_device *pdev)
{
	struct mobiveil_pcie *mv_pci = ls_ep->mv_pci;
	struct device *dev = &pdev->dev;
	struct mobiveil_pcie_ep *ep;
	struct resource *res;
	int ret;

	ep = &mv_pci->ep;
	ep->ops = &pcie_ep_ops;

	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "addr_space");
	if (!res)
		return -EINVAL;

	ep->phys_base = res->start;
	ep->addr_size = resource_size(res);

	ret = mobiveil_pcie_ep_init(ep);
	if (ret) {
		dev_err(dev, "failed to initialize layerscape endpoint\n");
		return ret;
	}

	return 0;
}

static int __init ls_pcie_g4_ep_probe(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
	struct mobiveil_pcie *mv_pci;
	struct ls_pcie_g4_ep *ls_ep;
	struct resource *res;
	int ret;

	ls_ep = devm_kzalloc(dev, sizeof(*ls_ep), GFP_KERNEL);
	if (!ls_ep)
		return -ENOMEM;

	mv_pci = devm_kzalloc(dev, sizeof(*mv_pci), GFP_KERNEL);
	if (!mv_pci)
		return -ENOMEM;

	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
	mv_pci->csr_axi_slave_base = devm_pci_remap_cfg_resource(dev, res);
	if (IS_ERR(mv_pci->csr_axi_slave_base))
		return PTR_ERR(mv_pci->csr_axi_slave_base);

	mv_pci->pdev = pdev;
	ls_ep->mv_pci = mv_pci;

	platform_set_drvdata(pdev, ls_ep);

	ret = ls_pcie_gen4_add_pcie_ep(ls_ep, pdev);

	return ret;
}

static struct platform_driver ls_pcie_g4_ep_driver = {
	.driver = {
		.name = "layerscape-pcie-gen4-ep",
		.of_match_table = ls_pcie_g4_ep_of_match,
		.suppress_bind_attrs = true,
	},
};
builtin_platform_driver_probe(ls_pcie_g4_ep_driver, ls_pcie_g4_ep_probe);