blob: f5c5057bec100293f0ad0eecf6a204e2c3e53361 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
J. German Riverab940ca62014-06-23 15:15:55 -07002/*
Yogesh Gaura6f2a6e2018-05-09 10:52:17 +05303 * Copyright 2014 Freescale Semiconductor, Inc.
Cosmin-Florin Aluchenesei669884e2021-07-21 19:13:33 +03004 * Copyright 2017-2018, 2020-2021 NXP
J. German Riverab940ca62014-06-23 15:15:55 -07005 */
Stuart Yoder21c69872015-07-02 11:29:03 +05306#include <common.h>
Simon Glass288b29e2019-11-14 12:57:43 -07007#include <command.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glass7b51b572019-08-01 09:46:52 -06009#include <env.h>
J. German Riverab940ca62014-06-23 15:15:55 -070010#include <errno.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060011#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <malloc.h>
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +030014#include <mapmem.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Masahiro Yamada84b8bf62016-01-24 23:27:48 +090016#include <linux/bug.h>
J. German Riverab940ca62014-06-23 15:15:55 -070017#include <asm/io.h>
Simon Glassc05ed002020-05-10 11:40:11 -060018#include <linux/delay.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090019#include <linux/libfdt.h>
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +000020#include <net.h>
Stuart Yoder21c69872015-07-02 11:29:03 +053021#include <fdt_support.h>
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080022#include <fsl-mc/fsl_mc.h>
23#include <fsl-mc/fsl_mc_sys.h>
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070024#include <fsl-mc/fsl_mc_private.h>
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080025#include <fsl-mc/fsl_dpmng.h>
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070026#include <fsl-mc/fsl_dprc.h>
27#include <fsl-mc/fsl_dpio.h>
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +053028#include <fsl-mc/fsl_dpni.h>
Florinel Iordache1990cc72019-11-19 10:28:17 +000029#include <fsl-mc/fsl_dpsparser.h>
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070030#include <fsl-mc/fsl_qbman_portal.h>
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +053031#include <fsl-mc/ldpaa_wriop.h>
Ioana Ciornei8491a7e2023-02-09 18:07:04 +020032#include <net/ldpaa_eth.h>
Laurentiu Tudor1dd7b562023-09-27 18:30:47 +030033#include <asm/arch/cpu.h>
34#include <asm/arch-fsl-layerscape/fsl_icid.h>
J. German Riverab940ca62014-06-23 15:15:55 -070035
J. German Rivera125e2bc2015-03-20 19:28:18 -070036#define MC_RAM_BASE_ADDR_ALIGNMENT (512UL * 1024 * 1024)
37#define MC_RAM_BASE_ADDR_ALIGNMENT_MASK (~(MC_RAM_BASE_ADDR_ALIGNMENT - 1))
38#define MC_RAM_SIZE_ALIGNMENT (256UL * 1024 * 1024)
39
40#define MC_MEM_SIZE_ENV_VAR "mcmemsize"
41#define MC_BOOT_TIMEOUT_ENV_VAR "mcboottimeout"
Bogdan Purcareata33a89912017-05-24 16:40:21 +000042#define MC_BOOT_ENV_VAR "mcinitcmd"
Meenakshi Aggarwal43ad41e2019-02-27 14:41:02 +053043#define MC_DRAM_BLOCK_DEFAULT_SIZE (512UL * 1024 * 1024)
J. German Rivera125e2bc2015-03-20 19:28:18 -070044
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +030045#define MC_BUFFER_SIZE (1024 * 1024 * 16)
46#define MAGIC_MC 0x4d430100
47#define MC_FW_ADDR_MASK_LOW 0xE0000000
48#define MC_FW_ADDR_MASK_HIGH 0X1FFFF
49#define MC_STRUCT_BUFFER_OFFSET 0x01000000
50#define MC_OFFSET_DELTA MC_STRUCT_BUFFER_OFFSET
51
52#define LOG_HEADER_FLAG_BUFFER_WRAPAROUND 0x80000000
53#define LAST_BYTE(a) ((a) & ~(LOG_HEADER_FLAG_BUFFER_WRAPAROUND))
54
J. German Riverab940ca62014-06-23 15:15:55 -070055DECLARE_GLOBAL_DATA_PTR;
Prabhakar Kushwaha87519a92018-08-27 12:58:52 +053056static int mc_memset_resv_ram;
Florinel Iordache1990cc72019-11-19 10:28:17 +000057static struct mc_version mc_ver_info;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +053058static int mc_boot_status = -1;
59static int mc_dpl_applied = -1;
Tom Rini65cc0e22022-11-16 13:10:41 -050060#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +053061static int mc_aiop_applied = -1;
62#endif
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +053063struct fsl_mc_io *root_mc_io = NULL;
64struct fsl_mc_io *dflt_mc_io = NULL; /* child container */
65uint16_t root_dprc_handle = 0;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070066uint16_t dflt_dprc_handle = 0;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +053067int child_dprc_id;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070068struct fsl_dpbp_obj *dflt_dpbp = NULL;
69struct fsl_dpio_obj *dflt_dpio = NULL;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +053070struct fsl_dpni_obj *dflt_dpni = NULL;
Alexander Grafb7b84102016-11-17 01:02:57 +010071static u64 mc_lazy_dpl_addr;
Florinel Iordache1990cc72019-11-19 10:28:17 +000072static u32 dpsparser_obj_id;
73static u16 dpsparser_handle;
74static char *mc_err_msg_apply_spb[] = MC_ERROR_MSG_APPLY_SPB;
J. German Riverab940ca62014-06-23 15:15:55 -070075
J. German Rivera125e2bc2015-03-20 19:28:18 -070076#ifdef DEBUG
77void dump_ram_words(const char *title, void *addr)
78{
79 int i;
80 uint32_t *words = addr;
81
82 printf("Dumping beginning of %s (%p):\n", title, addr);
83 for (i = 0; i < 16; i++)
84 printf("%#x ", words[i]);
85
86 printf("\n");
87}
88
89void dump_mc_ccsr_regs(struct mc_ccsr_registers __iomem *mc_ccsr_regs)
90{
91 printf("MC CCSR registers:\n"
92 "reg_gcr1 %#x\n"
93 "reg_gsr %#x\n"
94 "reg_sicbalr %#x\n"
95 "reg_sicbahr %#x\n"
96 "reg_sicapr %#x\n"
97 "reg_mcfbalr %#x\n"
98 "reg_mcfbahr %#x\n"
99 "reg_mcfapr %#x\n"
100 "reg_psr %#x\n",
101 mc_ccsr_regs->reg_gcr1,
102 mc_ccsr_regs->reg_gsr,
103 mc_ccsr_regs->reg_sicbalr,
104 mc_ccsr_regs->reg_sicbahr,
105 mc_ccsr_regs->reg_sicapr,
106 mc_ccsr_regs->reg_mcfbalr,
107 mc_ccsr_regs->reg_mcfbahr,
108 mc_ccsr_regs->reg_mcfapr,
109 mc_ccsr_regs->reg_psr);
110}
111#else
112
113#define dump_ram_words(title, addr)
114#define dump_mc_ccsr_regs(mc_ccsr_regs)
115
116#endif /* DEBUG */
117
J. German Riverab940ca62014-06-23 15:15:55 -0700118/**
119 * Copying MC firmware or DPL image to DDR
120 */
121static int mc_copy_image(const char *title,
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800122 u64 image_addr, u32 image_size, u64 mc_ram_addr)
J. German Riverab940ca62014-06-23 15:15:55 -0700123{
124 debug("%s copied to address %p\n", title, (void *)mc_ram_addr);
125 memcpy((void *)mc_ram_addr, (void *)image_addr, image_size);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700126 flush_dcache_range(mc_ram_addr, mc_ram_addr + image_size);
J. German Riverab940ca62014-06-23 15:15:55 -0700127 return 0;
128}
129
Florinel Iordache1990cc72019-11-19 10:28:17 +0000130#ifndef CONFIG_SYS_LS_MC_FW_IN_DDR
J. German Riverab940ca62014-06-23 15:15:55 -0700131/**
132 * MC firmware FIT image parser checks if the image is in FIT
133 * format, verifies integrity of the image and calculates
134 * raw image address and size values.
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800135 * Returns 0 on success and a negative errno on error.
J. German Riverab940ca62014-06-23 15:15:55 -0700136 * task fail.
137 **/
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530138int parse_mc_firmware_fit_image(u64 mc_fw_addr,
139 const void **raw_image_addr,
J. German Riverab940ca62014-06-23 15:15:55 -0700140 size_t *raw_image_size)
141{
142 int format;
Sean Andersonf1061c52022-08-16 11:16:06 -0400143 void *fit_hdr = (void *)mc_fw_addr;
J. German Riverab940ca62014-06-23 15:15:55 -0700144
145 /* Check if Image is in FIT format */
146 format = genimg_get_format(fit_hdr);
147
148 if (format != IMAGE_FORMAT_FIT) {
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530149 printf("fsl-mc: ERR: Bad firmware image (not a FIT image)\n");
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800150 return -EINVAL;
J. German Riverab940ca62014-06-23 15:15:55 -0700151 }
152
Simon Glassc5819702021-02-15 17:08:09 -0700153 if (fit_check_format(fit_hdr, IMAGE_SIZE_INVAL)) {
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530154 printf("fsl-mc: ERR: Bad firmware image (bad FIT header)\n");
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800155 return -EINVAL;
J. German Riverab940ca62014-06-23 15:15:55 -0700156 }
157
Sean Andersonf1061c52022-08-16 11:16:06 -0400158 return fit_get_data_node(fit_hdr, "firmware", raw_image_addr,
159 raw_image_size);
J. German Riverab940ca62014-06-23 15:15:55 -0700160}
J. German Rivera125e2bc2015-03-20 19:28:18 -0700161#endif
162
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000163#define MC_DT_INCREASE_SIZE 64
164
165enum mc_fixup_type {
166 MC_FIXUP_DPL,
167 MC_FIXUP_DPC
168};
169
170static int mc_fixup_mac_addr(void *blob, int nodeoffset,
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200171 const char *propname, struct udevice *eth_dev,
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000172 enum mc_fixup_type type)
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000173{
Simon Glassc69cda22020-12-03 16:55:20 -0700174 struct eth_pdata *plat = dev_get_plat(eth_dev);
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200175 unsigned char *enetaddr = plat->enetaddr;
Simon Glass8b85dfc2020-12-16 21:20:07 -0700176 int eth_index = dev_seq(eth_dev);
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000177 int err = 0, len = 0, size, i;
178 unsigned char env_enetaddr[ARP_HLEN];
179 unsigned int enetaddr_32[ARP_HLEN];
180 void *val = NULL;
181
182 switch (type) {
183 case MC_FIXUP_DPL:
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200184 /* DPL likes its addresses on 32 * ARP_HLEN bits */
185 for (i = 0; i < ARP_HLEN; i++)
186 enetaddr_32[i] = cpu_to_fdt32(enetaddr[i]);
187 val = enetaddr_32;
188 len = sizeof(enetaddr_32);
189 break;
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000190 case MC_FIXUP_DPC:
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200191 val = enetaddr;
192 len = ARP_HLEN;
193 break;
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000194 }
195
196 /* MAC address property present */
197 if (fdt_get_property(blob, nodeoffset, propname, NULL)) {
198 /* u-boot MAC addr randomly assigned - leave the present one */
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200199 if (!eth_env_get_enetaddr_by_index("eth", eth_index,
Simon Glass35affd72017-08-03 12:22:14 -0600200 env_enetaddr))
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000201 return err;
202 } else {
203 size = MC_DT_INCREASE_SIZE + strlen(propname) + len;
204 /* make room for mac address property */
205 err = fdt_increase_size(blob, size);
206 if (err) {
207 printf("fdt_increase_size: err=%s\n",
208 fdt_strerror(err));
209 return err;
210 }
211 }
212
213 err = fdt_setprop(blob, nodeoffset, propname, val, len);
214 if (err) {
215 printf("fdt_setprop: err=%s\n", fdt_strerror(err));
216 return err;
217 }
218
219 return err;
220}
221
222#define is_dpni(s) (s != NULL ? !strncmp(s, "dpni@", 5) : 0)
223
224const char *dpl_get_connection_endpoint(void *blob, char *endpoint)
225{
226 int connoffset = fdt_path_offset(blob, "/connections"), off;
227 const char *s1, *s2;
228
229 for (off = fdt_first_subnode(blob, connoffset);
230 off >= 0;
231 off = fdt_next_subnode(blob, off)) {
232 s1 = fdt_stringlist_get(blob, off, "endpoint1", 0, NULL);
233 s2 = fdt_stringlist_get(blob, off, "endpoint2", 0, NULL);
234
235 if (!s1 || !s2)
236 continue;
237
238 if (strcmp(endpoint, s1) == 0)
239 return s2;
240
241 if (strcmp(endpoint, s2) == 0)
242 return s1;
243 }
244
245 return NULL;
246}
247
248static int mc_fixup_dpl_mac_addr(void *blob, int dpmac_id,
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200249 struct udevice *eth_dev)
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000250{
251 int objoff = fdt_path_offset(blob, "/objects");
252 int dpmacoff = -1, dpnioff = -1;
253 const char *endpoint;
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000254 char mac_name[10];
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000255 int err;
256
257 sprintf(mac_name, "dpmac@%d", dpmac_id);
258 dpmacoff = fdt_subnode_offset(blob, objoff, mac_name);
259 if (dpmacoff < 0)
260 /* dpmac not defined in DPL, so skip it. */
261 return 0;
262
263 err = mc_fixup_mac_addr(blob, dpmacoff, "mac_addr", eth_dev,
264 MC_FIXUP_DPL);
265 if (err) {
266 printf("Error fixing up dpmac mac_addr in DPL\n");
267 return err;
268 }
269
270 /* now we need to figure out if there is any
271 * DPNI connected to this MAC, so we walk the
272 * connection list
273 */
274 endpoint = dpl_get_connection_endpoint(blob, mac_name);
275 if (!is_dpni(endpoint))
276 return 0;
277
278 /* let's see if we can fixup the DPNI as well */
279 dpnioff = fdt_subnode_offset(blob, objoff, endpoint);
280 if (dpnioff < 0)
281 /* DPNI not defined in DPL in the objects area */
282 return 0;
283
284 return mc_fixup_mac_addr(blob, dpnioff, "mac_addr", eth_dev,
285 MC_FIXUP_DPL);
286}
287
Meenakshi Aggarwalcf0bbbd2019-05-23 15:13:43 +0530288void fdt_fixup_mc_ddr(u64 *base, u64 *size)
289{
290 u64 mc_size = mc_get_dram_block_size();
291
292 if (mc_size < MC_DRAM_BLOCK_DEFAULT_SIZE) {
293 *base = mc_get_dram_addr() + mc_size;
294 *size = MC_DRAM_BLOCK_DEFAULT_SIZE - mc_size;
295 }
296}
297
Nipun Guptaa78df402018-08-20 16:01:14 +0530298void fdt_fsl_mc_fixup_iommu_map_entry(void *blob)
299{
300 u32 *prop;
Laurentiu Tudor21a00d12020-05-04 14:47:11 +0300301 u32 iommu_map[4], phandle;
Nipun Guptaa78df402018-08-20 16:01:14 +0530302 int offset;
303 int lenp;
304
305 /* find fsl-mc node */
306 offset = fdt_path_offset(blob, "/soc/fsl-mc");
307 if (offset < 0)
308 offset = fdt_path_offset(blob, "/fsl-mc");
309 if (offset < 0) {
310 printf("%s: fsl-mc: ERR: fsl-mc node not found in DT, err %d\n",
311 __func__, offset);
312 return;
313 }
314
315 prop = fdt_getprop_w(blob, offset, "iommu-map", &lenp);
316 if (!prop) {
317 debug("%s: fsl-mc: ERR: missing iommu-map in fsl-mc bus node\n",
318 __func__);
319 return;
320 }
321
322 iommu_map[0] = cpu_to_fdt32(FSL_DPAA2_STREAM_ID_START);
323 iommu_map[1] = *++prop;
324 iommu_map[2] = cpu_to_fdt32(FSL_DPAA2_STREAM_ID_START);
325 iommu_map[3] = cpu_to_fdt32(FSL_DPAA2_STREAM_ID_END -
326 FSL_DPAA2_STREAM_ID_START + 1);
327
328 fdt_setprop_inplace(blob, offset, "iommu-map",
329 iommu_map, sizeof(iommu_map));
Laurentiu Tudor21a00d12020-05-04 14:47:11 +0300330
331 /* get phandle to MSI controller */
332 prop = (u32 *)fdt_getprop(blob, offset, "msi-parent", 0);
333 if (!prop) {
334 debug("\n%s: ERROR: missing msi-parent\n", __func__);
335 return;
336 }
337 phandle = fdt32_to_cpu(*prop);
338
339 /* also set msi-map property */
340 fdt_appendprop_u32(blob, offset, "msi-map", FSL_DPAA2_STREAM_ID_START);
341 fdt_appendprop_u32(blob, offset, "msi-map", phandle);
342 fdt_appendprop_u32(blob, offset, "msi-map", FSL_DPAA2_STREAM_ID_START);
343 fdt_appendprop_u32(blob, offset, "msi-map", FSL_DPAA2_STREAM_ID_END -
344 FSL_DPAA2_STREAM_ID_START + 1);
Nipun Guptaa78df402018-08-20 16:01:14 +0530345}
346
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000347static int mc_fixup_dpc_mac_addr(void *blob, int dpmac_id,
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200348 struct udevice *eth_dev)
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000349{
350 int nodeoffset = fdt_path_offset(blob, "/board_info/ports"), noff;
351 int err = 0;
352 char mac_name[10];
353 const char link_type_mode[] = "MAC_LINK_TYPE_FIXED";
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000354
355 sprintf(mac_name, "mac@%d", dpmac_id);
356
357 /* node not found - create it */
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000358 noff = fdt_subnode_offset(blob, nodeoffset, (const char *)mac_name);
359 if (noff < 0) {
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000360 err = fdt_increase_size(blob, 200);
361 if (err) {
Ioana Ciorneif45ed0b2023-01-05 17:03:20 +0200362 printf("fdt_increase_size: err=%s\n", fdt_strerror(err));
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000363 return err;
364 }
365
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000366 noff = fdt_add_subnode(blob, nodeoffset, mac_name);
367 if (noff < 0) {
368 printf("fdt_add_subnode: err=%s\n",
369 fdt_strerror(err));
370 return err;
371 }
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000372
373 /* add default property of fixed link */
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000374 err = fdt_appendprop_string(blob, noff,
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000375 "link_type", link_type_mode);
376 if (err) {
377 printf("fdt_appendprop_string: err=%s\n",
Ioana Ciorneif45ed0b2023-01-05 17:03:20 +0200378 fdt_strerror(err));
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000379 return err;
380 }
381 }
382
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000383 return mc_fixup_mac_addr(blob, noff, "port_mac_address", eth_dev,
384 MC_FIXUP_DPC);
385}
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000386
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000387static int mc_fixup_mac_addrs(void *blob, enum mc_fixup_type type)
388{
Ioana Ciornei988e33f2020-03-18 16:47:38 +0200389 struct udevice *eth_dev;
Ioana Ciornei8491a7e2023-02-09 18:07:04 +0200390 int err = 0, ret = 0;
391 struct uclass *uc;
392 uint32_t dpmac_id;
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000393
Ioana Ciornei8491a7e2023-02-09 18:07:04 +0200394 uclass_get(UCLASS_ETH, &uc);
395 uclass_foreach_dev(eth_dev, uc) {
396 if (!eth_dev->driver || !eth_dev->driver->name ||
397 strcmp(eth_dev->driver->name, LDPAA_ETH_DRIVER_NAME))
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000398 continue;
399
Ioana Ciornei8491a7e2023-02-09 18:07:04 +0200400 dpmac_id = ldpaa_eth_get_dpmac_id(eth_dev);
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000401 switch (type) {
402 case MC_FIXUP_DPL:
Ioana Ciornei8491a7e2023-02-09 18:07:04 +0200403 err = mc_fixup_dpl_mac_addr(blob, dpmac_id, eth_dev);
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000404 break;
405 case MC_FIXUP_DPC:
Ioana Ciornei8491a7e2023-02-09 18:07:04 +0200406 err = mc_fixup_dpc_mac_addr(blob, dpmac_id, eth_dev);
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000407 break;
408 default:
409 break;
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000410 }
411
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000412 if (err)
Ioana Ciornei8491a7e2023-02-09 18:07:04 +0200413 printf("fsl-mc: ERROR fixing mac address for %s\n", eth_dev->name);
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000414 ret |= err;
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000415 }
416
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000417 return ret;
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000418}
419
Stuart Yoder21c69872015-07-02 11:29:03 +0530420static int mc_fixup_dpc(u64 dpc_addr)
421{
422 void *blob = (void *)dpc_addr;
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000423 int nodeoffset, err = 0;
Stuart Yoder21c69872015-07-02 11:29:03 +0530424
425 /* delete any existing ICID pools */
426 nodeoffset = fdt_path_offset(blob, "/resources/icid_pools");
427 if (fdt_del_node(blob, nodeoffset) < 0)
428 printf("\nfsl-mc: WARNING: could not delete ICID pool\n");
429
430 /* add a new pool */
431 nodeoffset = fdt_path_offset(blob, "/resources");
432 if (nodeoffset < 0) {
433 printf("\nfsl-mc: ERROR: DPC is missing /resources\n");
434 return -EINVAL;
435 }
436 nodeoffset = fdt_add_subnode(blob, nodeoffset, "icid_pools");
437 nodeoffset = fdt_add_subnode(blob, nodeoffset, "icid_pool@0");
438 do_fixup_by_path_u32(blob, "/resources/icid_pools/icid_pool@0",
439 "base_icid", FSL_DPAA2_STREAM_ID_START, 1);
440 do_fixup_by_path_u32(blob, "/resources/icid_pools/icid_pool@0",
441 "num",
442 FSL_DPAA2_STREAM_ID_END -
443 FSL_DPAA2_STREAM_ID_START + 1, 1);
444
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000445 /* fixup MAC addresses for dpmac ports */
446 nodeoffset = fdt_path_offset(blob, "/board_info/ports");
Razvan Ionut Cirjand5b0af02020-04-28 16:09:59 +0300447 if (nodeoffset < 0) {
448 err = fdt_increase_size(blob, 512);
449 if (err) {
450 printf("fdt_increase_size: err=%s\n",
451 fdt_strerror(err));
452 goto out;
453 }
454 nodeoffset = fdt_path_offset(blob, "/board_info");
455 if (nodeoffset < 0)
456 nodeoffset = fdt_add_subnode(blob, 0, "board_info");
457
458 nodeoffset = fdt_add_subnode(blob, nodeoffset, "ports");
459 }
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000460
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000461 err = mc_fixup_mac_addrs(blob, MC_FIXUP_DPC);
Ioana Ciocoi Radulescu2e9f1bf2019-02-26 15:50:07 +0000462
463out:
Stuart Yoder21c69872015-07-02 11:29:03 +0530464 flush_dcache_range(dpc_addr, dpc_addr + fdt_totalsize(blob));
465
Bogdan Purcareata5707dfb2017-01-11 15:58:36 +0000466 return err;
Stuart Yoder21c69872015-07-02 11:29:03 +0530467}
468
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530469static int load_mc_dpc(u64 mc_ram_addr, size_t mc_ram_size, u64 mc_dpc_addr)
J. German Rivera125e2bc2015-03-20 19:28:18 -0700470{
471 u64 mc_dpc_offset;
472#ifndef CONFIG_SYS_LS_MC_DPC_IN_DDR
473 int error;
474 void *dpc_fdt_hdr;
475 int dpc_size;
476#endif
477
Tom Rini65cc0e22022-11-16 13:10:41 -0500478#ifdef CFG_SYS_LS_MC_DRAM_DPC_OFFSET
479 BUILD_BUG_ON((CFG_SYS_LS_MC_DRAM_DPC_OFFSET & 0x3) != 0 ||
480 CFG_SYS_LS_MC_DRAM_DPC_OFFSET > 0xffffffff);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700481
Tom Rini65cc0e22022-11-16 13:10:41 -0500482 mc_dpc_offset = CFG_SYS_LS_MC_DRAM_DPC_OFFSET;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700483#else
Tom Rini65cc0e22022-11-16 13:10:41 -0500484#error "CFG_SYS_LS_MC_DRAM_DPC_OFFSET not defined"
J. German Rivera125e2bc2015-03-20 19:28:18 -0700485#endif
486
487 /*
488 * Load the MC DPC blob in the MC private DRAM block:
489 */
490#ifdef CONFIG_SYS_LS_MC_DPC_IN_DDR
491 printf("MC DPC is preloaded to %#llx\n", mc_ram_addr + mc_dpc_offset);
492#else
493 /*
494 * Get address and size of the DPC blob stored in flash:
495 */
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530496 dpc_fdt_hdr = (void *)mc_dpc_addr;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700497
498 error = fdt_check_header(dpc_fdt_hdr);
499 if (error != 0) {
500 /*
501 * Don't return with error here, since the MC firmware can
502 * still boot without a DPC
503 */
J. German Riveracc088c32015-07-02 11:28:56 +0530504 printf("\nfsl-mc: WARNING: No DPC image found");
J. German Rivera125e2bc2015-03-20 19:28:18 -0700505 return 0;
506 }
507
508 dpc_size = fdt_totalsize(dpc_fdt_hdr);
Tom Rini65cc0e22022-11-16 13:10:41 -0500509 if (dpc_size > CFG_SYS_LS_MC_DPC_MAX_LENGTH) {
J. German Riveracc088c32015-07-02 11:28:56 +0530510 printf("\nfsl-mc: ERROR: Bad DPC image (too large: %d)\n",
J. German Rivera125e2bc2015-03-20 19:28:18 -0700511 dpc_size);
512 return -EINVAL;
513 }
514
515 mc_copy_image("MC DPC blob",
516 (u64)dpc_fdt_hdr, dpc_size, mc_ram_addr + mc_dpc_offset);
517#endif /* not defined CONFIG_SYS_LS_MC_DPC_IN_DDR */
518
Stuart Yoder21c69872015-07-02 11:29:03 +0530519 if (mc_fixup_dpc(mc_ram_addr + mc_dpc_offset))
520 return -EINVAL;
521
J. German Rivera125e2bc2015-03-20 19:28:18 -0700522 dump_ram_words("DPC", (void *)(mc_ram_addr + mc_dpc_offset));
523 return 0;
524}
525
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000526static int mc_fixup_dpl(u64 dpl_addr)
527{
528 void *blob = (void *)dpl_addr;
529 u32 ver = fdt_getprop_u32_default(blob, "/", "dpl-version", 0);
530 int err = 0;
531
532 /* The DPL fixup for mac addresses is only relevant
533 * for old-style DPLs
534 */
535 if (ver >= 10)
536 return 0;
537
538 err = mc_fixup_mac_addrs(blob, MC_FIXUP_DPL);
539 flush_dcache_range(dpl_addr, dpl_addr + fdt_totalsize(blob));
540
541 return err;
542}
543
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530544static int load_mc_dpl(u64 mc_ram_addr, size_t mc_ram_size, u64 mc_dpl_addr)
J. German Rivera125e2bc2015-03-20 19:28:18 -0700545{
546 u64 mc_dpl_offset;
547#ifndef CONFIG_SYS_LS_MC_DPL_IN_DDR
548 int error;
549 void *dpl_fdt_hdr;
550 int dpl_size;
551#endif
552
Tom Rini65cc0e22022-11-16 13:10:41 -0500553#ifdef CFG_SYS_LS_MC_DRAM_DPL_OFFSET
554 BUILD_BUG_ON((CFG_SYS_LS_MC_DRAM_DPL_OFFSET & 0x3) != 0 ||
555 CFG_SYS_LS_MC_DRAM_DPL_OFFSET > 0xffffffff);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700556
Tom Rini65cc0e22022-11-16 13:10:41 -0500557 mc_dpl_offset = CFG_SYS_LS_MC_DRAM_DPL_OFFSET;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700558#else
Tom Rini65cc0e22022-11-16 13:10:41 -0500559#error "CFG_SYS_LS_MC_DRAM_DPL_OFFSET not defined"
J. German Rivera125e2bc2015-03-20 19:28:18 -0700560#endif
561
562 /*
563 * Load the MC DPL blob in the MC private DRAM block:
564 */
565#ifdef CONFIG_SYS_LS_MC_DPL_IN_DDR
566 printf("MC DPL is preloaded to %#llx\n", mc_ram_addr + mc_dpl_offset);
567#else
568 /*
569 * Get address and size of the DPL blob stored in flash:
570 */
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530571 dpl_fdt_hdr = (void *)mc_dpl_addr;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700572
573 error = fdt_check_header(dpl_fdt_hdr);
574 if (error != 0) {
J. German Riveracc088c32015-07-02 11:28:56 +0530575 printf("\nfsl-mc: ERROR: Bad DPL image (bad header)\n");
J. German Rivera125e2bc2015-03-20 19:28:18 -0700576 return error;
577 }
578
579 dpl_size = fdt_totalsize(dpl_fdt_hdr);
Tom Rini65cc0e22022-11-16 13:10:41 -0500580 if (dpl_size > CFG_SYS_LS_MC_DPL_MAX_LENGTH) {
J. German Riveracc088c32015-07-02 11:28:56 +0530581 printf("\nfsl-mc: ERROR: Bad DPL image (too large: %d)\n",
J. German Rivera125e2bc2015-03-20 19:28:18 -0700582 dpl_size);
583 return -EINVAL;
584 }
585
586 mc_copy_image("MC DPL blob",
587 (u64)dpl_fdt_hdr, dpl_size, mc_ram_addr + mc_dpl_offset);
588#endif /* not defined CONFIG_SYS_LS_MC_DPL_IN_DDR */
589
Bogdan Purcareata1161dbc2017-05-24 16:40:22 +0000590 if (mc_fixup_dpl(mc_ram_addr + mc_dpl_offset))
591 return -EINVAL;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700592 dump_ram_words("DPL", (void *)(mc_ram_addr + mc_dpl_offset));
593 return 0;
594}
595
596/**
597 * Return the MC boot timeout value in milliseconds
598 */
599static unsigned long get_mc_boot_timeout_ms(void)
600{
Tom Rini65cc0e22022-11-16 13:10:41 -0500601 unsigned long timeout_ms = CFG_SYS_LS_MC_BOOT_TIMEOUT_MS;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700602
Simon Glass00caae62017-08-03 12:22:12 -0600603 char *timeout_ms_env_var = env_get(MC_BOOT_TIMEOUT_ENV_VAR);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700604
605 if (timeout_ms_env_var) {
Simon Glass0b1284e2021-07-24 09:03:30 -0600606 timeout_ms = dectoul(timeout_ms_env_var, NULL);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700607 if (timeout_ms == 0) {
608 printf("fsl-mc: WARNING: Invalid value for \'"
609 MC_BOOT_TIMEOUT_ENV_VAR
610 "\' environment variable: %lu\n",
611 timeout_ms);
612
Tom Rini65cc0e22022-11-16 13:10:41 -0500613 timeout_ms = CFG_SYS_LS_MC_BOOT_TIMEOUT_MS;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700614 }
615 }
616
617 return timeout_ms;
618}
619
Tom Rini65cc0e22022-11-16 13:10:41 -0500620#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
York Sun3c1d2182016-04-04 11:41:26 -0700621
622__weak bool soc_has_aiop(void)
623{
624 return false;
625}
626
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530627static int load_mc_aiop_img(u64 aiop_fw_addr)
J. German Riverac1000c12015-07-02 11:28:58 +0530628{
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530629 u64 mc_ram_addr = mc_get_dram_addr();
630#ifndef CONFIG_SYS_LS_MC_DPC_IN_DDR
J. German Riverac1000c12015-07-02 11:28:58 +0530631 void *aiop_img;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530632#endif
J. German Riverac1000c12015-07-02 11:28:58 +0530633
York Sun3c1d2182016-04-04 11:41:26 -0700634 /* Check if AIOP is available */
635 if (!soc_has_aiop())
636 return -ENODEV;
J. German Riverac1000c12015-07-02 11:28:58 +0530637 /*
638 * Load the MC AIOP image in the MC private DRAM block:
639 */
640
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530641#ifdef CONFIG_SYS_LS_MC_DPC_IN_DDR
642 printf("MC AIOP is preloaded to %#llx\n", mc_ram_addr +
Tom Rini65cc0e22022-11-16 13:10:41 -0500643 CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET);
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530644#else
645 aiop_img = (void *)aiop_fw_addr;
J. German Riverac1000c12015-07-02 11:28:58 +0530646 mc_copy_image("MC AIOP image",
Tom Rini65cc0e22022-11-16 13:10:41 -0500647 (u64)aiop_img, CFG_SYS_LS_MC_AIOP_IMG_MAX_LENGTH,
648 mc_ram_addr + CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET);
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530649#endif
650 mc_aiop_applied = 0;
J. German Riverac1000c12015-07-02 11:28:58 +0530651
652 return 0;
653}
654#endif
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530655
J. German Rivera125e2bc2015-03-20 19:28:18 -0700656static int wait_for_mc(bool booting_mc, u32 *final_reg_gsr)
657{
658 u32 reg_gsr;
659 u32 mc_fw_boot_status;
660 unsigned long timeout_ms = get_mc_boot_timeout_ms();
661 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
662
663 dmb();
J. German Rivera125e2bc2015-03-20 19:28:18 -0700664 assert(timeout_ms > 0);
665 for (;;) {
666 udelay(1000); /* throttle polling */
667 reg_gsr = in_le32(&mc_ccsr_regs->reg_gsr);
668 mc_fw_boot_status = (reg_gsr & GSR_FS_MASK);
669 if (mc_fw_boot_status & 0x1)
670 break;
671
672 timeout_ms--;
673 if (timeout_ms == 0)
674 break;
675 }
676
677 if (timeout_ms == 0) {
J. German Riveracc088c32015-07-02 11:28:56 +0530678 printf("ERROR: timeout\n");
J. German Rivera125e2bc2015-03-20 19:28:18 -0700679
680 /* TODO: Get an error status from an MC CCSR register */
681 return -ETIMEDOUT;
682 }
683
684 if (mc_fw_boot_status != 0x1) {
685 /*
686 * TODO: Identify critical errors from the GSR register's FS
687 * field and for those errors, set error to -ENODEV or other
688 * appropriate errno, so that the status property is set to
689 * failure in the fsl,dprc device tree node.
690 */
J. German Riveracc088c32015-07-02 11:28:56 +0530691 printf("WARNING: Firmware returned an error (GSR: %#x)\n",
692 reg_gsr);
693 } else {
694 printf("SUCCESS\n");
J. German Rivera125e2bc2015-03-20 19:28:18 -0700695 }
696
697 *final_reg_gsr = reg_gsr;
698 return 0;
699}
J. German Riverab940ca62014-06-23 15:15:55 -0700700
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530701int mc_init(u64 mc_fw_addr, u64 mc_dpc_addr)
J. German Riverab940ca62014-06-23 15:15:55 -0700702{
703 int error = 0;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -0700704 int portal_id = 0;
J. German Riverab940ca62014-06-23 15:15:55 -0700705 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530706 u64 mc_ram_addr = mc_get_dram_addr();
J. German Riverab940ca62014-06-23 15:15:55 -0700707 u32 reg_gsr;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700708 u32 reg_mcfbalr;
709#ifndef CONFIG_SYS_LS_MC_FW_IN_DDR
J. German Riverab940ca62014-06-23 15:15:55 -0700710 const void *raw_image_addr;
711 size_t raw_image_size = 0;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700712#endif
J. German Rivera125e2bc2015-03-20 19:28:18 -0700713 u8 mc_ram_num_256mb_blocks;
714 size_t mc_ram_size = mc_get_dram_block_size();
J. German Riverab940ca62014-06-23 15:15:55 -0700715
York Sun437858b62017-03-06 09:02:29 -0800716 mc_ram_num_256mb_blocks = mc_ram_size / MC_RAM_SIZE_ALIGNMENT;
Meenakshi Aggarwal43ad41e2019-02-27 14:41:02 +0530717
718 if (mc_ram_num_256mb_blocks >= 0xff) {
York Sun437858b62017-03-06 09:02:29 -0800719 error = -EINVAL;
720 printf("fsl-mc: ERROR: invalid MC private RAM size (%lu)\n",
721 mc_ram_size);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700722 goto out;
York Sun437858b62017-03-06 09:02:29 -0800723 }
J. German Rivera125e2bc2015-03-20 19:28:18 -0700724
J. German Riverab940ca62014-06-23 15:15:55 -0700725 /*
Meenakshi Aggarwal43ad41e2019-02-27 14:41:02 +0530726 * To support 128 MB DDR Size for MC
727 */
728 if (mc_ram_num_256mb_blocks == 0)
729 mc_ram_num_256mb_blocks = 0xFF;
730
731 /*
J. German Riverab940ca62014-06-23 15:15:55 -0700732 * Management Complex cores should be held at reset out of POR.
Bin Menga1875592016-02-05 19:30:11 -0800733 * U-Boot should be the first software to touch MC. To be safe,
J. German Riverab940ca62014-06-23 15:15:55 -0700734 * we reset all cores again by setting GCR1 to 0. It doesn't do
735 * anything if they are held at reset. After we setup the firmware
736 * we kick off MC by deasserting the reset bit for core 0, and
737 * deasserting the reset bits for Command Portal Managers.
738 * The stop bits are not touched here. They are used to stop the
739 * cores when they are active. Setting stop bits doesn't stop the
740 * cores from fetching instructions when they are released from
741 * reset.
742 */
743 out_le32(&mc_ccsr_regs->reg_gcr1, 0);
744 dmb();
745
J. German Rivera125e2bc2015-03-20 19:28:18 -0700746#ifdef CONFIG_SYS_LS_MC_FW_IN_DDR
747 printf("MC firmware is preloaded to %#llx\n", mc_ram_addr);
748#else
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530749 error = parse_mc_firmware_fit_image(mc_fw_addr, &raw_image_addr,
750 &raw_image_size);
J. German Riverab940ca62014-06-23 15:15:55 -0700751 if (error != 0)
752 goto out;
753 /*
754 * Load the MC FW at the beginning of the MC private DRAM block:
755 */
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800756 mc_copy_image("MC Firmware",
757 (u64)raw_image_addr, raw_image_size, mc_ram_addr);
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800758#endif
J. German Rivera125e2bc2015-03-20 19:28:18 -0700759 dump_ram_words("firmware", (void *)mc_ram_addr);
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800760
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530761 error = load_mc_dpc(mc_ram_addr, mc_ram_size, mc_dpc_addr);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700762 if (error != 0)
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800763 goto out;
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800764
J. German Riverab940ca62014-06-23 15:15:55 -0700765 debug("mc_ccsr_regs %p\n", mc_ccsr_regs);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700766 dump_mc_ccsr_regs(mc_ccsr_regs);
J. German Riverab940ca62014-06-23 15:15:55 -0700767
768 /*
J. German Rivera125e2bc2015-03-20 19:28:18 -0700769 * Tell MC what is the address range of the DRAM block assigned to it:
J. German Riverab940ca62014-06-23 15:15:55 -0700770 */
Meenakshi Aggarwal43ad41e2019-02-27 14:41:02 +0530771 if (mc_ram_num_256mb_blocks < 0xFF) {
772 reg_mcfbalr = (u32)mc_ram_addr |
773 (mc_ram_num_256mb_blocks - 1);
774 } else {
775 reg_mcfbalr = (u32)mc_ram_addr |
776 (mc_ram_num_256mb_blocks);
777 }
778
J. German Rivera125e2bc2015-03-20 19:28:18 -0700779 out_le32(&mc_ccsr_regs->reg_mcfbalr, reg_mcfbalr);
780 out_le32(&mc_ccsr_regs->reg_mcfbahr,
York Sun437858b62017-03-06 09:02:29 -0800781 (u32)(mc_ram_addr >> 32));
Stuart Yoder39da6442015-07-02 11:29:02 +0530782 out_le32(&mc_ccsr_regs->reg_mcfapr, FSL_BYPASS_AMQ);
J. German Riverab940ca62014-06-23 15:15:55 -0700783
784 /*
J. German Rivera125e2bc2015-03-20 19:28:18 -0700785 * Tell the MC that we want delayed DPL deployment.
J. German Riverab940ca62014-06-23 15:15:55 -0700786 */
J. German Rivera125e2bc2015-03-20 19:28:18 -0700787 out_le32(&mc_ccsr_regs->reg_gsr, 0xDD00);
J. German Riverab940ca62014-06-23 15:15:55 -0700788
J. German Riveracc088c32015-07-02 11:28:56 +0530789 printf("\nfsl-mc: Booting Management Complex ... ");
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800790
J. German Riverab940ca62014-06-23 15:15:55 -0700791 /*
792 * Deassert reset and release MC core 0 to run
793 */
794 out_le32(&mc_ccsr_regs->reg_gcr1, GCR1_P1_DE_RST | GCR1_M_ALL_DE_RST);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700795 error = wait_for_mc(true, &reg_gsr);
796 if (error != 0)
J. German Riverab940ca62014-06-23 15:15:55 -0700797 goto out;
J. German Riverab940ca62014-06-23 15:15:55 -0700798
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800799 /*
800 * TODO: need to obtain the portal_id for the root container from the
801 * DPL
802 */
803 portal_id = 0;
804
805 /*
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -0700806 * Initialize the global default MC portal
807 * And check that the MC firmware is responding portal commands:
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800808 */
Ioana Ciornei6dcf5e42023-01-05 17:03:19 +0200809 root_mc_io = calloc(sizeof(struct fsl_mc_io), 1);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +0530810 if (!root_mc_io) {
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +0530811 printf(" No memory: calloc() failed\n");
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -0700812 return -ENOMEM;
813 }
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800814
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +0530815 root_mc_io->mmio_regs = SOC_MC_PORTAL_ADDR(portal_id);
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -0700816 debug("Checking access to MC portal of root DPRC container (portal_id %d, portal physical addr %p)\n",
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +0530817 portal_id, root_mc_io->mmio_regs);
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -0700818
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +0530819 error = mc_get_version(root_mc_io, MC_CMD_NO_FLAGS, &mc_ver_info);
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800820 if (error != 0) {
821 printf("fsl-mc: ERROR: Firmware version check failed (error: %d)\n",
822 error);
823 goto out;
824 }
825
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800826 printf("fsl-mc: Management Complex booted (version: %d.%d.%d, boot status: %#x)\n",
827 mc_ver_info.major, mc_ver_info.minor, mc_ver_info.revision,
J. German Rivera125e2bc2015-03-20 19:28:18 -0700828 reg_gsr & GSR_FS_MASK);
829
J. German Riverab940ca62014-06-23 15:15:55 -0700830out:
831 if (error != 0)
Prabhakar Kushwaha2b7c4a12015-07-02 11:29:01 +0530832 mc_boot_status = error;
J. German Riverab940ca62014-06-23 15:15:55 -0700833 else
834 mc_boot_status = 0;
835
836 return error;
837}
838
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530839int mc_apply_dpl(u64 mc_dpl_addr)
840{
841 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
842 int error = 0;
843 u32 reg_gsr;
844 u64 mc_ram_addr = mc_get_dram_addr();
845 size_t mc_ram_size = mc_get_dram_block_size();
846
Alexander Grafb7b84102016-11-17 01:02:57 +0100847 if (!mc_dpl_addr)
848 return -1;
849
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530850 error = load_mc_dpl(mc_ram_addr, mc_ram_size, mc_dpl_addr);
851 if (error != 0)
852 return error;
853
854 /*
855 * Tell the MC to deploy the DPL:
856 */
857 out_le32(&mc_ccsr_regs->reg_gsr, 0x0);
858 printf("fsl-mc: Deploying data path layout ... ");
859 error = wait_for_mc(false, &reg_gsr);
860
861 if (!error)
862 mc_dpl_applied = 0;
863
864 return error;
865}
866
J. German Riverab940ca62014-06-23 15:15:55 -0700867int get_mc_boot_status(void)
868{
869 return mc_boot_status;
870}
871
Tom Rini65cc0e22022-11-16 13:10:41 -0500872#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530873int get_aiop_apply_status(void)
874{
875 return mc_aiop_applied;
876}
877#endif
878
879int get_dpl_apply_status(void)
880{
881 return mc_dpl_applied;
882}
883
Mian Yousaf Kaukab7e968042018-12-18 14:01:17 +0100884int is_lazy_dpl_addr_valid(void)
885{
886 return !!mc_lazy_dpl_addr;
887}
888
Priyanka Jain033c5382017-08-24 16:42:43 +0530889/*
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530890 * Return the MC address of private DRAM block.
Priyanka Jain033c5382017-08-24 16:42:43 +0530891 * As per MC design document, MC initial base address
892 * should be least significant 512MB address of MC private
893 * memory, i.e. address should point to end address masked
894 * with 512MB offset in private DRAM block.
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530895 */
896u64 mc_get_dram_addr(void)
897{
Priyanka Jain033c5382017-08-24 16:42:43 +0530898 size_t mc_ram_size = mc_get_dram_block_size();
899
Prabhakar Kushwaha87519a92018-08-27 12:58:52 +0530900 if (!mc_memset_resv_ram || (get_mc_boot_status() < 0)) {
901 mc_memset_resv_ram = 1;
902 memset((void *)gd->arch.resv_ram, 0, mc_ram_size);
903 }
904
Priyanka Jain033c5382017-08-24 16:42:43 +0530905 return (gd->arch.resv_ram + mc_ram_size - 1) &
906 MC_RAM_BASE_ADDR_ALIGNMENT_MASK;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +0530907}
908
J. German Riverab940ca62014-06-23 15:15:55 -0700909/**
910 * Return the actual size of the MC private DRAM block.
J. German Riverab940ca62014-06-23 15:15:55 -0700911 */
912unsigned long mc_get_dram_block_size(void)
913{
Tom Rini65cc0e22022-11-16 13:10:41 -0500914 unsigned long dram_block_size = CFG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700915
Simon Glass00caae62017-08-03 12:22:12 -0600916 char *dram_block_size_env_var = env_get(MC_MEM_SIZE_ENV_VAR);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700917
918 if (dram_block_size_env_var) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600919 dram_block_size = hextoul(dram_block_size_env_var, NULL);
J. German Rivera125e2bc2015-03-20 19:28:18 -0700920
Tom Rini65cc0e22022-11-16 13:10:41 -0500921 if (dram_block_size < CFG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE) {
J. German Rivera125e2bc2015-03-20 19:28:18 -0700922 printf("fsl-mc: WARNING: Invalid value for \'"
923 MC_MEM_SIZE_ENV_VAR
924 "\' environment variable: %lu\n",
925 dram_block_size);
926
Meenakshi Aggarwal43ad41e2019-02-27 14:41:02 +0530927 dram_block_size = MC_DRAM_BLOCK_DEFAULT_SIZE;
J. German Rivera125e2bc2015-03-20 19:28:18 -0700928 }
929 }
930
931 return dram_block_size;
J. German Riverab940ca62014-06-23 15:15:55 -0700932}
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -0700933
Laurentiu Tudor1dd7b562023-09-27 18:30:47 +0300934/**
935 * Populate the device tree with MC reserved memory ranges.
936 */
937void fdt_reserve_mc_mem(void *blob, u32 mc_icid)
938{
939 u32 phandle, mc_ph;
940 int noff, ret, i;
941 char mem_name[16];
942 struct fdt_memory mc_mem_ranges[] = {
943 {
944 .start = 0,
945 .end = 0
946 },
947 {
948 .start = CFG_SYS_FSL_MC_BASE,
949 .end = CFG_SYS_FSL_MC_BASE + CFG_SYS_FSL_MC_SIZE - 1
950 },
951 {
952 .start = CFG_SYS_FSL_NI_BASE,
953 .end = CFG_SYS_FSL_NI_BASE + CFG_SYS_FSL_NI_SIZE - 1
954 },
955 {
956 .start = CFG_SYS_FSL_QBMAN_BASE,
957 .end = CFG_SYS_FSL_QBMAN_BASE +
958 CFG_SYS_FSL_QBMAN_SIZE - 1
959 },
960 {
961 .start = CFG_SYS_FSL_PEBUF_BASE,
962 .end = CFG_SYS_FSL_PEBUF_BASE +
963 CFG_SYS_FSL_PEBUF_SIZE - 1
964 },
965 {
966 .start = CFG_SYS_FSL_CCSR_BASE,
967 .end = CFG_SYS_FSL_CCSR_BASE + CFG_SYS_FSL_CCSR_SIZE - 1
968 }
969 };
970
971 mc_mem_ranges[0].start = gd->arch.resv_ram;
972 mc_mem_ranges[0].end = mc_mem_ranges[0].start +
973 mc_get_dram_block_size() - 1;
974
975 for (i = 0; i < ARRAY_SIZE(mc_mem_ranges); i++) {
976 noff = fdt_node_offset_by_compatible(blob, -1, "fsl,qoriq-mc");
977 if (noff < 0) {
978 printf("WARN: failed to get MC node: %d\n", noff);
979 return;
980 }
981 mc_ph = fdt_get_phandle(blob, noff);
982 if (!mc_ph) {
983 mc_ph = fdt_create_phandle(blob, noff);
984 if (!mc_ph) {
985 printf("WARN: failed to get MC node phandle\n");
986 return;
987 }
988 }
989
990 sprintf(mem_name, "mc-mem%d", i);
991 ret = fdtdec_add_reserved_memory(blob, mem_name,
992 &mc_mem_ranges[i], NULL, 0,
993 &phandle, 0);
994 if (ret < 0) {
995 printf("ERROR: failed to reserve MC memory: %d\n", ret);
996 return;
997 }
998
999 noff = fdt_node_offset_by_phandle(blob, phandle);
1000 if (noff < 0) {
1001 printf("ERROR: failed get resvmem node offset: %d\n",
1002 noff);
1003 return;
1004 }
1005 ret = fdt_setprop_u32(blob, noff, "iommu-addresses", mc_ph);
1006 if (ret < 0) {
1007 printf("ERROR: failed to set 'iommu-addresses': %d\n",
1008 ret);
1009 return;
1010 }
1011 ret = fdt_appendprop_u64(blob, noff, "iommu-addresses",
1012 mc_mem_ranges[i].start);
1013 if (ret < 0) {
1014 printf("ERROR: failed to set 'iommu-addresses': %d\n",
1015 ret);
1016 return;
1017 }
1018 ret = fdt_appendprop_u64(blob, noff, "iommu-addresses",
1019 mc_mem_ranges[i].end -
1020 mc_mem_ranges[i].start + 1);
1021 if (ret < 0) {
1022 printf("ERROR: failed to set 'iommu-addresses': %d\n",
1023 ret);
1024 return;
1025 }
1026
1027 noff = fdt_node_offset_by_phandle(blob, mc_ph);
1028 if (noff < 0) {
1029 printf("ERROR: failed get MC node offset: %d\n", noff);
1030 return;
1031 }
1032 ret = fdt_appendprop_u32(blob, noff, "memory-region", phandle);
1033 if (ret < 0) {
1034 printf("ERROR: failed to set 'memory-region': %d\n",
1035 ret);
1036 }
1037 }
1038
1039 fdt_set_iommu_prop(blob, noff, fdt_get_smmu_phandle(blob), &mc_icid, 1);
1040}
1041
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001042int fsl_mc_ldpaa_init(struct bd_info *bis)
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301043{
Prabhakar Kushwahac919ab92015-11-04 12:26:00 +05301044 int i;
1045
1046 for (i = WRIOP1_DPMAC1; i < NUM_WRIOP_PORTS; i++)
Pankaj Bansal1ed19a12018-10-10 14:08:33 +05301047 if (wriop_is_enabled_dpmac(i) == 1)
Prabhakar Kushwahac919ab92015-11-04 12:26:00 +05301048 ldpaa_eth_init(i, wriop_get_enet_if(i));
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301049 return 0;
1050}
1051
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301052static int dprc_version_check(struct fsl_mc_io *mc_io, uint16_t handle)
1053{
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301054 int error;
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301055 uint16_t major_ver, minor_ver;
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301056
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301057 error = dprc_get_api_version(mc_io, 0,
1058 &major_ver,
1059 &minor_ver);
1060 if (error < 0) {
1061 printf("dprc_get_api_version() failed: %d\n", error);
1062 return error;
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301063 }
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301064
1065 if (major_ver < DPRC_VER_MAJOR || (major_ver == DPRC_VER_MAJOR &&
1066 minor_ver < DPRC_VER_MINOR)) {
1067 printf("DPRC version mismatch found %u.%u,",
1068 major_ver, minor_ver);
1069 printf("supported version is %u.%u\n",
1070 DPRC_VER_MAJOR, DPRC_VER_MINOR);
1071 }
1072
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301073 return error;
1074}
1075
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301076static int dpio_init(void)
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001077{
1078 struct qbman_swp_desc p_des;
1079 struct dpio_attr attr;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301080 struct dpio_cfg dpio_cfg;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001081 int err = 0;
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301082 uint16_t major_ver, minor_ver;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001083
Ioana Ciornei6dcf5e42023-01-05 17:03:19 +02001084 dflt_dpio = calloc(sizeof(struct fsl_dpio_obj), 1);
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001085 if (!dflt_dpio) {
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301086 printf("No memory: calloc() failed\n");
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301087 err = -ENOMEM;
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301088 goto err_calloc;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001089 }
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301090 dpio_cfg.channel_mode = DPIO_LOCAL_CHANNEL;
1091 dpio_cfg.num_priorities = 8;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001092
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301093 err = dpio_create(dflt_mc_io,
1094 dflt_dprc_handle,
1095 MC_CMD_NO_FLAGS,
1096 &dpio_cfg,
1097 &dflt_dpio->dpio_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301098 if (err < 0) {
1099 printf("dpio_create() failed: %d\n", err);
1100 err = -ENODEV;
1101 goto err_create;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001102 }
1103
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301104 err = dpio_get_api_version(dflt_mc_io, 0,
1105 &major_ver,
1106 &minor_ver);
1107 if (err < 0) {
1108 printf("dpio_get_api_version() failed: %d\n", err);
1109 goto err_get_api_ver;
1110 }
1111
1112 if (major_ver < DPIO_VER_MAJOR || (major_ver == DPIO_VER_MAJOR &&
1113 minor_ver < DPIO_VER_MINOR)) {
1114 printf("DPRC version mismatch found %u.%u,",
1115 major_ver,
1116 minor_ver);
1117 }
1118
1119 err = dpio_open(dflt_mc_io,
1120 MC_CMD_NO_FLAGS,
1121 dflt_dpio->dpio_id,
1122 &dflt_dpio->dpio_handle);
1123 if (err) {
1124 printf("dpio_open() failed\n");
1125 goto err_open;
1126 }
1127
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301128 memset(&attr, 0, sizeof(struct dpio_attr));
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +05301129 err = dpio_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301130 dflt_dpio->dpio_handle, &attr);
1131 if (err < 0) {
1132 printf("dpio_get_attributes() failed: %d\n", err);
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001133 goto err_get_attr;
1134 }
1135
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301136 if (dflt_dpio->dpio_id != attr.id) {
1137 printf("dnpi object id and attribute id are not same\n");
1138 goto err_attr_not_same;
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301139 }
1140
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301141#ifdef DEBUG
Ioana Ciornei8ecf1ca2023-01-05 17:03:17 +02001142 printf("Init: DPIO.%d\n", dflt_dpio->dpio_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301143#endif
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301144 err = dpio_enable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
1145 if (err < 0) {
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001146 printf("dpio_enable() failed %d\n", err);
1147 goto err_get_enable;
1148 }
Prabhakar Kushwaha1f1c25c2015-07-02 11:28:59 +05301149 debug("ce_offset=0x%llx, ci_offset=0x%llx, portalid=%d, prios=%d\n",
1150 attr.qbman_portal_ce_offset,
1151 attr.qbman_portal_ci_offset,
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001152 attr.qbman_portal_id,
1153 attr.num_priorities);
1154
Prabhakar Kushwaha1f1c25c2015-07-02 11:28:59 +05301155 p_des.cena_bar = (void *)(SOC_QBMAN_PORTALS_BASE_ADDR
1156 + attr.qbman_portal_ce_offset);
1157 p_des.cinh_bar = (void *)(SOC_QBMAN_PORTALS_BASE_ADDR
1158 + attr.qbman_portal_ci_offset);
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001159
1160 dflt_dpio->sw_portal = qbman_swp_init(&p_des);
1161 if (dflt_dpio->sw_portal == NULL) {
1162 printf("qbman_swp_init() failed\n");
1163 goto err_get_swp_init;
1164 }
1165 return 0;
1166
1167err_get_swp_init:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301168 dpio_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001169err_get_enable:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301170err_get_attr:
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301171err_attr_not_same:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301172 dpio_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301173err_open:
1174err_get_api_ver:
1175 dpio_destroy(dflt_mc_io,
1176 dflt_dprc_handle,
1177 MC_CMD_NO_FLAGS,
1178 dflt_dpio->dpio_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301179err_create:
Prabhakar Kushwahacd7b3fb2016-03-18 16:15:29 +05301180 free(dflt_dpio);
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301181err_calloc:
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001182 return err;
1183}
1184
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301185static int dpio_exit(void)
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001186{
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301187 int err;
1188
1189 err = dpio_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
1190 if (err < 0) {
1191 printf("dpio_disable() failed: %d\n", err);
1192 goto err;
1193 }
1194
Cosmin-Florin Aluchenesei669884e2021-07-21 19:13:33 +03001195 err = dpio_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301196 if (err < 0) {
1197 printf("dpio_close() failed: %d\n", err);
1198 goto err;
1199 }
1200
1201 err = dpio_destroy(dflt_mc_io,
1202 dflt_dprc_handle,
1203 MC_CMD_NO_FLAGS,
1204 dflt_dpio->dpio_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301205 if (err < 0) {
1206 printf("dpio_destroy() failed: %d\n", err);
1207 goto err;
1208 }
1209
1210#ifdef DEBUG
Ioana Ciornei8ecf1ca2023-01-05 17:03:17 +02001211 printf("Exit: DPIO.%d\n", dflt_dpio->dpio_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301212#endif
1213
1214 if (dflt_dpio)
1215 free(dflt_dpio);
1216
1217 return 0;
1218err:
1219 return err;
1220}
1221
1222static int dprc_init(void)
1223{
1224 int err, child_portal_id, container_id;
1225 struct dprc_cfg cfg;
1226 uint64_t mc_portal_offset;
1227
1228 /* Open root container */
1229 err = dprc_get_container_id(root_mc_io, MC_CMD_NO_FLAGS, &container_id);
1230 if (err < 0) {
1231 printf("dprc_get_container_id(): Root failed: %d\n", err);
1232 goto err_root_container_id;
1233 }
1234
1235#ifdef DEBUG
1236 printf("Root container id = %d\n", container_id);
1237#endif
1238 err = dprc_open(root_mc_io, MC_CMD_NO_FLAGS, container_id,
1239 &root_dprc_handle);
1240 if (err < 0) {
1241 printf("dprc_open(): Root Container failed: %d\n", err);
1242 goto err_root_open;
1243 }
1244
1245 if (!root_dprc_handle) {
1246 printf("dprc_open(): Root Container Handle is not valid\n");
1247 goto err_root_open;
1248 }
1249
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301250 err = dprc_version_check(root_mc_io, root_dprc_handle);
1251 if (err < 0) {
1252 printf("dprc_version_check() failed: %d\n", err);
1253 goto err_root_open;
1254 }
1255
Prabhakar Kushwaha5373b202016-01-20 12:04:19 +05301256 memset(&cfg, 0, sizeof(struct dprc_cfg));
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301257 cfg.options = DPRC_CFG_OPT_TOPOLOGY_CHANGES_ALLOWED |
1258 DPRC_CFG_OPT_OBJ_CREATE_ALLOWED |
1259 DPRC_CFG_OPT_ALLOC_ALLOWED;
1260 cfg.icid = DPRC_GET_ICID_FROM_POOL;
Prabhakar Kushwaha335b1932015-12-24 15:33:49 +05301261 cfg.portal_id = DPRC_GET_PORTAL_ID_FROM_POOL;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301262 err = dprc_create_container(root_mc_io, MC_CMD_NO_FLAGS,
Ioana Ciorneif45ed0b2023-01-05 17:03:20 +02001263 root_dprc_handle, &cfg,
1264 &child_dprc_id,
1265 &mc_portal_offset);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301266 if (err < 0) {
1267 printf("dprc_create_container() failed: %d\n", err);
1268 goto err_create;
1269 }
1270
Ioana Ciornei6dcf5e42023-01-05 17:03:19 +02001271 dflt_mc_io = calloc(sizeof(struct fsl_mc_io), 1);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301272 if (!dflt_mc_io) {
1273 err = -ENOMEM;
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301274 printf(" No memory: calloc() failed\n");
1275 goto err_calloc;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301276 }
1277
1278 child_portal_id = MC_PORTAL_OFFSET_TO_PORTAL_ID(mc_portal_offset);
1279 dflt_mc_io->mmio_regs = SOC_MC_PORTAL_ADDR(child_portal_id);
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301280
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301281#ifdef DEBUG
1282 printf("MC portal of child DPRC container: %d, physical addr %p)\n",
1283 child_dprc_id, dflt_mc_io->mmio_regs);
1284#endif
1285
1286 err = dprc_open(dflt_mc_io, MC_CMD_NO_FLAGS, child_dprc_id,
1287 &dflt_dprc_handle);
1288 if (err < 0) {
1289 printf("dprc_open(): Child container failed: %d\n", err);
1290 goto err_child_open;
1291 }
1292
1293 if (!dflt_dprc_handle) {
1294 printf("dprc_open(): Child container Handle is not valid\n");
1295 goto err_child_open;
1296 }
1297
1298 return 0;
1299err_child_open:
1300 free(dflt_mc_io);
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301301err_calloc:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301302 dprc_destroy_container(root_mc_io, MC_CMD_NO_FLAGS,
1303 root_dprc_handle, child_dprc_id);
1304err_create:
1305 dprc_close(root_mc_io, MC_CMD_NO_FLAGS, root_dprc_handle);
1306err_root_open:
1307err_root_container_id:
1308 return err;
1309}
1310
1311static int dprc_exit(void)
1312{
1313 int err;
1314
1315 err = dprc_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dprc_handle);
1316 if (err < 0) {
1317 printf("dprc_close(): Child failed: %d\n", err);
1318 goto err;
1319 }
1320
1321 err = dprc_destroy_container(root_mc_io, MC_CMD_NO_FLAGS,
1322 root_dprc_handle, child_dprc_id);
1323 if (err < 0) {
1324 printf("dprc_destroy_container() failed: %d\n", err);
1325 goto err;
1326 }
1327
1328 err = dprc_close(root_mc_io, MC_CMD_NO_FLAGS, root_dprc_handle);
1329 if (err < 0) {
1330 printf("dprc_close(): Root failed: %d\n", err);
1331 goto err;
1332 }
1333
1334 if (dflt_mc_io)
1335 free(dflt_mc_io);
1336
1337 if (root_mc_io)
1338 free(root_mc_io);
1339
1340 return 0;
1341
1342err:
1343 return err;
1344}
1345
1346static int dpbp_init(void)
1347{
1348 int err;
1349 struct dpbp_attr dpbp_attr;
1350 struct dpbp_cfg dpbp_cfg;
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301351 uint16_t major_ver, minor_ver;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301352
Ioana Ciornei6dcf5e42023-01-05 17:03:19 +02001353 dflt_dpbp = calloc(sizeof(struct fsl_dpbp_obj), 1);
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001354 if (!dflt_dpbp) {
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301355 printf("No memory: calloc() failed\n");
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301356 err = -ENOMEM;
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301357 goto err_calloc;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001358 }
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301359
1360 dpbp_cfg.options = 512;
1361
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301362 err = dpbp_create(dflt_mc_io,
1363 dflt_dprc_handle,
1364 MC_CMD_NO_FLAGS,
1365 &dpbp_cfg,
1366 &dflt_dpbp->dpbp_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301367
1368 if (err < 0) {
1369 err = -ENODEV;
1370 printf("dpbp_create() failed: %d\n", err);
1371 goto err_create;
1372 }
1373
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301374 err = dpbp_get_api_version(dflt_mc_io, 0,
1375 &major_ver,
1376 &minor_ver);
1377 if (err < 0) {
1378 printf("dpbp_get_api_version() failed: %d\n", err);
1379 goto err_get_api_ver;
1380 }
1381
1382 if (major_ver < DPBP_VER_MAJOR || (major_ver == DPBP_VER_MAJOR &&
1383 minor_ver < DPBP_VER_MINOR)) {
1384 printf("DPBP version mismatch found %u.%u,",
1385 major_ver, minor_ver);
1386 printf("supported version is %u.%u\n",
1387 DPBP_VER_MAJOR, DPBP_VER_MINOR);
1388 }
1389
1390 err = dpbp_open(dflt_mc_io,
1391 MC_CMD_NO_FLAGS,
1392 dflt_dpbp->dpbp_id,
1393 &dflt_dpbp->dpbp_handle);
1394 if (err) {
1395 printf("dpbp_open() failed\n");
1396 goto err_open;
1397 }
1398
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301399 memset(&dpbp_attr, 0, sizeof(struct dpbp_attr));
1400 err = dpbp_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
1401 dflt_dpbp->dpbp_handle,
1402 &dpbp_attr);
1403 if (err < 0) {
1404 printf("dpbp_get_attributes() failed: %d\n", err);
1405 goto err_get_attr;
1406 }
1407
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301408 if (dflt_dpbp->dpbp_id != dpbp_attr.id) {
1409 printf("dpbp object id and attribute id are not same\n");
1410 goto err_attr_not_same;
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301411 }
1412
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301413#ifdef DEBUG
Ioana Ciornei8ecf1ca2023-01-05 17:03:17 +02001414 printf("Init: DPBP.%d\n", dflt_dpbp->dpbp_attr.id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301415#endif
1416
1417 err = dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
1418 if (err < 0) {
1419 printf("dpbp_close() failed: %d\n", err);
1420 goto err_close;
1421 }
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001422
1423 return 0;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301424
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301425err_get_attr:
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301426err_attr_not_same:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301427 dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301428 dpbp_destroy(dflt_mc_io,
1429 dflt_dprc_handle,
1430 MC_CMD_NO_FLAGS,
1431 dflt_dpbp->dpbp_id);
1432err_get_api_ver:
1433err_close:
1434err_open:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301435err_create:
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301436 free(dflt_dpbp);
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301437err_calloc:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301438 return err;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001439}
1440
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301441static int dpbp_exit(void)
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001442{
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301443 int err;
1444
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301445 err = dpbp_destroy(dflt_mc_io, dflt_dprc_handle, MC_CMD_NO_FLAGS,
1446 dflt_dpbp->dpbp_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301447 if (err < 0) {
1448 printf("dpbp_destroy() failed: %d\n", err);
1449 goto err;
1450 }
1451
1452#ifdef DEBUG
Ioana Ciornei8ecf1ca2023-01-05 17:03:17 +02001453 printf("Exit: DPBP.%d\n", dflt_dpbp->dpbp_attr.id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301454#endif
1455
1456 if (dflt_dpbp)
1457 free(dflt_dpbp);
1458 return 0;
1459
1460err:
1461 return err;
1462}
1463
1464static int dpni_init(void)
1465{
Ioana Ciornei207c8152023-05-31 19:04:33 +03001466 struct dpni_cfg dpni_cfg = {0};
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301467 uint16_t major_ver, minor_ver;
Ioana Ciornei207c8152023-05-31 19:04:33 +03001468 int err;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301469
Ioana Ciornei6dcf5e42023-01-05 17:03:19 +02001470 dflt_dpni = calloc(sizeof(struct fsl_dpni_obj), 1);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301471 if (!dflt_dpni) {
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301472 printf("No memory: calloc() failed\n");
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301473 err = -ENOMEM;
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301474 goto err_calloc;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301475 }
1476
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301477 err = dpni_create(dflt_mc_io,
1478 dflt_dprc_handle,
1479 MC_CMD_NO_FLAGS,
1480 &dpni_cfg,
1481 &dflt_dpni->dpni_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301482 if (err < 0) {
1483 err = -ENODEV;
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301484 printf("dpni create() failed: %d\n", err);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301485 goto err_create;
1486 }
1487
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301488 err = dpni_get_api_version(dflt_mc_io, 0,
1489 &major_ver,
1490 &minor_ver);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301491 if (err < 0) {
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301492 printf("dpni_get_api_version() failed: %d\n", err);
1493 goto err_get_version;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301494 }
1495
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301496 if (major_ver < DPNI_VER_MAJOR || (major_ver == DPNI_VER_MAJOR &&
1497 minor_ver < DPNI_VER_MINOR)) {
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301498 printf("DPNI version mismatch found %u.%u,",
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301499 major_ver, minor_ver);
Prabhakar Kushwaha9a696f52015-12-24 15:32:37 +05301500 printf("supported version is %u.%u\n",
1501 DPNI_VER_MAJOR, DPNI_VER_MINOR);
1502 }
1503
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301504 err = dpni_open(dflt_mc_io,
1505 MC_CMD_NO_FLAGS,
1506 dflt_dpni->dpni_id,
1507 &dflt_dpni->dpni_handle);
1508 if (err) {
1509 printf("dpni_open() failed\n");
1510 goto err_open;
1511 }
1512
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301513#ifdef DEBUG
Ioana Ciornei8ecf1ca2023-01-05 17:03:17 +02001514 printf("Init: DPNI.%d\n", dflt_dpni->dpni_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301515#endif
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301516 err = dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
1517 if (err < 0) {
1518 printf("dpni_close() failed: %d\n", err);
1519 goto err_close;
1520 }
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001521
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301522 return 0;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301523
1524err_close:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301525 dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301526err_open:
1527err_get_version:
1528 dpni_destroy(dflt_mc_io,
1529 dflt_dprc_handle,
1530 MC_CMD_NO_FLAGS,
1531 dflt_dpni->dpni_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301532err_create:
Prabhakar Kushwaha879a59a2015-12-24 15:33:01 +05301533 free(dflt_dpni);
Prabhakar Kushwahaa572fb62017-10-11 08:51:18 +05301534err_calloc:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301535 return err;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001536}
1537
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301538static int dpni_exit(void)
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001539{
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301540 int err;
1541
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301542 err = dpni_destroy(dflt_mc_io, dflt_dprc_handle, MC_CMD_NO_FLAGS,
1543 dflt_dpni->dpni_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301544 if (err < 0) {
1545 printf("dpni_destroy() failed: %d\n", err);
1546 goto err;
1547 }
1548
1549#ifdef DEBUG
Ioana Ciornei8ecf1ca2023-01-05 17:03:17 +02001550 printf("Exit: DPNI.%d\n", dflt_dpni->dpni_id);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301551#endif
1552
1553 if (dflt_dpni)
1554 free(dflt_dpni);
1555 return 0;
1556
1557err:
1558 return err;
1559}
1560
Florinel Iordache1990cc72019-11-19 10:28:17 +00001561static bool is_dpsparser_supported(void)
1562{
1563 /* dpsparser support was first introduced in MC version: 10.12.0 */
1564 if (mc_ver_info.major < 10)
1565 return false;
1566 if (mc_ver_info.major == 10)
1567 return (mc_ver_info.minor >= 12);
1568 return true;
1569}
1570
1571static int dpsparser_version_check(struct fsl_mc_io *mc_io)
1572{
1573 int error;
1574 u16 major_ver, minor_ver;
1575
1576 if (!is_dpsparser_supported())
1577 return 0;
1578
1579 error = dpsparser_get_api_version(mc_io, 0,
1580 &major_ver,
1581 &minor_ver);
1582 if (error < 0) {
1583 printf("dpsparser_get_api_version() failed: %d\n", error);
1584 return error;
1585 }
1586
1587 if (major_ver < DPSPARSER_VER_MAJOR || (major_ver ==
1588 DPSPARSER_VER_MAJOR && minor_ver < DPSPARSER_VER_MINOR)) {
1589 printf("DPSPARSER version mismatch found %u.%u,",
1590 major_ver, minor_ver);
1591 printf("supported version is %u.%u\n",
1592 DPSPARSER_VER_MAJOR, DPSPARSER_VER_MINOR);
1593 }
1594
1595 return error;
1596}
1597
1598static int dpsparser_init(void)
1599{
1600 int err = 0;
1601
1602 if (!is_dpsparser_supported())
1603 return 0;
1604
1605 err = dpsparser_create(dflt_mc_io,
1606 dflt_dprc_handle,
1607 MC_CMD_NO_FLAGS,
1608 &dpsparser_obj_id);
1609 if (err)
1610 printf("dpsparser_create() failed\n");
1611
1612 err = dpsparser_version_check(dflt_mc_io);
1613 if (err < 0) {
1614 printf("dpsparser_version_check() failed: %d\n", err);
1615 goto err_version_check;
1616 }
1617
1618 err = dpsparser_open(dflt_mc_io,
1619 MC_CMD_NO_FLAGS,
1620 &dpsparser_handle);
1621 if (err < 0) {
1622 printf("dpsparser_open() failed: %d\n", err);
1623 goto err_open;
1624 }
1625
1626 return err;
1627
1628err_open:
1629err_version_check:
1630 dpsparser_destroy(dflt_mc_io,
1631 dflt_dprc_handle,
1632 MC_CMD_NO_FLAGS, dpsparser_obj_id);
1633
1634 return err;
1635}
1636
1637#ifdef DPSPARSER_DESTROY
1638/* TODO: refactoring needed in the future to allow DPSPARSER object destroy
1639 * Workaround: DO NOT destroy DPSPARSER object because it needs to be available
1640 * on Apply DPL
1641 */
1642static int dpsparser_exit(void)
1643{
1644 int err;
1645
1646 if (!is_dpsparser_supported())
1647 return 0;
1648
1649 dpsparser_close(dflt_mc_io, MC_CMD_NO_FLAGS, dpsparser_handle);
1650 if (err < 0) {
1651 printf("dpsparser_close() failed: %d\n", err);
1652 goto err;
1653 }
1654
1655 err = dpsparser_destroy(dflt_mc_io, dflt_dprc_handle,
1656 MC_CMD_NO_FLAGS, dpsparser_obj_id);
1657 if (err < 0) {
1658 printf("dpsparser_destroy() failed: %d\n", err);
1659 goto err;
1660 }
1661 return 0;
1662
1663err:
1664 return err;
1665}
1666#endif
1667
1668int mc_apply_spb(u64 mc_spb_addr)
1669{
1670 int err = 0;
1671 u16 error, err_arr_size;
1672 u64 mc_spb_offset;
1673 u32 spb_size;
1674 struct sp_blob_header *sp_blob;
1675 u64 mc_ram_addr = mc_get_dram_addr();
1676
1677 if (!is_dpsparser_supported())
1678 return 0;
1679
1680 if (!mc_spb_addr) {
1681 printf("fsl-mc: Invalid Blob address\n");
1682 return -1;
1683 }
1684
1685#ifdef CONFIG_MC_DRAM_SPB_OFFSET
1686 mc_spb_offset = CONFIG_MC_DRAM_SPB_OFFSET;
1687#else
1688#error "CONFIG_MC_DRAM_SPB_OFFSET not defined"
1689#endif
1690
1691 // Read blob header and get size of SPB blob
1692 sp_blob = (struct sp_blob_header *)mc_spb_addr;
1693 spb_size = le32_to_cpu(sp_blob->length);
1694 if (spb_size > CONFIG_MC_SPB_MAX_SIZE) {
1695 printf("\nfsl-mc: ERROR: Bad SPB image (too large: %d)\n",
1696 spb_size);
1697 return -EINVAL;
1698 }
1699
1700 mc_copy_image("MC SP Blob", mc_spb_addr, spb_size,
1701 mc_ram_addr + mc_spb_offset);
1702
1703 //Invoke MC command to apply SPB blob
1704 printf("fsl-mc: Applying soft parser blob... ");
1705 err = dpsparser_apply_spb(dflt_mc_io, MC_CMD_NO_FLAGS, dpsparser_handle,
1706 mc_spb_offset, &error);
1707 if (err)
1708 return err;
1709
1710 if (error == 0) {
1711 printf("SUCCESS\n");
1712 } else {
1713 printf("FAILED with error code = %d:\n", error);
1714 err_arr_size = (u16)ARRAY_SIZE(mc_err_msg_apply_spb);
1715
1716 if (error > 0 && error < err_arr_size)
1717 printf(mc_err_msg_apply_spb[error]);
1718 else
1719 printf(MC_ERROR_MSG_SPB_UNKNOWN);
1720 }
1721
1722 return err;
1723}
1724
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301725static int mc_init_object(void)
1726{
1727 int err = 0;
1728
1729 err = dprc_init();
1730 if (err < 0) {
1731 printf("dprc_init() failed: %d\n", err);
1732 goto err;
1733 }
1734
1735 err = dpbp_init();
1736 if (err < 0) {
1737 printf("dpbp_init() failed: %d\n", err);
1738 goto err;
1739 }
1740
1741 err = dpio_init();
1742 if (err < 0) {
1743 printf("dpio_init() failed: %d\n", err);
1744 goto err;
1745 }
1746
1747 err = dpni_init();
1748 if (err < 0) {
1749 printf("dpni_init() failed: %d\n", err);
1750 goto err;
1751 }
1752
Florinel Iordache1990cc72019-11-19 10:28:17 +00001753 err = dpsparser_init();
1754 if (err < 0) {
1755 printf("dpsparser_init() failed: %d\n", err);
1756 goto err;
1757 }
1758
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301759 return 0;
1760err:
1761 return err;
1762}
1763
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001764int fsl_mc_ldpaa_exit(struct bd_info *bd)
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301765{
1766 int err = 0;
Yogesh Gaur42e81792017-04-27 10:14:16 +05301767 bool is_dpl_apply_status = false;
Santan Kumar06651b92017-06-29 11:19:34 +05301768 bool mc_boot_status = false;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301769
Alexander Grafb7b84102016-11-17 01:02:57 +01001770 if (bd && mc_lazy_dpl_addr && !fsl_mc_ldpaa_exit(NULL)) {
Yogesh Gaurf9747a52018-01-16 10:08:24 +05301771 err = mc_apply_dpl(mc_lazy_dpl_addr);
1772 if (!err)
1773 fdt_fixup_board_enet(working_fdt);
Alexander Grafb7b84102016-11-17 01:02:57 +01001774 mc_lazy_dpl_addr = 0;
1775 }
1776
Santan Kumar06651b92017-06-29 11:19:34 +05301777 if (!get_mc_boot_status())
1778 mc_boot_status = true;
1779
Prabhakar Kushwaha6dedced2016-03-21 14:19:39 +05301780 /* MC is not loaded intentionally, So return success. */
Santan Kumar06651b92017-06-29 11:19:34 +05301781 if (bd && !mc_boot_status)
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301782 return 0;
1783
Yogesh Gaur42e81792017-04-27 10:14:16 +05301784 /* If DPL is deployed, set is_dpl_apply_status as TRUE. */
1785 if (!get_dpl_apply_status())
1786 is_dpl_apply_status = true;
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301787
Yogesh Gaur42e81792017-04-27 10:14:16 +05301788 /*
1789 * For case MC is loaded but DPL is not deployed, return success and
1790 * print message on console. Else FDT fix-up code execution hanged.
1791 */
Santan Kumar06651b92017-06-29 11:19:34 +05301792 if (bd && mc_boot_status && !is_dpl_apply_status) {
Yogesh Gaur42e81792017-04-27 10:14:16 +05301793 printf("fsl-mc: DPL not deployed, DPAA2 ethernet not work\n");
Yogesh Gaur73fa2062017-11-28 10:11:14 +05301794 goto mc_obj_cleanup;
Yogesh Gaur42e81792017-04-27 10:14:16 +05301795 }
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301796
Santan Kumar06651b92017-06-29 11:19:34 +05301797 if (bd && mc_boot_status && is_dpl_apply_status)
1798 return 0;
1799
Yogesh Gaur73fa2062017-11-28 10:11:14 +05301800mc_obj_cleanup:
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301801 err = dpbp_exit();
1802 if (err < 0) {
Prabhakar Kushwahaa2a4dc52016-01-20 12:04:37 +05301803 printf("dpbp_exit() failed: %d\n", err);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301804 goto err;
1805 }
1806
1807 err = dpio_exit();
1808 if (err < 0) {
1809 printf("dpio_exit() failed: %d\n", err);
1810 goto err;
1811 }
1812
1813 err = dpni_exit();
1814 if (err < 0) {
1815 printf("dpni_exit() failed: %d\n", err);
1816 goto err;
1817 }
1818
1819 err = dprc_exit();
1820 if (err < 0) {
1821 printf("dprc_exit() failed: %d\n", err);
1822 goto err;
1823 }
1824
1825 return 0;
1826err:
1827 return err;
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07001828}
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301829
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +03001830static void print_k_bytes(const void *buf, ssize_t *size)
1831{
1832 while (*size > 0) {
1833 int count = printf("%s", (char *)buf);
1834
1835 buf += count;
1836 *size -= count;
1837 }
1838}
1839
1840static void mc_dump_log(void)
1841{
1842 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
1843 u64 high = in_le64(&mc_ccsr_regs->reg_mcfbahr) & MC_FW_ADDR_MASK_HIGH;
1844 u64 low = in_le64(&mc_ccsr_regs->reg_mcfbalr) & MC_FW_ADDR_MASK_LOW;
1845 u32 buf_len, wrapped, last_byte, magic, buf_start;
1846 u64 mc_addr = (high << 32) | low;
1847 struct log_header *header;
1848 ssize_t size, bytes_end;
1849 const void *end_of_data;
1850 const void *map_addr;
1851 const void *end_addr;
1852 const void *cur_ptr;
1853 const void *buf;
1854
1855 map_addr = map_sysmem(mc_addr + MC_STRUCT_BUFFER_OFFSET,
1856 MC_BUFFER_SIZE);
1857 header = (struct log_header *)map_addr;
1858 last_byte = in_le32(&header->last_byte);
1859 buf_len = in_le32(&header->buf_length);
1860 magic = in_le32(&header->magic_word);
1861 buf_start = in_le32(&header->buf_start);
1862 buf = map_addr + buf_start - MC_OFFSET_DELTA;
1863 end_addr = buf + buf_len;
1864 wrapped = last_byte & LOG_HEADER_FLAG_BUFFER_WRAPAROUND;
1865 end_of_data = buf + LAST_BYTE(last_byte);
1866
1867 if (magic != MAGIC_MC) {
1868 puts("Magic number is not valid\n");
1869 printf("expected = %08x, received = %08x\n", MAGIC_MC, magic);
1870 goto err_magic;
1871 }
1872
1873 if (wrapped && end_of_data != end_addr)
1874 cur_ptr = end_of_data + 1;
1875 else
1876 cur_ptr = buf;
1877
1878 if (cur_ptr <= end_of_data)
1879 size = end_of_data - cur_ptr;
1880 else
1881 size = (end_addr - cur_ptr) + (end_of_data - buf);
1882
1883 bytes_end = end_addr - cur_ptr;
1884 if (size > bytes_end) {
1885 print_k_bytes(cur_ptr, &bytes_end);
1886
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +03001887 size -= bytes_end;
1888 }
1889
1890 print_k_bytes(buf, &size);
1891
1892err_magic:
1893 unmap_sysmem(map_addr);
1894}
1895
Simon Glass09140112020-05-10 11:40:03 -06001896static int do_fsl_mc(struct cmd_tbl *cmdtp, int flag, int argc,
1897 char *const argv[])
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301898{
1899 int err = 0;
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +03001900 if (argc < 2)
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301901 goto usage;
1902
1903 switch (argv[1][0]) {
1904 case 's': {
1905 char sub_cmd;
Prabhakar Kushwaha44937212015-11-09 16:42:07 +05301906 u64 mc_fw_addr, mc_dpc_addr;
Tom Rini65cc0e22022-11-16 13:10:41 -05001907#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwaha44937212015-11-09 16:42:07 +05301908 u64 aiop_fw_addr;
1909#endif
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +03001910 if (argc < 3)
1911 goto usage;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301912
1913 sub_cmd = argv[2][0];
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05301914
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301915 switch (sub_cmd) {
1916 case 'm':
1917 if (argc < 5)
1918 goto usage;
1919
1920 if (get_mc_boot_status() == 0) {
1921 printf("fsl-mc: MC is already booted");
1922 printf("\n");
1923 return err;
1924 }
1925 mc_fw_addr = simple_strtoull(argv[3], NULL, 16);
1926 mc_dpc_addr = simple_strtoull(argv[4], NULL,
1927 16);
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05301928
1929 if (!mc_init(mc_fw_addr, mc_dpc_addr))
1930 err = mc_init_object();
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301931 break;
1932
Tom Rini65cc0e22022-11-16 13:10:41 -05001933#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301934 case 'a':
1935 if (argc < 4)
1936 goto usage;
1937 if (get_aiop_apply_status() == 0) {
1938 printf("fsl-mc: AIOP FW is already");
1939 printf(" applied\n");
1940 return err;
1941 }
1942
1943 aiop_fw_addr = simple_strtoull(argv[3], NULL,
1944 16);
1945
York Sun3c1d2182016-04-04 11:41:26 -07001946 /* if SoC doesn't have AIOP, err = -ENODEV */
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301947 err = load_mc_aiop_img(aiop_fw_addr);
1948 if (!err)
1949 printf("fsl-mc: AIOP FW applied\n");
1950 break;
1951#endif
1952 default:
1953 printf("Invalid option: %s\n", argv[2]);
1954 goto usage;
1955
1956 break;
1957 }
1958 }
1959 break;
1960
Florinel Iordache1990cc72019-11-19 10:28:17 +00001961 case 'l': {
1962 /* lazyapply */
1963 u64 mc_dpl_addr;
1964
1965 if (argc < 4)
1966 goto usage;
1967
1968 if (get_dpl_apply_status() == 0) {
1969 printf("fsl-mc: DPL already applied\n");
1970 return err;
1971 }
1972
1973 mc_dpl_addr = simple_strtoull(argv[3], NULL, 16);
1974
1975 if (get_mc_boot_status() != 0) {
1976 printf("fsl-mc: Deploying data path layout ..");
1977 printf("ERROR (MC is not booted)\n");
1978 return -ENODEV;
1979 }
1980
1981 /*
1982 * We will do the actual dpaa exit and dpl apply
1983 * later from announce_and_cleanup().
1984 */
1985 mc_lazy_dpl_addr = mc_dpl_addr;
1986 break;
1987 }
1988
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301989 case 'a': {
Florinel Iordache1990cc72019-11-19 10:28:17 +00001990 /* apply */
1991 char sub_cmd;
1992 u64 mc_apply_addr;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301993
Florinel Iordache1990cc72019-11-19 10:28:17 +00001994 if (argc < 4)
1995 goto usage;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05301996
Florinel Iordache1990cc72019-11-19 10:28:17 +00001997 sub_cmd = argv[2][0];
1998
1999 switch (sub_cmd) {
2000 case 'd':
2001 case 'D':
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302002 if (get_dpl_apply_status() == 0) {
2003 printf("fsl-mc: DPL already applied\n");
2004 return err;
2005 }
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302006 if (get_mc_boot_status() != 0) {
2007 printf("fsl-mc: Deploying data path layout ..");
2008 printf("ERROR (MC is not booted)\n");
2009 return -ENODEV;
2010 }
Prabhakar Kushwaha1730a172015-11-04 12:25:59 +05302011
Florinel Iordache1990cc72019-11-19 10:28:17 +00002012 mc_apply_addr = simple_strtoull(argv[3], NULL, 16);
2013
2014 /* The user wants DPL applied now */
2015 if (!fsl_mc_ldpaa_exit(NULL))
2016 err = mc_apply_dpl(mc_apply_addr);
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302017 break;
Florinel Iordache1990cc72019-11-19 10:28:17 +00002018
2019 case 's':
2020 if (!is_dpsparser_supported()) {
2021 printf("fsl-mc: apply spb command .. ");
2022 printf("ERROR: requires at least MC 10.12.0\n");
2023 return err;
2024 }
2025 if (get_mc_boot_status() != 0) {
2026 printf("fsl-mc: Deploying Soft Parser Blob...");
2027 printf("ERROR (MC is not booted)\n");
2028 return err;
2029 }
2030
2031 mc_apply_addr = simple_strtoull(argv[3], NULL, 16);
2032
2033 /* Apply spb (Soft Parser Blob) */
2034 err = mc_apply_spb(mc_apply_addr);
2035 break;
2036
2037 default:
2038 printf("Invalid option: %s\n", argv[2]);
2039 goto usage;
2040 }
2041 break;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302042 }
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +03002043 case 'd':
2044 if (argc > 2)
2045 goto usage;
2046
2047 mc_dump_log();
2048 break;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302049 default:
2050 printf("Invalid option: %s\n", argv[1]);
2051 goto usage;
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302052 }
2053 return err;
2054 usage:
2055 return CMD_RET_USAGE;
2056}
2057
2058U_BOOT_CMD(
2059 fsl_mc, CONFIG_SYS_MAXARGS, 1, do_fsl_mc,
2060 "DPAA2 command to manage Management Complex (MC)",
2061 "start mc [FW_addr] [DPC_addr] - Start Management Complex\n"
2062 "fsl_mc apply DPL [DPL_addr] - Apply DPL file\n"
Alexander Grafb7b84102016-11-17 01:02:57 +01002063 "fsl_mc lazyapply DPL [DPL_addr] - Apply DPL file on exit\n"
Florinel Iordache1990cc72019-11-19 10:28:17 +00002064 "fsl_mc apply spb [spb_addr] - Apply SPB Soft Parser Blob\n"
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302065 "fsl_mc start aiop [FW_addr] - Start AIOP\n"
Cosmin-Florin Alucheneseied067722021-10-07 13:07:44 +03002066 "fsl_mc dump_log - Dump MC Log\n"
Prabhakar Kushwahafb4a87a2015-11-04 12:25:58 +05302067);
Bogdan Purcareata33a89912017-05-24 16:40:21 +00002068
2069void mc_env_boot(void)
2070{
2071#if defined(CONFIG_FSL_MC_ENET)
2072 char *mc_boot_env_var;
2073 /* The MC may only be initialized in the reset PHY function
2074 * because otherwise U-Boot has not yet set up all the MAC
2075 * address info properly. Without MAC addresses, the MC code
2076 * can not properly initialize the DPC.
2077 */
Simon Glass00caae62017-08-03 12:22:12 -06002078 mc_boot_env_var = env_get(MC_BOOT_ENV_VAR);
Bogdan Purcareata33a89912017-05-24 16:40:21 +00002079 if (mc_boot_env_var)
2080 run_command_list(mc_boot_env_var, -1, 0);
2081#endif /* CONFIG_FSL_MC_ENET */
2082}