blob: 78a40f285aa2a2e5b2a688aff6a61d37d27b62dc [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
J. German Rivera8ff14b72014-06-23 15:15:55 -07002/*
Yogesh Gaur1a0c4ae2018-05-09 10:52:17 +05303 * Copyright 2014 Freescale Semiconductor, Inc.
Cosmin-Florin Aluchenesei971dfd32021-07-21 19:13:33 +03004 * Copyright 2017-2018, 2020-2021 NXP
J. German Rivera8ff14b72014-06-23 15:15:55 -07005 */
Stuart Yodera2bdb772015-07-02 11:29:03 +05306#include <common.h>
Simon Glassadaaa482019-11-14 12:57:43 -07007#include <command.h>
Simon Glass63334482019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06009#include <env.h>
J. German Rivera8ff14b72014-06-23 15:15:55 -070010#include <errno.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060011#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070013#include <malloc.h>
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +030014#include <mapmem.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060015#include <asm/global_data.h>
Masahiro Yamada78eeb912016-01-24 23:27:48 +090016#include <linux/bug.h>
J. German Rivera8ff14b72014-06-23 15:15:55 -070017#include <asm/io.h>
Simon Glassdbd79542020-05-10 11:40:11 -060018#include <linux/delay.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090019#include <linux/libfdt.h>
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +000020#include <net.h>
Stuart Yodera2bdb772015-07-02 11:29:03 +053021#include <fdt_support.h>
J. German Rivera43e4ae32015-01-06 13:19:02 -080022#include <fsl-mc/fsl_mc.h>
23#include <fsl-mc/fsl_mc_sys.h>
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -070024#include <fsl-mc/fsl_mc_private.h>
J. German Rivera43e4ae32015-01-06 13:19:02 -080025#include <fsl-mc/fsl_dpmng.h>
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -070026#include <fsl-mc/fsl_dprc.h>
27#include <fsl-mc/fsl_dpio.h>
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +053028#include <fsl-mc/fsl_dpni.h>
Florinel Iordacheae6d8522019-11-19 10:28:17 +000029#include <fsl-mc/fsl_dpsparser.h>
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -070030#include <fsl-mc/fsl_qbman_portal.h>
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +053031#include <fsl-mc/ldpaa_wriop.h>
Ioana Ciorneic136d002023-02-09 18:07:04 +020032#include <net/ldpaa_eth.h>
J. German Rivera8ff14b72014-06-23 15:15:55 -070033
J. German Riveraf4fed4b2015-03-20 19:28:18 -070034#define MC_RAM_BASE_ADDR_ALIGNMENT (512UL * 1024 * 1024)
35#define MC_RAM_BASE_ADDR_ALIGNMENT_MASK (~(MC_RAM_BASE_ADDR_ALIGNMENT - 1))
36#define MC_RAM_SIZE_ALIGNMENT (256UL * 1024 * 1024)
37
38#define MC_MEM_SIZE_ENV_VAR "mcmemsize"
39#define MC_BOOT_TIMEOUT_ENV_VAR "mcboottimeout"
Bogdan Purcareata08bc0142017-05-24 16:40:21 +000040#define MC_BOOT_ENV_VAR "mcinitcmd"
Meenakshi Aggarwal67f195c2019-02-27 14:41:02 +053041#define MC_DRAM_BLOCK_DEFAULT_SIZE (512UL * 1024 * 1024)
J. German Riveraf4fed4b2015-03-20 19:28:18 -070042
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +030043#define MC_BUFFER_SIZE (1024 * 1024 * 16)
44#define MAGIC_MC 0x4d430100
45#define MC_FW_ADDR_MASK_LOW 0xE0000000
46#define MC_FW_ADDR_MASK_HIGH 0X1FFFF
47#define MC_STRUCT_BUFFER_OFFSET 0x01000000
48#define MC_OFFSET_DELTA MC_STRUCT_BUFFER_OFFSET
49
50#define LOG_HEADER_FLAG_BUFFER_WRAPAROUND 0x80000000
51#define LAST_BYTE(a) ((a) & ~(LOG_HEADER_FLAG_BUFFER_WRAPAROUND))
52
J. German Rivera8ff14b72014-06-23 15:15:55 -070053DECLARE_GLOBAL_DATA_PTR;
Prabhakar Kushwaha145e4cd2018-08-27 12:58:52 +053054static int mc_memset_resv_ram;
Florinel Iordacheae6d8522019-11-19 10:28:17 +000055static struct mc_version mc_ver_info;
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +053056static int mc_boot_status = -1;
57static int mc_dpl_applied = -1;
Tom Rini6a5dccc2022-11-16 13:10:41 -050058#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +053059static int mc_aiop_applied = -1;
60#endif
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +053061struct fsl_mc_io *root_mc_io = NULL;
62struct fsl_mc_io *dflt_mc_io = NULL; /* child container */
63uint16_t root_dprc_handle = 0;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -070064uint16_t dflt_dprc_handle = 0;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +053065int child_dprc_id;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -070066struct fsl_dpbp_obj *dflt_dpbp = NULL;
67struct fsl_dpio_obj *dflt_dpio = NULL;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +053068struct fsl_dpni_obj *dflt_dpni = NULL;
Alexander Graf2ebeb442016-11-17 01:02:57 +010069static u64 mc_lazy_dpl_addr;
Florinel Iordacheae6d8522019-11-19 10:28:17 +000070static u32 dpsparser_obj_id;
71static u16 dpsparser_handle;
72static char *mc_err_msg_apply_spb[] = MC_ERROR_MSG_APPLY_SPB;
J. German Riveraf4fed4b2015-03-20 19:28:18 -070073
74#ifdef DEBUG
75void dump_ram_words(const char *title, void *addr)
76{
77 int i;
78 uint32_t *words = addr;
79
80 printf("Dumping beginning of %s (%p):\n", title, addr);
81 for (i = 0; i < 16; i++)
82 printf("%#x ", words[i]);
83
84 printf("\n");
85}
J. German Rivera8ff14b72014-06-23 15:15:55 -070086
J. German Riveraf4fed4b2015-03-20 19:28:18 -070087void dump_mc_ccsr_regs(struct mc_ccsr_registers __iomem *mc_ccsr_regs)
88{
89 printf("MC CCSR registers:\n"
90 "reg_gcr1 %#x\n"
91 "reg_gsr %#x\n"
92 "reg_sicbalr %#x\n"
93 "reg_sicbahr %#x\n"
94 "reg_sicapr %#x\n"
95 "reg_mcfbalr %#x\n"
96 "reg_mcfbahr %#x\n"
97 "reg_mcfapr %#x\n"
98 "reg_psr %#x\n",
99 mc_ccsr_regs->reg_gcr1,
100 mc_ccsr_regs->reg_gsr,
101 mc_ccsr_regs->reg_sicbalr,
102 mc_ccsr_regs->reg_sicbahr,
103 mc_ccsr_regs->reg_sicapr,
104 mc_ccsr_regs->reg_mcfbalr,
105 mc_ccsr_regs->reg_mcfbahr,
106 mc_ccsr_regs->reg_mcfapr,
107 mc_ccsr_regs->reg_psr);
108}
109#else
110
111#define dump_ram_words(title, addr)
112#define dump_mc_ccsr_regs(mc_ccsr_regs)
113
114#endif /* DEBUG */
115
J. German Rivera8ff14b72014-06-23 15:15:55 -0700116/**
117 * Copying MC firmware or DPL image to DDR
118 */
119static int mc_copy_image(const char *title,
J. German Rivera43e4ae32015-01-06 13:19:02 -0800120 u64 image_addr, u32 image_size, u64 mc_ram_addr)
J. German Rivera8ff14b72014-06-23 15:15:55 -0700121{
122 debug("%s copied to address %p\n", title, (void *)mc_ram_addr);
123 memcpy((void *)mc_ram_addr, (void *)image_addr, image_size);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700124 flush_dcache_range(mc_ram_addr, mc_ram_addr + image_size);
J. German Rivera8ff14b72014-06-23 15:15:55 -0700125 return 0;
126}
127
Florinel Iordacheae6d8522019-11-19 10:28:17 +0000128#ifndef CONFIG_SYS_LS_MC_FW_IN_DDR
J. German Rivera8ff14b72014-06-23 15:15:55 -0700129/**
130 * MC firmware FIT image parser checks if the image is in FIT
131 * format, verifies integrity of the image and calculates
132 * raw image address and size values.
J. German Rivera43e4ae32015-01-06 13:19:02 -0800133 * Returns 0 on success and a negative errno on error.
J. German Rivera8ff14b72014-06-23 15:15:55 -0700134 * task fail.
135 **/
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530136int parse_mc_firmware_fit_image(u64 mc_fw_addr,
137 const void **raw_image_addr,
J. German Rivera8ff14b72014-06-23 15:15:55 -0700138 size_t *raw_image_size)
139{
140 int format;
Sean Anderson4b2c94f2022-08-16 11:16:06 -0400141 void *fit_hdr = (void *)mc_fw_addr;
J. German Rivera8ff14b72014-06-23 15:15:55 -0700142
143 /* Check if Image is in FIT format */
144 format = genimg_get_format(fit_hdr);
145
146 if (format != IMAGE_FORMAT_FIT) {
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530147 printf("fsl-mc: ERR: Bad firmware image (not a FIT image)\n");
J. German Rivera43e4ae32015-01-06 13:19:02 -0800148 return -EINVAL;
J. German Rivera8ff14b72014-06-23 15:15:55 -0700149 }
150
Simon Glassd563c252021-02-15 17:08:09 -0700151 if (fit_check_format(fit_hdr, IMAGE_SIZE_INVAL)) {
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530152 printf("fsl-mc: ERR: Bad firmware image (bad FIT header)\n");
J. German Rivera43e4ae32015-01-06 13:19:02 -0800153 return -EINVAL;
J. German Rivera8ff14b72014-06-23 15:15:55 -0700154 }
155
Sean Anderson4b2c94f2022-08-16 11:16:06 -0400156 return fit_get_data_node(fit_hdr, "firmware", raw_image_addr,
157 raw_image_size);
J. German Rivera8ff14b72014-06-23 15:15:55 -0700158}
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700159#endif
160
Bogdan Purcareata72669142017-05-24 16:40:22 +0000161#define MC_DT_INCREASE_SIZE 64
162
163enum mc_fixup_type {
164 MC_FIXUP_DPL,
165 MC_FIXUP_DPC
166};
167
168static int mc_fixup_mac_addr(void *blob, int nodeoffset,
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200169 const char *propname, struct udevice *eth_dev,
Bogdan Purcareata72669142017-05-24 16:40:22 +0000170 enum mc_fixup_type type)
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000171{
Simon Glassfa20e932020-12-03 16:55:20 -0700172 struct eth_pdata *plat = dev_get_plat(eth_dev);
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200173 unsigned char *enetaddr = plat->enetaddr;
Simon Glass75e534b2020-12-16 21:20:07 -0700174 int eth_index = dev_seq(eth_dev);
Bogdan Purcareata72669142017-05-24 16:40:22 +0000175 int err = 0, len = 0, size, i;
176 unsigned char env_enetaddr[ARP_HLEN];
177 unsigned int enetaddr_32[ARP_HLEN];
178 void *val = NULL;
179
180 switch (type) {
181 case MC_FIXUP_DPL:
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200182 /* DPL likes its addresses on 32 * ARP_HLEN bits */
183 for (i = 0; i < ARP_HLEN; i++)
184 enetaddr_32[i] = cpu_to_fdt32(enetaddr[i]);
185 val = enetaddr_32;
186 len = sizeof(enetaddr_32);
187 break;
Bogdan Purcareata72669142017-05-24 16:40:22 +0000188 case MC_FIXUP_DPC:
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200189 val = enetaddr;
190 len = ARP_HLEN;
191 break;
Bogdan Purcareata72669142017-05-24 16:40:22 +0000192 }
193
194 /* MAC address property present */
195 if (fdt_get_property(blob, nodeoffset, propname, NULL)) {
196 /* u-boot MAC addr randomly assigned - leave the present one */
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200197 if (!eth_env_get_enetaddr_by_index("eth", eth_index,
Simon Glass399a9ce2017-08-03 12:22:14 -0600198 env_enetaddr))
Bogdan Purcareata72669142017-05-24 16:40:22 +0000199 return err;
200 } else {
201 size = MC_DT_INCREASE_SIZE + strlen(propname) + len;
202 /* make room for mac address property */
203 err = fdt_increase_size(blob, size);
204 if (err) {
205 printf("fdt_increase_size: err=%s\n",
206 fdt_strerror(err));
207 return err;
208 }
209 }
210
211 err = fdt_setprop(blob, nodeoffset, propname, val, len);
212 if (err) {
213 printf("fdt_setprop: err=%s\n", fdt_strerror(err));
214 return err;
215 }
216
217 return err;
218}
219
220#define is_dpni(s) (s != NULL ? !strncmp(s, "dpni@", 5) : 0)
221
222const char *dpl_get_connection_endpoint(void *blob, char *endpoint)
223{
224 int connoffset = fdt_path_offset(blob, "/connections"), off;
225 const char *s1, *s2;
226
227 for (off = fdt_first_subnode(blob, connoffset);
228 off >= 0;
229 off = fdt_next_subnode(blob, off)) {
230 s1 = fdt_stringlist_get(blob, off, "endpoint1", 0, NULL);
231 s2 = fdt_stringlist_get(blob, off, "endpoint2", 0, NULL);
232
233 if (!s1 || !s2)
234 continue;
235
236 if (strcmp(endpoint, s1) == 0)
237 return s2;
238
239 if (strcmp(endpoint, s2) == 0)
240 return s1;
241 }
242
243 return NULL;
244}
245
246static int mc_fixup_dpl_mac_addr(void *blob, int dpmac_id,
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200247 struct udevice *eth_dev)
Bogdan Purcareata72669142017-05-24 16:40:22 +0000248{
249 int objoff = fdt_path_offset(blob, "/objects");
250 int dpmacoff = -1, dpnioff = -1;
251 const char *endpoint;
252 char mac_name[10];
253 int err;
254
255 sprintf(mac_name, "dpmac@%d", dpmac_id);
256 dpmacoff = fdt_subnode_offset(blob, objoff, mac_name);
257 if (dpmacoff < 0)
258 /* dpmac not defined in DPL, so skip it. */
259 return 0;
260
261 err = mc_fixup_mac_addr(blob, dpmacoff, "mac_addr", eth_dev,
262 MC_FIXUP_DPL);
263 if (err) {
264 printf("Error fixing up dpmac mac_addr in DPL\n");
265 return err;
266 }
267
268 /* now we need to figure out if there is any
269 * DPNI connected to this MAC, so we walk the
270 * connection list
271 */
272 endpoint = dpl_get_connection_endpoint(blob, mac_name);
273 if (!is_dpni(endpoint))
274 return 0;
275
276 /* let's see if we can fixup the DPNI as well */
277 dpnioff = fdt_subnode_offset(blob, objoff, endpoint);
278 if (dpnioff < 0)
279 /* DPNI not defined in DPL in the objects area */
280 return 0;
281
282 return mc_fixup_mac_addr(blob, dpnioff, "mac_addr", eth_dev,
283 MC_FIXUP_DPL);
284}
285
Meenakshi Aggarwald67ae482019-05-23 15:13:43 +0530286void fdt_fixup_mc_ddr(u64 *base, u64 *size)
287{
288 u64 mc_size = mc_get_dram_block_size();
289
290 if (mc_size < MC_DRAM_BLOCK_DEFAULT_SIZE) {
291 *base = mc_get_dram_addr() + mc_size;
292 *size = MC_DRAM_BLOCK_DEFAULT_SIZE - mc_size;
293 }
294}
295
Nipun Guptad6912642018-08-20 16:01:14 +0530296void fdt_fsl_mc_fixup_iommu_map_entry(void *blob)
297{
298 u32 *prop;
Laurentiu Tudor9e352592020-05-04 14:47:11 +0300299 u32 iommu_map[4], phandle;
Nipun Guptad6912642018-08-20 16:01:14 +0530300 int offset;
301 int lenp;
302
303 /* find fsl-mc node */
304 offset = fdt_path_offset(blob, "/soc/fsl-mc");
305 if (offset < 0)
306 offset = fdt_path_offset(blob, "/fsl-mc");
307 if (offset < 0) {
308 printf("%s: fsl-mc: ERR: fsl-mc node not found in DT, err %d\n",
309 __func__, offset);
310 return;
311 }
312
313 prop = fdt_getprop_w(blob, offset, "iommu-map", &lenp);
314 if (!prop) {
315 debug("%s: fsl-mc: ERR: missing iommu-map in fsl-mc bus node\n",
316 __func__);
317 return;
318 }
319
320 iommu_map[0] = cpu_to_fdt32(FSL_DPAA2_STREAM_ID_START);
321 iommu_map[1] = *++prop;
322 iommu_map[2] = cpu_to_fdt32(FSL_DPAA2_STREAM_ID_START);
323 iommu_map[3] = cpu_to_fdt32(FSL_DPAA2_STREAM_ID_END -
324 FSL_DPAA2_STREAM_ID_START + 1);
325
326 fdt_setprop_inplace(blob, offset, "iommu-map",
327 iommu_map, sizeof(iommu_map));
Laurentiu Tudor9e352592020-05-04 14:47:11 +0300328
329 /* get phandle to MSI controller */
330 prop = (u32 *)fdt_getprop(blob, offset, "msi-parent", 0);
331 if (!prop) {
332 debug("\n%s: ERROR: missing msi-parent\n", __func__);
333 return;
334 }
335 phandle = fdt32_to_cpu(*prop);
336
337 /* also set msi-map property */
338 fdt_appendprop_u32(blob, offset, "msi-map", FSL_DPAA2_STREAM_ID_START);
339 fdt_appendprop_u32(blob, offset, "msi-map", phandle);
340 fdt_appendprop_u32(blob, offset, "msi-map", FSL_DPAA2_STREAM_ID_START);
341 fdt_appendprop_u32(blob, offset, "msi-map", FSL_DPAA2_STREAM_ID_END -
342 FSL_DPAA2_STREAM_ID_START + 1);
Nipun Guptad6912642018-08-20 16:01:14 +0530343}
344
Bogdan Purcareata72669142017-05-24 16:40:22 +0000345static int mc_fixup_dpc_mac_addr(void *blob, int dpmac_id,
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200346 struct udevice *eth_dev)
Bogdan Purcareata72669142017-05-24 16:40:22 +0000347{
348 int nodeoffset = fdt_path_offset(blob, "/board_info/ports"), noff;
349 int err = 0;
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000350 char mac_name[10];
Bogdan Purcareata72669142017-05-24 16:40:22 +0000351 const char link_type_mode[] = "MAC_LINK_TYPE_FIXED";
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000352
353 sprintf(mac_name, "mac@%d", dpmac_id);
354
355 /* node not found - create it */
Bogdan Purcareata72669142017-05-24 16:40:22 +0000356 noff = fdt_subnode_offset(blob, nodeoffset, (const char *)mac_name);
357 if (noff < 0) {
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000358 err = fdt_increase_size(blob, 200);
359 if (err) {
Ioana Ciornei4563b9c2023-01-05 17:03:20 +0200360 printf("fdt_increase_size: err=%s\n", fdt_strerror(err));
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000361 return err;
362 }
363
Bogdan Purcareata72669142017-05-24 16:40:22 +0000364 noff = fdt_add_subnode(blob, nodeoffset, mac_name);
365 if (noff < 0) {
366 printf("fdt_add_subnode: err=%s\n",
367 fdt_strerror(err));
368 return err;
369 }
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000370
371 /* add default property of fixed link */
Bogdan Purcareata72669142017-05-24 16:40:22 +0000372 err = fdt_appendprop_string(blob, noff,
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000373 "link_type", link_type_mode);
374 if (err) {
375 printf("fdt_appendprop_string: err=%s\n",
Ioana Ciornei4563b9c2023-01-05 17:03:20 +0200376 fdt_strerror(err));
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000377 return err;
378 }
379 }
380
Bogdan Purcareata72669142017-05-24 16:40:22 +0000381 return mc_fixup_mac_addr(blob, noff, "port_mac_address", eth_dev,
382 MC_FIXUP_DPC);
383}
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000384
Bogdan Purcareata72669142017-05-24 16:40:22 +0000385static int mc_fixup_mac_addrs(void *blob, enum mc_fixup_type type)
386{
Ioana Ciornei25f7cf72020-03-18 16:47:38 +0200387 struct udevice *eth_dev;
Ioana Ciorneic136d002023-02-09 18:07:04 +0200388 int err = 0, ret = 0;
389 struct uclass *uc;
390 uint32_t dpmac_id;
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000391
Ioana Ciorneic136d002023-02-09 18:07:04 +0200392 uclass_get(UCLASS_ETH, &uc);
393 uclass_foreach_dev(eth_dev, uc) {
394 if (!eth_dev->driver || !eth_dev->driver->name ||
395 strcmp(eth_dev->driver->name, LDPAA_ETH_DRIVER_NAME))
Bogdan Purcareata72669142017-05-24 16:40:22 +0000396 continue;
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000397
Ioana Ciorneic136d002023-02-09 18:07:04 +0200398 dpmac_id = ldpaa_eth_get_dpmac_id(eth_dev);
Bogdan Purcareata72669142017-05-24 16:40:22 +0000399 switch (type) {
400 case MC_FIXUP_DPL:
Ioana Ciorneic136d002023-02-09 18:07:04 +0200401 err = mc_fixup_dpl_mac_addr(blob, dpmac_id, eth_dev);
Bogdan Purcareata72669142017-05-24 16:40:22 +0000402 break;
403 case MC_FIXUP_DPC:
Ioana Ciorneic136d002023-02-09 18:07:04 +0200404 err = mc_fixup_dpc_mac_addr(blob, dpmac_id, eth_dev);
Bogdan Purcareata72669142017-05-24 16:40:22 +0000405 break;
406 default:
407 break;
408 }
409
410 if (err)
Ioana Ciorneic136d002023-02-09 18:07:04 +0200411 printf("fsl-mc: ERROR fixing mac address for %s\n", eth_dev->name);
Bogdan Purcareata72669142017-05-24 16:40:22 +0000412 ret |= err;
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000413 }
414
Bogdan Purcareata72669142017-05-24 16:40:22 +0000415 return ret;
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000416}
417
Stuart Yodera2bdb772015-07-02 11:29:03 +0530418static int mc_fixup_dpc(u64 dpc_addr)
419{
420 void *blob = (void *)dpc_addr;
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000421 int nodeoffset, err = 0;
Stuart Yodera2bdb772015-07-02 11:29:03 +0530422
423 /* delete any existing ICID pools */
424 nodeoffset = fdt_path_offset(blob, "/resources/icid_pools");
425 if (fdt_del_node(blob, nodeoffset) < 0)
426 printf("\nfsl-mc: WARNING: could not delete ICID pool\n");
427
428 /* add a new pool */
429 nodeoffset = fdt_path_offset(blob, "/resources");
430 if (nodeoffset < 0) {
431 printf("\nfsl-mc: ERROR: DPC is missing /resources\n");
432 return -EINVAL;
433 }
434 nodeoffset = fdt_add_subnode(blob, nodeoffset, "icid_pools");
435 nodeoffset = fdt_add_subnode(blob, nodeoffset, "icid_pool@0");
436 do_fixup_by_path_u32(blob, "/resources/icid_pools/icid_pool@0",
437 "base_icid", FSL_DPAA2_STREAM_ID_START, 1);
438 do_fixup_by_path_u32(blob, "/resources/icid_pools/icid_pool@0",
439 "num",
440 FSL_DPAA2_STREAM_ID_END -
441 FSL_DPAA2_STREAM_ID_START + 1, 1);
442
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000443 /* fixup MAC addresses for dpmac ports */
444 nodeoffset = fdt_path_offset(blob, "/board_info/ports");
Razvan Ionut Cirjana3bbc3b2020-04-28 16:09:59 +0300445 if (nodeoffset < 0) {
446 err = fdt_increase_size(blob, 512);
447 if (err) {
448 printf("fdt_increase_size: err=%s\n",
449 fdt_strerror(err));
450 goto out;
451 }
452 nodeoffset = fdt_path_offset(blob, "/board_info");
453 if (nodeoffset < 0)
454 nodeoffset = fdt_add_subnode(blob, 0, "board_info");
455
456 nodeoffset = fdt_add_subnode(blob, nodeoffset, "ports");
457 }
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000458
Bogdan Purcareata72669142017-05-24 16:40:22 +0000459 err = mc_fixup_mac_addrs(blob, MC_FIXUP_DPC);
Ioana Ciocoi Radulescud7697f42019-02-26 15:50:07 +0000460
461out:
Stuart Yodera2bdb772015-07-02 11:29:03 +0530462 flush_dcache_range(dpc_addr, dpc_addr + fdt_totalsize(blob));
463
Bogdan Purcareatabea8abd2017-01-11 15:58:36 +0000464 return err;
Stuart Yodera2bdb772015-07-02 11:29:03 +0530465}
466
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530467static int load_mc_dpc(u64 mc_ram_addr, size_t mc_ram_size, u64 mc_dpc_addr)
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700468{
469 u64 mc_dpc_offset;
470#ifndef CONFIG_SYS_LS_MC_DPC_IN_DDR
471 int error;
472 void *dpc_fdt_hdr;
473 int dpc_size;
474#endif
475
Tom Rini6a5dccc2022-11-16 13:10:41 -0500476#ifdef CFG_SYS_LS_MC_DRAM_DPC_OFFSET
477 BUILD_BUG_ON((CFG_SYS_LS_MC_DRAM_DPC_OFFSET & 0x3) != 0 ||
478 CFG_SYS_LS_MC_DRAM_DPC_OFFSET > 0xffffffff);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700479
Tom Rini6a5dccc2022-11-16 13:10:41 -0500480 mc_dpc_offset = CFG_SYS_LS_MC_DRAM_DPC_OFFSET;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700481#else
Tom Rini6a5dccc2022-11-16 13:10:41 -0500482#error "CFG_SYS_LS_MC_DRAM_DPC_OFFSET not defined"
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700483#endif
484
485 /*
486 * Load the MC DPC blob in the MC private DRAM block:
487 */
488#ifdef CONFIG_SYS_LS_MC_DPC_IN_DDR
489 printf("MC DPC is preloaded to %#llx\n", mc_ram_addr + mc_dpc_offset);
490#else
491 /*
492 * Get address and size of the DPC blob stored in flash:
493 */
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530494 dpc_fdt_hdr = (void *)mc_dpc_addr;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700495
496 error = fdt_check_header(dpc_fdt_hdr);
497 if (error != 0) {
498 /*
499 * Don't return with error here, since the MC firmware can
500 * still boot without a DPC
501 */
J. German Rivera75d7ace2015-07-02 11:28:56 +0530502 printf("\nfsl-mc: WARNING: No DPC image found");
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700503 return 0;
504 }
505
506 dpc_size = fdt_totalsize(dpc_fdt_hdr);
Tom Rini6a5dccc2022-11-16 13:10:41 -0500507 if (dpc_size > CFG_SYS_LS_MC_DPC_MAX_LENGTH) {
J. German Rivera75d7ace2015-07-02 11:28:56 +0530508 printf("\nfsl-mc: ERROR: Bad DPC image (too large: %d)\n",
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700509 dpc_size);
510 return -EINVAL;
511 }
512
513 mc_copy_image("MC DPC blob",
514 (u64)dpc_fdt_hdr, dpc_size, mc_ram_addr + mc_dpc_offset);
515#endif /* not defined CONFIG_SYS_LS_MC_DPC_IN_DDR */
516
Stuart Yodera2bdb772015-07-02 11:29:03 +0530517 if (mc_fixup_dpc(mc_ram_addr + mc_dpc_offset))
518 return -EINVAL;
519
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700520 dump_ram_words("DPC", (void *)(mc_ram_addr + mc_dpc_offset));
521 return 0;
522}
523
Bogdan Purcareata72669142017-05-24 16:40:22 +0000524static int mc_fixup_dpl(u64 dpl_addr)
525{
526 void *blob = (void *)dpl_addr;
527 u32 ver = fdt_getprop_u32_default(blob, "/", "dpl-version", 0);
528 int err = 0;
529
530 /* The DPL fixup for mac addresses is only relevant
531 * for old-style DPLs
532 */
533 if (ver >= 10)
534 return 0;
535
536 err = mc_fixup_mac_addrs(blob, MC_FIXUP_DPL);
537 flush_dcache_range(dpl_addr, dpl_addr + fdt_totalsize(blob));
538
539 return err;
540}
541
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530542static int load_mc_dpl(u64 mc_ram_addr, size_t mc_ram_size, u64 mc_dpl_addr)
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700543{
544 u64 mc_dpl_offset;
545#ifndef CONFIG_SYS_LS_MC_DPL_IN_DDR
546 int error;
547 void *dpl_fdt_hdr;
548 int dpl_size;
549#endif
550
Tom Rini6a5dccc2022-11-16 13:10:41 -0500551#ifdef CFG_SYS_LS_MC_DRAM_DPL_OFFSET
552 BUILD_BUG_ON((CFG_SYS_LS_MC_DRAM_DPL_OFFSET & 0x3) != 0 ||
553 CFG_SYS_LS_MC_DRAM_DPL_OFFSET > 0xffffffff);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700554
Tom Rini6a5dccc2022-11-16 13:10:41 -0500555 mc_dpl_offset = CFG_SYS_LS_MC_DRAM_DPL_OFFSET;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700556#else
Tom Rini6a5dccc2022-11-16 13:10:41 -0500557#error "CFG_SYS_LS_MC_DRAM_DPL_OFFSET not defined"
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700558#endif
559
560 /*
561 * Load the MC DPL blob in the MC private DRAM block:
562 */
563#ifdef CONFIG_SYS_LS_MC_DPL_IN_DDR
564 printf("MC DPL is preloaded to %#llx\n", mc_ram_addr + mc_dpl_offset);
565#else
566 /*
567 * Get address and size of the DPL blob stored in flash:
568 */
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530569 dpl_fdt_hdr = (void *)mc_dpl_addr;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700570
571 error = fdt_check_header(dpl_fdt_hdr);
572 if (error != 0) {
J. German Rivera75d7ace2015-07-02 11:28:56 +0530573 printf("\nfsl-mc: ERROR: Bad DPL image (bad header)\n");
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700574 return error;
575 }
576
577 dpl_size = fdt_totalsize(dpl_fdt_hdr);
Tom Rini6a5dccc2022-11-16 13:10:41 -0500578 if (dpl_size > CFG_SYS_LS_MC_DPL_MAX_LENGTH) {
J. German Rivera75d7ace2015-07-02 11:28:56 +0530579 printf("\nfsl-mc: ERROR: Bad DPL image (too large: %d)\n",
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700580 dpl_size);
581 return -EINVAL;
582 }
583
584 mc_copy_image("MC DPL blob",
585 (u64)dpl_fdt_hdr, dpl_size, mc_ram_addr + mc_dpl_offset);
586#endif /* not defined CONFIG_SYS_LS_MC_DPL_IN_DDR */
587
Bogdan Purcareata72669142017-05-24 16:40:22 +0000588 if (mc_fixup_dpl(mc_ram_addr + mc_dpl_offset))
589 return -EINVAL;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700590 dump_ram_words("DPL", (void *)(mc_ram_addr + mc_dpl_offset));
591 return 0;
592}
593
594/**
595 * Return the MC boot timeout value in milliseconds
596 */
597static unsigned long get_mc_boot_timeout_ms(void)
598{
Tom Rini6a5dccc2022-11-16 13:10:41 -0500599 unsigned long timeout_ms = CFG_SYS_LS_MC_BOOT_TIMEOUT_MS;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700600
Simon Glass64b723f2017-08-03 12:22:12 -0600601 char *timeout_ms_env_var = env_get(MC_BOOT_TIMEOUT_ENV_VAR);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700602
603 if (timeout_ms_env_var) {
Simon Glassff9b9032021-07-24 09:03:30 -0600604 timeout_ms = dectoul(timeout_ms_env_var, NULL);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700605 if (timeout_ms == 0) {
606 printf("fsl-mc: WARNING: Invalid value for \'"
607 MC_BOOT_TIMEOUT_ENV_VAR
608 "\' environment variable: %lu\n",
609 timeout_ms);
610
Tom Rini6a5dccc2022-11-16 13:10:41 -0500611 timeout_ms = CFG_SYS_LS_MC_BOOT_TIMEOUT_MS;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700612 }
613 }
614
615 return timeout_ms;
616}
617
Tom Rini6a5dccc2022-11-16 13:10:41 -0500618#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
York Suncbe8e1c2016-04-04 11:41:26 -0700619
620__weak bool soc_has_aiop(void)
621{
622 return false;
623}
624
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530625static int load_mc_aiop_img(u64 aiop_fw_addr)
J. German Riverac3b505f2015-07-02 11:28:58 +0530626{
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530627 u64 mc_ram_addr = mc_get_dram_addr();
628#ifndef CONFIG_SYS_LS_MC_DPC_IN_DDR
J. German Riverac3b505f2015-07-02 11:28:58 +0530629 void *aiop_img;
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530630#endif
J. German Riverac3b505f2015-07-02 11:28:58 +0530631
York Suncbe8e1c2016-04-04 11:41:26 -0700632 /* Check if AIOP is available */
633 if (!soc_has_aiop())
634 return -ENODEV;
J. German Riverac3b505f2015-07-02 11:28:58 +0530635 /*
636 * Load the MC AIOP image in the MC private DRAM block:
637 */
638
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530639#ifdef CONFIG_SYS_LS_MC_DPC_IN_DDR
640 printf("MC AIOP is preloaded to %#llx\n", mc_ram_addr +
Tom Rini6a5dccc2022-11-16 13:10:41 -0500641 CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET);
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530642#else
643 aiop_img = (void *)aiop_fw_addr;
J. German Riverac3b505f2015-07-02 11:28:58 +0530644 mc_copy_image("MC AIOP image",
Tom Rini6a5dccc2022-11-16 13:10:41 -0500645 (u64)aiop_img, CFG_SYS_LS_MC_AIOP_IMG_MAX_LENGTH,
646 mc_ram_addr + CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET);
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530647#endif
648 mc_aiop_applied = 0;
J. German Riverac3b505f2015-07-02 11:28:58 +0530649
650 return 0;
651}
652#endif
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530653
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700654static int wait_for_mc(bool booting_mc, u32 *final_reg_gsr)
655{
656 u32 reg_gsr;
657 u32 mc_fw_boot_status;
658 unsigned long timeout_ms = get_mc_boot_timeout_ms();
659 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
660
661 dmb();
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700662 assert(timeout_ms > 0);
663 for (;;) {
664 udelay(1000); /* throttle polling */
665 reg_gsr = in_le32(&mc_ccsr_regs->reg_gsr);
666 mc_fw_boot_status = (reg_gsr & GSR_FS_MASK);
667 if (mc_fw_boot_status & 0x1)
668 break;
669
670 timeout_ms--;
671 if (timeout_ms == 0)
672 break;
673 }
674
675 if (timeout_ms == 0) {
J. German Rivera75d7ace2015-07-02 11:28:56 +0530676 printf("ERROR: timeout\n");
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700677
678 /* TODO: Get an error status from an MC CCSR register */
679 return -ETIMEDOUT;
680 }
681
682 if (mc_fw_boot_status != 0x1) {
683 /*
684 * TODO: Identify critical errors from the GSR register's FS
685 * field and for those errors, set error to -ENODEV or other
686 * appropriate errno, so that the status property is set to
687 * failure in the fsl,dprc device tree node.
688 */
J. German Rivera75d7ace2015-07-02 11:28:56 +0530689 printf("WARNING: Firmware returned an error (GSR: %#x)\n",
690 reg_gsr);
691 } else {
692 printf("SUCCESS\n");
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700693 }
694
695 *final_reg_gsr = reg_gsr;
696 return 0;
697}
J. German Rivera8ff14b72014-06-23 15:15:55 -0700698
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530699int mc_init(u64 mc_fw_addr, u64 mc_dpc_addr)
J. German Rivera8ff14b72014-06-23 15:15:55 -0700700{
701 int error = 0;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700702 int portal_id = 0;
J. German Rivera8ff14b72014-06-23 15:15:55 -0700703 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530704 u64 mc_ram_addr = mc_get_dram_addr();
J. German Rivera8ff14b72014-06-23 15:15:55 -0700705 u32 reg_gsr;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700706 u32 reg_mcfbalr;
707#ifndef CONFIG_SYS_LS_MC_FW_IN_DDR
J. German Rivera8ff14b72014-06-23 15:15:55 -0700708 const void *raw_image_addr;
709 size_t raw_image_size = 0;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700710#endif
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700711 u8 mc_ram_num_256mb_blocks;
712 size_t mc_ram_size = mc_get_dram_block_size();
J. German Rivera8ff14b72014-06-23 15:15:55 -0700713
York Sunc55d7312017-03-06 09:02:29 -0800714 mc_ram_num_256mb_blocks = mc_ram_size / MC_RAM_SIZE_ALIGNMENT;
Meenakshi Aggarwal67f195c2019-02-27 14:41:02 +0530715
716 if (mc_ram_num_256mb_blocks >= 0xff) {
York Sunc55d7312017-03-06 09:02:29 -0800717 error = -EINVAL;
718 printf("fsl-mc: ERROR: invalid MC private RAM size (%lu)\n",
719 mc_ram_size);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700720 goto out;
York Sunc55d7312017-03-06 09:02:29 -0800721 }
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700722
J. German Rivera8ff14b72014-06-23 15:15:55 -0700723 /*
Meenakshi Aggarwal67f195c2019-02-27 14:41:02 +0530724 * To support 128 MB DDR Size for MC
725 */
726 if (mc_ram_num_256mb_blocks == 0)
727 mc_ram_num_256mb_blocks = 0xFF;
728
729 /*
J. German Rivera8ff14b72014-06-23 15:15:55 -0700730 * Management Complex cores should be held at reset out of POR.
Bin Meng75574052016-02-05 19:30:11 -0800731 * U-Boot should be the first software to touch MC. To be safe,
J. German Rivera8ff14b72014-06-23 15:15:55 -0700732 * we reset all cores again by setting GCR1 to 0. It doesn't do
733 * anything if they are held at reset. After we setup the firmware
734 * we kick off MC by deasserting the reset bit for core 0, and
735 * deasserting the reset bits for Command Portal Managers.
736 * The stop bits are not touched here. They are used to stop the
737 * cores when they are active. Setting stop bits doesn't stop the
738 * cores from fetching instructions when they are released from
739 * reset.
740 */
741 out_le32(&mc_ccsr_regs->reg_gcr1, 0);
742 dmb();
743
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700744#ifdef CONFIG_SYS_LS_MC_FW_IN_DDR
745 printf("MC firmware is preloaded to %#llx\n", mc_ram_addr);
746#else
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530747 error = parse_mc_firmware_fit_image(mc_fw_addr, &raw_image_addr,
748 &raw_image_size);
J. German Rivera8ff14b72014-06-23 15:15:55 -0700749 if (error != 0)
750 goto out;
751 /*
752 * Load the MC FW at the beginning of the MC private DRAM block:
753 */
J. German Rivera43e4ae32015-01-06 13:19:02 -0800754 mc_copy_image("MC Firmware",
755 (u64)raw_image_addr, raw_image_size, mc_ram_addr);
J. German Rivera43e4ae32015-01-06 13:19:02 -0800756#endif
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700757 dump_ram_words("firmware", (void *)mc_ram_addr);
J. German Rivera43e4ae32015-01-06 13:19:02 -0800758
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530759 error = load_mc_dpc(mc_ram_addr, mc_ram_size, mc_dpc_addr);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700760 if (error != 0)
J. German Rivera8ff14b72014-06-23 15:15:55 -0700761 goto out;
J. German Riverac3b505f2015-07-02 11:28:58 +0530762
J. German Rivera8ff14b72014-06-23 15:15:55 -0700763 debug("mc_ccsr_regs %p\n", mc_ccsr_regs);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700764 dump_mc_ccsr_regs(mc_ccsr_regs);
J. German Rivera8ff14b72014-06-23 15:15:55 -0700765
766 /*
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700767 * Tell MC what is the address range of the DRAM block assigned to it:
J. German Rivera8ff14b72014-06-23 15:15:55 -0700768 */
Meenakshi Aggarwal67f195c2019-02-27 14:41:02 +0530769 if (mc_ram_num_256mb_blocks < 0xFF) {
770 reg_mcfbalr = (u32)mc_ram_addr |
771 (mc_ram_num_256mb_blocks - 1);
772 } else {
773 reg_mcfbalr = (u32)mc_ram_addr |
774 (mc_ram_num_256mb_blocks);
775 }
776
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700777 out_le32(&mc_ccsr_regs->reg_mcfbalr, reg_mcfbalr);
778 out_le32(&mc_ccsr_regs->reg_mcfbahr,
York Sunc55d7312017-03-06 09:02:29 -0800779 (u32)(mc_ram_addr >> 32));
Stuart Yoderd1970352015-07-02 11:29:02 +0530780 out_le32(&mc_ccsr_regs->reg_mcfapr, FSL_BYPASS_AMQ);
J. German Rivera8ff14b72014-06-23 15:15:55 -0700781
782 /*
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700783 * Tell the MC that we want delayed DPL deployment.
J. German Rivera8ff14b72014-06-23 15:15:55 -0700784 */
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700785 out_le32(&mc_ccsr_regs->reg_gsr, 0xDD00);
J. German Rivera8ff14b72014-06-23 15:15:55 -0700786
J. German Rivera75d7ace2015-07-02 11:28:56 +0530787 printf("\nfsl-mc: Booting Management Complex ... ");
J. German Rivera43e4ae32015-01-06 13:19:02 -0800788
J. German Rivera8ff14b72014-06-23 15:15:55 -0700789 /*
790 * Deassert reset and release MC core 0 to run
791 */
792 out_le32(&mc_ccsr_regs->reg_gcr1, GCR1_P1_DE_RST | GCR1_M_ALL_DE_RST);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700793 error = wait_for_mc(true, &reg_gsr);
794 if (error != 0)
J. German Rivera8ff14b72014-06-23 15:15:55 -0700795 goto out;
J. German Rivera8ff14b72014-06-23 15:15:55 -0700796
J. German Rivera43e4ae32015-01-06 13:19:02 -0800797 /*
798 * TODO: need to obtain the portal_id for the root container from the
799 * DPL
800 */
801 portal_id = 0;
802
803 /*
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700804 * Initialize the global default MC portal
805 * And check that the MC firmware is responding portal commands:
J. German Rivera43e4ae32015-01-06 13:19:02 -0800806 */
Ioana Ciorneie992c4d2023-01-05 17:03:19 +0200807 root_mc_io = calloc(sizeof(struct fsl_mc_io), 1);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530808 if (!root_mc_io) {
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +0530809 printf(" No memory: calloc() failed\n");
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700810 return -ENOMEM;
811 }
812
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530813 root_mc_io->mmio_regs = SOC_MC_PORTAL_ADDR(portal_id);
J. German Rivera43e4ae32015-01-06 13:19:02 -0800814 debug("Checking access to MC portal of root DPRC container (portal_id %d, portal physical addr %p)\n",
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530815 portal_id, root_mc_io->mmio_regs);
J. German Rivera43e4ae32015-01-06 13:19:02 -0800816
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530817 error = mc_get_version(root_mc_io, MC_CMD_NO_FLAGS, &mc_ver_info);
J. German Rivera43e4ae32015-01-06 13:19:02 -0800818 if (error != 0) {
819 printf("fsl-mc: ERROR: Firmware version check failed (error: %d)\n",
820 error);
821 goto out;
822 }
823
J. German Rivera43e4ae32015-01-06 13:19:02 -0800824 printf("fsl-mc: Management Complex booted (version: %d.%d.%d, boot status: %#x)\n",
825 mc_ver_info.major, mc_ver_info.minor, mc_ver_info.revision,
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700826 reg_gsr & GSR_FS_MASK);
827
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530828out:
829 if (error != 0)
830 mc_boot_status = error;
831 else
832 mc_boot_status = 0;
833
834 return error;
835}
836
837int mc_apply_dpl(u64 mc_dpl_addr)
838{
839 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
840 int error = 0;
841 u32 reg_gsr;
842 u64 mc_ram_addr = mc_get_dram_addr();
843 size_t mc_ram_size = mc_get_dram_block_size();
844
Alexander Graf2ebeb442016-11-17 01:02:57 +0100845 if (!mc_dpl_addr)
846 return -1;
847
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530848 error = load_mc_dpl(mc_ram_addr, mc_ram_size, mc_dpl_addr);
849 if (error != 0)
850 return error;
851
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700852 /*
853 * Tell the MC to deploy the DPL:
854 */
855 out_le32(&mc_ccsr_regs->reg_gsr, 0x0);
J. German Rivera75d7ace2015-07-02 11:28:56 +0530856 printf("fsl-mc: Deploying data path layout ... ");
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700857 error = wait_for_mc(false, &reg_gsr);
J. German Rivera75d7ace2015-07-02 11:28:56 +0530858
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530859 if (!error)
860 mc_dpl_applied = 0;
J. German Rivera8ff14b72014-06-23 15:15:55 -0700861
862 return error;
863}
864
865int get_mc_boot_status(void)
866{
867 return mc_boot_status;
868}
869
Tom Rini6a5dccc2022-11-16 13:10:41 -0500870#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530871int get_aiop_apply_status(void)
872{
873 return mc_aiop_applied;
874}
875#endif
876
877int get_dpl_apply_status(void)
878{
879 return mc_dpl_applied;
880}
881
Mian Yousaf Kaukab97124652018-12-18 14:01:17 +0100882int is_lazy_dpl_addr_valid(void)
883{
884 return !!mc_lazy_dpl_addr;
885}
886
Priyanka Jaine0e0be52017-08-24 16:42:43 +0530887/*
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530888 * Return the MC address of private DRAM block.
Priyanka Jaine0e0be52017-08-24 16:42:43 +0530889 * As per MC design document, MC initial base address
890 * should be least significant 512MB address of MC private
891 * memory, i.e. address should point to end address masked
892 * with 512MB offset in private DRAM block.
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530893 */
894u64 mc_get_dram_addr(void)
895{
Priyanka Jaine0e0be52017-08-24 16:42:43 +0530896 size_t mc_ram_size = mc_get_dram_block_size();
897
Prabhakar Kushwaha145e4cd2018-08-27 12:58:52 +0530898 if (!mc_memset_resv_ram || (get_mc_boot_status() < 0)) {
899 mc_memset_resv_ram = 1;
900 memset((void *)gd->arch.resv_ram, 0, mc_ram_size);
901 }
902
Priyanka Jaine0e0be52017-08-24 16:42:43 +0530903 return (gd->arch.resv_ram + mc_ram_size - 1) &
904 MC_RAM_BASE_ADDR_ALIGNMENT_MASK;
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +0530905}
906
907/**
J. German Rivera8ff14b72014-06-23 15:15:55 -0700908 * Return the actual size of the MC private DRAM block.
J. German Rivera8ff14b72014-06-23 15:15:55 -0700909 */
910unsigned long mc_get_dram_block_size(void)
911{
Tom Rini6a5dccc2022-11-16 13:10:41 -0500912 unsigned long dram_block_size = CFG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700913
Simon Glass64b723f2017-08-03 12:22:12 -0600914 char *dram_block_size_env_var = env_get(MC_MEM_SIZE_ENV_VAR);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700915
916 if (dram_block_size_env_var) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600917 dram_block_size = hextoul(dram_block_size_env_var, NULL);
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700918
Tom Rini6a5dccc2022-11-16 13:10:41 -0500919 if (dram_block_size < CFG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE) {
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700920 printf("fsl-mc: WARNING: Invalid value for \'"
921 MC_MEM_SIZE_ENV_VAR
922 "\' environment variable: %lu\n",
923 dram_block_size);
924
Meenakshi Aggarwal67f195c2019-02-27 14:41:02 +0530925 dram_block_size = MC_DRAM_BLOCK_DEFAULT_SIZE;
J. German Riveraf4fed4b2015-03-20 19:28:18 -0700926 }
927 }
928
929 return dram_block_size;
J. German Rivera8ff14b72014-06-23 15:15:55 -0700930}
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700931
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900932int fsl_mc_ldpaa_init(struct bd_info *bis)
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530933{
Prabhakar Kushwaha52d2e2c2015-11-04 12:26:00 +0530934 int i;
935
936 for (i = WRIOP1_DPMAC1; i < NUM_WRIOP_PORTS; i++)
Pankaj Bansal7987ab72018-10-10 14:08:33 +0530937 if (wriop_is_enabled_dpmac(i) == 1)
Prabhakar Kushwaha52d2e2c2015-11-04 12:26:00 +0530938 ldpaa_eth_init(i, wriop_get_enet_if(i));
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530939 return 0;
940}
941
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +0530942static int dprc_version_check(struct fsl_mc_io *mc_io, uint16_t handle)
943{
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +0530944 int error;
Yogesh Gaur318c32f2017-11-15 11:59:31 +0530945 uint16_t major_ver, minor_ver;
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +0530946
Yogesh Gaur318c32f2017-11-15 11:59:31 +0530947 error = dprc_get_api_version(mc_io, 0,
948 &major_ver,
949 &minor_ver);
950 if (error < 0) {
951 printf("dprc_get_api_version() failed: %d\n", error);
952 return error;
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +0530953 }
Yogesh Gaur318c32f2017-11-15 11:59:31 +0530954
955 if (major_ver < DPRC_VER_MAJOR || (major_ver == DPRC_VER_MAJOR &&
956 minor_ver < DPRC_VER_MINOR)) {
957 printf("DPRC version mismatch found %u.%u,",
958 major_ver, minor_ver);
959 printf("supported version is %u.%u\n",
960 DPRC_VER_MAJOR, DPRC_VER_MINOR);
961 }
962
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +0530963 return error;
964}
965
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530966static int dpio_init(void)
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700967{
968 struct qbman_swp_desc p_des;
969 struct dpio_attr attr;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530970 struct dpio_cfg dpio_cfg;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700971 int err = 0;
Yogesh Gaur318c32f2017-11-15 11:59:31 +0530972 uint16_t major_ver, minor_ver;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700973
Ioana Ciorneie992c4d2023-01-05 17:03:19 +0200974 dflt_dpio = calloc(sizeof(struct fsl_dpio_obj), 1);
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700975 if (!dflt_dpio) {
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +0530976 printf("No memory: calloc() failed\n");
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530977 err = -ENOMEM;
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +0530978 goto err_calloc;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700979 }
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530980 dpio_cfg.channel_mode = DPIO_LOCAL_CHANNEL;
981 dpio_cfg.num_priorities = 8;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700982
Yogesh Gaur318c32f2017-11-15 11:59:31 +0530983 err = dpio_create(dflt_mc_io,
984 dflt_dprc_handle,
985 MC_CMD_NO_FLAGS,
986 &dpio_cfg,
987 &dflt_dpio->dpio_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +0530988 if (err < 0) {
989 printf("dpio_create() failed: %d\n", err);
990 err = -ENODEV;
991 goto err_create;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -0700992 }
993
Yogesh Gaur318c32f2017-11-15 11:59:31 +0530994 err = dpio_get_api_version(dflt_mc_io, 0,
995 &major_ver,
996 &minor_ver);
997 if (err < 0) {
998 printf("dpio_get_api_version() failed: %d\n", err);
999 goto err_get_api_ver;
1000 }
1001
1002 if (major_ver < DPIO_VER_MAJOR || (major_ver == DPIO_VER_MAJOR &&
1003 minor_ver < DPIO_VER_MINOR)) {
1004 printf("DPRC version mismatch found %u.%u,",
1005 major_ver,
1006 minor_ver);
1007 }
1008
1009 err = dpio_open(dflt_mc_io,
1010 MC_CMD_NO_FLAGS,
1011 dflt_dpio->dpio_id,
1012 &dflt_dpio->dpio_handle);
1013 if (err) {
1014 printf("dpio_open() failed\n");
1015 goto err_open;
1016 }
1017
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301018 memset(&attr, 0, sizeof(struct dpio_attr));
Prabhakar Kushwaha9564df62015-07-07 15:40:06 +05301019 err = dpio_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301020 dflt_dpio->dpio_handle, &attr);
1021 if (err < 0) {
1022 printf("dpio_get_attributes() failed: %d\n", err);
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001023 goto err_get_attr;
1024 }
1025
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301026 if (dflt_dpio->dpio_id != attr.id) {
1027 printf("dnpi object id and attribute id are not same\n");
1028 goto err_attr_not_same;
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +05301029 }
1030
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301031#ifdef DEBUG
Ioana Ciorneib1ba07a2023-01-05 17:03:17 +02001032 printf("Init: DPIO.%d\n", dflt_dpio->dpio_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301033#endif
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301034 err = dpio_enable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
1035 if (err < 0) {
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001036 printf("dpio_enable() failed %d\n", err);
1037 goto err_get_enable;
1038 }
Prabhakar Kushwahafd5d1272015-07-02 11:28:59 +05301039 debug("ce_offset=0x%llx, ci_offset=0x%llx, portalid=%d, prios=%d\n",
1040 attr.qbman_portal_ce_offset,
1041 attr.qbman_portal_ci_offset,
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001042 attr.qbman_portal_id,
1043 attr.num_priorities);
1044
Prabhakar Kushwahafd5d1272015-07-02 11:28:59 +05301045 p_des.cena_bar = (void *)(SOC_QBMAN_PORTALS_BASE_ADDR
1046 + attr.qbman_portal_ce_offset);
1047 p_des.cinh_bar = (void *)(SOC_QBMAN_PORTALS_BASE_ADDR
1048 + attr.qbman_portal_ci_offset);
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001049
1050 dflt_dpio->sw_portal = qbman_swp_init(&p_des);
1051 if (dflt_dpio->sw_portal == NULL) {
1052 printf("qbman_swp_init() failed\n");
1053 goto err_get_swp_init;
1054 }
1055 return 0;
1056
1057err_get_swp_init:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301058 dpio_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001059err_get_enable:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301060err_get_attr:
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301061err_attr_not_same:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301062 dpio_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301063err_open:
1064err_get_api_ver:
1065 dpio_destroy(dflt_mc_io,
1066 dflt_dprc_handle,
1067 MC_CMD_NO_FLAGS,
1068 dflt_dpio->dpio_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301069err_create:
Prabhakar Kushwahac6018bd2016-03-18 16:15:29 +05301070 free(dflt_dpio);
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301071err_calloc:
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001072 return err;
1073}
1074
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301075static int dpio_exit(void)
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001076{
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301077 int err;
1078
1079 err = dpio_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
1080 if (err < 0) {
1081 printf("dpio_disable() failed: %d\n", err);
1082 goto err;
1083 }
1084
Cosmin-Florin Aluchenesei971dfd32021-07-21 19:13:33 +03001085 err = dpio_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301086 if (err < 0) {
1087 printf("dpio_close() failed: %d\n", err);
1088 goto err;
1089 }
1090
1091 err = dpio_destroy(dflt_mc_io,
1092 dflt_dprc_handle,
1093 MC_CMD_NO_FLAGS,
1094 dflt_dpio->dpio_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301095 if (err < 0) {
1096 printf("dpio_destroy() failed: %d\n", err);
1097 goto err;
1098 }
1099
1100#ifdef DEBUG
Ioana Ciorneib1ba07a2023-01-05 17:03:17 +02001101 printf("Exit: DPIO.%d\n", dflt_dpio->dpio_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301102#endif
1103
1104 if (dflt_dpio)
1105 free(dflt_dpio);
1106
1107 return 0;
1108err:
1109 return err;
1110}
1111
1112static int dprc_init(void)
1113{
1114 int err, child_portal_id, container_id;
1115 struct dprc_cfg cfg;
1116 uint64_t mc_portal_offset;
1117
1118 /* Open root container */
1119 err = dprc_get_container_id(root_mc_io, MC_CMD_NO_FLAGS, &container_id);
1120 if (err < 0) {
1121 printf("dprc_get_container_id(): Root failed: %d\n", err);
1122 goto err_root_container_id;
1123 }
1124
1125#ifdef DEBUG
1126 printf("Root container id = %d\n", container_id);
1127#endif
1128 err = dprc_open(root_mc_io, MC_CMD_NO_FLAGS, container_id,
1129 &root_dprc_handle);
1130 if (err < 0) {
1131 printf("dprc_open(): Root Container failed: %d\n", err);
1132 goto err_root_open;
1133 }
1134
1135 if (!root_dprc_handle) {
1136 printf("dprc_open(): Root Container Handle is not valid\n");
1137 goto err_root_open;
1138 }
1139
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +05301140 err = dprc_version_check(root_mc_io, root_dprc_handle);
1141 if (err < 0) {
1142 printf("dprc_version_check() failed: %d\n", err);
1143 goto err_root_open;
1144 }
1145
Prabhakar Kushwaha901a88e2016-01-20 12:04:19 +05301146 memset(&cfg, 0, sizeof(struct dprc_cfg));
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301147 cfg.options = DPRC_CFG_OPT_TOPOLOGY_CHANGES_ALLOWED |
1148 DPRC_CFG_OPT_OBJ_CREATE_ALLOWED |
1149 DPRC_CFG_OPT_ALLOC_ALLOWED;
1150 cfg.icid = DPRC_GET_ICID_FROM_POOL;
Prabhakar Kushwaha7fd59d92015-12-24 15:33:49 +05301151 cfg.portal_id = DPRC_GET_PORTAL_ID_FROM_POOL;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301152 err = dprc_create_container(root_mc_io, MC_CMD_NO_FLAGS,
Ioana Ciornei4563b9c2023-01-05 17:03:20 +02001153 root_dprc_handle, &cfg,
1154 &child_dprc_id,
1155 &mc_portal_offset);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301156 if (err < 0) {
1157 printf("dprc_create_container() failed: %d\n", err);
1158 goto err_create;
1159 }
1160
Ioana Ciorneie992c4d2023-01-05 17:03:19 +02001161 dflt_mc_io = calloc(sizeof(struct fsl_mc_io), 1);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301162 if (!dflt_mc_io) {
1163 err = -ENOMEM;
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301164 printf(" No memory: calloc() failed\n");
1165 goto err_calloc;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301166 }
1167
1168 child_portal_id = MC_PORTAL_OFFSET_TO_PORTAL_ID(mc_portal_offset);
1169 dflt_mc_io->mmio_regs = SOC_MC_PORTAL_ADDR(child_portal_id);
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301170
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301171#ifdef DEBUG
1172 printf("MC portal of child DPRC container: %d, physical addr %p)\n",
1173 child_dprc_id, dflt_mc_io->mmio_regs);
1174#endif
1175
1176 err = dprc_open(dflt_mc_io, MC_CMD_NO_FLAGS, child_dprc_id,
1177 &dflt_dprc_handle);
1178 if (err < 0) {
1179 printf("dprc_open(): Child container failed: %d\n", err);
1180 goto err_child_open;
1181 }
1182
1183 if (!dflt_dprc_handle) {
1184 printf("dprc_open(): Child container Handle is not valid\n");
1185 goto err_child_open;
1186 }
1187
1188 return 0;
1189err_child_open:
1190 free(dflt_mc_io);
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301191err_calloc:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301192 dprc_destroy_container(root_mc_io, MC_CMD_NO_FLAGS,
1193 root_dprc_handle, child_dprc_id);
1194err_create:
1195 dprc_close(root_mc_io, MC_CMD_NO_FLAGS, root_dprc_handle);
1196err_root_open:
1197err_root_container_id:
1198 return err;
1199}
1200
1201static int dprc_exit(void)
1202{
1203 int err;
1204
1205 err = dprc_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dprc_handle);
1206 if (err < 0) {
1207 printf("dprc_close(): Child failed: %d\n", err);
1208 goto err;
1209 }
1210
1211 err = dprc_destroy_container(root_mc_io, MC_CMD_NO_FLAGS,
1212 root_dprc_handle, child_dprc_id);
1213 if (err < 0) {
1214 printf("dprc_destroy_container() failed: %d\n", err);
1215 goto err;
1216 }
1217
1218 err = dprc_close(root_mc_io, MC_CMD_NO_FLAGS, root_dprc_handle);
1219 if (err < 0) {
1220 printf("dprc_close(): Root failed: %d\n", err);
1221 goto err;
1222 }
1223
1224 if (dflt_mc_io)
1225 free(dflt_mc_io);
1226
1227 if (root_mc_io)
1228 free(root_mc_io);
1229
1230 return 0;
1231
1232err:
1233 return err;
1234}
1235
1236static int dpbp_init(void)
1237{
1238 int err;
1239 struct dpbp_attr dpbp_attr;
1240 struct dpbp_cfg dpbp_cfg;
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301241 uint16_t major_ver, minor_ver;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301242
Ioana Ciorneie992c4d2023-01-05 17:03:19 +02001243 dflt_dpbp = calloc(sizeof(struct fsl_dpbp_obj), 1);
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001244 if (!dflt_dpbp) {
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301245 printf("No memory: calloc() failed\n");
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301246 err = -ENOMEM;
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301247 goto err_calloc;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301248 }
1249
1250 dpbp_cfg.options = 512;
1251
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301252 err = dpbp_create(dflt_mc_io,
1253 dflt_dprc_handle,
1254 MC_CMD_NO_FLAGS,
1255 &dpbp_cfg,
1256 &dflt_dpbp->dpbp_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301257
1258 if (err < 0) {
1259 err = -ENODEV;
1260 printf("dpbp_create() failed: %d\n", err);
1261 goto err_create;
1262 }
1263
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301264 err = dpbp_get_api_version(dflt_mc_io, 0,
1265 &major_ver,
1266 &minor_ver);
1267 if (err < 0) {
1268 printf("dpbp_get_api_version() failed: %d\n", err);
1269 goto err_get_api_ver;
1270 }
1271
1272 if (major_ver < DPBP_VER_MAJOR || (major_ver == DPBP_VER_MAJOR &&
1273 minor_ver < DPBP_VER_MINOR)) {
1274 printf("DPBP version mismatch found %u.%u,",
1275 major_ver, minor_ver);
1276 printf("supported version is %u.%u\n",
1277 DPBP_VER_MAJOR, DPBP_VER_MINOR);
1278 }
1279
1280 err = dpbp_open(dflt_mc_io,
1281 MC_CMD_NO_FLAGS,
1282 dflt_dpbp->dpbp_id,
1283 &dflt_dpbp->dpbp_handle);
1284 if (err) {
1285 printf("dpbp_open() failed\n");
1286 goto err_open;
1287 }
1288
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301289 memset(&dpbp_attr, 0, sizeof(struct dpbp_attr));
1290 err = dpbp_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
1291 dflt_dpbp->dpbp_handle,
1292 &dpbp_attr);
1293 if (err < 0) {
1294 printf("dpbp_get_attributes() failed: %d\n", err);
1295 goto err_get_attr;
1296 }
1297
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301298 if (dflt_dpbp->dpbp_id != dpbp_attr.id) {
1299 printf("dpbp object id and attribute id are not same\n");
1300 goto err_attr_not_same;
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +05301301 }
1302
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301303#ifdef DEBUG
Ioana Ciorneib1ba07a2023-01-05 17:03:17 +02001304 printf("Init: DPBP.%d\n", dflt_dpbp->dpbp_attr.id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301305#endif
1306
1307 err = dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
1308 if (err < 0) {
1309 printf("dpbp_close() failed: %d\n", err);
1310 goto err_close;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001311 }
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001312
1313 return 0;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301314
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301315err_get_attr:
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301316err_attr_not_same:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301317 dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301318 dpbp_destroy(dflt_mc_io,
1319 dflt_dprc_handle,
1320 MC_CMD_NO_FLAGS,
1321 dflt_dpbp->dpbp_id);
1322err_get_api_ver:
1323err_close:
1324err_open:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301325err_create:
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301326 free(dflt_dpbp);
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301327err_calloc:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301328 return err;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001329}
1330
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301331static int dpbp_exit(void)
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001332{
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301333 int err;
1334
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301335 err = dpbp_destroy(dflt_mc_io, dflt_dprc_handle, MC_CMD_NO_FLAGS,
1336 dflt_dpbp->dpbp_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301337 if (err < 0) {
1338 printf("dpbp_destroy() failed: %d\n", err);
1339 goto err;
1340 }
1341
1342#ifdef DEBUG
Ioana Ciorneib1ba07a2023-01-05 17:03:17 +02001343 printf("Exit: DPBP.%d\n", dflt_dpbp->dpbp_attr.id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301344#endif
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001345
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301346 if (dflt_dpbp)
1347 free(dflt_dpbp);
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301348 return 0;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301349
1350err:
1351 return err;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001352}
1353
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301354static int dpni_init(void)
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001355{
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301356 int err;
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301357 uint8_t cfg_buf[256] = {0};
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301358 struct dpni_cfg dpni_cfg;
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301359 uint16_t major_ver, minor_ver;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301360
Ioana Ciorneie992c4d2023-01-05 17:03:19 +02001361 dflt_dpni = calloc(sizeof(struct fsl_dpni_obj), 1);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301362 if (!dflt_dpni) {
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301363 printf("No memory: calloc() failed\n");
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301364 err = -ENOMEM;
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301365 goto err_calloc;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301366 }
1367
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301368 memset(&dpni_cfg, 0, sizeof(dpni_cfg));
1369 err = dpni_prepare_cfg(&dpni_cfg, &cfg_buf[0]);
Prabhakar Kushwahae26e2852015-12-24 15:33:01 +05301370 if (err < 0) {
1371 err = -ENODEV;
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301372 printf("dpni_prepare_cfg() failed: %d\n", err);
1373 goto err_prepare_cfg;
Prabhakar Kushwahae26e2852015-12-24 15:33:01 +05301374 }
1375
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301376 err = dpni_create(dflt_mc_io,
1377 dflt_dprc_handle,
1378 MC_CMD_NO_FLAGS,
1379 &dpni_cfg,
1380 &dflt_dpni->dpni_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301381 if (err < 0) {
1382 err = -ENODEV;
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301383 printf("dpni create() failed: %d\n", err);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301384 goto err_create;
1385 }
1386
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301387 err = dpni_get_api_version(dflt_mc_io, 0,
1388 &major_ver,
1389 &minor_ver);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301390 if (err < 0) {
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301391 printf("dpni_get_api_version() failed: %d\n", err);
1392 goto err_get_version;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301393 }
1394
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301395 if (major_ver < DPNI_VER_MAJOR || (major_ver == DPNI_VER_MAJOR &&
1396 minor_ver < DPNI_VER_MINOR)) {
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +05301397 printf("DPNI version mismatch found %u.%u,",
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301398 major_ver, minor_ver);
Prabhakar Kushwaha0a4156c2015-12-24 15:32:37 +05301399 printf("supported version is %u.%u\n",
1400 DPNI_VER_MAJOR, DPNI_VER_MINOR);
1401 }
1402
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301403 err = dpni_open(dflt_mc_io,
1404 MC_CMD_NO_FLAGS,
1405 dflt_dpni->dpni_id,
1406 &dflt_dpni->dpni_handle);
1407 if (err) {
1408 printf("dpni_open() failed\n");
1409 goto err_open;
1410 }
1411
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301412#ifdef DEBUG
Ioana Ciorneib1ba07a2023-01-05 17:03:17 +02001413 printf("Init: DPNI.%d\n", dflt_dpni->dpni_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301414#endif
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301415 err = dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
1416 if (err < 0) {
1417 printf("dpni_close() failed: %d\n", err);
1418 goto err_close;
1419 }
1420
1421 return 0;
1422
1423err_close:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301424 dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301425err_open:
1426err_get_version:
1427 dpni_destroy(dflt_mc_io,
1428 dflt_dprc_handle,
1429 MC_CMD_NO_FLAGS,
1430 dflt_dpni->dpni_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301431err_create:
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301432err_prepare_cfg:
Prabhakar Kushwahae26e2852015-12-24 15:33:01 +05301433 free(dflt_dpni);
Prabhakar Kushwaha790c1a42017-10-11 08:51:18 +05301434err_calloc:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301435 return err;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001436}
1437
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301438static int dpni_exit(void)
1439{
1440 int err;
1441
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301442 err = dpni_destroy(dflt_mc_io, dflt_dprc_handle, MC_CMD_NO_FLAGS,
1443 dflt_dpni->dpni_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301444 if (err < 0) {
1445 printf("dpni_destroy() failed: %d\n", err);
1446 goto err;
1447 }
1448
1449#ifdef DEBUG
Ioana Ciorneib1ba07a2023-01-05 17:03:17 +02001450 printf("Exit: DPNI.%d\n", dflt_dpni->dpni_id);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301451#endif
1452
1453 if (dflt_dpni)
1454 free(dflt_dpni);
1455 return 0;
1456
1457err:
1458 return err;
1459}
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001460
1461static bool is_dpsparser_supported(void)
1462{
1463 /* dpsparser support was first introduced in MC version: 10.12.0 */
1464 if (mc_ver_info.major < 10)
1465 return false;
1466 if (mc_ver_info.major == 10)
1467 return (mc_ver_info.minor >= 12);
1468 return true;
1469}
1470
1471static int dpsparser_version_check(struct fsl_mc_io *mc_io)
1472{
1473 int error;
1474 u16 major_ver, minor_ver;
1475
1476 if (!is_dpsparser_supported())
1477 return 0;
1478
1479 error = dpsparser_get_api_version(mc_io, 0,
1480 &major_ver,
1481 &minor_ver);
1482 if (error < 0) {
1483 printf("dpsparser_get_api_version() failed: %d\n", error);
1484 return error;
1485 }
1486
1487 if (major_ver < DPSPARSER_VER_MAJOR || (major_ver ==
1488 DPSPARSER_VER_MAJOR && minor_ver < DPSPARSER_VER_MINOR)) {
1489 printf("DPSPARSER version mismatch found %u.%u,",
1490 major_ver, minor_ver);
1491 printf("supported version is %u.%u\n",
1492 DPSPARSER_VER_MAJOR, DPSPARSER_VER_MINOR);
1493 }
1494
1495 return error;
1496}
1497
1498static int dpsparser_init(void)
1499{
1500 int err = 0;
1501
1502 if (!is_dpsparser_supported())
1503 return 0;
1504
1505 err = dpsparser_create(dflt_mc_io,
1506 dflt_dprc_handle,
1507 MC_CMD_NO_FLAGS,
1508 &dpsparser_obj_id);
1509 if (err)
1510 printf("dpsparser_create() failed\n");
1511
1512 err = dpsparser_version_check(dflt_mc_io);
1513 if (err < 0) {
1514 printf("dpsparser_version_check() failed: %d\n", err);
1515 goto err_version_check;
1516 }
1517
1518 err = dpsparser_open(dflt_mc_io,
1519 MC_CMD_NO_FLAGS,
1520 &dpsparser_handle);
1521 if (err < 0) {
1522 printf("dpsparser_open() failed: %d\n", err);
1523 goto err_open;
1524 }
1525
1526 return err;
1527
1528err_open:
1529err_version_check:
1530 dpsparser_destroy(dflt_mc_io,
1531 dflt_dprc_handle,
1532 MC_CMD_NO_FLAGS, dpsparser_obj_id);
1533
1534 return err;
1535}
1536
1537#ifdef DPSPARSER_DESTROY
1538/* TODO: refactoring needed in the future to allow DPSPARSER object destroy
1539 * Workaround: DO NOT destroy DPSPARSER object because it needs to be available
1540 * on Apply DPL
1541 */
1542static int dpsparser_exit(void)
1543{
1544 int err;
1545
1546 if (!is_dpsparser_supported())
1547 return 0;
1548
1549 dpsparser_close(dflt_mc_io, MC_CMD_NO_FLAGS, dpsparser_handle);
1550 if (err < 0) {
1551 printf("dpsparser_close() failed: %d\n", err);
1552 goto err;
1553 }
1554
1555 err = dpsparser_destroy(dflt_mc_io, dflt_dprc_handle,
1556 MC_CMD_NO_FLAGS, dpsparser_obj_id);
1557 if (err < 0) {
1558 printf("dpsparser_destroy() failed: %d\n", err);
1559 goto err;
1560 }
1561 return 0;
1562
1563err:
1564 return err;
1565}
1566#endif
1567
1568int mc_apply_spb(u64 mc_spb_addr)
1569{
1570 int err = 0;
1571 u16 error, err_arr_size;
1572 u64 mc_spb_offset;
1573 u32 spb_size;
1574 struct sp_blob_header *sp_blob;
1575 u64 mc_ram_addr = mc_get_dram_addr();
1576
1577 if (!is_dpsparser_supported())
1578 return 0;
1579
1580 if (!mc_spb_addr) {
1581 printf("fsl-mc: Invalid Blob address\n");
1582 return -1;
1583 }
1584
1585#ifdef CONFIG_MC_DRAM_SPB_OFFSET
1586 mc_spb_offset = CONFIG_MC_DRAM_SPB_OFFSET;
1587#else
1588#error "CONFIG_MC_DRAM_SPB_OFFSET not defined"
1589#endif
1590
1591 // Read blob header and get size of SPB blob
1592 sp_blob = (struct sp_blob_header *)mc_spb_addr;
1593 spb_size = le32_to_cpu(sp_blob->length);
1594 if (spb_size > CONFIG_MC_SPB_MAX_SIZE) {
1595 printf("\nfsl-mc: ERROR: Bad SPB image (too large: %d)\n",
1596 spb_size);
1597 return -EINVAL;
1598 }
1599
1600 mc_copy_image("MC SP Blob", mc_spb_addr, spb_size,
1601 mc_ram_addr + mc_spb_offset);
1602
1603 //Invoke MC command to apply SPB blob
1604 printf("fsl-mc: Applying soft parser blob... ");
1605 err = dpsparser_apply_spb(dflt_mc_io, MC_CMD_NO_FLAGS, dpsparser_handle,
1606 mc_spb_offset, &error);
1607 if (err)
1608 return err;
1609
1610 if (error == 0) {
1611 printf("SUCCESS\n");
1612 } else {
1613 printf("FAILED with error code = %d:\n", error);
1614 err_arr_size = (u16)ARRAY_SIZE(mc_err_msg_apply_spb);
1615
1616 if (error > 0 && error < err_arr_size)
1617 printf(mc_err_msg_apply_spb[error]);
1618 else
1619 printf(MC_ERROR_MSG_SPB_UNKNOWN);
1620 }
1621
1622 return err;
1623}
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301624
1625static int mc_init_object(void)
1626{
1627 int err = 0;
1628
1629 err = dprc_init();
1630 if (err < 0) {
1631 printf("dprc_init() failed: %d\n", err);
1632 goto err;
1633 }
1634
1635 err = dpbp_init();
1636 if (err < 0) {
1637 printf("dpbp_init() failed: %d\n", err);
1638 goto err;
1639 }
1640
1641 err = dpio_init();
1642 if (err < 0) {
1643 printf("dpio_init() failed: %d\n", err);
1644 goto err;
1645 }
1646
1647 err = dpni_init();
1648 if (err < 0) {
1649 printf("dpni_init() failed: %d\n", err);
1650 goto err;
1651 }
1652
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001653 err = dpsparser_init();
1654 if (err < 0) {
1655 printf("dpsparser_init() failed: %d\n", err);
1656 goto err;
1657 }
1658
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301659 return 0;
1660err:
1661 return err;
1662}
1663
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +09001664int fsl_mc_ldpaa_exit(struct bd_info *bd)
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301665{
1666 int err = 0;
Yogesh Gaur4a81bbe2017-04-27 10:14:16 +05301667 bool is_dpl_apply_status = false;
Santan Kumar0a6e5ba2017-06-29 11:19:34 +05301668 bool mc_boot_status = false;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301669
Alexander Graf2ebeb442016-11-17 01:02:57 +01001670 if (bd && mc_lazy_dpl_addr && !fsl_mc_ldpaa_exit(NULL)) {
Yogesh Gaur8dadfb42018-01-16 10:08:24 +05301671 err = mc_apply_dpl(mc_lazy_dpl_addr);
1672 if (!err)
1673 fdt_fixup_board_enet(working_fdt);
Alexander Graf2ebeb442016-11-17 01:02:57 +01001674 mc_lazy_dpl_addr = 0;
1675 }
1676
Santan Kumar0a6e5ba2017-06-29 11:19:34 +05301677 if (!get_mc_boot_status())
1678 mc_boot_status = true;
1679
Prabhakar Kushwaha878d3ec2016-03-21 14:19:39 +05301680 /* MC is not loaded intentionally, So return success. */
Santan Kumar0a6e5ba2017-06-29 11:19:34 +05301681 if (bd && !mc_boot_status)
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301682 return 0;
1683
Yogesh Gaur4a81bbe2017-04-27 10:14:16 +05301684 /* If DPL is deployed, set is_dpl_apply_status as TRUE. */
1685 if (!get_dpl_apply_status())
1686 is_dpl_apply_status = true;
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301687
Yogesh Gaur4a81bbe2017-04-27 10:14:16 +05301688 /*
1689 * For case MC is loaded but DPL is not deployed, return success and
1690 * print message on console. Else FDT fix-up code execution hanged.
1691 */
Santan Kumar0a6e5ba2017-06-29 11:19:34 +05301692 if (bd && mc_boot_status && !is_dpl_apply_status) {
Yogesh Gaur4a81bbe2017-04-27 10:14:16 +05301693 printf("fsl-mc: DPL not deployed, DPAA2 ethernet not work\n");
Yogesh Gaur82709e52017-11-28 10:11:14 +05301694 goto mc_obj_cleanup;
Yogesh Gaur4a81bbe2017-04-27 10:14:16 +05301695 }
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301696
Santan Kumar0a6e5ba2017-06-29 11:19:34 +05301697 if (bd && mc_boot_status && is_dpl_apply_status)
1698 return 0;
1699
Yogesh Gaur82709e52017-11-28 10:11:14 +05301700mc_obj_cleanup:
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301701 err = dpbp_exit();
1702 if (err < 0) {
Prabhakar Kushwaha88ba4d62016-01-20 12:04:37 +05301703 printf("dpbp_exit() failed: %d\n", err);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301704 goto err;
1705 }
1706
1707 err = dpio_exit();
1708 if (err < 0) {
1709 printf("dpio_exit() failed: %d\n", err);
1710 goto err;
1711 }
1712
1713 err = dpni_exit();
1714 if (err < 0) {
1715 printf("dpni_exit() failed: %d\n", err);
1716 goto err;
1717 }
1718
1719 err = dprc_exit();
1720 if (err < 0) {
1721 printf("dprc_exit() failed: %d\n", err);
1722 goto err;
1723 }
1724
1725 return 0;
1726err:
1727 return err;
1728}
1729
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +03001730static void print_k_bytes(const void *buf, ssize_t *size)
1731{
1732 while (*size > 0) {
1733 int count = printf("%s", (char *)buf);
1734
1735 buf += count;
1736 *size -= count;
1737 }
1738}
1739
1740static void mc_dump_log(void)
1741{
1742 struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
1743 u64 high = in_le64(&mc_ccsr_regs->reg_mcfbahr) & MC_FW_ADDR_MASK_HIGH;
1744 u64 low = in_le64(&mc_ccsr_regs->reg_mcfbalr) & MC_FW_ADDR_MASK_LOW;
1745 u32 buf_len, wrapped, last_byte, magic, buf_start;
1746 u64 mc_addr = (high << 32) | low;
1747 struct log_header *header;
1748 ssize_t size, bytes_end;
1749 const void *end_of_data;
1750 const void *map_addr;
1751 const void *end_addr;
1752 const void *cur_ptr;
1753 const void *buf;
1754
1755 map_addr = map_sysmem(mc_addr + MC_STRUCT_BUFFER_OFFSET,
1756 MC_BUFFER_SIZE);
1757 header = (struct log_header *)map_addr;
1758 last_byte = in_le32(&header->last_byte);
1759 buf_len = in_le32(&header->buf_length);
1760 magic = in_le32(&header->magic_word);
1761 buf_start = in_le32(&header->buf_start);
1762 buf = map_addr + buf_start - MC_OFFSET_DELTA;
1763 end_addr = buf + buf_len;
1764 wrapped = last_byte & LOG_HEADER_FLAG_BUFFER_WRAPAROUND;
1765 end_of_data = buf + LAST_BYTE(last_byte);
1766
1767 if (magic != MAGIC_MC) {
1768 puts("Magic number is not valid\n");
1769 printf("expected = %08x, received = %08x\n", MAGIC_MC, magic);
1770 goto err_magic;
1771 }
1772
1773 if (wrapped && end_of_data != end_addr)
1774 cur_ptr = end_of_data + 1;
1775 else
1776 cur_ptr = buf;
1777
1778 if (cur_ptr <= end_of_data)
1779 size = end_of_data - cur_ptr;
1780 else
1781 size = (end_addr - cur_ptr) + (end_of_data - buf);
1782
1783 bytes_end = end_addr - cur_ptr;
1784 if (size > bytes_end) {
1785 print_k_bytes(cur_ptr, &bytes_end);
1786
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +03001787 size -= bytes_end;
1788 }
1789
1790 print_k_bytes(buf, &size);
1791
1792err_magic:
1793 unmap_sysmem(map_addr);
1794}
1795
Simon Glassed38aef2020-05-10 11:40:03 -06001796static int do_fsl_mc(struct cmd_tbl *cmdtp, int flag, int argc,
1797 char *const argv[])
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001798{
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301799 int err = 0;
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +03001800 if (argc < 2)
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301801 goto usage;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001802
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301803 switch (argv[1][0]) {
1804 case 's': {
1805 char sub_cmd;
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301806 u64 mc_fw_addr, mc_dpc_addr;
Tom Rini6a5dccc2022-11-16 13:10:41 -05001807#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301808 u64 aiop_fw_addr;
1809#endif
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +03001810 if (argc < 3)
1811 goto usage;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001812
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301813 sub_cmd = argv[2][0];
Yogesh Gaur318c32f2017-11-15 11:59:31 +05301814
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301815 switch (sub_cmd) {
1816 case 'm':
1817 if (argc < 5)
1818 goto usage;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001819
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301820 if (get_mc_boot_status() == 0) {
1821 printf("fsl-mc: MC is already booted");
1822 printf("\n");
1823 return err;
1824 }
1825 mc_fw_addr = simple_strtoull(argv[3], NULL, 16);
1826 mc_dpc_addr = simple_strtoull(argv[4], NULL,
1827 16);
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301828
1829 if (!mc_init(mc_fw_addr, mc_dpc_addr))
1830 err = mc_init_object();
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301831 break;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001832
Tom Rini6a5dccc2022-11-16 13:10:41 -05001833#ifdef CFG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301834 case 'a':
1835 if (argc < 4)
1836 goto usage;
1837 if (get_aiop_apply_status() == 0) {
1838 printf("fsl-mc: AIOP FW is already");
1839 printf(" applied\n");
1840 return err;
1841 }
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001842
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301843 aiop_fw_addr = simple_strtoull(argv[3], NULL,
1844 16);
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001845
York Suncbe8e1c2016-04-04 11:41:26 -07001846 /* if SoC doesn't have AIOP, err = -ENODEV */
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301847 err = load_mc_aiop_img(aiop_fw_addr);
1848 if (!err)
1849 printf("fsl-mc: AIOP FW applied\n");
1850 break;
1851#endif
1852 default:
1853 printf("Invalid option: %s\n", argv[2]);
1854 goto usage;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001855
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301856 break;
1857 }
1858 }
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001859 break;
1860
1861 case 'l': {
1862 /* lazyapply */
1863 u64 mc_dpl_addr;
1864
1865 if (argc < 4)
1866 goto usage;
1867
1868 if (get_dpl_apply_status() == 0) {
1869 printf("fsl-mc: DPL already applied\n");
1870 return err;
1871 }
1872
1873 mc_dpl_addr = simple_strtoull(argv[3], NULL, 16);
1874
1875 if (get_mc_boot_status() != 0) {
1876 printf("fsl-mc: Deploying data path layout ..");
1877 printf("ERROR (MC is not booted)\n");
1878 return -ENODEV;
1879 }
1880
1881 /*
1882 * We will do the actual dpaa exit and dpl apply
1883 * later from announce_and_cleanup().
1884 */
1885 mc_lazy_dpl_addr = mc_dpl_addr;
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301886 break;
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001887 }
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001888
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301889 case 'a': {
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001890 /* apply */
1891 char sub_cmd;
1892 u64 mc_apply_addr;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001893
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001894 if (argc < 4)
1895 goto usage;
1896
1897 sub_cmd = argv[2][0];
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001898
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001899 switch (sub_cmd) {
1900 case 'd':
1901 case 'D':
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301902 if (get_dpl_apply_status() == 0) {
1903 printf("fsl-mc: DPL already applied\n");
1904 return err;
1905 }
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301906 if (get_mc_boot_status() != 0) {
1907 printf("fsl-mc: Deploying data path layout ..");
1908 printf("ERROR (MC is not booted)\n");
1909 return -ENODEV;
1910 }
Prabhakar Kushwaha316b71c2015-11-04 12:25:59 +05301911
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001912 mc_apply_addr = simple_strtoull(argv[3], NULL, 16);
1913
1914 /* The user wants DPL applied now */
1915 if (!fsl_mc_ldpaa_exit(NULL))
1916 err = mc_apply_dpl(mc_apply_addr);
1917 break;
1918
1919 case 's':
1920 if (!is_dpsparser_supported()) {
1921 printf("fsl-mc: apply spb command .. ");
1922 printf("ERROR: requires at least MC 10.12.0\n");
1923 return err;
Alexander Graf2ebeb442016-11-17 01:02:57 +01001924 }
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001925 if (get_mc_boot_status() != 0) {
1926 printf("fsl-mc: Deploying Soft Parser Blob...");
1927 printf("ERROR (MC is not booted)\n");
1928 return err;
1929 }
1930
1931 mc_apply_addr = simple_strtoull(argv[3], NULL, 16);
1932
1933 /* Apply spb (Soft Parser Blob) */
1934 err = mc_apply_spb(mc_apply_addr);
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301935 break;
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001936
1937 default:
1938 printf("Invalid option: %s\n", argv[2]);
1939 goto usage;
1940 }
1941 break;
J. German Riveraf4fed4b2015-03-20 19:28:18 -07001942 }
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +03001943 case 'd':
1944 if (argc > 2)
1945 goto usage;
1946
1947 mc_dump_log();
1948 break;
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301949 default:
1950 printf("Invalid option: %s\n", argv[1]);
1951 goto usage;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001952 }
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301953 return err;
1954 usage:
1955 return CMD_RET_USAGE;
Prabhakar Kushwahacfd9fbf2015-03-19 09:20:45 -07001956}
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301957
1958U_BOOT_CMD(
1959 fsl_mc, CONFIG_SYS_MAXARGS, 1, do_fsl_mc,
1960 "DPAA2 command to manage Management Complex (MC)",
1961 "start mc [FW_addr] [DPC_addr] - Start Management Complex\n"
1962 "fsl_mc apply DPL [DPL_addr] - Apply DPL file\n"
Alexander Graf2ebeb442016-11-17 01:02:57 +01001963 "fsl_mc lazyapply DPL [DPL_addr] - Apply DPL file on exit\n"
Florinel Iordacheae6d8522019-11-19 10:28:17 +00001964 "fsl_mc apply spb [spb_addr] - Apply SPB Soft Parser Blob\n"
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301965 "fsl_mc start aiop [FW_addr] - Start AIOP\n"
Cosmin-Florin Alucheneseiaa280142021-10-07 13:07:44 +03001966 "fsl_mc dump_log - Dump MC Log\n"
Prabhakar Kushwaha29a63e42015-11-04 12:25:58 +05301967);
Bogdan Purcareata08bc0142017-05-24 16:40:21 +00001968
1969void mc_env_boot(void)
1970{
1971#if defined(CONFIG_FSL_MC_ENET)
1972 char *mc_boot_env_var;
1973 /* The MC may only be initialized in the reset PHY function
1974 * because otherwise U-Boot has not yet set up all the MAC
1975 * address info properly. Without MAC addresses, the MC code
1976 * can not properly initialize the DPC.
1977 */
Simon Glass64b723f2017-08-03 12:22:12 -06001978 mc_boot_env_var = env_get(MC_BOOT_ENV_VAR);
Bogdan Purcareata08bc0142017-05-24 16:40:21 +00001979 if (mc_boot_env_var)
1980 run_command_list(mc_boot_env_var, -1, 0);
1981#endif /* CONFIG_FSL_MC_ENET */
1982}