blob: 1709cd3d230d3fba8cb39cb3994648d896f57547 [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/*
Wasim Khan1185b222020-01-06 12:05:57 +00003 * Copyright 2017-2020 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>
Simon Glass51a4a852020-07-19 10:15:49 -06009#include <dm.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080012#include <pci.h>
13#include <asm/arch/fsl_serdes.h>
14#include <asm/io.h>
15#include <errno.h>
16#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080018#include <fdt_support.h>
Simon Glass6e2941d2017-05-17 08:23:06 -060019#ifdef CONFIG_ARM
20#include <asm/arch/clock.h>
21#endif
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080022#include "pcie_layerscape.h"
Wasim Khan1185b222020-01-06 12:05:57 +000023#include "pcie_layerscape_fixup_common.h"
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080024
Bharat Bhushan47d17362017-03-22 12:06:30 +053025#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2)
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080026/*
27 * Return next available LUT index.
28 */
Xiaowei Bao118e58e2020-07-09 23:31:33 +080029static int ls_pcie_next_lut_index(struct ls_pcie_rc *pcie_rc)
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080030{
Xiaowei Bao118e58e2020-07-09 23:31:33 +080031 if (pcie_rc->next_lut_index < PCIE_LUT_ENTRY_COUNT)
32 return pcie_rc->next_lut_index++;
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080033 else
34 return -ENOSPC; /* LUT is full */
35}
36
Xiaowei Bao118e58e2020-07-09 23:31:33 +080037static void lut_writel(struct ls_pcie_rc *pcie_rc, unsigned int value,
Minghuan Lian80afc632016-12-13 14:54:17 +080038 unsigned int offset)
39{
Xiaowei Bao118e58e2020-07-09 23:31:33 +080040 struct ls_pcie *pcie = pcie_rc->pcie;
41
Minghuan Lian80afc632016-12-13 14:54:17 +080042 if (pcie->big_endian)
43 out_be32(pcie->lut + offset, value);
44 else
45 out_le32(pcie->lut + offset, value);
46}
47
48/*
49 * Program a single LUT entry
50 */
Xiaowei Bao118e58e2020-07-09 23:31:33 +080051static void ls_pcie_lut_set_mapping(struct ls_pcie_rc *pcie_rc, int index,
52 u32 devid, u32 streamid)
Minghuan Lian80afc632016-12-13 14:54:17 +080053{
54 /* leave mask as all zeroes, want to match all bits */
Xiaowei Bao118e58e2020-07-09 23:31:33 +080055 lut_writel(pcie_rc, devid << 16, PCIE_LUT_UDR(index));
56 lut_writel(pcie_rc, streamid | PCIE_LUT_ENABLE, PCIE_LUT_LDR(index));
Minghuan Lian80afc632016-12-13 14:54:17 +080057}
58
59/*
60 * An msi-map is a property to be added to the pci controller
61 * node. It is a table, where each entry consists of 4 fields
62 * e.g.:
63 *
64 * msi-map = <[devid] [phandle-to-msi-ctrl] [stream-id] [count]
65 * [devid] [phandle-to-msi-ctrl] [stream-id] [count]>;
66 */
Xiaowei Bao118e58e2020-07-09 23:31:33 +080067static void fdt_pcie_set_msi_map_entry_ls(void *blob,
68 struct ls_pcie_rc *pcie_rc,
Wasim Khan485304a2019-11-15 09:23:35 +000069 u32 devid, u32 streamid)
Minghuan Lian80afc632016-12-13 14:54:17 +080070{
71 u32 *prop;
72 u32 phandle;
73 int nodeoffset;
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +080074 uint svr;
75 char *compat = NULL;
Xiaowei Bao118e58e2020-07-09 23:31:33 +080076 struct ls_pcie *pcie = pcie_rc->pcie;
Minghuan Lian80afc632016-12-13 14:54:17 +080077
78 /* find pci controller node */
79 nodeoffset = fdt_node_offset_by_compat_reg(blob, "fsl,ls-pcie",
Xiaowei Bao118e58e2020-07-09 23:31:33 +080080 pcie_rc->dbi_res.start);
Minghuan Lian80afc632016-12-13 14:54:17 +080081 if (nodeoffset < 0) {
Hou Zhiqiang19538f32016-12-13 14:54:24 +080082#ifdef CONFIG_FSL_PCIE_COMPAT /* Compatible with older version of dts node */
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +080083 svr = (get_svr() >> SVR_VAR_PER_SHIFT) & 0xFFFFFE;
84 if (svr == SVR_LS2088A || svr == SVR_LS2084A ||
Priyanka Jaine809e742017-04-27 15:08:06 +053085 svr == SVR_LS2048A || svr == SVR_LS2044A ||
86 svr == SVR_LS2081A || svr == SVR_LS2041A)
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +080087 compat = "fsl,ls2088a-pcie";
88 else
89 compat = CONFIG_FSL_PCIE_COMPAT;
90 if (compat)
91 nodeoffset = fdt_node_offset_by_compat_reg(blob,
Xiaowei Bao118e58e2020-07-09 23:31:33 +080092 compat, pcie_rc->dbi_res.start);
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +080093#endif
Minghuan Lian80afc632016-12-13 14:54:17 +080094 if (nodeoffset < 0)
95 return;
Minghuan Lian80afc632016-12-13 14:54:17 +080096 }
97
98 /* get phandle to MSI controller */
99 prop = (u32 *)fdt_getprop(blob, nodeoffset, "msi-parent", 0);
100 if (prop == NULL) {
101 debug("\n%s: ERROR: missing msi-parent: PCIe%d\n",
102 __func__, pcie->idx);
103 return;
104 }
105 phandle = fdt32_to_cpu(*prop);
106
107 /* set one msi-map row */
108 fdt_appendprop_u32(blob, nodeoffset, "msi-map", devid);
109 fdt_appendprop_u32(blob, nodeoffset, "msi-map", phandle);
110 fdt_appendprop_u32(blob, nodeoffset, "msi-map", streamid);
111 fdt_appendprop_u32(blob, nodeoffset, "msi-map", 1);
112}
113
Bharat Bhushan78be6222017-03-22 12:12:33 +0530114/*
115 * An iommu-map is a property to be added to the pci controller
116 * node. It is a table, where each entry consists of 4 fields
117 * e.g.:
118 *
119 * iommu-map = <[devid] [phandle-to-iommu-ctrl] [stream-id] [count]
120 * [devid] [phandle-to-iommu-ctrl] [stream-id] [count]>;
121 */
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800122static void fdt_pcie_set_iommu_map_entry_ls(void *blob,
123 struct ls_pcie_rc *pcie_rc,
Wasim Khan485304a2019-11-15 09:23:35 +0000124 u32 devid, u32 streamid)
Bharat Bhushan78be6222017-03-22 12:12:33 +0530125{
126 u32 *prop;
127 u32 iommu_map[4];
128 int nodeoffset;
129 int lenp;
Bharat Bhushan4b97a822017-08-31 13:26:46 +0530130 uint svr;
131 char *compat = NULL;
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800132 struct ls_pcie *pcie = pcie_rc->pcie;
Bharat Bhushan78be6222017-03-22 12:12:33 +0530133
134 /* find pci controller node */
135 nodeoffset = fdt_node_offset_by_compat_reg(blob, "fsl,ls-pcie",
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800136 pcie_rc->dbi_res.start);
Bharat Bhushan78be6222017-03-22 12:12:33 +0530137 if (nodeoffset < 0) {
138#ifdef CONFIG_FSL_PCIE_COMPAT /* Compatible with older version of dts node */
Bharat Bhushan4b97a822017-08-31 13:26:46 +0530139 svr = (get_svr() >> SVR_VAR_PER_SHIFT) & 0xFFFFFE;
140 if (svr == SVR_LS2088A || svr == SVR_LS2084A ||
141 svr == SVR_LS2048A || svr == SVR_LS2044A ||
142 svr == SVR_LS2081A || svr == SVR_LS2041A)
143 compat = "fsl,ls2088a-pcie";
144 else
145 compat = CONFIG_FSL_PCIE_COMPAT;
146
147 if (compat)
148 nodeoffset = fdt_node_offset_by_compat_reg(blob,
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800149 compat, pcie_rc->dbi_res.start);
Bharat Bhushan4b97a822017-08-31 13:26:46 +0530150#endif
Bharat Bhushan78be6222017-03-22 12:12:33 +0530151 if (nodeoffset < 0)
152 return;
Bharat Bhushan78be6222017-03-22 12:12:33 +0530153 }
154
155 /* get phandle to iommu controller */
156 prop = fdt_getprop_w(blob, nodeoffset, "iommu-map", &lenp);
157 if (prop == NULL) {
158 debug("\n%s: ERROR: missing iommu-map: PCIe%d\n",
159 __func__, pcie->idx);
160 return;
161 }
162
163 /* set iommu-map row */
164 iommu_map[0] = cpu_to_fdt32(devid);
165 iommu_map[1] = *++prop;
166 iommu_map[2] = cpu_to_fdt32(streamid);
167 iommu_map[3] = cpu_to_fdt32(1);
168
169 if (devid == 0) {
170 fdt_setprop_inplace(blob, nodeoffset, "iommu-map",
171 iommu_map, 16);
172 } else {
173 fdt_appendprop(blob, nodeoffset, "iommu-map", iommu_map, 16);
174 }
175}
176
Wasim Khan485304a2019-11-15 09:23:35 +0000177static void fdt_fixup_pcie_ls(void *blob)
Minghuan Lian80afc632016-12-13 14:54:17 +0800178{
179 struct udevice *dev, *bus;
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800180 struct ls_pcie_rc *pcie_rc;
Minghuan Lian80afc632016-12-13 14:54:17 +0800181 int streamid;
182 int index;
183 pci_dev_t bdf;
184
185 /* Scan all known buses */
186 for (pci_find_first_device(&dev);
187 dev;
188 pci_find_next_device(&dev)) {
189 for (bus = dev; device_is_on_pci_bus(bus);)
190 bus = bus->parent;
Michael Walleb7585aa2020-08-04 00:16:33 +0200191
192 /* Only do the fixups for layerscape PCIe controllers */
193 if (!device_is_compatible(bus, "fsl,ls-pcie") &&
194 !device_is_compatible(bus, CONFIG_FSL_PCIE_COMPAT))
195 continue;
196
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800197 pcie_rc = dev_get_priv(bus);
Minghuan Lian80afc632016-12-13 14:54:17 +0800198
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800199 streamid = pcie_next_streamid(pcie_rc->stream_id_cur,
200 pcie_rc->pcie->idx);
Minghuan Lian80afc632016-12-13 14:54:17 +0800201 if (streamid < 0) {
202 debug("ERROR: no stream ids free\n");
203 continue;
Wasim Khand20eb7a2020-01-06 12:05:59 +0000204 } else {
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800205 pcie_rc->stream_id_cur++;
Minghuan Lian80afc632016-12-13 14:54:17 +0800206 }
207
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800208 index = ls_pcie_next_lut_index(pcie_rc);
Minghuan Lian80afc632016-12-13 14:54:17 +0800209 if (index < 0) {
210 debug("ERROR: no LUT indexes free\n");
211 continue;
212 }
213
214 /* the DT fixup must be relative to the hose first_busno */
215 bdf = dm_pci_get_bdf(dev) - PCI_BDF(bus->seq, 0, 0);
216 /* map PCI b.d.f to streamID in LUT */
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800217 ls_pcie_lut_set_mapping(pcie_rc, index, bdf >> 8,
Minghuan Lian80afc632016-12-13 14:54:17 +0800218 streamid);
219 /* update msi-map in device tree */
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800220 fdt_pcie_set_msi_map_entry_ls(blob, pcie_rc, bdf >> 8,
Wasim Khan485304a2019-11-15 09:23:35 +0000221 streamid);
Bharat Bhushan78be6222017-03-22 12:12:33 +0530222 /* update iommu-map in device tree */
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800223 fdt_pcie_set_iommu_map_entry_ls(blob, pcie_rc, bdf >> 8,
Wasim Khan485304a2019-11-15 09:23:35 +0000224 streamid);
Minghuan Lian80afc632016-12-13 14:54:17 +0800225 }
Wasim Khan9c2969e2020-01-06 12:06:00 +0000226 pcie_board_fix_fdt(blob);
Minghuan Lian80afc632016-12-13 14:54:17 +0800227}
228#endif
229
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800230static void ft_pcie_rc_fix(void *blob, struct ls_pcie_rc *pcie_rc)
Minghuan Lian80afc632016-12-13 14:54:17 +0800231{
232 int off;
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +0800233 uint svr;
234 char *compat = NULL;
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800235 struct ls_pcie *pcie = pcie_rc->pcie;
Minghuan Lian80afc632016-12-13 14:54:17 +0800236
237 off = fdt_node_offset_by_compat_reg(blob, "fsl,ls-pcie",
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800238 pcie_rc->dbi_res.start);
Minghuan Lian80afc632016-12-13 14:54:17 +0800239 if (off < 0) {
Hou Zhiqiang19538f32016-12-13 14:54:24 +0800240#ifdef CONFIG_FSL_PCIE_COMPAT /* Compatible with older version of dts node */
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +0800241 svr = (get_svr() >> SVR_VAR_PER_SHIFT) & 0xFFFFFE;
242 if (svr == SVR_LS2088A || svr == SVR_LS2084A ||
Priyanka Jaine809e742017-04-27 15:08:06 +0530243 svr == SVR_LS2048A || svr == SVR_LS2044A ||
244 svr == SVR_LS2081A || svr == SVR_LS2041A)
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +0800245 compat = "fsl,ls2088a-pcie";
246 else
247 compat = CONFIG_FSL_PCIE_COMPAT;
248 if (compat)
249 off = fdt_node_offset_by_compat_reg(blob,
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800250 compat, pcie_rc->dbi_res.start);
Hou Zhiqiang0aaa1a92017-03-03 12:35:10 +0800251#endif
Minghuan Lian80afc632016-12-13 14:54:17 +0800252 if (off < 0)
253 return;
Minghuan Lian80afc632016-12-13 14:54:17 +0800254 }
255
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800256 if (pcie_rc->enabled && pcie->mode == PCI_HEADER_TYPE_BRIDGE)
Minghuan Lian80afc632016-12-13 14:54:17 +0800257 fdt_set_node_status(blob, off, FDT_STATUS_OKAY, 0);
258 else
259 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
260}
261
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800262static void ft_pcie_ep_fix(void *blob, struct ls_pcie_rc *pcie_rc)
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800263{
264 int off;
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800265 struct ls_pcie *pcie = pcie_rc->pcie;
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800266
Pankaj Bansal63618e72019-11-30 13:14:10 +0000267 off = fdt_node_offset_by_compat_reg(blob, CONFIG_FSL_PCIE_EP_COMPAT,
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800268 pcie_rc->dbi_res.start);
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800269 if (off < 0)
270 return;
271
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800272 if (pcie_rc->enabled && pcie->mode == PCI_HEADER_TYPE_NORMAL)
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800273 fdt_set_node_status(blob, off, FDT_STATUS_OKAY, 0);
274 else
275 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
276}
277
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800278static void ft_pcie_ls_setup(void *blob, struct ls_pcie_rc *pcie_rc)
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800279{
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800280 ft_pcie_ep_fix(blob, pcie_rc);
281 ft_pcie_rc_fix(blob, pcie_rc);
Xiaowei Bao59a557f2018-10-26 09:56:26 +0800282}
283
Minghuan Lian80afc632016-12-13 14:54:17 +0800284/* Fixup Kernel DT for PCIe */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900285void ft_pci_setup_ls(void *blob, struct bd_info *bd)
Minghuan Lian80afc632016-12-13 14:54:17 +0800286{
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800287 struct ls_pcie_rc *pcie_rc;
Minghuan Lian80afc632016-12-13 14:54:17 +0800288
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800289 list_for_each_entry(pcie_rc, &ls_pcie_list, list)
290 ft_pcie_ls_setup(blob, pcie_rc);
Minghuan Lian80afc632016-12-13 14:54:17 +0800291
Bharat Bhushan47d17362017-03-22 12:06:30 +0530292#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2)
Wasim Khan485304a2019-11-15 09:23:35 +0000293 fdt_fixup_pcie_ls(blob);
Minghuan Lian80afc632016-12-13 14:54:17 +0800294#endif
295}
Minghuan Lian80afc632016-12-13 14:54:17 +0800296
Hou Zhiqianga7294ab2016-12-13 14:54:16 +0800297#else /* !CONFIG_OF_BOARD_SETUP */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900298void ft_pci_setup_ls(void *blob, struct bd_info *bd)
Hou Zhiqianga7294ab2016-12-13 14:54:16 +0800299{
300}
301#endif