1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2008-2011 Freescale Semiconductor, Inc.
9 #include <linux/libfdt.h>
10 #include <fdt_support.h>
12 #include <asm/processor.h>
15 #include <asm/fsl_portals.h>
16 #include <asm/fsl_liodn.h>
18 #include <asm/arch-fsl-layerscape/fsl_portals.h>
19 #include <asm/arch-fsl-layerscape/fsl_icid.h>
21 #include <fsl_qbman.h>
23 #define MAX_BPORTALS (CFG_SYS_BMAN_CINH_SIZE / CFG_SYS_BMAN_SP_CINH_SIZE)
24 #define MAX_QPORTALS (CFG_SYS_QMAN_CINH_SIZE / CFG_SYS_QMAN_SP_CINH_SIZE)
25 void setup_qbman_portals(void)
27 void __iomem *bpaddr = (void *)CFG_SYS_BMAN_CINH_BASE +
28 CFG_SYS_BMAN_SWP_ISDR_REG;
29 void __iomem *qpaddr = (void *)CFG_SYS_QMAN_CINH_BASE +
30 CFG_SYS_QMAN_SWP_ISDR_REG;
31 struct ccsr_qman *qman = (void *)CFG_SYS_FSL_QMAN_ADDR;
33 /* Set the Qman initiator BAR to match the LAW (for DQRR stashing) */
34 #ifdef CONFIG_PHYS_64BIT
35 out_be32(&qman->qcsp_bare, (u32)(CFG_SYS_QMAN_MEM_PHYS >> 32));
37 out_be32(&qman->qcsp_bar, (u32)CFG_SYS_QMAN_MEM_PHYS);
38 #ifdef CONFIG_FSL_CORENET
41 for (i = 0; i < CFG_SYS_QMAN_NUM_PORTALS; i++) {
42 u8 sdest = qp_info[i].sdest;
43 u16 fliodn = qp_info[i].fliodn;
44 u16 dliodn = qp_info[i].dliodn;
45 u16 liodn_off = qp_info[i].liodn_offset;
47 out_be32(&qman->qcsp[i].qcsp_lio_cfg, (liodn_off << 16) |
50 out_be32(&qman->qcsp[i].qcsp_io_cfg, (sdest << 16) | fliodn);
53 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
56 for (i = 0; i < CFG_SYS_QMAN_NUM_PORTALS; i++) {
57 u8 sdest = qp_info[i].sdest;
58 u16 ficid = qp_info[i].ficid;
59 u16 dicid = qp_info[i].dicid;
60 u16 icid = qp_info[i].icid;
62 out_be32(&qman->qcsp[i].qcsp_lio_cfg, (icid << 16) |
65 out_be32(&qman->qcsp[i].qcsp_io_cfg, (sdest << 16) | ficid);
70 /* Change default state of BMan ISDR portals to all 1s */
71 inhibit_portals(bpaddr, CFG_SYS_BMAN_NUM_PORTALS, MAX_BPORTALS,
72 CFG_SYS_BMAN_SP_CINH_SIZE);
73 inhibit_portals(qpaddr, CFG_SYS_QMAN_NUM_PORTALS, MAX_QPORTALS,
74 CFG_SYS_QMAN_SP_CINH_SIZE);
77 void inhibit_portals(void __iomem *addr, int max_portals,
78 int arch_max_portals, int portal_cinh_size)
83 /* arch_max_portals is the maximum based on memory size. This includes
84 * the reserved memory in the SoC. max_portals the number of physical
87 if (max_portals > arch_max_portals) {
88 printf("ERROR: portal config error\n");
89 max_portals = arch_max_portals;
92 for (i = 0; i < max_portals; i++) {
96 printf("ERROR: Stopped after %d portals\n", i);
99 addr += portal_cinh_size;
101 debug("Cleared %d portals\n", i);
105 static int fdt_qportal(void *blob, int off, int id, char *name,
106 enum fsl_dpaa_dev dev, int create)
108 int childoff, dev_off, ret = 0;
109 unsigned int dev_handle;
110 #ifdef CONFIG_FSL_CORENET
115 childoff = fdt_subnode_offset(blob, off, name);
119 strncpy(handle, name, sizeof(handle));
120 p = strchr(handle, '@');
121 if (!strncmp(name, "fman", 4)) {
127 dev_off = fdt_path_offset(blob, handle);
128 /* skip this node if alias is not found */
129 if (dev_off == -FDT_ERR_BADPATH)
135 childoff = fdt_add_subnode(blob, off, name);
137 /* need to update the dev_off after adding a subnode */
138 dev_off = fdt_path_offset(blob, handle);
143 dev_handle = fdt_get_phandle(blob, dev_off);
144 if (dev_handle <= 0) {
145 dev_handle = fdt_create_phandle(blob, dev_off);
147 return -FDT_ERR_NOPHANDLES;
150 ret = fdt_setprop(blob, childoff, "dev-handle",
151 &dev_handle, sizeof(dev_handle));
155 #ifdef CONFIG_FSL_CORENET
156 num = get_dpaa_liodn(dev, &liodns[0], id);
157 ret = fdt_setprop(blob, childoff, "fsl,liodn",
158 &liodns[0], sizeof(u32) * num);
159 if (!strncmp(name, "pme", 3)) {
160 u32 pme_rev1, pme_rev2;
161 ccsr_pme_t *pme_regs =
162 (void *)CFG_SYS_FSL_CORENET_PME_ADDR;
164 pme_rev1 = in_be32(&pme_regs->pm_ip_rev_1);
165 pme_rev2 = in_be32(&pme_regs->pm_ip_rev_2);
166 ret = fdt_setprop(blob, childoff,
167 "fsl,pme-rev1", &pme_rev1,
171 ret = fdt_setprop(blob, childoff,
172 "fsl,pme-rev2", &pme_rev2,
181 ret = fdt_del_node(blob, childoff);
186 #endif /* CONFIG_PPC */
188 void fdt_fixup_qportals(void *blob)
191 unsigned int maj, min;
193 struct ccsr_qman *qman = (void *)CFG_SYS_FSL_QMAN_ADDR;
194 u32 rev_1 = in_be32(&qman->ip_rev_1);
195 u32 rev_2 = in_be32(&qman->ip_rev_2);
199 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
200 int smmu_ph = fdt_get_smmu_phandle(blob);
203 maj = (rev_1 >> 8) & 0xff;
205 ip_cfg = rev_2 & 0xff;
207 compat_len = sprintf(compat, "fsl,qman-portal-%u.%u.%u",
208 maj, min, ip_cfg) + 1;
209 compat_len += sprintf(compat + compat_len, "fsl,qman-portal") + 1;
211 fdt_for_each_node_by_compatible(off, blob, -1, "fsl,qman-portal") {
212 #if defined(CONFIG_PPC) || defined(CONFIG_ARCH_LS1043A) || \
213 defined(CONFIG_ARCH_LS1046A)
214 #ifdef CONFIG_FSL_CORENET
217 const int *ci = fdt_getprop(blob, off, "cell-index", &err);
223 i = fdt32_to_cpu(*ci);
224 #if defined(CONFIG_SYS_DPAA_FMAN) && defined(CONFIG_PPC)
228 #endif /* CONFIG_PPC || CONFIG_ARCH_LS1043A || CONFIG_ARCH_LS1046A */
229 err = fdt_setprop(blob, off, "compatible", compat, compat_len);
233 #ifdef CONFIG_FSL_CORENET
234 liodns[0] = qp_info[i].dliodn;
235 liodns[1] = qp_info[i].fliodn;
236 err = fdt_setprop(blob, off, "fsl,liodn",
237 &liodns, sizeof(u32) * 2);
244 err = fdt_qportal(blob, off, i, "crypto@0", FSL_HW_PORTAL_SEC,
245 IS_E_PROCESSOR(get_svr()));
249 #ifdef CONFIG_FSL_CORENET
250 #ifdef CONFIG_SYS_DPAA_PME
251 err = fdt_qportal(blob, off, i, "pme@0", FSL_HW_PORTAL_PME, 1);
255 fdt_qportal(blob, off, i, "pme@0", FSL_HW_PORTAL_PME, 0);
259 #ifdef CONFIG_SYS_DPAA_FMAN
260 for (j = 0; j < CFG_SYS_NUM_FMAN; j++) {
261 char name[] = "fman@0";
263 name[sizeof(name) - 2] = '0' + j;
264 err = fdt_qportal(blob, off, i, name,
265 FSL_HW_PORTAL_FMAN1 + j, 1);
270 #ifdef CONFIG_SYS_DPAA_RMAN
271 err = fdt_qportal(blob, off, i, "rman@0",
272 FSL_HW_PORTAL_RMAN, 1);
277 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
281 icids[0] = qp_info[i].icid;
282 icids[1] = qp_info[i].dicid;
283 icids[2] = qp_info[i].ficid;
285 fdt_set_iommu_prop(blob, off, smmu_ph, icids, 3);
288 #endif /* CONFIG_PPC */
292 printf("ERROR: unable to create props for %s: %s\n",
293 fdt_get_name(blob, off, NULL),
300 void fdt_fixup_bportals(void *blob)
303 unsigned int maj, min;
305 struct ccsr_bman *bman = (void *)CFG_SYS_FSL_BMAN_ADDR;
306 u32 rev_1 = in_be32(&bman->ip_rev_1);
307 u32 rev_2 = in_be32(&bman->ip_rev_2);
311 maj = (rev_1 >> 8) & 0xff;
314 ip_cfg = rev_2 & 0xff;
316 compat_len = sprintf(compat, "fsl,bman-portal-%u.%u.%u",
317 maj, min, ip_cfg) + 1;
318 compat_len += sprintf(compat + compat_len, "fsl,bman-portal") + 1;
320 off = fdt_node_offset_by_compatible(blob, -1, "fsl,bman-portal");
321 while (off != -FDT_ERR_NOTFOUND) {
322 err = fdt_setprop(blob, off, "compatible", compat, compat_len);
324 printf("ERROR: unable to create props for %s: %s\n",
325 fdt_get_name(blob, off, NULL),
330 off = fdt_node_offset_by_compatible(blob, off,