blob: 148b5d17ed053bf3c7ef6df550a5fbfd36d82a42 [file] [log] [blame]
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +00001// SPDX-License-Identifier: GPL-2.0+ OR X11
2/*
Wasim Khan1185b222020-01-06 12:05:57 +00003 * Copyright 2018-2020 NXP
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +00004 *
5 * PCIe Gen4 driver for NXP Layerscape SoCs
6 * Author: Hou Zhiqiang <Minder.Hou@gmail.com>
7 *
8 */
9
10#include <common.h>
Simon Glass51a4a852020-07-19 10:15:49 -060011#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +000013#include <pci.h>
14#include <asm/arch/fsl_serdes.h>
15#include <asm/io.h>
16#include <errno.h>
17#ifdef CONFIG_OF_BOARD_SETUP
18#include <linux/libfdt.h>
19#include <fdt_support.h>
20#ifdef CONFIG_ARM
21#include <asm/arch/clock.h>
22#endif
23#include "pcie_layerscape_gen4.h"
Wasim Khan1185b222020-01-06 12:05:57 +000024#include "pcie_layerscape_fixup_common.h"
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +000025
26#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2)
27/*
28 * Return next available LUT index.
29 */
30static int ls_pcie_g4_next_lut_index(struct ls_pcie_g4 *pcie)
31{
32 if (pcie->next_lut_index < PCIE_LUT_ENTRY_COUNT)
33 return pcie->next_lut_index++;
34
35 return -ENOSPC; /* LUT is full */
36}
37
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +000038/*
39 * Program a single LUT entry
40 */
41static void ls_pcie_g4_lut_set_mapping(struct ls_pcie_g4 *pcie, int index,
42 u32 devid, u32 streamid)
43{
44 /* leave mask as all zeroes, want to match all bits */
45 lut_writel(pcie, devid << 16, PCIE_LUT_UDR(index));
46 lut_writel(pcie, streamid | PCIE_LUT_ENABLE, PCIE_LUT_LDR(index));
47}
48
49/*
50 * An msi-map is a property to be added to the pci controller
51 * node. It is a table, where each entry consists of 4 fields
52 * e.g.:
53 *
54 * msi-map = <[devid] [phandle-to-msi-ctrl] [stream-id] [count]
55 * [devid] [phandle-to-msi-ctrl] [stream-id] [count]>;
56 */
Wasim Khan0b964b02019-11-15 09:23:37 +000057static void fdt_pcie_set_msi_map_entry_ls_gen4(void *blob,
58 struct ls_pcie_g4 *pcie,
59 u32 devid, u32 streamid)
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +000060{
61 u32 *prop;
62 u32 phandle;
63 int nodeoff;
64
65#ifdef CONFIG_FSL_PCIE_COMPAT
66 nodeoff = fdt_node_offset_by_compat_reg(blob, CONFIG_FSL_PCIE_COMPAT,
67 pcie->ccsr_res.start);
68#else
69#error "No CONFIG_FSL_PCIE_COMPAT defined"
70#endif
71 if (nodeoff < 0) {
72 debug("%s: ERROR: failed to find pcie compatiable\n", __func__);
73 return;
74 }
75
76 /* get phandle to MSI controller */
77 prop = (u32 *)fdt_getprop(blob, nodeoff, "msi-parent", 0);
78 if (!prop) {
79 debug("\n%s: ERROR: missing msi-parent: PCIe%d\n",
80 __func__, pcie->idx);
81 return;
82 }
83 phandle = fdt32_to_cpu(*prop);
84
85 /* set one msi-map row */
86 fdt_appendprop_u32(blob, nodeoff, "msi-map", devid);
87 fdt_appendprop_u32(blob, nodeoff, "msi-map", phandle);
88 fdt_appendprop_u32(blob, nodeoff, "msi-map", streamid);
89 fdt_appendprop_u32(blob, nodeoff, "msi-map", 1);
90}
91
92/*
93 * An iommu-map is a property to be added to the pci controller
94 * node. It is a table, where each entry consists of 4 fields
95 * e.g.:
96 *
97 * iommu-map = <[devid] [phandle-to-iommu-ctrl] [stream-id] [count]
98 * [devid] [phandle-to-iommu-ctrl] [stream-id] [count]>;
99 */
Wasim Khan0b964b02019-11-15 09:23:37 +0000100static void fdt_pcie_set_iommu_map_entry_ls_gen4(void *blob,
101 struct ls_pcie_g4 *pcie,
102 u32 devid, u32 streamid)
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000103{
104 u32 *prop;
105 u32 iommu_map[4];
106 int nodeoff;
107 int lenp;
108
109#ifdef CONFIG_FSL_PCIE_COMPAT
110 nodeoff = fdt_node_offset_by_compat_reg(blob, CONFIG_FSL_PCIE_COMPAT,
111 pcie->ccsr_res.start);
112#else
113#error "No CONFIG_FSL_PCIE_COMPAT defined"
114#endif
115 if (nodeoff < 0) {
116 debug("%s: ERROR: failed to find pcie compatiable\n", __func__);
117 return;
118 }
119
120 /* get phandle to iommu controller */
121 prop = fdt_getprop_w(blob, nodeoff, "iommu-map", &lenp);
122 if (!prop) {
123 debug("\n%s: ERROR: missing iommu-map: PCIe%d\n",
124 __func__, pcie->idx);
125 return;
126 }
127
128 /* set iommu-map row */
129 iommu_map[0] = cpu_to_fdt32(devid);
130 iommu_map[1] = *++prop;
131 iommu_map[2] = cpu_to_fdt32(streamid);
132 iommu_map[3] = cpu_to_fdt32(1);
133
134 if (devid == 0)
135 fdt_setprop_inplace(blob, nodeoff, "iommu-map", iommu_map, 16);
136 else
137 fdt_appendprop(blob, nodeoff, "iommu-map", iommu_map, 16);
138}
139
Wasim Khan0b964b02019-11-15 09:23:37 +0000140static void fdt_fixup_pcie_ls_gen4(void *blob)
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000141{
142 struct udevice *dev, *bus;
143 struct ls_pcie_g4 *pcie;
144 int streamid;
145 int index;
146 pci_dev_t bdf;
147
148 /* Scan all known buses */
149 for (pci_find_first_device(&dev); dev; pci_find_next_device(&dev)) {
150 for (bus = dev; device_is_on_pci_bus(bus);)
151 bus = bus->parent;
152 pcie = dev_get_priv(bus);
153
Wasim Khand20eb7a2020-01-06 12:05:59 +0000154 streamid = pcie_next_streamid(pcie->stream_id_cur, pcie->idx);
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000155 if (streamid < 0) {
156 debug("ERROR: no stream ids free\n");
157 continue;
Wasim Khand20eb7a2020-01-06 12:05:59 +0000158 } else {
159 pcie->stream_id_cur++;
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000160 }
161
162 index = ls_pcie_g4_next_lut_index(pcie);
163 if (index < 0) {
164 debug("ERROR: no LUT indexes free\n");
165 continue;
166 }
167
168 /* the DT fixup must be relative to the hose first_busno */
169 bdf = dm_pci_get_bdf(dev) - PCI_BDF(bus->seq, 0, 0);
170 /* map PCI b.d.f to streamID in LUT */
171 ls_pcie_g4_lut_set_mapping(pcie, index, bdf >> 8, streamid);
172 /* update msi-map in device tree */
Wasim Khan0b964b02019-11-15 09:23:37 +0000173 fdt_pcie_set_msi_map_entry_ls_gen4(blob, pcie, bdf >> 8,
174 streamid);
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000175 /* update iommu-map in device tree */
Wasim Khan0b964b02019-11-15 09:23:37 +0000176 fdt_pcie_set_iommu_map_entry_ls_gen4(blob, pcie, bdf >> 8,
177 streamid);
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000178 }
179}
180#endif
181
182static void ft_pcie_ep_layerscape_gen4_fix(void *blob, struct ls_pcie_g4 *pcie)
183{
184 int off;
185
Pankaj Bansal63618e72019-11-30 13:14:10 +0000186 off = fdt_node_offset_by_compat_reg(blob, CONFIG_FSL_PCIE_EP_COMPAT,
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000187 pcie->ccsr_res.start);
188
189 if (off < 0) {
190 debug("%s: ERROR: failed to find pcie compatiable\n",
191 __func__);
192 return;
193 }
194
195 if (pcie->enabled && pcie->mode == PCI_HEADER_TYPE_NORMAL)
196 fdt_set_node_status(blob, off, FDT_STATUS_OKAY, 0);
197 else
198 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
199}
200
201static void ft_pcie_rc_layerscape_gen4_fix(void *blob, struct ls_pcie_g4 *pcie)
202{
203 int off;
204
205#ifdef CONFIG_FSL_PCIE_COMPAT
206 off = fdt_node_offset_by_compat_reg(blob, CONFIG_FSL_PCIE_COMPAT,
207 pcie->ccsr_res.start);
208#else
209#error "No CONFIG_FSL_PCIE_COMPAT defined"
210#endif
211 if (off < 0) {
212 debug("%s: ERROR: failed to find pcie compatiable\n", __func__);
213 return;
214 }
215
216 if (pcie->enabled && pcie->mode == PCI_HEADER_TYPE_BRIDGE)
217 fdt_set_node_status(blob, off, FDT_STATUS_OKAY, 0);
218 else
219 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
220}
221
222static void ft_pcie_layerscape_gen4_setup(void *blob, struct ls_pcie_g4 *pcie)
223{
224 ft_pcie_rc_layerscape_gen4_fix(blob, pcie);
225 ft_pcie_ep_layerscape_gen4_fix(blob, pcie);
226}
227
228/* Fixup Kernel DT for PCIe */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900229void ft_pci_setup_ls_gen4(void *blob, struct bd_info *bd)
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000230{
231 struct ls_pcie_g4 *pcie;
232
233 list_for_each_entry(pcie, &ls_pcie_g4_list, list)
234 ft_pcie_layerscape_gen4_setup(blob, pcie);
235
236#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2)
Wasim Khan0b964b02019-11-15 09:23:37 +0000237 fdt_fixup_pcie_ls_gen4(blob);
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000238#endif
239}
240
241#else /* !CONFIG_OF_BOARD_SETUP */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900242void ft_pci_setup_ls_gen4(void *blob, struct bd_info *bd)
Hou Zhiqiang1d341bc2019-04-08 10:15:54 +0000243{
244}
245#endif