mc.c 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292
  1. /*
  2. * Copyright (C) 2014 Freescale Semiconductor
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <errno.h>
  8. #include <linux/bug.h>
  9. #include <asm/io.h>
  10. #include <libfdt.h>
  11. #include <fdt_support.h>
  12. #include <fsl-mc/fsl_mc.h>
  13. #include <fsl-mc/fsl_mc_sys.h>
  14. #include <fsl-mc/fsl_mc_private.h>
  15. #include <fsl-mc/fsl_dpmng.h>
  16. #include <fsl-mc/fsl_dprc.h>
  17. #include <fsl-mc/fsl_dpio.h>
  18. #include <fsl-mc/fsl_dpni.h>
  19. #include <fsl-mc/fsl_qbman_portal.h>
  20. #include <fsl-mc/ldpaa_wriop.h>
  21. #define MC_RAM_BASE_ADDR_ALIGNMENT (512UL * 1024 * 1024)
  22. #define MC_RAM_BASE_ADDR_ALIGNMENT_MASK (~(MC_RAM_BASE_ADDR_ALIGNMENT - 1))
  23. #define MC_RAM_SIZE_ALIGNMENT (256UL * 1024 * 1024)
  24. #define MC_MEM_SIZE_ENV_VAR "mcmemsize"
  25. #define MC_BOOT_TIMEOUT_ENV_VAR "mcboottimeout"
  26. DECLARE_GLOBAL_DATA_PTR;
  27. static int mc_boot_status = -1;
  28. static int mc_dpl_applied = -1;
  29. #ifdef CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
  30. static int mc_aiop_applied = -1;
  31. #endif
  32. struct fsl_mc_io *root_mc_io = NULL;
  33. struct fsl_mc_io *dflt_mc_io = NULL; /* child container */
  34. uint16_t root_dprc_handle = 0;
  35. uint16_t dflt_dprc_handle = 0;
  36. int child_dprc_id;
  37. struct fsl_dpbp_obj *dflt_dpbp = NULL;
  38. struct fsl_dpio_obj *dflt_dpio = NULL;
  39. struct fsl_dpni_obj *dflt_dpni = NULL;
  40. #ifdef DEBUG
  41. void dump_ram_words(const char *title, void *addr)
  42. {
  43. int i;
  44. uint32_t *words = addr;
  45. printf("Dumping beginning of %s (%p):\n", title, addr);
  46. for (i = 0; i < 16; i++)
  47. printf("%#x ", words[i]);
  48. printf("\n");
  49. }
  50. void dump_mc_ccsr_regs(struct mc_ccsr_registers __iomem *mc_ccsr_regs)
  51. {
  52. printf("MC CCSR registers:\n"
  53. "reg_gcr1 %#x\n"
  54. "reg_gsr %#x\n"
  55. "reg_sicbalr %#x\n"
  56. "reg_sicbahr %#x\n"
  57. "reg_sicapr %#x\n"
  58. "reg_mcfbalr %#x\n"
  59. "reg_mcfbahr %#x\n"
  60. "reg_mcfapr %#x\n"
  61. "reg_psr %#x\n",
  62. mc_ccsr_regs->reg_gcr1,
  63. mc_ccsr_regs->reg_gsr,
  64. mc_ccsr_regs->reg_sicbalr,
  65. mc_ccsr_regs->reg_sicbahr,
  66. mc_ccsr_regs->reg_sicapr,
  67. mc_ccsr_regs->reg_mcfbalr,
  68. mc_ccsr_regs->reg_mcfbahr,
  69. mc_ccsr_regs->reg_mcfapr,
  70. mc_ccsr_regs->reg_psr);
  71. }
  72. #else
  73. #define dump_ram_words(title, addr)
  74. #define dump_mc_ccsr_regs(mc_ccsr_regs)
  75. #endif /* DEBUG */
  76. #ifndef CONFIG_SYS_LS_MC_FW_IN_DDR
  77. /**
  78. * Copying MC firmware or DPL image to DDR
  79. */
  80. static int mc_copy_image(const char *title,
  81. u64 image_addr, u32 image_size, u64 mc_ram_addr)
  82. {
  83. debug("%s copied to address %p\n", title, (void *)mc_ram_addr);
  84. memcpy((void *)mc_ram_addr, (void *)image_addr, image_size);
  85. flush_dcache_range(mc_ram_addr, mc_ram_addr + image_size);
  86. return 0;
  87. }
  88. /**
  89. * MC firmware FIT image parser checks if the image is in FIT
  90. * format, verifies integrity of the image and calculates
  91. * raw image address and size values.
  92. * Returns 0 on success and a negative errno on error.
  93. * task fail.
  94. **/
  95. int parse_mc_firmware_fit_image(u64 mc_fw_addr,
  96. const void **raw_image_addr,
  97. size_t *raw_image_size)
  98. {
  99. int format;
  100. void *fit_hdr;
  101. int node_offset;
  102. const void *data;
  103. size_t size;
  104. const char *uname = "firmware";
  105. fit_hdr = (void *)mc_fw_addr;
  106. /* Check if Image is in FIT format */
  107. format = genimg_get_format(fit_hdr);
  108. if (format != IMAGE_FORMAT_FIT) {
  109. printf("fsl-mc: ERR: Bad firmware image (not a FIT image)\n");
  110. return -EINVAL;
  111. }
  112. if (!fit_check_format(fit_hdr)) {
  113. printf("fsl-mc: ERR: Bad firmware image (bad FIT header)\n");
  114. return -EINVAL;
  115. }
  116. node_offset = fit_image_get_node(fit_hdr, uname);
  117. if (node_offset < 0) {
  118. printf("fsl-mc: ERR: Bad firmware image (missing subimage)\n");
  119. return -ENOENT;
  120. }
  121. /* Verify MC firmware image */
  122. if (!(fit_image_verify(fit_hdr, node_offset))) {
  123. printf("fsl-mc: ERR: Bad firmware image (bad CRC)\n");
  124. return -EINVAL;
  125. }
  126. /* Get address and size of raw image */
  127. fit_image_get_data(fit_hdr, node_offset, &data, &size);
  128. *raw_image_addr = data;
  129. *raw_image_size = size;
  130. return 0;
  131. }
  132. #endif
  133. /*
  134. * Calculates the values to be used to specify the address range
  135. * for the MC private DRAM block, in the MCFBALR/MCFBAHR registers.
  136. * It returns the highest 512MB-aligned address within the given
  137. * address range, in '*aligned_base_addr', and the number of 256 MiB
  138. * blocks in it, in 'num_256mb_blocks'.
  139. */
  140. static int calculate_mc_private_ram_params(u64 mc_private_ram_start_addr,
  141. size_t mc_ram_size,
  142. u64 *aligned_base_addr,
  143. u8 *num_256mb_blocks)
  144. {
  145. u64 addr;
  146. u16 num_blocks;
  147. if (mc_ram_size % MC_RAM_SIZE_ALIGNMENT != 0) {
  148. printf("fsl-mc: ERROR: invalid MC private RAM size (%lu)\n",
  149. mc_ram_size);
  150. return -EINVAL;
  151. }
  152. num_blocks = mc_ram_size / MC_RAM_SIZE_ALIGNMENT;
  153. if (num_blocks < 1 || num_blocks > 0xff) {
  154. printf("fsl-mc: ERROR: invalid MC private RAM size (%lu)\n",
  155. mc_ram_size);
  156. return -EINVAL;
  157. }
  158. addr = (mc_private_ram_start_addr + mc_ram_size - 1) &
  159. MC_RAM_BASE_ADDR_ALIGNMENT_MASK;
  160. if (addr < mc_private_ram_start_addr) {
  161. printf("fsl-mc: ERROR: bad start address %#llx\n",
  162. mc_private_ram_start_addr);
  163. return -EFAULT;
  164. }
  165. *aligned_base_addr = addr;
  166. *num_256mb_blocks = num_blocks;
  167. return 0;
  168. }
  169. static int mc_fixup_dpc(u64 dpc_addr)
  170. {
  171. void *blob = (void *)dpc_addr;
  172. int nodeoffset;
  173. /* delete any existing ICID pools */
  174. nodeoffset = fdt_path_offset(blob, "/resources/icid_pools");
  175. if (fdt_del_node(blob, nodeoffset) < 0)
  176. printf("\nfsl-mc: WARNING: could not delete ICID pool\n");
  177. /* add a new pool */
  178. nodeoffset = fdt_path_offset(blob, "/resources");
  179. if (nodeoffset < 0) {
  180. printf("\nfsl-mc: ERROR: DPC is missing /resources\n");
  181. return -EINVAL;
  182. }
  183. nodeoffset = fdt_add_subnode(blob, nodeoffset, "icid_pools");
  184. nodeoffset = fdt_add_subnode(blob, nodeoffset, "icid_pool@0");
  185. do_fixup_by_path_u32(blob, "/resources/icid_pools/icid_pool@0",
  186. "base_icid", FSL_DPAA2_STREAM_ID_START, 1);
  187. do_fixup_by_path_u32(blob, "/resources/icid_pools/icid_pool@0",
  188. "num",
  189. FSL_DPAA2_STREAM_ID_END -
  190. FSL_DPAA2_STREAM_ID_START + 1, 1);
  191. flush_dcache_range(dpc_addr, dpc_addr + fdt_totalsize(blob));
  192. return 0;
  193. }
  194. static int load_mc_dpc(u64 mc_ram_addr, size_t mc_ram_size, u64 mc_dpc_addr)
  195. {
  196. u64 mc_dpc_offset;
  197. #ifndef CONFIG_SYS_LS_MC_DPC_IN_DDR
  198. int error;
  199. void *dpc_fdt_hdr;
  200. int dpc_size;
  201. #endif
  202. #ifdef CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET
  203. BUILD_BUG_ON((CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET & 0x3) != 0 ||
  204. CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET > 0xffffffff);
  205. mc_dpc_offset = CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET;
  206. #else
  207. #error "CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET not defined"
  208. #endif
  209. /*
  210. * Load the MC DPC blob in the MC private DRAM block:
  211. */
  212. #ifdef CONFIG_SYS_LS_MC_DPC_IN_DDR
  213. printf("MC DPC is preloaded to %#llx\n", mc_ram_addr + mc_dpc_offset);
  214. #else
  215. /*
  216. * Get address and size of the DPC blob stored in flash:
  217. */
  218. dpc_fdt_hdr = (void *)mc_dpc_addr;
  219. error = fdt_check_header(dpc_fdt_hdr);
  220. if (error != 0) {
  221. /*
  222. * Don't return with error here, since the MC firmware can
  223. * still boot without a DPC
  224. */
  225. printf("\nfsl-mc: WARNING: No DPC image found");
  226. return 0;
  227. }
  228. dpc_size = fdt_totalsize(dpc_fdt_hdr);
  229. if (dpc_size > CONFIG_SYS_LS_MC_DPC_MAX_LENGTH) {
  230. printf("\nfsl-mc: ERROR: Bad DPC image (too large: %d)\n",
  231. dpc_size);
  232. return -EINVAL;
  233. }
  234. mc_copy_image("MC DPC blob",
  235. (u64)dpc_fdt_hdr, dpc_size, mc_ram_addr + mc_dpc_offset);
  236. #endif /* not defined CONFIG_SYS_LS_MC_DPC_IN_DDR */
  237. if (mc_fixup_dpc(mc_ram_addr + mc_dpc_offset))
  238. return -EINVAL;
  239. dump_ram_words("DPC", (void *)(mc_ram_addr + mc_dpc_offset));
  240. return 0;
  241. }
  242. static int load_mc_dpl(u64 mc_ram_addr, size_t mc_ram_size, u64 mc_dpl_addr)
  243. {
  244. u64 mc_dpl_offset;
  245. #ifndef CONFIG_SYS_LS_MC_DPL_IN_DDR
  246. int error;
  247. void *dpl_fdt_hdr;
  248. int dpl_size;
  249. #endif
  250. #ifdef CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET
  251. BUILD_BUG_ON((CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET & 0x3) != 0 ||
  252. CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET > 0xffffffff);
  253. mc_dpl_offset = CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET;
  254. #else
  255. #error "CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET not defined"
  256. #endif
  257. /*
  258. * Load the MC DPL blob in the MC private DRAM block:
  259. */
  260. #ifdef CONFIG_SYS_LS_MC_DPL_IN_DDR
  261. printf("MC DPL is preloaded to %#llx\n", mc_ram_addr + mc_dpl_offset);
  262. #else
  263. /*
  264. * Get address and size of the DPL blob stored in flash:
  265. */
  266. dpl_fdt_hdr = (void *)mc_dpl_addr;
  267. error = fdt_check_header(dpl_fdt_hdr);
  268. if (error != 0) {
  269. printf("\nfsl-mc: ERROR: Bad DPL image (bad header)\n");
  270. return error;
  271. }
  272. dpl_size = fdt_totalsize(dpl_fdt_hdr);
  273. if (dpl_size > CONFIG_SYS_LS_MC_DPL_MAX_LENGTH) {
  274. printf("\nfsl-mc: ERROR: Bad DPL image (too large: %d)\n",
  275. dpl_size);
  276. return -EINVAL;
  277. }
  278. mc_copy_image("MC DPL blob",
  279. (u64)dpl_fdt_hdr, dpl_size, mc_ram_addr + mc_dpl_offset);
  280. #endif /* not defined CONFIG_SYS_LS_MC_DPL_IN_DDR */
  281. dump_ram_words("DPL", (void *)(mc_ram_addr + mc_dpl_offset));
  282. return 0;
  283. }
  284. /**
  285. * Return the MC boot timeout value in milliseconds
  286. */
  287. static unsigned long get_mc_boot_timeout_ms(void)
  288. {
  289. unsigned long timeout_ms = CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS;
  290. char *timeout_ms_env_var = getenv(MC_BOOT_TIMEOUT_ENV_VAR);
  291. if (timeout_ms_env_var) {
  292. timeout_ms = simple_strtoul(timeout_ms_env_var, NULL, 10);
  293. if (timeout_ms == 0) {
  294. printf("fsl-mc: WARNING: Invalid value for \'"
  295. MC_BOOT_TIMEOUT_ENV_VAR
  296. "\' environment variable: %lu\n",
  297. timeout_ms);
  298. timeout_ms = CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS;
  299. }
  300. }
  301. return timeout_ms;
  302. }
  303. #ifdef CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
  304. static int load_mc_aiop_img(u64 aiop_fw_addr)
  305. {
  306. u64 mc_ram_addr = mc_get_dram_addr();
  307. #ifndef CONFIG_SYS_LS_MC_DPC_IN_DDR
  308. void *aiop_img;
  309. #endif
  310. /*
  311. * Load the MC AIOP image in the MC private DRAM block:
  312. */
  313. #ifdef CONFIG_SYS_LS_MC_DPC_IN_DDR
  314. printf("MC AIOP is preloaded to %#llx\n", mc_ram_addr +
  315. CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET);
  316. #else
  317. aiop_img = (void *)aiop_fw_addr;
  318. mc_copy_image("MC AIOP image",
  319. (u64)aiop_img, CONFIG_SYS_LS_MC_AIOP_IMG_MAX_LENGTH,
  320. mc_ram_addr + CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET);
  321. #endif
  322. mc_aiop_applied = 0;
  323. return 0;
  324. }
  325. #endif
  326. static int wait_for_mc(bool booting_mc, u32 *final_reg_gsr)
  327. {
  328. u32 reg_gsr;
  329. u32 mc_fw_boot_status;
  330. unsigned long timeout_ms = get_mc_boot_timeout_ms();
  331. struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
  332. dmb();
  333. assert(timeout_ms > 0);
  334. for (;;) {
  335. udelay(1000); /* throttle polling */
  336. reg_gsr = in_le32(&mc_ccsr_regs->reg_gsr);
  337. mc_fw_boot_status = (reg_gsr & GSR_FS_MASK);
  338. if (mc_fw_boot_status & 0x1)
  339. break;
  340. timeout_ms--;
  341. if (timeout_ms == 0)
  342. break;
  343. }
  344. if (timeout_ms == 0) {
  345. printf("ERROR: timeout\n");
  346. /* TODO: Get an error status from an MC CCSR register */
  347. return -ETIMEDOUT;
  348. }
  349. if (mc_fw_boot_status != 0x1) {
  350. /*
  351. * TODO: Identify critical errors from the GSR register's FS
  352. * field and for those errors, set error to -ENODEV or other
  353. * appropriate errno, so that the status property is set to
  354. * failure in the fsl,dprc device tree node.
  355. */
  356. printf("WARNING: Firmware returned an error (GSR: %#x)\n",
  357. reg_gsr);
  358. } else {
  359. printf("SUCCESS\n");
  360. }
  361. *final_reg_gsr = reg_gsr;
  362. return 0;
  363. }
  364. int mc_init(u64 mc_fw_addr, u64 mc_dpc_addr)
  365. {
  366. int error = 0;
  367. int portal_id = 0;
  368. struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
  369. u64 mc_ram_addr = mc_get_dram_addr();
  370. u32 reg_gsr;
  371. u32 reg_mcfbalr;
  372. #ifndef CONFIG_SYS_LS_MC_FW_IN_DDR
  373. const void *raw_image_addr;
  374. size_t raw_image_size = 0;
  375. #endif
  376. struct mc_version mc_ver_info;
  377. u64 mc_ram_aligned_base_addr;
  378. u8 mc_ram_num_256mb_blocks;
  379. size_t mc_ram_size = mc_get_dram_block_size();
  380. error = calculate_mc_private_ram_params(mc_ram_addr,
  381. mc_ram_size,
  382. &mc_ram_aligned_base_addr,
  383. &mc_ram_num_256mb_blocks);
  384. if (error != 0)
  385. goto out;
  386. /*
  387. * Management Complex cores should be held at reset out of POR.
  388. * U-Boot should be the first software to touch MC. To be safe,
  389. * we reset all cores again by setting GCR1 to 0. It doesn't do
  390. * anything if they are held at reset. After we setup the firmware
  391. * we kick off MC by deasserting the reset bit for core 0, and
  392. * deasserting the reset bits for Command Portal Managers.
  393. * The stop bits are not touched here. They are used to stop the
  394. * cores when they are active. Setting stop bits doesn't stop the
  395. * cores from fetching instructions when they are released from
  396. * reset.
  397. */
  398. out_le32(&mc_ccsr_regs->reg_gcr1, 0);
  399. dmb();
  400. #ifdef CONFIG_SYS_LS_MC_FW_IN_DDR
  401. printf("MC firmware is preloaded to %#llx\n", mc_ram_addr);
  402. #else
  403. error = parse_mc_firmware_fit_image(mc_fw_addr, &raw_image_addr,
  404. &raw_image_size);
  405. if (error != 0)
  406. goto out;
  407. /*
  408. * Load the MC FW at the beginning of the MC private DRAM block:
  409. */
  410. mc_copy_image("MC Firmware",
  411. (u64)raw_image_addr, raw_image_size, mc_ram_addr);
  412. #endif
  413. dump_ram_words("firmware", (void *)mc_ram_addr);
  414. error = load_mc_dpc(mc_ram_addr, mc_ram_size, mc_dpc_addr);
  415. if (error != 0)
  416. goto out;
  417. debug("mc_ccsr_regs %p\n", mc_ccsr_regs);
  418. dump_mc_ccsr_regs(mc_ccsr_regs);
  419. /*
  420. * Tell MC what is the address range of the DRAM block assigned to it:
  421. */
  422. reg_mcfbalr = (u32)mc_ram_aligned_base_addr |
  423. (mc_ram_num_256mb_blocks - 1);
  424. out_le32(&mc_ccsr_regs->reg_mcfbalr, reg_mcfbalr);
  425. out_le32(&mc_ccsr_regs->reg_mcfbahr,
  426. (u32)(mc_ram_aligned_base_addr >> 32));
  427. out_le32(&mc_ccsr_regs->reg_mcfapr, FSL_BYPASS_AMQ);
  428. /*
  429. * Tell the MC that we want delayed DPL deployment.
  430. */
  431. out_le32(&mc_ccsr_regs->reg_gsr, 0xDD00);
  432. printf("\nfsl-mc: Booting Management Complex ... ");
  433. /*
  434. * Deassert reset and release MC core 0 to run
  435. */
  436. out_le32(&mc_ccsr_regs->reg_gcr1, GCR1_P1_DE_RST | GCR1_M_ALL_DE_RST);
  437. error = wait_for_mc(true, &reg_gsr);
  438. if (error != 0)
  439. goto out;
  440. /*
  441. * TODO: need to obtain the portal_id for the root container from the
  442. * DPL
  443. */
  444. portal_id = 0;
  445. /*
  446. * Initialize the global default MC portal
  447. * And check that the MC firmware is responding portal commands:
  448. */
  449. root_mc_io = (struct fsl_mc_io *)malloc(sizeof(struct fsl_mc_io));
  450. if (!root_mc_io) {
  451. printf(" No memory: malloc() failed\n");
  452. return -ENOMEM;
  453. }
  454. root_mc_io->mmio_regs = SOC_MC_PORTAL_ADDR(portal_id);
  455. debug("Checking access to MC portal of root DPRC container (portal_id %d, portal physical addr %p)\n",
  456. portal_id, root_mc_io->mmio_regs);
  457. error = mc_get_version(root_mc_io, MC_CMD_NO_FLAGS, &mc_ver_info);
  458. if (error != 0) {
  459. printf("fsl-mc: ERROR: Firmware version check failed (error: %d)\n",
  460. error);
  461. goto out;
  462. }
  463. printf("fsl-mc: Management Complex booted (version: %d.%d.%d, boot status: %#x)\n",
  464. mc_ver_info.major, mc_ver_info.minor, mc_ver_info.revision,
  465. reg_gsr & GSR_FS_MASK);
  466. out:
  467. if (error != 0)
  468. mc_boot_status = error;
  469. else
  470. mc_boot_status = 0;
  471. return error;
  472. }
  473. int mc_apply_dpl(u64 mc_dpl_addr)
  474. {
  475. struct mc_ccsr_registers __iomem *mc_ccsr_regs = MC_CCSR_BASE_ADDR;
  476. int error = 0;
  477. u32 reg_gsr;
  478. u64 mc_ram_addr = mc_get_dram_addr();
  479. size_t mc_ram_size = mc_get_dram_block_size();
  480. error = load_mc_dpl(mc_ram_addr, mc_ram_size, mc_dpl_addr);
  481. if (error != 0)
  482. return error;
  483. /*
  484. * Tell the MC to deploy the DPL:
  485. */
  486. out_le32(&mc_ccsr_regs->reg_gsr, 0x0);
  487. printf("fsl-mc: Deploying data path layout ... ");
  488. error = wait_for_mc(false, &reg_gsr);
  489. if (!error)
  490. mc_dpl_applied = 0;
  491. return error;
  492. }
  493. int get_mc_boot_status(void)
  494. {
  495. return mc_boot_status;
  496. }
  497. #ifdef CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
  498. int get_aiop_apply_status(void)
  499. {
  500. return mc_aiop_applied;
  501. }
  502. #endif
  503. int get_dpl_apply_status(void)
  504. {
  505. return mc_dpl_applied;
  506. }
  507. /**
  508. * Return the MC address of private DRAM block.
  509. */
  510. u64 mc_get_dram_addr(void)
  511. {
  512. u64 mc_ram_addr;
  513. /*
  514. * The MC private DRAM block was already carved at the end of DRAM
  515. * by board_init_f() using CONFIG_SYS_MEM_TOP_HIDE:
  516. */
  517. if (gd->bd->bi_dram[1].start) {
  518. mc_ram_addr =
  519. gd->bd->bi_dram[1].start + gd->bd->bi_dram[1].size;
  520. } else {
  521. mc_ram_addr =
  522. gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
  523. }
  524. return mc_ram_addr;
  525. }
  526. /**
  527. * Return the actual size of the MC private DRAM block.
  528. */
  529. unsigned long mc_get_dram_block_size(void)
  530. {
  531. unsigned long dram_block_size = CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE;
  532. char *dram_block_size_env_var = getenv(MC_MEM_SIZE_ENV_VAR);
  533. if (dram_block_size_env_var) {
  534. dram_block_size = simple_strtoul(dram_block_size_env_var, NULL,
  535. 10);
  536. if (dram_block_size < CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE) {
  537. printf("fsl-mc: WARNING: Invalid value for \'"
  538. MC_MEM_SIZE_ENV_VAR
  539. "\' environment variable: %lu\n",
  540. dram_block_size);
  541. dram_block_size = CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE;
  542. }
  543. }
  544. return dram_block_size;
  545. }
  546. int fsl_mc_ldpaa_init(bd_t *bis)
  547. {
  548. int i;
  549. for (i = WRIOP1_DPMAC1; i < NUM_WRIOP_PORTS; i++)
  550. if ((wriop_is_enabled_dpmac(i) == 1) &&
  551. (wriop_get_phy_address(i) != -1))
  552. ldpaa_eth_init(i, wriop_get_enet_if(i));
  553. return 0;
  554. }
  555. static int dprc_version_check(struct fsl_mc_io *mc_io, uint16_t handle)
  556. {
  557. struct dprc_attributes attr;
  558. int error;
  559. memset(&attr, 0, sizeof(struct dprc_attributes));
  560. error = dprc_get_attributes(mc_io, MC_CMD_NO_FLAGS, handle, &attr);
  561. if (error == 0) {
  562. if ((attr.version.major != DPRC_VER_MAJOR) ||
  563. (attr.version.minor != DPRC_VER_MINOR)) {
  564. printf("DPRC version mismatch found %u.%u,",
  565. attr.version.major,
  566. attr.version.minor);
  567. printf("supported version is %u.%u\n",
  568. DPRC_VER_MAJOR, DPRC_VER_MINOR);
  569. }
  570. }
  571. return error;
  572. }
  573. static int dpio_init(void)
  574. {
  575. struct qbman_swp_desc p_des;
  576. struct dpio_attr attr;
  577. struct dpio_cfg dpio_cfg;
  578. int err = 0;
  579. dflt_dpio = (struct fsl_dpio_obj *)malloc(sizeof(struct fsl_dpio_obj));
  580. if (!dflt_dpio) {
  581. printf("No memory: malloc() failed\n");
  582. err = -ENOMEM;
  583. goto err_malloc;
  584. }
  585. dpio_cfg.channel_mode = DPIO_LOCAL_CHANNEL;
  586. dpio_cfg.num_priorities = 8;
  587. err = dpio_create(dflt_mc_io, MC_CMD_NO_FLAGS, &dpio_cfg,
  588. &dflt_dpio->dpio_handle);
  589. if (err < 0) {
  590. printf("dpio_create() failed: %d\n", err);
  591. err = -ENODEV;
  592. goto err_create;
  593. }
  594. memset(&attr, 0, sizeof(struct dpio_attr));
  595. err = dpio_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
  596. dflt_dpio->dpio_handle, &attr);
  597. if (err < 0) {
  598. printf("dpio_get_attributes() failed: %d\n", err);
  599. goto err_get_attr;
  600. }
  601. if ((attr.version.major != DPIO_VER_MAJOR) ||
  602. (attr.version.minor != DPIO_VER_MINOR)) {
  603. printf("DPIO version mismatch found %u.%u,",
  604. attr.version.major, attr.version.minor);
  605. printf("supported version is %u.%u\n",
  606. DPIO_VER_MAJOR, DPIO_VER_MINOR);
  607. }
  608. dflt_dpio->dpio_id = attr.id;
  609. #ifdef DEBUG
  610. printf("Init: DPIO id=0x%d\n", dflt_dpio->dpio_id);
  611. #endif
  612. err = dpio_enable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
  613. if (err < 0) {
  614. printf("dpio_enable() failed %d\n", err);
  615. goto err_get_enable;
  616. }
  617. debug("ce_offset=0x%llx, ci_offset=0x%llx, portalid=%d, prios=%d\n",
  618. attr.qbman_portal_ce_offset,
  619. attr.qbman_portal_ci_offset,
  620. attr.qbman_portal_id,
  621. attr.num_priorities);
  622. p_des.cena_bar = (void *)(SOC_QBMAN_PORTALS_BASE_ADDR
  623. + attr.qbman_portal_ce_offset);
  624. p_des.cinh_bar = (void *)(SOC_QBMAN_PORTALS_BASE_ADDR
  625. + attr.qbman_portal_ci_offset);
  626. dflt_dpio->sw_portal = qbman_swp_init(&p_des);
  627. if (dflt_dpio->sw_portal == NULL) {
  628. printf("qbman_swp_init() failed\n");
  629. goto err_get_swp_init;
  630. }
  631. return 0;
  632. err_get_swp_init:
  633. dpio_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
  634. err_get_enable:
  635. err_get_attr:
  636. dpio_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
  637. dpio_destroy(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
  638. err_create:
  639. free(dflt_dpio);
  640. err_malloc:
  641. return err;
  642. }
  643. static int dpio_exit(void)
  644. {
  645. int err;
  646. err = dpio_disable(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
  647. if (err < 0) {
  648. printf("dpio_disable() failed: %d\n", err);
  649. goto err;
  650. }
  651. err = dpio_destroy(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpio->dpio_handle);
  652. if (err < 0) {
  653. printf("dpio_destroy() failed: %d\n", err);
  654. goto err;
  655. }
  656. #ifdef DEBUG
  657. printf("Exit: DPIO id=0x%d\n", dflt_dpio->dpio_id);
  658. #endif
  659. if (dflt_dpio)
  660. free(dflt_dpio);
  661. return 0;
  662. err:
  663. return err;
  664. }
  665. static int dprc_init(void)
  666. {
  667. int err, child_portal_id, container_id;
  668. struct dprc_cfg cfg;
  669. uint64_t mc_portal_offset;
  670. /* Open root container */
  671. err = dprc_get_container_id(root_mc_io, MC_CMD_NO_FLAGS, &container_id);
  672. if (err < 0) {
  673. printf("dprc_get_container_id(): Root failed: %d\n", err);
  674. goto err_root_container_id;
  675. }
  676. #ifdef DEBUG
  677. printf("Root container id = %d\n", container_id);
  678. #endif
  679. err = dprc_open(root_mc_io, MC_CMD_NO_FLAGS, container_id,
  680. &root_dprc_handle);
  681. if (err < 0) {
  682. printf("dprc_open(): Root Container failed: %d\n", err);
  683. goto err_root_open;
  684. }
  685. if (!root_dprc_handle) {
  686. printf("dprc_open(): Root Container Handle is not valid\n");
  687. goto err_root_open;
  688. }
  689. err = dprc_version_check(root_mc_io, root_dprc_handle);
  690. if (err < 0) {
  691. printf("dprc_version_check() failed: %d\n", err);
  692. goto err_root_open;
  693. }
  694. memset(&cfg, 0, sizeof(struct dprc_cfg));
  695. cfg.options = DPRC_CFG_OPT_TOPOLOGY_CHANGES_ALLOWED |
  696. DPRC_CFG_OPT_OBJ_CREATE_ALLOWED |
  697. DPRC_CFG_OPT_ALLOC_ALLOWED;
  698. cfg.icid = DPRC_GET_ICID_FROM_POOL;
  699. cfg.portal_id = DPRC_GET_PORTAL_ID_FROM_POOL;
  700. err = dprc_create_container(root_mc_io, MC_CMD_NO_FLAGS,
  701. root_dprc_handle,
  702. &cfg,
  703. &child_dprc_id,
  704. &mc_portal_offset);
  705. if (err < 0) {
  706. printf("dprc_create_container() failed: %d\n", err);
  707. goto err_create;
  708. }
  709. dflt_mc_io = (struct fsl_mc_io *)malloc(sizeof(struct fsl_mc_io));
  710. if (!dflt_mc_io) {
  711. err = -ENOMEM;
  712. printf(" No memory: malloc() failed\n");
  713. goto err_malloc;
  714. }
  715. child_portal_id = MC_PORTAL_OFFSET_TO_PORTAL_ID(mc_portal_offset);
  716. dflt_mc_io->mmio_regs = SOC_MC_PORTAL_ADDR(child_portal_id);
  717. #ifdef DEBUG
  718. printf("MC portal of child DPRC container: %d, physical addr %p)\n",
  719. child_dprc_id, dflt_mc_io->mmio_regs);
  720. #endif
  721. err = dprc_open(dflt_mc_io, MC_CMD_NO_FLAGS, child_dprc_id,
  722. &dflt_dprc_handle);
  723. if (err < 0) {
  724. printf("dprc_open(): Child container failed: %d\n", err);
  725. goto err_child_open;
  726. }
  727. if (!dflt_dprc_handle) {
  728. printf("dprc_open(): Child container Handle is not valid\n");
  729. goto err_child_open;
  730. }
  731. return 0;
  732. err_child_open:
  733. free(dflt_mc_io);
  734. err_malloc:
  735. dprc_destroy_container(root_mc_io, MC_CMD_NO_FLAGS,
  736. root_dprc_handle, child_dprc_id);
  737. err_create:
  738. dprc_close(root_mc_io, MC_CMD_NO_FLAGS, root_dprc_handle);
  739. err_root_open:
  740. err_root_container_id:
  741. return err;
  742. }
  743. static int dprc_exit(void)
  744. {
  745. int err;
  746. err = dprc_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dprc_handle);
  747. if (err < 0) {
  748. printf("dprc_close(): Child failed: %d\n", err);
  749. goto err;
  750. }
  751. err = dprc_destroy_container(root_mc_io, MC_CMD_NO_FLAGS,
  752. root_dprc_handle, child_dprc_id);
  753. if (err < 0) {
  754. printf("dprc_destroy_container() failed: %d\n", err);
  755. goto err;
  756. }
  757. err = dprc_close(root_mc_io, MC_CMD_NO_FLAGS, root_dprc_handle);
  758. if (err < 0) {
  759. printf("dprc_close(): Root failed: %d\n", err);
  760. goto err;
  761. }
  762. if (dflt_mc_io)
  763. free(dflt_mc_io);
  764. if (root_mc_io)
  765. free(root_mc_io);
  766. return 0;
  767. err:
  768. return err;
  769. }
  770. static int dpbp_init(void)
  771. {
  772. int err;
  773. struct dpbp_attr dpbp_attr;
  774. struct dpbp_cfg dpbp_cfg;
  775. dflt_dpbp = (struct fsl_dpbp_obj *)malloc(sizeof(struct fsl_dpbp_obj));
  776. if (!dflt_dpbp) {
  777. printf("No memory: malloc() failed\n");
  778. err = -ENOMEM;
  779. goto err_malloc;
  780. }
  781. dpbp_cfg.options = 512;
  782. err = dpbp_create(dflt_mc_io, MC_CMD_NO_FLAGS, &dpbp_cfg,
  783. &dflt_dpbp->dpbp_handle);
  784. if (err < 0) {
  785. err = -ENODEV;
  786. printf("dpbp_create() failed: %d\n", err);
  787. goto err_create;
  788. }
  789. memset(&dpbp_attr, 0, sizeof(struct dpbp_attr));
  790. err = dpbp_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
  791. dflt_dpbp->dpbp_handle,
  792. &dpbp_attr);
  793. if (err < 0) {
  794. printf("dpbp_get_attributes() failed: %d\n", err);
  795. goto err_get_attr;
  796. }
  797. if ((dpbp_attr.version.major != DPBP_VER_MAJOR) ||
  798. (dpbp_attr.version.minor != DPBP_VER_MINOR)) {
  799. printf("DPBP version mismatch found %u.%u,",
  800. dpbp_attr.version.major, dpbp_attr.version.minor);
  801. printf("supported version is %u.%u\n",
  802. DPBP_VER_MAJOR, DPBP_VER_MINOR);
  803. }
  804. dflt_dpbp->dpbp_attr.id = dpbp_attr.id;
  805. #ifdef DEBUG
  806. printf("Init: DPBP id=0x%d\n", dflt_dpbp->dpbp_attr.id);
  807. #endif
  808. err = dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
  809. if (err < 0) {
  810. printf("dpbp_close() failed: %d\n", err);
  811. goto err_close;
  812. }
  813. return 0;
  814. err_close:
  815. free(dflt_dpbp);
  816. err_get_attr:
  817. dpbp_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
  818. dpbp_destroy(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_handle);
  819. err_create:
  820. err_malloc:
  821. return err;
  822. }
  823. static int dpbp_exit(void)
  824. {
  825. int err;
  826. err = dpbp_open(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpbp->dpbp_attr.id,
  827. &dflt_dpbp->dpbp_handle);
  828. if (err < 0) {
  829. printf("dpbp_open() failed: %d\n", err);
  830. goto err;
  831. }
  832. err = dpbp_destroy(dflt_mc_io, MC_CMD_NO_FLAGS,
  833. dflt_dpbp->dpbp_handle);
  834. if (err < 0) {
  835. printf("dpbp_destroy() failed: %d\n", err);
  836. goto err;
  837. }
  838. #ifdef DEBUG
  839. printf("Exit: DPBP id=0x%d\n", dflt_dpbp->dpbp_attr.id);
  840. #endif
  841. if (dflt_dpbp)
  842. free(dflt_dpbp);
  843. return 0;
  844. err:
  845. return err;
  846. }
  847. static int dpni_init(void)
  848. {
  849. int err;
  850. struct dpni_attr dpni_attr;
  851. uint8_t ext_cfg_buf[256] = {0};
  852. struct dpni_extended_cfg dpni_extended_cfg;
  853. struct dpni_cfg dpni_cfg;
  854. dflt_dpni = (struct fsl_dpni_obj *)malloc(sizeof(struct fsl_dpni_obj));
  855. if (!dflt_dpni) {
  856. printf("No memory: malloc() failed\n");
  857. err = -ENOMEM;
  858. goto err_malloc;
  859. }
  860. memset(&dpni_extended_cfg, 0, sizeof(dpni_extended_cfg));
  861. err = dpni_prepare_extended_cfg(&dpni_extended_cfg, &ext_cfg_buf[0]);
  862. if (err < 0) {
  863. err = -ENODEV;
  864. printf("dpni_prepare_extended_cfg() failed: %d\n", err);
  865. goto err_prepare_extended_cfg;
  866. }
  867. memset(&dpni_cfg, 0, sizeof(dpni_cfg));
  868. dpni_cfg.adv.options = DPNI_OPT_UNICAST_FILTER |
  869. DPNI_OPT_MULTICAST_FILTER;
  870. dpni_cfg.adv.ext_cfg_iova = (uint64_t)&ext_cfg_buf[0];
  871. err = dpni_create(dflt_mc_io, MC_CMD_NO_FLAGS, &dpni_cfg,
  872. &dflt_dpni->dpni_handle);
  873. if (err < 0) {
  874. err = -ENODEV;
  875. printf("dpni_create() failed: %d\n", err);
  876. goto err_create;
  877. }
  878. memset(&dpni_attr, 0, sizeof(struct dpni_attr));
  879. err = dpni_get_attributes(dflt_mc_io, MC_CMD_NO_FLAGS,
  880. dflt_dpni->dpni_handle,
  881. &dpni_attr);
  882. if (err < 0) {
  883. printf("dpni_get_attributes() failed: %d\n", err);
  884. goto err_get_attr;
  885. }
  886. if ((dpni_attr.version.major != DPNI_VER_MAJOR) ||
  887. (dpni_attr.version.minor != DPNI_VER_MINOR)) {
  888. printf("DPNI version mismatch found %u.%u,",
  889. dpni_attr.version.major, dpni_attr.version.minor);
  890. printf("supported version is %u.%u\n",
  891. DPNI_VER_MAJOR, DPNI_VER_MINOR);
  892. }
  893. dflt_dpni->dpni_id = dpni_attr.id;
  894. #ifdef DEBUG
  895. printf("Init: DPNI id=0x%d\n", dflt_dpni->dpni_id);
  896. #endif
  897. err = dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
  898. if (err < 0) {
  899. printf("dpni_close() failed: %d\n", err);
  900. goto err_close;
  901. }
  902. return 0;
  903. err_close:
  904. err_get_attr:
  905. dpni_close(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
  906. dpni_destroy(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_handle);
  907. err_create:
  908. err_prepare_extended_cfg:
  909. free(dflt_dpni);
  910. err_malloc:
  911. return err;
  912. }
  913. static int dpni_exit(void)
  914. {
  915. int err;
  916. err = dpni_open(dflt_mc_io, MC_CMD_NO_FLAGS, dflt_dpni->dpni_id,
  917. &dflt_dpni->dpni_handle);
  918. if (err < 0) {
  919. printf("dpni_open() failed: %d\n", err);
  920. goto err;
  921. }
  922. err = dpni_destroy(dflt_mc_io, MC_CMD_NO_FLAGS,
  923. dflt_dpni->dpni_handle);
  924. if (err < 0) {
  925. printf("dpni_destroy() failed: %d\n", err);
  926. goto err;
  927. }
  928. #ifdef DEBUG
  929. printf("Exit: DPNI id=0x%d\n", dflt_dpni->dpni_id);
  930. #endif
  931. if (dflt_dpni)
  932. free(dflt_dpni);
  933. return 0;
  934. err:
  935. return err;
  936. }
  937. static int mc_init_object(void)
  938. {
  939. int err = 0;
  940. err = dprc_init();
  941. if (err < 0) {
  942. printf("dprc_init() failed: %d\n", err);
  943. goto err;
  944. }
  945. err = dpbp_init();
  946. if (err < 0) {
  947. printf("dpbp_init() failed: %d\n", err);
  948. goto err;
  949. }
  950. err = dpio_init();
  951. if (err < 0) {
  952. printf("dpio_init() failed: %d\n", err);
  953. goto err;
  954. }
  955. err = dpni_init();
  956. if (err < 0) {
  957. printf("dpni_init() failed: %d\n", err);
  958. goto err;
  959. }
  960. return 0;
  961. err:
  962. return err;
  963. }
  964. int fsl_mc_ldpaa_exit(bd_t *bd)
  965. {
  966. int err = 0;
  967. /* MC is not loaded intentionally, So return success. */
  968. if (bd && get_mc_boot_status() != 0)
  969. return 0;
  970. if (bd && !get_mc_boot_status() && get_dpl_apply_status() == -1) {
  971. printf("ERROR: fsl-mc: DPL is not applied\n");
  972. err = -ENODEV;
  973. return err;
  974. }
  975. if (bd && !get_mc_boot_status() && !get_dpl_apply_status())
  976. return err;
  977. err = dpbp_exit();
  978. if (err < 0) {
  979. printf("dpbp_exit() failed: %d\n", err);
  980. goto err;
  981. }
  982. err = dpio_exit();
  983. if (err < 0) {
  984. printf("dpio_exit() failed: %d\n", err);
  985. goto err;
  986. }
  987. err = dpni_exit();
  988. if (err < 0) {
  989. printf("dpni_exit() failed: %d\n", err);
  990. goto err;
  991. }
  992. err = dprc_exit();
  993. if (err < 0) {
  994. printf("dprc_exit() failed: %d\n", err);
  995. goto err;
  996. }
  997. return 0;
  998. err:
  999. return err;
  1000. }
  1001. static int do_fsl_mc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  1002. {
  1003. int err = 0;
  1004. if (argc < 3)
  1005. goto usage;
  1006. switch (argv[1][0]) {
  1007. case 's': {
  1008. char sub_cmd;
  1009. u64 mc_fw_addr, mc_dpc_addr;
  1010. #ifdef CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
  1011. u64 aiop_fw_addr;
  1012. #endif
  1013. sub_cmd = argv[2][0];
  1014. switch (sub_cmd) {
  1015. case 'm':
  1016. if (argc < 5)
  1017. goto usage;
  1018. if (get_mc_boot_status() == 0) {
  1019. printf("fsl-mc: MC is already booted");
  1020. printf("\n");
  1021. return err;
  1022. }
  1023. mc_fw_addr = simple_strtoull(argv[3], NULL, 16);
  1024. mc_dpc_addr = simple_strtoull(argv[4], NULL,
  1025. 16);
  1026. if (!mc_init(mc_fw_addr, mc_dpc_addr))
  1027. err = mc_init_object();
  1028. break;
  1029. #ifdef CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
  1030. case 'a':
  1031. if (argc < 4)
  1032. goto usage;
  1033. if (get_aiop_apply_status() == 0) {
  1034. printf("fsl-mc: AIOP FW is already");
  1035. printf(" applied\n");
  1036. return err;
  1037. }
  1038. aiop_fw_addr = simple_strtoull(argv[3], NULL,
  1039. 16);
  1040. err = load_mc_aiop_img(aiop_fw_addr);
  1041. if (!err)
  1042. printf("fsl-mc: AIOP FW applied\n");
  1043. break;
  1044. #endif
  1045. default:
  1046. printf("Invalid option: %s\n", argv[2]);
  1047. goto usage;
  1048. break;
  1049. }
  1050. }
  1051. break;
  1052. case 'a': {
  1053. u64 mc_dpl_addr;
  1054. if (argc < 4)
  1055. goto usage;
  1056. if (get_dpl_apply_status() == 0) {
  1057. printf("fsl-mc: DPL already applied\n");
  1058. return err;
  1059. }
  1060. mc_dpl_addr = simple_strtoull(argv[3], NULL,
  1061. 16);
  1062. if (get_mc_boot_status() != 0) {
  1063. printf("fsl-mc: Deploying data path layout ..");
  1064. printf("ERROR (MC is not booted)\n");
  1065. return -ENODEV;
  1066. }
  1067. if (!fsl_mc_ldpaa_exit(NULL))
  1068. err = mc_apply_dpl(mc_dpl_addr);
  1069. break;
  1070. }
  1071. default:
  1072. printf("Invalid option: %s\n", argv[1]);
  1073. goto usage;
  1074. break;
  1075. }
  1076. return err;
  1077. usage:
  1078. return CMD_RET_USAGE;
  1079. }
  1080. U_BOOT_CMD(
  1081. fsl_mc, CONFIG_SYS_MAXARGS, 1, do_fsl_mc,
  1082. "DPAA2 command to manage Management Complex (MC)",
  1083. "start mc [FW_addr] [DPC_addr] - Start Management Complex\n"
  1084. "fsl_mc apply DPL [DPL_addr] - Apply DPL file\n"
  1085. "fsl_mc start aiop [FW_addr] - Start AIOP\n"
  1086. );