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 (CONFIG_SYS_BMAN_CINH_SIZE / CONFIG_SYS_BMAN_SP_CINH_SIZE)
24 #define MAX_QPORTALS (CONFIG_SYS_QMAN_CINH_SIZE / CONFIG_SYS_QMAN_SP_CINH_SIZE)
25 void setup_qbman_portals(void)
27 void __iomem *bpaddr = (void *)CONFIG_SYS_BMAN_CINH_BASE +
28 CONFIG_SYS_BMAN_SWP_ISDR_REG;
29 void __iomem *qpaddr = (void *)CONFIG_SYS_QMAN_CINH_BASE +
30 CONFIG_SYS_QMAN_SWP_ISDR_REG;
31 struct ccsr_qman *qman = (void *)CONFIG_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)(CONFIG_SYS_QMAN_MEM_PHYS >> 32));
37 out_be32(&qman->qcsp_bar, (u32)CONFIG_SYS_QMAN_MEM_PHYS);
38 #ifdef CONFIG_FSL_CORENET
41 for (i = 0; i < CONFIG_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 < CONFIG_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, CONFIG_SYS_BMAN_NUM_PORTALS, MAX_BPORTALS,
72 CONFIG_SYS_BMAN_SP_CINH_SIZE);
73 inhibit_portals(qpaddr, CONFIG_SYS_QMAN_NUM_PORTALS, MAX_QPORTALS,
74 CONFIG_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;
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_alloc_phandle(blob);
146 ret = fdt_set_phandle(blob, dev_off,
152 ret = fdt_setprop(blob, childoff, "dev-handle",
153 &dev_handle, sizeof(dev_handle));
157 #ifdef CONFIG_FSL_CORENET
158 num = get_dpaa_liodn(dev, &liodns[0], id);
159 ret = fdt_setprop(blob, childoff, "fsl,liodn",
160 &liodns[0], sizeof(u32) * num);
161 if (!strncmp(name, "pme", 3)) {
162 u32 pme_rev1, pme_rev2;
163 ccsr_pme_t *pme_regs =
164 (void *)CONFIG_SYS_FSL_CORENET_PME_ADDR;
166 pme_rev1 = in_be32(&pme_regs->pm_ip_rev_1);
167 pme_rev2 = in_be32(&pme_regs->pm_ip_rev_2);
168 ret = fdt_setprop(blob, childoff,
169 "fsl,pme-rev1", &pme_rev1,
173 ret = fdt_setprop(blob, childoff,
174 "fsl,pme-rev2", &pme_rev2,
183 ret = fdt_del_node(blob, childoff);
188 #endif /* CONFIG_PPC */
190 void fdt_fixup_qportals(void *blob)
193 unsigned int maj, min;
195 struct ccsr_qman *qman = (void *)CONFIG_SYS_FSL_QMAN_ADDR;
196 u32 rev_1 = in_be32(&qman->ip_rev_1);
197 u32 rev_2 = in_be32(&qman->ip_rev_2);
201 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
202 int smmu_ph = fdt_get_smmu_phandle(blob);
205 maj = (rev_1 >> 8) & 0xff;
207 ip_cfg = rev_2 & 0xff;
209 compat_len = sprintf(compat, "fsl,qman-portal-%u.%u.%u",
210 maj, min, ip_cfg) + 1;
211 compat_len += sprintf(compat + compat_len, "fsl,qman-portal") + 1;
213 off = fdt_node_offset_by_compatible(blob, -1, "fsl,qman-portal");
214 while (off != -FDT_ERR_NOTFOUND) {
215 #if defined(CONFIG_PPC) || defined(CONFIG_ARCH_LS1043A) || \
216 defined(CONFIG_ARCH_LS1046A)
217 #ifdef CONFIG_FSL_CORENET
220 const int *ci = fdt_getprop(blob, off, "cell-index", &err);
226 i = fdt32_to_cpu(*ci);
227 #if defined(CONFIG_SYS_DPAA_FMAN) && defined(CONFIG_PPC)
231 #endif /* CONFIG_PPC || CONFIG_ARCH_LS1043A || CONFIG_ARCH_LS1046A */
232 err = fdt_setprop(blob, off, "compatible", compat, compat_len);
236 #ifdef CONFIG_FSL_CORENET
237 liodns[0] = qp_info[i].dliodn;
238 liodns[1] = qp_info[i].fliodn;
239 err = fdt_setprop(blob, off, "fsl,liodn",
240 &liodns, sizeof(u32) * 2);
247 err = fdt_qportal(blob, off, i, "crypto@0", FSL_HW_PORTAL_SEC,
248 IS_E_PROCESSOR(get_svr()));
252 #ifdef CONFIG_FSL_CORENET
253 #ifdef CONFIG_SYS_DPAA_PME
254 err = fdt_qportal(blob, off, i, "pme@0", FSL_HW_PORTAL_PME, 1);
258 fdt_qportal(blob, off, i, "pme@0", FSL_HW_PORTAL_PME, 0);
262 #ifdef CONFIG_SYS_DPAA_FMAN
263 for (j = 0; j < CONFIG_SYS_NUM_FMAN; j++) {
264 char name[] = "fman@0";
266 name[sizeof(name) - 2] = '0' + j;
267 err = fdt_qportal(blob, off, i, name,
268 FSL_HW_PORTAL_FMAN1 + j, 1);
273 #ifdef CONFIG_SYS_DPAA_RMAN
274 err = fdt_qportal(blob, off, i, "rman@0",
275 FSL_HW_PORTAL_RMAN, 1);
280 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
284 icids[0] = qp_info[i].icid;
285 icids[1] = qp_info[i].dicid;
286 icids[2] = qp_info[i].ficid;
288 fdt_set_iommu_prop(blob, off, smmu_ph, icids, 3);
291 #endif /* CONFIG_PPC */
295 printf("ERROR: unable to create props for %s: %s\n",
296 fdt_get_name(blob, off, NULL),
301 off = fdt_node_offset_by_compatible(blob, off,
306 void fdt_fixup_bportals(void *blob)
309 unsigned int maj, min;
311 struct ccsr_bman *bman = (void *)CONFIG_SYS_FSL_BMAN_ADDR;
312 u32 rev_1 = in_be32(&bman->ip_rev_1);
313 u32 rev_2 = in_be32(&bman->ip_rev_2);
317 maj = (rev_1 >> 8) & 0xff;
320 ip_cfg = rev_2 & 0xff;
322 compat_len = sprintf(compat, "fsl,bman-portal-%u.%u.%u",
323 maj, min, ip_cfg) + 1;
324 compat_len += sprintf(compat + compat_len, "fsl,bman-portal") + 1;
326 off = fdt_node_offset_by_compatible(blob, -1, "fsl,bman-portal");
327 while (off != -FDT_ERR_NOTFOUND) {
328 err = fdt_setprop(blob, off, "compatible", compat, compat_len);
330 printf("ERROR: unable to create props for %s: %s\n",
331 fdt_get_name(blob, off, NULL),
336 off = fdt_node_offset_by_compatible(blob, off,