blob: 089e031724ab1be0a80e499625505a9814017ea8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hou Zhiqianga7294ab2016-12-13 14:54:16 +08002/*
Priyanka Jaine809e742017-04-27 15:08:06 +05303 * Copyright 2017 NXP
Hou Zhiqianga7294ab2016-12-13 14:54:16 +08004 * Copyright 2014-2015 Freescale Semiconductor, Inc.
5 * Layerscape PCIe driver
Hou Zhiqianga7294ab2016-12-13 14:54:16 +08006 */
7
8#include <common.h>
9#include <pci.h>
10#include <asm/arch/fsl_serdes.h>
11#include <asm/io.h>
12#include <errno.h>
13#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090014#include <linux/libfdt.h>
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080015#include <fdt_support.h>
Simon Glass6e2941d2017-05-17 08:23:06 -060016#ifdef CONFIG_ARM
17#include <asm/arch/clock.h>
18#endif
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080019#include "pcie_layerscape.h"
20
Bharat Bhushan47d17362017-03-22 12:06:30 +053021#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2)
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080022/*
23 * Return next available LUT index.
24 */
25static int ls_pcie_next_lut_index(struct ls_pcie *pcie)
26{
27 if (pcie->next_lut_index < PCIE_LUT_ENTRY_COUNT)
28 return pcie->next_lut_index++;
29 else
30 return -ENOSPC; /* LUT is full */
31}
32
33/* returns the next available streamid for pcie, -errno if failed */
34static int ls_pcie_next_streamid(void)
35{
36 static int next_stream_id = FSL_PEX_STREAM_ID_START;
37
38 if (next_stream_id > FSL_PEX_STREAM_ID_END)
39 return -EINVAL;
40
41 return next_stream_id++;
42}
43
Minghuan Lian80afc632016-12-13 14:54:17 +080044static void lut_writel(struct ls_pcie *pcie, unsigned int value,
45 unsigned int offset)
46{
47 if (pcie->big_endian)
48 out_be32(pcie->lut + offset, value);
49 else
50 out_le32(pcie->lut + offset, value);
51}
52
53/*
54 * Program a single LUT entry
55 */
56static void ls_pcie_lut_set_mapping(struct ls_pcie *pcie, int index, u32 devid,
57 u32 streamid)
58{
59 /* leave mask as all zeroes, want to match all bits */
60 lut_writel(pcie, devid << 16, PCIE_LUT_UDR(index));
61 lut_writel(pcie, streamid | PCIE_LUT_ENABLE, PCIE_LUT_LDR(index));
62}
63
64/*
65 * An msi-map is a property to be added to the pci controller
66 * node. It is a table, where each entry consists of 4 fields
67 * e.g.:
68 *
69 * msi-map = <[devid] [phandle-to-msi-ctrl] [stream-id] [count]
70 * [devid] [phandle-to-msi-ctrl] [stream-id] [count]>;
71 */
72static void fdt_pcie_set_msi_map_entry(void *blob, struct ls_pcie *pcie,
73 u32 devid, u32 streamid)
74{
75 u32 *prop;
76 u32 phandle;
77 int nodeoffset;
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +080078 uint svr;
79 char *compat = NULL;
Minghuan Lian80afc632016-12-13 14:54:17 +080080
81 /* find pci controller node */
82 nodeoffset = fdt_node_offset_by_compat_reg(blob, "fsl,ls-pcie",
83 pcie->dbi_res.start);
84 if (nodeoffset < 0) {
Hou Zhiqiang19538f32016-12-13 14:54:24 +080085#ifdef CONFIG_FSL_PCIE_COMPAT /* Compatible with older version of dts node */
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +080086 svr = (get_svr() >> SVR_VAR_PER_SHIFT) & 0xFFFFFE;
87 if (svr == SVR_LS2088A || svr == SVR_LS2084A ||
Priyanka Jaine809e742017-04-27 15:08:06 +053088 svr == SVR_LS2048A || svr == SVR_LS2044A ||
89 svr == SVR_LS2081A || svr == SVR_LS2041A)
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +080090 compat = "fsl,ls2088a-pcie";
91 else
92 compat = CONFIG_FSL_PCIE_COMPAT;
93 if (compat)
94 nodeoffset = fdt_node_offset_by_compat_reg(blob,
95 compat, pcie->dbi_res.start);
96#endif
Minghuan Lian80afc632016-12-13 14:54:17 +080097 if (nodeoffset < 0)
98 return;
Minghuan Lian80afc632016-12-13 14:54:17 +080099 }
100
101 /* get phandle to MSI controller */
102 prop = (u32 *)fdt_getprop(blob, nodeoffset, "msi-parent", 0);
103 if (prop == NULL) {
104 debug("\n%s: ERROR: missing msi-parent: PCIe%d\n",
105 __func__, pcie->idx);
106 return;
107 }
108 phandle = fdt32_to_cpu(*prop);
109
110 /* set one msi-map row */
111 fdt_appendprop_u32(blob, nodeoffset, "msi-map", devid);
112 fdt_appendprop_u32(blob, nodeoffset, "msi-map", phandle);
113 fdt_appendprop_u32(blob, nodeoffset, "msi-map", streamid);
114 fdt_appendprop_u32(blob, nodeoffset, "msi-map", 1);
115}
116
Bharat Bhushan78be6222017-03-22 12:12:33 +0530117/*
118 * An iommu-map is a property to be added to the pci controller
119 * node. It is a table, where each entry consists of 4 fields
120 * e.g.:
121 *
122 * iommu-map = <[devid] [phandle-to-iommu-ctrl] [stream-id] [count]
123 * [devid] [phandle-to-iommu-ctrl] [stream-id] [count]>;
124 */
125static void fdt_pcie_set_iommu_map_entry(void *blob, struct ls_pcie *pcie,
126 u32 devid, u32 streamid)
127{
128 u32 *prop;
129 u32 iommu_map[4];
130 int nodeoffset;
131 int lenp;
Bharat Bhushan4b97a822017-08-31 13:26:46 +0530132 uint svr;
133 char *compat = NULL;
Bharat Bhushan78be6222017-03-22 12:12:33 +0530134
135 /* find pci controller node */
136 nodeoffset = fdt_node_offset_by_compat_reg(blob, "fsl,ls-pcie",
137 pcie->dbi_res.start);
138 if (nodeoffset < 0) {
139#ifdef CONFIG_FSL_PCIE_COMPAT /* Compatible with older version of dts node */
Bharat Bhushan4b97a822017-08-31 13:26:46 +0530140 svr = (get_svr() >> SVR_VAR_PER_SHIFT) & 0xFFFFFE;
141 if (svr == SVR_LS2088A || svr == SVR_LS2084A ||
142 svr == SVR_LS2048A || svr == SVR_LS2044A ||
143 svr == SVR_LS2081A || svr == SVR_LS2041A)
144 compat = "fsl,ls2088a-pcie";
145 else
146 compat = CONFIG_FSL_PCIE_COMPAT;
147
148 if (compat)
149 nodeoffset = fdt_node_offset_by_compat_reg(blob,
150 compat, pcie->dbi_res.start);
151#endif
Bharat Bhushan78be6222017-03-22 12:12:33 +0530152 if (nodeoffset < 0)
153 return;
Bharat Bhushan78be6222017-03-22 12:12:33 +0530154 }
155
156 /* get phandle to iommu controller */
157 prop = fdt_getprop_w(blob, nodeoffset, "iommu-map", &lenp);
158 if (prop == NULL) {
159 debug("\n%s: ERROR: missing iommu-map: PCIe%d\n",
160 __func__, pcie->idx);
161 return;
162 }
163
164 /* set iommu-map row */
165 iommu_map[0] = cpu_to_fdt32(devid);
166 iommu_map[1] = *++prop;
167 iommu_map[2] = cpu_to_fdt32(streamid);
168 iommu_map[3] = cpu_to_fdt32(1);
169
170 if (devid == 0) {
171 fdt_setprop_inplace(blob, nodeoffset, "iommu-map",
172 iommu_map, 16);
173 } else {
174 fdt_appendprop(blob, nodeoffset, "iommu-map", iommu_map, 16);
175 }
176}
177
Minghuan Lian80afc632016-12-13 14:54:17 +0800178static void fdt_fixup_pcie(void *blob)
179{
180 struct udevice *dev, *bus;
181 struct ls_pcie *pcie;
182 int streamid;
183 int index;
184 pci_dev_t bdf;
185
186 /* Scan all known buses */
187 for (pci_find_first_device(&dev);
188 dev;
189 pci_find_next_device(&dev)) {
190 for (bus = dev; device_is_on_pci_bus(bus);)
191 bus = bus->parent;
192 pcie = dev_get_priv(bus);
193
194 streamid = ls_pcie_next_streamid();
195 if (streamid < 0) {
196 debug("ERROR: no stream ids free\n");
197 continue;
198 }
199
200 index = ls_pcie_next_lut_index(pcie);
201 if (index < 0) {
202 debug("ERROR: no LUT indexes free\n");
203 continue;
204 }
205
206 /* the DT fixup must be relative to the hose first_busno */
207 bdf = dm_pci_get_bdf(dev) - PCI_BDF(bus->seq, 0, 0);
208 /* map PCI b.d.f to streamID in LUT */
209 ls_pcie_lut_set_mapping(pcie, index, bdf >> 8,
210 streamid);
211 /* update msi-map in device tree */
212 fdt_pcie_set_msi_map_entry(blob, pcie, bdf >> 8,
213 streamid);
Bharat Bhushan78be6222017-03-22 12:12:33 +0530214 /* update iommu-map in device tree */
215 fdt_pcie_set_iommu_map_entry(blob, pcie, bdf >> 8,
216 streamid);
Minghuan Lian80afc632016-12-13 14:54:17 +0800217 }
218}
219#endif
220
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800221static void ft_pcie_rc_fix(void *blob, struct ls_pcie *pcie)
Minghuan Lian80afc632016-12-13 14:54:17 +0800222{
223 int off;
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +0800224 uint svr;
225 char *compat = NULL;
Minghuan Lian80afc632016-12-13 14:54:17 +0800226
227 off = fdt_node_offset_by_compat_reg(blob, "fsl,ls-pcie",
228 pcie->dbi_res.start);
229 if (off < 0) {
Hou Zhiqiang19538f32016-12-13 14:54:24 +0800230#ifdef CONFIG_FSL_PCIE_COMPAT /* Compatible with older version of dts node */
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +0800231 svr = (get_svr() >> SVR_VAR_PER_SHIFT) & 0xFFFFFE;
232 if (svr == SVR_LS2088A || svr == SVR_LS2084A ||
Priyanka Jaine809e742017-04-27 15:08:06 +0530233 svr == SVR_LS2048A || svr == SVR_LS2044A ||
234 svr == SVR_LS2081A || svr == SVR_LS2041A)
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +0800235 compat = "fsl,ls2088a-pcie";
236 else
237 compat = CONFIG_FSL_PCIE_COMPAT;
238 if (compat)
239 off = fdt_node_offset_by_compat_reg(blob,
240 compat, pcie->dbi_res.start);
241#endif
Minghuan Lian80afc632016-12-13 14:54:17 +0800242 if (off < 0)
243 return;
Minghuan Lian80afc632016-12-13 14:54:17 +0800244 }
245
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800246 if (pcie->enabled && pcie->mode == PCI_HEADER_TYPE_BRIDGE)
Minghuan Lian80afc632016-12-13 14:54:17 +0800247 fdt_set_node_status(blob, off, FDT_STATUS_OKAY, 0);
248 else
249 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
250}
251
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800252static void ft_pcie_ep_fix(void *blob, struct ls_pcie *pcie)
253{
254 int off;
255
256 off = fdt_node_offset_by_compat_reg(blob, "fsl,ls-pcie-ep",
257 pcie->dbi_res.start);
258 if (off < 0)
259 return;
260
261 if (pcie->enabled && pcie->mode == PCI_HEADER_TYPE_NORMAL)
262 fdt_set_node_status(blob, off, FDT_STATUS_OKAY, 0);
263 else
264 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
265}
266
267static void ft_pcie_ls_setup(void *blob, struct ls_pcie *pcie)
268{
269 ft_pcie_ep_fix(blob, pcie);
270 ft_pcie_rc_fix(blob, pcie);
271}
272
Minghuan Lian80afc632016-12-13 14:54:17 +0800273/* Fixup Kernel DT for PCIe */
274void ft_pci_setup(void *blob, bd_t *bd)
275{
276 struct ls_pcie *pcie;
277
278 list_for_each_entry(pcie, &ls_pcie_list, list)
279 ft_pcie_ls_setup(blob, pcie);
280
Bharat Bhushan47d17362017-03-22 12:06:30 +0530281#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2)
Minghuan Lian80afc632016-12-13 14:54:17 +0800282 fdt_fixup_pcie(blob);
283#endif
284}
Minghuan Lian80afc632016-12-13 14:54:17 +0800285
Hou Zhiqianga7294ab2016-12-13 14:54:16 +0800286#else /* !CONFIG_OF_BOARD_SETUP */
287void ft_pci_setup(void *blob, bd_t *bd)
288{
289}
290#endif