blob: ee96abbf77f36cfb9f773c865cb197780ed06f8d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala2683c532011-04-13 08:37:44 -05002/*
3 * Copyright 2009-2011 Freescale Semiconductor, Inc.
4 * Dave Liu <daveliu@freescale.com>
Kumar Gala2683c532011-04-13 08:37:44 -05005 */
6#include <common.h>
Simon Glass313112a2019-08-01 09:46:46 -06007#include <env.h>
Sean Anderson9a2c7732022-09-07 13:44:55 +08008#include <image.h>
Kumar Gala2683c532011-04-13 08:37:44 -05009#include <malloc.h>
10#include <asm/io.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090011#include <linux/errno.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070012#include <u-boot/crc.h>
Madalin Bucurb76b0a62020-04-23 16:25:19 +030013#ifdef CONFIG_DM_ETH
14#include <dm.h>
15#endif
Kumar Gala2683c532011-04-13 08:37:44 -050016
17#include "fm.h"
Qianyu Gongae6a7582016-02-18 13:01:59 +080018#include <fsl_qe.h> /* For struct qe_firmware */
Kumar Gala2683c532011-04-13 08:37:44 -050019
Kumar Gala2683c532011-04-13 08:37:44 -050020#include <nand.h>
Kumar Gala2683c532011-04-13 08:37:44 -050021#include <spi_flash.h>
Kumar Gala2683c532011-04-13 08:37:44 -050022#include <mmc.h>
Rajesh Bhagat1dec9612018-11-05 18:02:23 +000023
24#ifdef CONFIG_ARM64
25#include <asm/armv8/mmu.h>
26#include <asm/arch/cpu.h>
Kumar Gala2683c532011-04-13 08:37:44 -050027#endif
28
29struct fm_muram muram[CONFIG_SYS_NUM_FMAN];
30
Hou Zhiqiangea52d332015-10-26 19:47:44 +080031void *fm_muram_base(int fm_idx)
Kumar Gala2683c532011-04-13 08:37:44 -050032{
33 return muram[fm_idx].base;
34}
35
Hou Zhiqiangea52d332015-10-26 19:47:44 +080036void *fm_muram_alloc(int fm_idx, size_t size, ulong align)
Kumar Gala2683c532011-04-13 08:37:44 -050037{
Hou Zhiqiangea52d332015-10-26 19:47:44 +080038 void *ret;
39 ulong align_mask;
40 size_t off;
41 void *save;
Kumar Gala2683c532011-04-13 08:37:44 -050042
43 align_mask = align - 1;
44 save = muram[fm_idx].alloc;
45
Hou Zhiqiangea52d332015-10-26 19:47:44 +080046 off = (ulong)save & align_mask;
Kumar Gala2683c532011-04-13 08:37:44 -050047 if (off != 0)
48 muram[fm_idx].alloc += (align - off);
49 off = size & align_mask;
50 if (off != 0)
51 size += (align - off);
52 if ((muram[fm_idx].alloc + size) >= muram[fm_idx].top) {
53 muram[fm_idx].alloc = save;
54 printf("%s: run out of ram.\n", __func__);
Hou Zhiqiangea52d332015-10-26 19:47:44 +080055 return NULL;
Kumar Gala2683c532011-04-13 08:37:44 -050056 }
57
58 ret = muram[fm_idx].alloc;
59 muram[fm_idx].alloc += size;
60 memset((void *)ret, 0, size);
61
62 return ret;
63}
64
65static void fm_init_muram(int fm_idx, void *reg)
66{
Hou Zhiqiangea52d332015-10-26 19:47:44 +080067 void *base = reg;
Kumar Gala2683c532011-04-13 08:37:44 -050068
69 muram[fm_idx].base = base;
70 muram[fm_idx].size = CONFIG_SYS_FM_MURAM_SIZE;
71 muram[fm_idx].alloc = base + FM_MURAM_RES_SIZE;
72 muram[fm_idx].top = base + CONFIG_SYS_FM_MURAM_SIZE;
73}
74
75/*
76 * fm_upload_ucode - Fman microcode upload worker function
77 *
78 * This function does the actual uploading of an Fman microcode
79 * to an Fman.
80 */
81static void fm_upload_ucode(int fm_idx, struct fm_imem *imem,
82 u32 *ucode, unsigned int size)
83{
84 unsigned int i;
85 unsigned int timeout = 1000000;
86
87 /* enable address auto increase */
88 out_be32(&imem->iadd, IRAM_IADD_AIE);
89 /* write microcode to IRAM */
90 for (i = 0; i < size / 4; i++)
Hou Zhiqiang3a25ece2015-10-26 19:47:43 +080091 out_be32(&imem->idata, (be32_to_cpu(ucode[i])));
Kumar Gala2683c532011-04-13 08:37:44 -050092
93 /* verify if the writing is over */
94 out_be32(&imem->iadd, 0);
Hou Zhiqiang3a25ece2015-10-26 19:47:43 +080095 while ((in_be32(&imem->idata) != be32_to_cpu(ucode[0])) && --timeout)
Kumar Gala2683c532011-04-13 08:37:44 -050096 ;
97 if (!timeout)
98 printf("Fman%u: microcode upload timeout\n", fm_idx + 1);
99
100 /* enable microcode from IRAM */
101 out_be32(&imem->iready, IRAM_READY);
102}
103
104/*
105 * Upload an Fman firmware
106 *
107 * This function is similar to qe_upload_firmware(), exception that it uploads
108 * a microcode to the Fman instead of the QE.
109 *
110 * Because the process for uploading a microcode to the Fman is similar for
111 * that of the QE, the QE firmware binary format is used for Fman microcode.
112 * It should be possible to unify these two functions, but for now we keep them
113 * separate.
114 */
115static int fman_upload_firmware(int fm_idx,
116 struct fm_imem *fm_imem,
117 const struct qe_firmware *firmware)
118{
119 unsigned int i;
120 u32 crc;
121 size_t calc_size = sizeof(struct qe_firmware);
122 size_t length;
123 const struct qe_header *hdr;
124
125 if (!firmware) {
126 printf("Fman%u: Invalid address for firmware\n", fm_idx + 1);
127 return -EINVAL;
128 }
129
130 hdr = &firmware->header;
131 length = be32_to_cpu(hdr->length);
132
133 /* Check the magic */
134 if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') ||
135 (hdr->magic[2] != 'F')) {
136 printf("Fman%u: Data at %p is not a firmware\n", fm_idx + 1,
137 firmware);
138 return -EPERM;
139 }
140
141 /* Check the version */
142 if (hdr->version != 1) {
143 printf("Fman%u: Unsupported firmware version %u\n", fm_idx + 1,
144 hdr->version);
145 return -EPERM;
146 }
147
148 /* Validate some of the fields */
149 if ((firmware->count != 1)) {
150 printf("Fman%u: Invalid data in firmware header\n", fm_idx + 1);
151 return -EINVAL;
152 }
153
154 /* Validate the length and check if there's a CRC */
155 calc_size += (firmware->count - 1) * sizeof(struct qe_microcode);
156
157 for (i = 0; i < firmware->count; i++)
158 /*
159 * For situations where the second RISC uses the same microcode
160 * as the first, the 'code_offset' and 'count' fields will be
161 * zero, so it's okay to add those.
162 */
163 calc_size += sizeof(u32) *
164 be32_to_cpu(firmware->microcode[i].count);
165
166 /* Validate the length */
167 if (length != calc_size + sizeof(u32)) {
168 printf("Fman%u: Invalid length in firmware header\n",
169 fm_idx + 1);
170 return -EPERM;
171 }
172
173 /*
174 * Validate the CRC. We would normally call crc32_no_comp(), but that
175 * function isn't available unless you turn on JFFS support.
176 */
177 crc = be32_to_cpu(*(u32 *)((void *)firmware + calc_size));
178 if (crc != (crc32(-1, (const void *)firmware, calc_size) ^ -1)) {
179 printf("Fman%u: Firmware CRC is invalid\n", fm_idx + 1);
180 return -EIO;
181 }
182
183 /* Loop through each microcode. */
184 for (i = 0; i < firmware->count; i++) {
185 const struct qe_microcode *ucode = &firmware->microcode[i];
186
187 /* Upload a microcode if it's present */
Hou Zhiqiang3a25ece2015-10-26 19:47:43 +0800188 if (be32_to_cpu(ucode->code_offset)) {
Kumar Gala2683c532011-04-13 08:37:44 -0500189 u32 ucode_size;
190 u32 *code;
191 printf("Fman%u: Uploading microcode version %u.%u.%u\n",
192 fm_idx + 1, ucode->major, ucode->minor,
193 ucode->revision);
Hou Zhiqiang3a25ece2015-10-26 19:47:43 +0800194 code = (void *)firmware +
195 be32_to_cpu(ucode->code_offset);
196 ucode_size = sizeof(u32) * be32_to_cpu(ucode->count);
Kumar Gala2683c532011-04-13 08:37:44 -0500197 fm_upload_ucode(fm_idx, fm_imem, code, ucode_size);
198 }
199 }
200
201 return 0;
202}
203
204static u32 fm_assign_risc(int port_id)
205{
206 u32 risc_sel, val;
207 risc_sel = (port_id & 0x1) ? FMFPPRC_RISC2 : FMFPPRC_RISC1;
208 val = (port_id << FMFPPRC_PORTID_SHIFT) & FMFPPRC_PORTID_MASK;
209 val |= ((risc_sel << FMFPPRC_ORA_SHIFT) | risc_sel);
210
211 return val;
212}
213
214static void fm_init_fpm(struct fm_fpm *fpm)
215{
216 int i, port_id;
217 u32 val;
218
219 setbits_be32(&fpm->fmfpee, FMFPEE_EHM | FMFPEE_UEC |
220 FMFPEE_CER | FMFPEE_DER);
221
222 /* IM mode, each even port ID to RISC#1, each odd port ID to RISC#2 */
223
224 /* offline/parser port */
225 for (i = 0; i < MAX_NUM_OH_PORT; i++) {
226 port_id = OH_PORT_ID_BASE + i;
227 val = fm_assign_risc(port_id);
228 out_be32(&fpm->fpmprc, val);
229 }
230 /* Rx 1G port */
231 for (i = 0; i < MAX_NUM_RX_PORT_1G; i++) {
232 port_id = RX_PORT_1G_BASE + i;
233 val = fm_assign_risc(port_id);
234 out_be32(&fpm->fpmprc, val);
235 }
236 /* Tx 1G port */
237 for (i = 0; i < MAX_NUM_TX_PORT_1G; i++) {
238 port_id = TX_PORT_1G_BASE + i;
239 val = fm_assign_risc(port_id);
240 out_be32(&fpm->fpmprc, val);
241 }
242 /* Rx 10G port */
243 port_id = RX_PORT_10G_BASE;
244 val = fm_assign_risc(port_id);
245 out_be32(&fpm->fpmprc, val);
246 /* Tx 10G port */
247 port_id = TX_PORT_10G_BASE;
248 val = fm_assign_risc(port_id);
249 out_be32(&fpm->fpmprc, val);
250
251 /* disable the dispatch limit in IM case */
252 out_be32(&fpm->fpmflc, FMFP_FLC_DISP_LIM_NONE);
253 /* clear events */
254 out_be32(&fpm->fmfpee, FMFPEE_CLEAR_EVENT);
255
256 /* clear risc events */
257 for (i = 0; i < 4; i++)
258 out_be32(&fpm->fpmcev[i], 0xffffffff);
259
260 /* clear error */
261 out_be32(&fpm->fpmrcr, FMFP_RCR_MDEC | FMFP_RCR_IDEC);
262}
263
264static int fm_init_bmi(int fm_idx, struct fm_bmi_common *bmi)
265{
266 int blk, i, port_id;
Hou Zhiqiangea52d332015-10-26 19:47:44 +0800267 u32 val;
268 size_t offset;
269 void *base;
Kumar Gala2683c532011-04-13 08:37:44 -0500270
271 /* alloc free buffer pool in MURAM */
272 base = fm_muram_alloc(fm_idx, FM_FREE_POOL_SIZE, FM_FREE_POOL_ALIGN);
273 if (!base) {
274 printf("%s: no muram for free buffer pool\n", __func__);
275 return -ENOMEM;
276 }
277 offset = base - fm_muram_base(fm_idx);
278
279 /* Need 128KB total free buffer pool size */
280 val = offset / 256;
281 blk = FM_FREE_POOL_SIZE / 256;
282 /* in IM, we must not begin from offset 0 in MURAM */
283 val |= ((blk - 1) << FMBM_CFG1_FBPS_SHIFT);
284 out_be32(&bmi->fmbm_cfg1, val);
285
286 /* disable all BMI interrupt */
287 out_be32(&bmi->fmbm_ier, FMBM_IER_DISABLE_ALL);
288
289 /* clear all events */
290 out_be32(&bmi->fmbm_ievr, FMBM_IEVR_CLEAR_ALL);
291
292 /*
293 * set port parameters - FMBM_PP_x
294 * max tasks 10G Rx/Tx=12, 1G Rx/Tx 4, others is 1
295 * max dma 10G Rx/Tx=3, others is 1
296 * set port FIFO size - FMBM_PFS_x
297 * 4KB for all Rx and Tx ports
298 */
299 /* offline/parser port */
300 for (i = 0; i < MAX_NUM_OH_PORT; i++) {
301 port_id = OH_PORT_ID_BASE + i - 1;
302 /* max tasks=1, max dma=1, no extra */
303 out_be32(&bmi->fmbm_pp[port_id], 0);
304 /* port FIFO size - 256 bytes, no extra */
305 out_be32(&bmi->fmbm_pfs[port_id], 0);
306 }
307 /* Rx 1G port */
308 for (i = 0; i < MAX_NUM_RX_PORT_1G; i++) {
309 port_id = RX_PORT_1G_BASE + i - 1;
310 /* max tasks=4, max dma=1, no extra */
311 out_be32(&bmi->fmbm_pp[port_id], FMBM_PP_MXT(4));
312 /* FIFO size - 4KB, no extra */
313 out_be32(&bmi->fmbm_pfs[port_id], FMBM_PFS_IFSZ(0xf));
314 }
315 /* Tx 1G port FIFO size - 4KB, no extra */
316 for (i = 0; i < MAX_NUM_TX_PORT_1G; i++) {
317 port_id = TX_PORT_1G_BASE + i - 1;
318 /* max tasks=4, max dma=1, no extra */
319 out_be32(&bmi->fmbm_pp[port_id], FMBM_PP_MXT(4));
320 /* FIFO size - 4KB, no extra */
321 out_be32(&bmi->fmbm_pfs[port_id], FMBM_PFS_IFSZ(0xf));
322 }
323 /* Rx 10G port */
324 port_id = RX_PORT_10G_BASE - 1;
325 /* max tasks=12, max dma=3, no extra */
326 out_be32(&bmi->fmbm_pp[port_id], FMBM_PP_MXT(12) | FMBM_PP_MXD(3));
327 /* FIFO size - 4KB, no extra */
328 out_be32(&bmi->fmbm_pfs[port_id], FMBM_PFS_IFSZ(0xf));
329
330 /* Tx 10G port */
331 port_id = TX_PORT_10G_BASE - 1;
332 /* max tasks=12, max dma=3, no extra */
333 out_be32(&bmi->fmbm_pp[port_id], FMBM_PP_MXT(12) | FMBM_PP_MXD(3));
334 /* FIFO size - 4KB, no extra */
335 out_be32(&bmi->fmbm_pfs[port_id], FMBM_PFS_IFSZ(0xf));
336
337 /* initialize internal buffers data base (linked list) */
338 out_be32(&bmi->fmbm_init, FMBM_INIT_START);
339
340 return 0;
341}
342
343static void fm_init_qmi(struct fm_qmi_common *qmi)
344{
Kumar Gala2683c532011-04-13 08:37:44 -0500345 /* disable all error interrupts */
346 out_be32(&qmi->fmqm_eien, FMQM_EIEN_DISABLE_ALL);
347 /* clear all error events */
348 out_be32(&qmi->fmqm_eie, FMQM_EIE_CLEAR_ALL);
349
350 /* disable all interrupts */
351 out_be32(&qmi->fmqm_ien, FMQM_IEN_DISABLE_ALL);
352 /* clear all interrupts */
353 out_be32(&qmi->fmqm_ie, FMQM_IE_CLEAR_ALL);
354}
355
356/* Init common part of FM, index is fm num# like fm as above */
Rajesh Bhagat1dec9612018-11-05 18:02:23 +0000357#ifdef CONFIG_TFABOOT
Kumar Gala2683c532011-04-13 08:37:44 -0500358int fm_init_common(int index, struct ccsr_fman *reg)
359{
360 int rc;
Rajesh Bhagat1dec9612018-11-05 18:02:23 +0000361 void *addr = NULL;
362 enum boot_src src = get_boot_src();
363
364 if (src == BOOT_SOURCE_IFC_NOR) {
365 addr = (void *)(CONFIG_SYS_FMAN_FW_ADDR +
366 CONFIG_SYS_FSL_IFC_BASE);
Francois Gervais28ff2ef2020-04-08 09:48:12 -0400367#ifdef CONFIG_CMD_NAND
Rajesh Bhagat1dec9612018-11-05 18:02:23 +0000368 } else if (src == BOOT_SOURCE_IFC_NAND) {
369 size_t fw_length = CONFIG_SYS_QE_FMAN_FW_LENGTH;
370
371 addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH);
372
373 rc = nand_read(get_nand_dev_by_index(0),
374 (loff_t)CONFIG_SYS_FMAN_FW_ADDR,
375 &fw_length, (u_char *)addr);
376 if (rc == -EUCLEAN) {
377 printf("NAND read of FMAN firmware at offset 0x%x failed %d\n",
378 CONFIG_SYS_FMAN_FW_ADDR, rc);
379 }
Francois Gervais28ff2ef2020-04-08 09:48:12 -0400380#endif
Rajesh Bhagat1dec9612018-11-05 18:02:23 +0000381 } else if (src == BOOT_SOURCE_QSPI_NOR) {
382 struct spi_flash *ucode_flash;
383
384 addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH);
385 int ret = 0;
386
Lukasz Majewski76f442982020-06-04 23:11:53 +0800387#if CONFIG_IS_ENABLED(DM_SPI_FLASH)
Rajesh Bhagat1dec9612018-11-05 18:02:23 +0000388 struct udevice *new;
389
390 /* speed and mode will be read from DT */
Tom Rini119d2fb2021-12-11 14:55:48 -0500391 ret = spi_flash_probe_bus_cs(CONFIG_SF_DEFAULT_BUS,
Patrice Chotard05b1aa62022-03-30 09:33:14 +0200392 CONFIG_SF_DEFAULT_CS, &new);
Rajesh Bhagat1dec9612018-11-05 18:02:23 +0000393
394 ucode_flash = dev_get_uclass_priv(new);
395#else
396 ucode_flash = spi_flash_probe(CONFIG_ENV_SPI_BUS,
397 CONFIG_ENV_SPI_CS,
398 CONFIG_ENV_SPI_MAX_HZ,
399 CONFIG_ENV_SPI_MODE);
400#endif
401 if (!ucode_flash) {
402 printf("SF: probe for ucode failed\n");
403 } else {
404 ret = spi_flash_read(ucode_flash,
405 CONFIG_SYS_FMAN_FW_ADDR +
406 CONFIG_SYS_FSL_QSPI_BASE,
407 CONFIG_SYS_QE_FMAN_FW_LENGTH,
408 addr);
409 if (ret)
410 printf("SF: read for ucode failed\n");
411 spi_flash_free(ucode_flash);
412 }
413 } else if (src == BOOT_SOURCE_SD_MMC) {
414 int dev = CONFIG_SYS_MMC_ENV_DEV;
415
416 addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH);
417 u32 cnt = CONFIG_SYS_QE_FMAN_FW_LENGTH / 512;
418 u32 blk = CONFIG_SYS_FMAN_FW_ADDR / 512;
419 struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV);
420
421 if (!mmc) {
422 printf("\nMMC cannot find device for ucode\n");
423 } else {
424 printf("\nMMC read: dev # %u, block # %u, count %u ...\n",
425 dev, blk, cnt);
426 mmc_init(mmc);
427 (void)blk_dread(mmc_get_blk_desc(mmc), blk, cnt,
428 addr);
429 }
430 } else {
431 addr = NULL;
432 }
433
434 /* Upload the Fman microcode if it's present */
435 rc = fman_upload_firmware(index, &reg->fm_imem, addr);
436 if (rc)
437 return rc;
438 env_set_addr("fman_ucode", addr);
439
440 fm_init_muram(index, &reg->muram);
441 fm_init_qmi(&reg->fm_qmi_common);
442 fm_init_fpm(&reg->fm_fpm);
443
444 /* clear DMA status */
445 setbits_be32(&reg->fm_dma.fmdmsr, FMDMSR_CLEAR_ALL);
446
447 /* set DMA mode */
448 setbits_be32(&reg->fm_dma.fmdmmr, FMDMMR_SBER);
449
450 return fm_init_bmi(index, &reg->fm_bmi_common);
451}
452#else
453int fm_init_common(int index, struct ccsr_fman *reg)
454{
455 int rc;
Timur Tabi275f4bb2011-11-22 09:21:25 -0600456#if defined(CONFIG_SYS_QE_FMAN_FW_IN_NOR)
Zhao Qiang83a90842014-03-21 16:21:44 +0800457 void *addr = (void *)CONFIG_SYS_FMAN_FW_ADDR;
Timur Tabi275f4bb2011-11-22 09:21:25 -0600458#elif defined(CONFIG_SYS_QE_FMAN_FW_IN_NAND)
459 size_t fw_length = CONFIG_SYS_QE_FMAN_FW_LENGTH;
460 void *addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH);
Kumar Gala2683c532011-04-13 08:37:44 -0500461
Grygorii Strashkoaa942fe2017-06-26 19:13:00 -0500462 rc = nand_read(get_nand_dev_by_index(0),
463 (loff_t)CONFIG_SYS_FMAN_FW_ADDR,
Kumar Gala2683c532011-04-13 08:37:44 -0500464 &fw_length, (u_char *)addr);
465 if (rc == -EUCLEAN) {
466 printf("NAND read of FMAN firmware at offset 0x%x failed %d\n",
Zhao Qiang83a90842014-03-21 16:21:44 +0800467 CONFIG_SYS_FMAN_FW_ADDR, rc);
Kumar Gala2683c532011-04-13 08:37:44 -0500468 }
Tom Rinifa911f82019-05-12 07:59:12 -0400469#elif defined(CONFIG_SYS_QE_FMAN_FW_IN_SPIFLASH)
Kumar Gala2683c532011-04-13 08:37:44 -0500470 struct spi_flash *ucode_flash;
Timur Tabi275f4bb2011-11-22 09:21:25 -0600471 void *addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH);
Kumar Gala2683c532011-04-13 08:37:44 -0500472 int ret = 0;
473
Lukasz Majewski76f442982020-06-04 23:11:53 +0800474#if CONFIG_IS_ENABLED(DM_SPI_FLASH)
Qianyu Gongea4923e2016-08-03 11:04:25 +0800475 struct udevice *new;
476
477 /* speed and mode will be read from DT */
Tom Rini119d2fb2021-12-11 14:55:48 -0500478 ret = spi_flash_probe_bus_cs(CONFIG_SF_DEFAULT_BUS, CONFIG_SF_DEFAULT_CS,
Patrice Chotard05b1aa62022-03-30 09:33:14 +0200479 &new);
Qianyu Gongea4923e2016-08-03 11:04:25 +0800480
481 ucode_flash = dev_get_uclass_priv(new);
482#else
Kumar Gala2683c532011-04-13 08:37:44 -0500483 ucode_flash = spi_flash_probe(CONFIG_ENV_SPI_BUS, CONFIG_ENV_SPI_CS,
484 CONFIG_ENV_SPI_MAX_HZ, CONFIG_ENV_SPI_MODE);
Qianyu Gongea4923e2016-08-03 11:04:25 +0800485#endif
Kumar Gala2683c532011-04-13 08:37:44 -0500486 if (!ucode_flash)
487 printf("SF: probe for ucode failed\n");
488 else {
Zhao Qiang83a90842014-03-21 16:21:44 +0800489 ret = spi_flash_read(ucode_flash, CONFIG_SYS_FMAN_FW_ADDR,
Timur Tabi275f4bb2011-11-22 09:21:25 -0600490 CONFIG_SYS_QE_FMAN_FW_LENGTH, addr);
Kumar Gala2683c532011-04-13 08:37:44 -0500491 if (ret)
492 printf("SF: read for ucode failed\n");
493 spi_flash_free(ucode_flash);
494 }
Timur Tabi275f4bb2011-11-22 09:21:25 -0600495#elif defined(CONFIG_SYS_QE_FMAN_FW_IN_MMC)
Kumar Gala2683c532011-04-13 08:37:44 -0500496 int dev = CONFIG_SYS_MMC_ENV_DEV;
Timur Tabi275f4bb2011-11-22 09:21:25 -0600497 void *addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH);
498 u32 cnt = CONFIG_SYS_QE_FMAN_FW_LENGTH / 512;
Zhao Qiang83a90842014-03-21 16:21:44 +0800499 u32 blk = CONFIG_SYS_FMAN_FW_ADDR / 512;
Kumar Gala2683c532011-04-13 08:37:44 -0500500 struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV);
501
502 if (!mmc)
503 printf("\nMMC cannot find device for ucode\n");
504 else {
505 printf("\nMMC read: dev # %u, block # %u, count %u ...\n",
506 dev, blk, cnt);
507 mmc_init(mmc);
Yinbo Zhu45c20bd2018-09-25 14:47:06 +0800508 (void)blk_dread(mmc_get_blk_desc(mmc), blk, cnt,
Stephen Warrene73f2962015-12-07 11:38:48 -0700509 addr);
Kumar Gala2683c532011-04-13 08:37:44 -0500510 }
Liu Gang1e084582012-03-08 00:33:18 +0000511#elif defined(CONFIG_SYS_QE_FMAN_FW_IN_REMOTE)
Zhao Qiang83a90842014-03-21 16:21:44 +0800512 void *addr = (void *)CONFIG_SYS_FMAN_FW_ADDR;
York Sun5f321a32013-06-25 11:37:40 -0700513#else
514 void *addr = NULL;
Kumar Gala2683c532011-04-13 08:37:44 -0500515#endif
516
Sean Anderson9a2c7732022-09-07 13:44:55 +0800517 rc = fit_check_format(addr, CONFIG_SYS_QE_FMAN_FW_LENGTH);
518 if (!rc) {
519 size_t unused;
520 const void *new_addr;
521
522 rc = fit_get_data_conf_prop(addr, "fman", &new_addr, &unused);
523 if (rc)
524 return rc;
525 addr = (void *)new_addr;
526 } else if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
527 /*
528 * Using a (signed) FIT wrapper is mandatory if we are
529 * doing verified boot.
530 */
531 return rc;
532 }
533
Kumar Gala2683c532011-04-13 08:37:44 -0500534 /* Upload the Fman microcode if it's present */
535 rc = fman_upload_firmware(index, &reg->fm_imem, addr);
536 if (rc)
537 return rc;
Simon Glass4d949a22017-08-03 12:22:10 -0600538 env_set_addr("fman_ucode", addr);
Kumar Gala2683c532011-04-13 08:37:44 -0500539
540 fm_init_muram(index, &reg->muram);
541 fm_init_qmi(&reg->fm_qmi_common);
542 fm_init_fpm(&reg->fm_fpm);
543
544 /* clear DMA status */
545 setbits_be32(&reg->fm_dma.fmdmsr, FMDMSR_CLEAR_ALL);
546
547 /* set DMA mode */
548 setbits_be32(&reg->fm_dma.fmdmmr, FMDMMR_SBER);
549
550 return fm_init_bmi(index, &reg->fm_bmi_common);
551}
Rajesh Bhagat1dec9612018-11-05 18:02:23 +0000552#endif
Madalin Bucurb76b0a62020-04-23 16:25:19 +0300553
554#ifdef CONFIG_DM_ETH
555struct fman_priv {
556 struct ccsr_fman *reg;
557 unsigned int fman_id;
558};
559
560static const struct udevice_id fman_ids[] = {
561 { .compatible = "fsl,fman" },
562 {}
563};
564
565static int fman_probe(struct udevice *dev)
566{
567 struct fman_priv *priv = dev_get_priv(dev);
568
569 priv->reg = (struct ccsr_fman *)(uintptr_t)dev_read_addr(dev);
570
571 if (dev_read_u32(dev, "cell-index", &priv->fman_id)) {
572 printf("FMan node property cell-index missing\n");
573 return -EINVAL;
574 }
575
576 return fm_init_common(priv->fman_id, priv->reg);
577}
578
579static int fman_remove(struct udevice *dev)
580{
581 return 0;
582}
583
584int fman_id(struct udevice *dev)
585{
586 struct fman_priv *priv = dev_get_priv(dev);
587
588 return priv->fman_id;
589}
590
591void *fman_port(struct udevice *dev, int num)
592{
593 struct fman_priv *priv = dev_get_priv(dev);
594
595 return &priv->reg->port[num - 1].fm_bmi;
596}
597
598void *fman_mdio(struct udevice *dev, enum fm_mac_type type, int num)
599{
600 struct fman_priv *priv = dev_get_priv(dev);
601 void *res = NULL;
602
603 switch (type) {
604#ifdef CONFIG_SYS_FMAN_V3
605 case FM_MEMAC:
606 res = &priv->reg->memac[num].fm_memac_mdio;
607 break;
608#else
609 case FM_DTSEC:
610 res = &priv->reg->mac_1g[num].fm_mdio.miimcfg;
611 break;
612 case FM_TGEC:
613 res = &priv->reg->mac_10g[num].fm_10gec_mdio;
614 break;
615#endif
616 }
617 return res;
618}
619
620U_BOOT_DRIVER(fman) = {
621 .name = "fman",
622 .id = UCLASS_SIMPLE_BUS,
623 .of_match = fman_ids,
624 .probe = fman_probe,
625 .remove = fman_remove,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700626 .priv_auto = sizeof(struct fman_priv),
Madalin Bucurb76b0a62020-04-23 16:25:19 +0300627 .flags = DM_FLAG_ALLOC_PRIV_DMA,
628};
629#endif /* CONFIG_DM_ETH */