blob: 4b8844a4d960b04d8cf40361e4a429a980b85815 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala38449a42009-09-10 03:02:13 -05002/*
Kumar Gala9d8e8132011-09-10 10:44:13 -05003 * Copyright 2008-2011 Freescale Semiconductor, Inc.
Kumar Gala38449a42009-09-10 03:02:13 -05004 */
5
6#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -06007#include <log.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +09008#include <linux/libfdt.h>
Kumar Gala38449a42009-09-10 03:02:13 -05009#include <fdt_support.h>
10
11#include <asm/immap_85xx.h>
12#include <asm/io.h>
13#include <asm/processor.h>
14#include <asm/fsl_portals.h>
15#include <asm/fsl_liodn.h>
16
17int get_dpaa_liodn(enum fsl_dpaa_dev dpaa_dev, u32 *liodns, int liodn_offset)
18{
19 liodns[0] = liodn_bases[dpaa_dev].id[0] + liodn_offset;
20
21 if (liodn_bases[dpaa_dev].num_ids == 2)
22 liodns[1] = liodn_bases[dpaa_dev].id[1] + liodn_offset;
23
24 return liodn_bases[dpaa_dev].num_ids;
25}
26
Timur Tabiebede502012-10-05 09:48:52 +000027#ifdef CONFIG_SYS_SRIO
Kumar Gala2b2b6962011-10-14 00:01:23 -050028static void set_srio_liodn(struct srio_liodn_id_table *tbl, int size)
29{
30 int i;
31
32 for (i = 0; i < size; i++) {
33 unsigned long reg_off = tbl[i].reg_offset[0];
34 out_be32((u32 *)reg_off, tbl[i].id[0]);
35
36 if (tbl[i].num_ids == 2) {
37 reg_off = tbl[i].reg_offset[1];
38 out_be32((u32 *)reg_off, tbl[i].id[1]);
39 }
40 }
41}
Timur Tabiebede502012-10-05 09:48:52 +000042#endif
Kumar Gala2b2b6962011-10-14 00:01:23 -050043
Kumar Gala38449a42009-09-10 03:02:13 -050044static void set_liodn(struct liodn_id_table *tbl, int size)
45{
46 int i;
47
48 for (i = 0; i < size; i++) {
49 u32 liodn;
50 if (tbl[i].num_ids == 2) {
51 liodn = (tbl[i].id[0] << 16) | tbl[i].id[1];
52 } else {
53 liodn = tbl[i].id[0];
54 }
55
56 out_be32((volatile u32 *)(tbl[i].reg_offset), liodn);
57 }
58}
59
Igal Libermane14ec992015-08-18 14:47:05 +030060#ifdef CONFIG_SYS_DPAA_FMAN
61static void set_fman_liodn(struct fman_liodn_id_table *tbl, int size)
62{
63 int i;
64
65 for (i = 0; i < size; i++) {
66 u32 liodn;
67 if (tbl[i].num_ids == 2)
68 liodn = (tbl[i].id[0] << 16) | tbl[i].id[1];
69 else
70 liodn = tbl[i].id[0];
71
72 out_be32((volatile u32 *)(tbl[i].reg_offset), liodn);
73 }
74}
75#endif
76
Kumar Gala38449a42009-09-10 03:02:13 -050077static void setup_sec_liodn_base(void)
78{
Tom Rini376b88a2022-10-28 20:27:13 -040079 ccsr_sec_t *sec = (void *)CFG_SYS_FSL_SEC_ADDR;
Kumar Gala38449a42009-09-10 03:02:13 -050080 u32 base;
81
82 if (!IS_E_PROCESSOR(get_svr()))
83 return;
84
85 /* QILCR[QSLOM] */
Ruchika Guptabb7143b2014-09-09 11:50:31 +053086 sec_out32(&sec->qilcr_ms, 0x3ff<<16);
Kumar Gala38449a42009-09-10 03:02:13 -050087
88 base = (liodn_bases[FSL_HW_PORTAL_SEC].id[0] << 16) |
89 liodn_bases[FSL_HW_PORTAL_SEC].id[1];
90
Ruchika Guptabb7143b2014-09-09 11:50:31 +053091 sec_out32(&sec->qilcr_ls, base);
Kumar Gala38449a42009-09-10 03:02:13 -050092}
93
94#ifdef CONFIG_SYS_DPAA_FMAN
95static void setup_fman_liodn_base(enum fsl_dpaa_dev dev,
Igal Libermane14ec992015-08-18 14:47:05 +030096 struct fman_liodn_id_table *tbl, int size)
Kumar Gala38449a42009-09-10 03:02:13 -050097{
98 int i;
99 ccsr_fman_t *fm;
100 u32 base;
101
102 switch(dev) {
103 case FSL_HW_PORTAL_FMAN1:
Tom Rini376b88a2022-10-28 20:27:13 -0400104 fm = (void *)CFG_SYS_FSL_FM1_ADDR;
Kumar Gala38449a42009-09-10 03:02:13 -0500105 break;
106
Tom Rini0a2bac72022-11-16 13:10:29 -0500107#if (CFG_SYS_NUM_FMAN == 2)
Kumar Gala38449a42009-09-10 03:02:13 -0500108 case FSL_HW_PORTAL_FMAN2:
Tom Rini376b88a2022-10-28 20:27:13 -0400109 fm = (void *)CFG_SYS_FSL_FM2_ADDR;
Kumar Gala38449a42009-09-10 03:02:13 -0500110 break;
111#endif
112 default:
113 printf("Error: Invalid device type to %s\n", __FUNCTION__);
Bin Meng75a6a372022-10-26 12:40:07 +0800114 return;
Kumar Gala38449a42009-09-10 03:02:13 -0500115 }
116
117 base = (liodn_bases[dev].id[0] << 16) | liodn_bases[dev].id[0];
118
119 /* setup all bases the same */
120 for (i = 0; i < 32; i++) {
121 out_be32(&fm->fm_dma.fmdmplr[i], base);
122 }
123
124 /* update tbl to ... */
125 for (i = 0; i < size; i++)
126 tbl[i].id[0] += liodn_bases[dev].id[0];
127}
128#endif
129
130static void setup_pme_liodn_base(void)
131{
132#ifdef CONFIG_SYS_DPAA_PME
Tom Rini376b88a2022-10-28 20:27:13 -0400133 ccsr_pme_t *pme = (void *)CFG_SYS_FSL_CORENET_PME_ADDR;
Kumar Gala38449a42009-09-10 03:02:13 -0500134 u32 base = (liodn_bases[FSL_HW_PORTAL_PME].id[0] << 16) |
135 liodn_bases[FSL_HW_PORTAL_PME].id[1];
136
137 out_be32(&pme->liodnbr, base);
138#endif
139}
140
Kumar Gala9d8e8132011-09-10 10:44:13 -0500141#ifdef CONFIG_SYS_FSL_RAID_ENGINE
142static void setup_raide_liodn_base(void)
143{
Tom Rini376b88a2022-10-28 20:27:13 -0400144 struct ccsr_raide *raide = (void *)CFG_SYS_FSL_RAID_ENGINE_ADDR;
Kumar Gala9d8e8132011-09-10 10:44:13 -0500145
146 /* setup raid engine liodn base for data/desc ; both set to 47 */
147 u32 base = (liodn_bases[FSL_HW_PORTAL_RAID_ENGINE].id[0] << 16) |
148 liodn_bases[FSL_HW_PORTAL_RAID_ENGINE].id[0];
149
150 out_be32(&raide->liodnbr, base);
151}
152#endif
153
Kumar Gala4eb3c372011-10-14 13:28:52 -0500154#ifdef CONFIG_SYS_DPAA_RMAN
155static void set_rman_liodn(struct liodn_id_table *tbl, int size)
156{
157 int i;
Tom Rini376b88a2022-10-28 20:27:13 -0400158 struct ccsr_rman *rman = (void *)CFG_SYS_FSL_CORENET_RMAN_ADDR;
Kumar Gala4eb3c372011-10-14 13:28:52 -0500159
160 for (i = 0; i < size; i++) {
161 /* write the RMan block number */
162 out_be32(&rman->mmitar, i);
163 /* write the liodn offset corresponding to the block */
164 out_be32((u32 *)(tbl[i].reg_offset), tbl[i].id[0]);
165 }
166}
167
168static void setup_rman_liodn_base(struct liodn_id_table *tbl, int size)
169{
170 int i;
Tom Rini376b88a2022-10-28 20:27:13 -0400171 struct ccsr_rman *rman = (void *)CFG_SYS_FSL_CORENET_RMAN_ADDR;
Kumar Gala4eb3c372011-10-14 13:28:52 -0500172 u32 base = liodn_bases[FSL_HW_PORTAL_RMAN].id[0];
173
174 out_be32(&rman->mmliodnbr, base);
175
176 /* update liodn offset */
177 for (i = 0; i < size; i++)
178 tbl[i].id[0] += base;
179}
180#endif
181
Kumar Gala38449a42009-09-10 03:02:13 -0500182void set_liodns(void)
183{
184 /* setup general liodn offsets */
185 set_liodn(liodn_tbl, liodn_tbl_sz);
186
Timur Tabiebede502012-10-05 09:48:52 +0000187#ifdef CONFIG_SYS_SRIO
Kumar Gala2b2b6962011-10-14 00:01:23 -0500188 /* setup SRIO port liodns */
189 set_srio_liodn(srio_liodn_tbl, srio_liodn_tbl_sz);
Timur Tabiebede502012-10-05 09:48:52 +0000190#endif
Kumar Gala2b2b6962011-10-14 00:01:23 -0500191
Kumar Gala38449a42009-09-10 03:02:13 -0500192 /* setup SEC block liodn bases & offsets if we have one */
193 if (IS_E_PROCESSOR(get_svr())) {
194 set_liodn(sec_liodn_tbl, sec_liodn_tbl_sz);
195 setup_sec_liodn_base();
196 }
197
198 /* setup FMAN block(s) liodn bases & offsets if we have one */
199#ifdef CONFIG_SYS_DPAA_FMAN
Igal Libermane14ec992015-08-18 14:47:05 +0300200 set_fman_liodn(fman1_liodn_tbl, fman1_liodn_tbl_sz);
Kumar Gala38449a42009-09-10 03:02:13 -0500201 setup_fman_liodn_base(FSL_HW_PORTAL_FMAN1, fman1_liodn_tbl,
202 fman1_liodn_tbl_sz);
203
Tom Rini0a2bac72022-11-16 13:10:29 -0500204#if (CFG_SYS_NUM_FMAN == 2)
Igal Libermane14ec992015-08-18 14:47:05 +0300205 set_fman_liodn(fman2_liodn_tbl, fman2_liodn_tbl_sz);
Kumar Gala38449a42009-09-10 03:02:13 -0500206 setup_fman_liodn_base(FSL_HW_PORTAL_FMAN2, fman2_liodn_tbl,
207 fman2_liodn_tbl_sz);
208#endif
209#endif
210 /* setup PME liodn base */
211 setup_pme_liodn_base();
Kumar Gala9d8e8132011-09-10 10:44:13 -0500212
213#ifdef CONFIG_SYS_FSL_RAID_ENGINE
214 /* raid engine ccr addr code for liodn */
215 set_liodn(raide_liodn_tbl, raide_liodn_tbl_sz);
216 setup_raide_liodn_base();
217#endif
Kumar Gala4eb3c372011-10-14 13:28:52 -0500218
219#ifdef CONFIG_SYS_DPAA_RMAN
220 /* setup RMan liodn offsets */
221 set_rman_liodn(rman_liodn_tbl, rman_liodn_tbl_sz);
222 /* setup RMan liodn base */
223 setup_rman_liodn_base(rman_liodn_tbl, rman_liodn_tbl_sz);
224#endif
Kumar Gala38449a42009-09-10 03:02:13 -0500225}
226
Timur Tabiebede502012-10-05 09:48:52 +0000227#ifdef CONFIG_SYS_SRIO
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500228static void fdt_fixup_srio_liodn(void *blob, struct srio_liodn_id_table *tbl)
229{
230 int i, srio_off;
231
232 /* search for srio node, if doesn't exist just return - nothing todo */
233 srio_off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio");
234 if (srio_off < 0)
Bin Meng75a6a372022-10-26 12:40:07 +0800235 return;
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500236
237 for (i = 0; i < srio_liodn_tbl_sz; i++) {
238 int off, portid = tbl[i].portid;
239
240 off = fdt_node_offset_by_prop_value(blob, srio_off,
241 "cell-index", &portid, 4);
242 if (off >= 0) {
243 off = fdt_setprop(blob, off, "fsl,liodn",
244 &tbl[i].id[0],
245 sizeof(u32) * tbl[i].num_ids);
246 if (off > 0)
247 printf("WARNING unable to set fsl,liodn for "
248 "fsl,srio port %d: %s\n",
249 portid, fdt_strerror(off));
250 } else {
251 debug("WARNING: couldn't set fsl,liodn for srio: %s.\n",
252 fdt_strerror(off));
253 }
254 }
255}
Timur Tabiebede502012-10-05 09:48:52 +0000256#endif
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500257
Tom Rini364d0022023-01-10 11:19:45 -0500258#define CFG_SYS_MAX_PCI_EPS 8
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000259
Laurentiu TUDOR8bd733b2013-10-23 15:20:27 +0300260static void fdt_fixup_pci_liodn_offsets(void *fdt, const char *compat,
261 int ep_liodn_start)
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000262{
263 int off, pci_idx = 0, pci_cnt = 0, i, rc;
264 const uint32_t *base_liodn;
Tom Rini364d0022023-01-10 11:19:45 -0500265 uint32_t liodn_offs[CFG_SYS_MAX_PCI_EPS + 1] = { 0 };
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000266
267 /*
268 * Count the number of pci nodes.
269 * It's needed later when the interleaved liodn offsets are generated.
270 */
Marek BehĂșn5d6b4482022-01-20 01:04:42 +0100271 fdt_for_each_node_by_compatible(off, fdt, -1, compat)
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000272 pci_cnt++;
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000273
Marek BehĂșn5d6b4482022-01-20 01:04:42 +0100274 fdt_for_each_node_by_compatible(off, fdt, -1, compat) {
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000275 base_liodn = fdt_getprop(fdt, off, "fsl,liodn", &rc);
276 if (!base_liodn) {
277 char path[64];
278
279 if (fdt_get_path(fdt, off, path, sizeof(path)) < 0)
280 strcpy(path, "(unknown)");
281 printf("WARNING Could not get liodn of node %s: %s\n",
282 path, fdt_strerror(rc));
283 continue;
284 }
Tom Rini364d0022023-01-10 11:19:45 -0500285 for (i = 0; i < CFG_SYS_MAX_PCI_EPS; i++)
Laurentiu TUDOR8bd733b2013-10-23 15:20:27 +0300286 liodn_offs[i + 1] = ep_liodn_start +
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000287 i * pci_cnt + pci_idx - *base_liodn;
288 rc = fdt_setprop(fdt, off, "fsl,liodn-offset-list",
289 liodn_offs, sizeof(liodn_offs));
290 if (rc) {
291 char path[64];
292
293 if (fdt_get_path(fdt, off, path, sizeof(path)) < 0)
294 strcpy(path, "(unknown)");
295 printf("WARNING Unable to set fsl,liodn-offset-list for "
296 "node %s: %s\n", path, fdt_strerror(rc));
297 continue;
298 }
299 pci_idx++;
300 }
301}
302
Kumar Gala38449a42009-09-10 03:02:13 -0500303static void fdt_fixup_liodn_tbl(void *blob, struct liodn_id_table *tbl, int sz)
304{
305 int i;
306
307 for (i = 0; i < sz; i++) {
308 int off;
309
310 if (tbl[i].compat == NULL)
311 continue;
312
313 off = fdt_node_offset_by_compat_reg(blob,
314 tbl[i].compat, tbl[i].compat_offset);
315 if (off >= 0) {
316 off = fdt_setprop(blob, off, "fsl,liodn",
317 &tbl[i].id[0],
318 sizeof(u32) * tbl[i].num_ids);
319 if (off > 0)
320 printf("WARNING unable to set fsl,liodn for "
321 "%s: %s\n",
322 tbl[i].compat, fdt_strerror(off));
323 } else {
324 debug("WARNING: could not set fsl,liodn for %s: %s.\n",
325 tbl[i].compat, fdt_strerror(off));
326 }
327 }
328}
329
Igal Libermane14ec992015-08-18 14:47:05 +0300330#ifdef CONFIG_SYS_DPAA_FMAN
331static void fdt_fixup_liodn_tbl_fman(void *blob,
332 struct fman_liodn_id_table *tbl,
333 int sz)
334{
335 int i;
336
337 for (i = 0; i < sz; i++) {
338 int off;
339
Igal Libermane14ec992015-08-18 14:47:05 +0300340 /* Try the new compatible first.
341 * If the node is missing, try the old.
342 */
343 off = fdt_node_offset_by_compat_reg(blob,
344 tbl[i].compat[0], tbl[i].compat_offset);
345 if (off < 0)
346 off = fdt_node_offset_by_compat_reg(blob,
347 tbl[i].compat[1], tbl[i].compat_offset);
348
349 if (off >= 0) {
350 off = fdt_setprop(blob, off, "fsl,liodn",
351 &tbl[i].id[0],
352 sizeof(u32) * tbl[i].num_ids);
353 if (off > 0)
354 printf("WARNING unable to set fsl,liodn for FMan Port: %s\n",
355 fdt_strerror(off));
356 } else {
357 debug("WARNING: could not set fsl,liodn for FMan Portport: %s.\n",
358 fdt_strerror(off));
359 }
360 }
361}
362#endif
363
Kumar Gala38449a42009-09-10 03:02:13 -0500364void fdt_fixup_liodn(void *blob)
365{
Timur Tabiebede502012-10-05 09:48:52 +0000366#ifdef CONFIG_SYS_SRIO
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500367 fdt_fixup_srio_liodn(blob, srio_liodn_tbl);
Timur Tabiebede502012-10-05 09:48:52 +0000368#endif
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500369
Kumar Gala38449a42009-09-10 03:02:13 -0500370 fdt_fixup_liodn_tbl(blob, liodn_tbl, liodn_tbl_sz);
371#ifdef CONFIG_SYS_DPAA_FMAN
Igal Libermane14ec992015-08-18 14:47:05 +0300372 fdt_fixup_liodn_tbl_fman(blob, fman1_liodn_tbl, fman1_liodn_tbl_sz);
Tom Rini0a2bac72022-11-16 13:10:29 -0500373#if (CFG_SYS_NUM_FMAN == 2)
Igal Libermane14ec992015-08-18 14:47:05 +0300374 fdt_fixup_liodn_tbl_fman(blob, fman2_liodn_tbl, fman2_liodn_tbl_sz);
Kumar Gala38449a42009-09-10 03:02:13 -0500375#endif
376#endif
377 fdt_fixup_liodn_tbl(blob, sec_liodn_tbl, sec_liodn_tbl_sz);
Kumar Gala9d8e8132011-09-10 10:44:13 -0500378
379#ifdef CONFIG_SYS_FSL_RAID_ENGINE
380 fdt_fixup_liodn_tbl(blob, raide_liodn_tbl, raide_liodn_tbl_sz);
381#endif
Kumar Gala4eb3c372011-10-14 13:28:52 -0500382
383#ifdef CONFIG_SYS_DPAA_RMAN
384 fdt_fixup_liodn_tbl(blob, rman_liodn_tbl, rman_liodn_tbl_sz);
385#endif
Laurentiu Tudorb4842a92012-10-05 09:48:54 +0000386
Tom Rini56af6592022-11-16 13:10:33 -0500387 ccsr_pcix_t *pcix = (ccsr_pcix_t *)CFG_SYS_PCIE1_ADDR;
Laurentiu TUDOR8bd733b2013-10-23 15:20:27 +0300388 int pci_ver = pcix->ipver1 & 0xffff, liodn_base = 0;
389
390 if (pci_ver >= 0x0204) {
391 if (pci_ver >= 0x0300)
392 liodn_base = 1024;
393 else
394 liodn_base = 256;
395 }
396
397 if (liodn_base) {
398 char compat[32];
399
400 sprintf(compat, "fsl,qoriq-pcie-v%d.%d",
401 (pci_ver & 0xff00) >> 8, pci_ver & 0xff);
402 fdt_fixup_pci_liodn_offsets(blob, compat, liodn_base);
403 fdt_fixup_pci_liodn_offsets(blob, "fsl,qoriq-pcie", liodn_base);
404 }
Kumar Gala38449a42009-09-10 03:02:13 -0500405}