1 // SPDX-License-Identifier: GPL-2.0+
4 * Layerscape PCIe EP driver
8 #include <asm/arch/fsl_serdes.h>
10 #include <dm/devres.h>
14 #include <linux/sizes.h>
15 #include <linux/log2.h>
16 #include "pcie_layerscape.h"
18 DECLARE_GLOBAL_DATA_PTR;
20 static void ls_pcie_ep_enable_cfg(struct ls_pcie_ep *pcie_ep)
22 struct ls_pcie *pcie = pcie_ep->pcie;
25 config = ctrl_readl(pcie, PCIE_PF_CONFIG);
26 config |= PCIE_CONFIG_READY;
27 ctrl_writel(pcie, config, PCIE_PF_CONFIG);
30 static int ls_ep_set_bar(struct udevice *dev, uint fn, struct pci_bar *ep_bar)
32 struct ls_pcie_ep *pcie_ep = dev_get_priv(dev);
33 struct ls_pcie *pcie = pcie_ep->pcie;
34 dma_addr_t bar_phys = ep_bar->phys_addr;
35 enum pci_barno bar = ep_bar->barno;
36 u32 reg = PCI_BASE_ADDRESS_0 + (4 * bar);
37 int flags = ep_bar->flags;
42 /* BAR size is 2^(aperture + 11) */
43 size = max_t(size_t, ep_bar->size, FSL_PCIE_EP_MIN_APERTURE);
45 if (!(flags & PCI_BASE_ADDRESS_SPACE))
46 type = PCIE_ATU_TYPE_MEM;
48 type = PCIE_ATU_TYPE_IO;
50 ls_pcie_atu_inbound_set(pcie, fn, 0, type, idx, bar, bar_phys);
52 dbi_writel(pcie, lower_32_bits(size - 1), reg + PCIE_NO_SRIOV_BAR_BASE);
53 dbi_writel(pcie, flags, reg);
55 if (flags & PCI_BASE_ADDRESS_MEM_TYPE_64) {
56 dbi_writel(pcie, upper_32_bits(size - 1),
57 reg + 4 + PCIE_NO_SRIOV_BAR_BASE);
58 dbi_writel(pcie, 0, reg + 4);
64 static struct pci_ep_ops ls_pcie_ep_ops = {
65 .set_bar = ls_ep_set_bar,
68 static void ls_pcie_ep_setup_atu(struct ls_pcie_ep *pcie_ep, u32 pf)
70 struct ls_pcie *pcie = pcie_ep->pcie;
74 phys = CONFIG_SYS_PCI_EP_MEMORY_BASE + pf * SZ_64M;
76 phys = ALIGN(phys, PCIE_BAR0_SIZE);
77 /* ATU 0 : INBOUND : map BAR0 */
78 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
79 0 + pf * BAR_NUM, 0, phys);
80 /* ATU 1 : INBOUND : map BAR1 */
81 phys = ALIGN(phys + PCIE_BAR0_SIZE, PCIE_BAR1_SIZE);
82 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
83 1 + pf * BAR_NUM, 1, phys);
84 /* ATU 2 : INBOUND : map BAR2 */
85 phys = ALIGN(phys + PCIE_BAR1_SIZE, PCIE_BAR2_SIZE);
86 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
87 2 + pf * BAR_NUM, 2, phys);
88 /* ATU 3 : INBOUND : map BAR2 */
89 phys = ALIGN(phys + PCIE_BAR2_SIZE, PCIE_BAR4_SIZE);
90 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
91 3 + pf * BAR_NUM, 4, phys);
93 if (pcie_ep->sriov_flag) {
95 /* ATU 4 : INBOUND : map BAR0 */
96 phys = ALIGN(phys + PCIE_BAR4_SIZE, PCIE_BAR0_SIZE);
97 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
98 4 + pf * BAR_NUM, 0, phys);
99 /* ATU 5 : INBOUND : map BAR1 */
100 phys = ALIGN(phys + PCIE_BAR0_SIZE * PCIE_VF_NUM,
102 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
103 5 + pf * BAR_NUM, 1, phys);
104 /* ATU 6 : INBOUND : map BAR2 */
105 phys = ALIGN(phys + PCIE_BAR1_SIZE * PCIE_VF_NUM,
107 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
108 6 + pf * BAR_NUM, 2, phys);
109 /* ATU 7 : INBOUND : map BAR4 */
110 phys = ALIGN(phys + PCIE_BAR2_SIZE * PCIE_VF_NUM,
112 ls_pcie_atu_inbound_set(pcie, pf, vf_flag, PCIE_ATU_TYPE_MEM,
113 7 + pf * BAR_NUM, 4, phys);
116 /* ATU: OUTBOUND : map MEM */
117 ls_pcie_atu_outbound_set(pcie, pf, PCIE_ATU_TYPE_MEM,
118 (u64)pcie_ep->addr_res.start +
119 pf * CONFIG_SYS_PCI_MEMORY_SIZE,
120 0, CONFIG_SYS_PCI_MEMORY_SIZE);
123 /* BAR0 and BAR1 are 32bit BAR2 and BAR4 are 64bit */
124 static void ls_pcie_ep_setup_bar(void *bar_base, int bar, u32 size)
128 /* The least inbound window is 4KiB */
136 writel(mask, bar_base + PCI_BASE_ADDRESS_0);
139 writel(mask, bar_base + PCI_BASE_ADDRESS_1);
142 writel(mask, bar_base + PCI_BASE_ADDRESS_2);
143 writel(0, bar_base + PCI_BASE_ADDRESS_3);
146 writel(mask, bar_base + PCI_BASE_ADDRESS_4);
147 writel(0, bar_base + PCI_BASE_ADDRESS_5);
154 static void ls_pcie_ep_setup_bars(void *bar_base)
156 /* BAR0 - 32bit - MEM */
157 ls_pcie_ep_setup_bar(bar_base, 0, PCIE_BAR0_SIZE);
158 /* BAR1 - 32bit - MEM*/
159 ls_pcie_ep_setup_bar(bar_base, 1, PCIE_BAR1_SIZE);
160 /* BAR2 - 64bit - MEM */
161 ls_pcie_ep_setup_bar(bar_base, 2, PCIE_BAR2_SIZE);
162 /* BAR4 - 64bit - MEM */
163 ls_pcie_ep_setup_bar(bar_base, 4, PCIE_BAR4_SIZE);
166 static void ls_pcie_ep_setup_vf_bars(void *bar_base)
168 /* VF BAR0 MASK register at offset 0x19c*/
169 bar_base += PCIE_SRIOV_VFBAR0 - PCI_BASE_ADDRESS_0;
171 /* VF-BAR0 - 32bit - MEM */
172 ls_pcie_ep_setup_bar(bar_base, 0, PCIE_BAR0_SIZE);
173 /* VF-BAR1 - 32bit - MEM*/
174 ls_pcie_ep_setup_bar(bar_base, 1, PCIE_BAR1_SIZE);
175 /* VF-BAR2 - 64bit - MEM */
176 ls_pcie_ep_setup_bar(bar_base, 2, PCIE_BAR2_SIZE);
177 /* VF-BAR4 - 64bit - MEM */
178 ls_pcie_ep_setup_bar(bar_base, 4, PCIE_BAR4_SIZE);
181 static void ls_pcie_setup_ep(struct ls_pcie_ep *pcie_ep)
185 void *bar_base = NULL;
186 struct ls_pcie *pcie = pcie_ep->pcie;
188 sriov = readl(pcie->dbi + PCIE_SRIOV);
189 if (PCI_EXT_CAP_ID(sriov) == PCI_EXT_CAP_ID_SRIOV) {
190 pcie_ep->sriov_flag = 1;
191 for (pf = 0; pf < PCIE_PF_NUM; pf++) {
193 * The VF_BARn_REG register's Prefetchable and Type bit
194 * fields are overwritten by a write to VF's BAR Mask
195 * register. Before writing to the VF_BARn_MASK_REG
196 * register, write 0b to the PCIE_MISC_CONTROL_1_OFF
199 writel(0, pcie->dbi + PCIE_MISC_CONTROL_1_OFF);
201 bar_base = pcie->dbi +
202 PCIE_MASK_OFFSET(pcie_ep->cfg2_flag, pf,
203 pcie_ep->pf1_offset);
205 if (pcie_ep->cfg2_flag) {
207 PCIE_LCTRL0_VAL(pf, 0),
209 ls_pcie_ep_setup_bars(bar_base);
211 for (vf = 1; vf <= PCIE_VF_NUM; vf++) {
213 PCIE_LCTRL0_VAL(pf, vf),
215 ls_pcie_ep_setup_vf_bars(bar_base);
218 ls_pcie_ep_setup_bars(bar_base);
219 ls_pcie_ep_setup_vf_bars(bar_base);
222 ls_pcie_ep_setup_atu(pcie_ep, pf);
225 if (pcie_ep->cfg2_flag) /* Disable CFG2 */
226 ctrl_writel(pcie, 0, PCIE_PF_VF_CTRL);
228 ls_pcie_ep_setup_bars(pcie->dbi + PCIE_NO_SRIOV_BAR_BASE);
229 ls_pcie_ep_setup_atu(pcie_ep, 0);
232 ls_pcie_dump_atu(pcie, PCIE_ATU_REGION_NUM_SRIOV,
233 PCIE_ATU_REGION_INBOUND);
235 ls_pcie_ep_enable_cfg(pcie_ep);
238 static int ls_pcie_ep_probe(struct udevice *dev)
240 struct ls_pcie_ep *pcie_ep = dev_get_priv(dev);
241 struct ls_pcie *pcie;
246 pcie = devm_kmalloc(dev, sizeof(*pcie), GFP_KERNEL);
250 pcie_ep->pcie = pcie;
252 pcie->dbi = (void __iomem *)devfdt_get_addr_index(dev, 0);
256 pcie->ctrl = (void __iomem *)devfdt_get_addr_index(dev, 1);
260 ret = fdt_get_named_resource(gd->fdt_blob, dev_of_offset(dev),
262 "addr_space", &pcie_ep->addr_res);
264 printf("%s: resource \"addr_space\" not found\n", dev->name);
268 pcie->idx = ((unsigned long)pcie->dbi - PCIE_SYS_BASE_ADDR) /
271 pcie->big_endian = fdtdec_get_bool(gd->fdt_blob, dev_of_offset(dev),
274 svr = SVR_SOC_VER(get_svr());
276 if (svr == SVR_LX2160A || svr == SVR_LX2162A ||
277 svr == SVR_LX2120A || svr == SVR_LX2080A ||
278 svr == SVR_LX2122A || svr == SVR_LX2082A)
279 pcie_ep->pf1_offset = LX2160_PCIE_PF1_OFFSET;
281 pcie_ep->pf1_offset = LS_PCIE_PF1_OFFSET;
283 if (svr == SVR_LS2080A || svr == SVR_LS2085A)
284 pcie_ep->cfg2_flag = 1;
286 pcie_ep->cfg2_flag = 0;
288 pcie->mode = readb(pcie->dbi + PCI_HEADER_TYPE) & 0x7f;
289 if (pcie->mode != PCI_HEADER_TYPE_NORMAL)
292 pcie_ep->max_functions = fdtdec_get_int(gd->fdt_blob,
295 pcie_ep->num_ib_wins = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
296 "num-ib-windows", 8);
297 pcie_ep->num_ob_wins = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
298 "num-ob-windows", 8);
300 printf("PCIe%u: %s %s", PCIE_SRDS_PRTCL(pcie->idx), dev->name,
302 ls_pcie_setup_ep(pcie_ep);
304 if (!ls_pcie_link_up(pcie)) {
305 /* Let the user know there's no PCIe link */
306 printf(": no link\n");
310 /* Print the negotiated PCIe link width */
311 link_sta = readw(pcie->dbi + PCIE_LINK_STA);
312 printf(": x%d gen%d\n", (link_sta & PCIE_LINK_WIDTH_MASK) >> 4,
313 link_sta & PCIE_LINK_SPEED_MASK);
318 static int ls_pcie_ep_remove(struct udevice *dev)
323 const struct udevice_id ls_pcie_ep_ids[] = {
324 { .compatible = "fsl,ls-pcie-ep" },
328 U_BOOT_DRIVER(pci_layerscape_ep) = {
329 .name = "pci_layerscape_ep",
331 .of_match = ls_pcie_ep_ids,
332 .ops = &ls_pcie_ep_ops,
333 .probe = ls_pcie_ep_probe,
334 .remove = ls_pcie_ep_remove,
335 .priv_auto_alloc_size = sizeof(struct ls_pcie_ep),