<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: kernel crash in __create_pgd_mapping when I growing up ram size in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1151526#M161589</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/129091"&gt;@cedric_thamin&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Are you able to boot the i.MX8MQ board with 4GB DDR configuration? In my case as well the U-boot works fine with 2018.03 however it is not working in the case of 2019.04 and the kernel is crashing at the same location as yours.&lt;/P&gt;&lt;P&gt;Can you please provide the patchset if the issue is resolved at your end?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
    <pubDate>Thu, 10 Sep 2020 10:49:46 GMT</pubDate>
    <dc:creator>harshitshah</dc:creator>
    <dc:date>2020-09-10T10:49:46Z</dc:date>
    <item>
      <title>kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082635#M158810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody&lt;/P&gt;&lt;P&gt;I am working with a Freescale i.MX8MQ EVK&lt;/P&gt;&lt;P&gt;And I have a crash in kernel file&amp;nbsp;arch/arm64/mm/mmu.c function&amp;nbsp; __create_pgd_mapping when I change u-boot "U-Boot 2019.04-4.19.35-1.1.0+g9d5089bdf4" for growing up my ram size.&lt;/P&gt;&lt;P&gt;Call stack :&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;[ 0.000000] Call trace:&lt;BR /&gt;[ 0.000000] __create_pgd_mapping+0x7c/0x7a8 &lt;BR /&gt;[ 0.000000] map_kernel_segment+0x70/0xa4&lt;BR /&gt;[ 0.000000] paging_init+0x154/0x7f4&lt;BR /&gt;[ 0.000000] setup_arch+0x1c0/0x518&lt;BR /&gt;[ 0.000000] start_kernel+0x70/0x400&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Actually it is working with 1 DRAM_BANK of 3G. I have 4G available on my board so I apply a patch in u-boot for adding a second DRAM_BANK :&lt;/P&gt;&lt;P&gt;#define PHYS_SDRAM_2 0x100000000&lt;BR /&gt;#define PHYS_SDRAM_2_SIZE 0x40000000 /* 1GB */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Uboot extract with result of patch: board/freescale/imx8mq_evk/imx8mq_evk.c&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;int dram_init(void)&lt;BR /&gt;{&lt;BR /&gt; /* rom_pointer[1] contains the size of TEE occupies */&lt;BR /&gt; if (rom_pointer[1])&lt;BR /&gt; gd-&amp;gt;ram_size = PHYS_SDRAM_SIZE - rom_pointer[1];&lt;BR /&gt; else&lt;BR /&gt; gd-&amp;gt;ram_size = PHYS_SDRAM_SIZE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#if CONFIG_NR_DRAM_BANKS &amp;gt; 1&lt;BR /&gt; gd-&amp;gt;ram_size += PHYS_SDRAM_2_SIZE;&lt;BR /&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;int dram_init_banksize(void)&lt;BR /&gt;{&lt;BR /&gt; gd-&amp;gt;bd-&amp;gt;bi_dram[0].start = PHYS_SDRAM;&lt;BR /&gt; if (rom_pointer[1])&lt;BR /&gt; {&lt;BR /&gt;gd-&amp;gt;bd-&amp;gt;bi_dram[0].size = PHYS_SDRAM_SIZE -rom_pointer[1];&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; gd-&amp;gt;bd-&amp;gt;bi_dram[0].size = PHYS_SDRAM_SIZE;&lt;BR /&gt;#if CONFIG_NR_DRAM_BANKS &amp;gt; 1&lt;BR /&gt; gd-&amp;gt;bd-&amp;gt;bi_dram[1].start = PHYS_SDRAM_2;&lt;BR /&gt; gd-&amp;gt;bd-&amp;gt;bi_dram[1].size = PHYS_SDRAM_2_SIZE;&lt;BR /&gt;#endif&lt;BR /&gt;return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;phys_size_t get_effective_memsize(void)&lt;BR /&gt;{&lt;BR /&gt; if (rom_pointer[1])&lt;BR /&gt; return (PHYS_SDRAM_SIZE - rom_pointer[1]);&lt;BR /&gt; else&lt;BR /&gt; return PHYS_SDRAM_SIZE;&lt;BR /&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This patch is working with "U-Boot SPL 2018.03-imx_v2018.03_4.14.78_1.0.0_ga+ge60de51"&lt;/P&gt;&lt;P&gt;__create_pgd_mapping take as argument pgd_t *pgdir, but when I try to access to this pointer the crash occur if I boot with&amp;nbsp;"U-Boot 2019.04-4.19.35-1.1.0+g9d5089bdf4" and it is working with&amp;nbsp; "U-Boot SPL 2018.03-imx_v2018.03_4.14.78_1.0.0_ga+ge60de51"&lt;/P&gt;&lt;P&gt;(see __create_pgd_mapping sources attached, it should be printed, like with u-boot-2018.03,&lt;/P&gt;&lt;P&gt;[ 0.000000] arch/arm64/mm/mmu.c - 334 - __create_pgd_mapping : CTHHHHHHHHHHHHHHHHHHHHHHHHH phys_addr_t phys '0x40480000'&lt;/P&gt;&lt;P&gt;But no ....it is craching&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea?&lt;/P&gt;&lt;P&gt;I checked value of pgd_t *pgdir it is the same in both case.&lt;/P&gt;&lt;P&gt;Do you have a documentation reference for adding a RAM_BANK which explain difference between u-boot 2018-03 and u-boot 2019-04?&lt;/P&gt;&lt;P&gt;I add kernel boot trace with u-boot 2018.03 and u-boot 2019.04&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Cedric Thamin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:27:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082635#M158810</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-06-10T17:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082636#M158811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A _jive_internal="true" data-content-finding="Community" data-userid="357553" data-username="cedric.thamin@smardtv.com" href="https://community.nxp.com/people/cedric.thamin@smardtv.com"&gt;Cedric&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the answer from i.MX Expert, check it, please!&lt;/P&gt;&lt;P&gt;-------------------------------------------&lt;/P&gt;&lt;P&gt;Just a quick suggestion. On the imx_v2019.04_4.19.35_1.1.0 U-Boot there is a CONFIG_IMX8M_4G_LPDDR4 option that should be selected to suport 4GB operation.&lt;/P&gt;&lt;P&gt;The target that uses it is a imx8mm evk target, but the same idea can be applied to imx8mq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In the defconfig file customer needs to select CONFIG_IMX8M_4G_LPDDR4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See configs/imx8mm_evk_4g_android_defconfig:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONFIG_IMX8M_4G_LPDDR4=y&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In include/configs/imx8mm_evk_android.h we have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#ifdef CONFIG_IMX8M_4G_LPDDR4&lt;BR /&gt;#undef PHYS_SDRAM_SIZE&lt;BR /&gt;#define PHYS_SDRAM_SIZE 0xC0000000 /* 3GB */&lt;BR /&gt;#define PHYS_SDRAM_2 0x100000000&lt;BR /&gt;#define PHYS_SDRAM_2_SIZE 0x40000000 /* 1GB */&lt;BR /&gt;#undef CONFIG_NR_DRAM_BANKS&lt;BR /&gt;#define CONFIG_NR_DRAM_BANKS 2&lt;BR /&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. In the board file board/freescale/imx8mm_evk/imx8mm_evk.c:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check dram_init() and dram_init_banksize() as an example on how to use the full 4GB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By following these 3 steps the customer will be able to use the full 4GB of RAM on their i.MX8MQ board.&lt;/P&gt;&lt;P&gt;---------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the answer is helpful to you!&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;B.R,&lt;/P&gt;&lt;P&gt;Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2020 00:36:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082636#M158811</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2020-06-11T00:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082637#M158812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Many thanks for your answer. Patch which I used is delivered by partner... and I didn't understand it a lot. With your message I can use imx8mm as reference and try to understand.&lt;BR /&gt;So I start from scratch or nearly, and follow yours recommendation.&lt;/P&gt;&lt;P&gt;And I add some idea :&lt;/P&gt;&lt;P&gt;&amp;nbsp; In board/freescale/imx8mq_evk/imx8mq_evk.c I added function : get_effective_memsize found in imx8mm_evk.c and in patch delivered by partner.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I add so lpddr4_timing_4g.c. I tried without it (lpddr4_timing.o is used), with file found in board/freescale/imx8mm_evk/ and with file delivred by partner.&lt;BR /&gt;In all case I had same issue.&lt;/P&gt;&lt;P&gt;Do you think my issue can come from this file? Partner tested it with u-boot 2018-03 and told us it is working fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find attached u-boot-2019.04 patch and boot trace.&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Cedric T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2020 11:05:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082637#M158812</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-06-11T11:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082638#M158813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Cedric,&lt;/P&gt;&lt;P&gt;Don't recommend old patch for 4.19.35, because the patch doesn't change linux kernel.&lt;/P&gt;&lt;P&gt;Correct method is below:&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;I.MX8MM supports CONFIG_IMX8M_4G_LPDDR4, then I.MX8MQ can refer to I.MX8MM to modify it to support 4GB LPDDR4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The code of spl.c itself does not need to be modified.&lt;BR /&gt;2. imx8mq_evk.h modifies the DDR size according to imx8mm_evk.h.&lt;BR /&gt;3. lpddr4_timg.c&lt;BR /&gt;- Use RPA to generate a 4GB script&lt;BR /&gt;&lt;A href="https://community.nxp.com/docs/DOC-340179" target="test_blank"&gt;https://community.nxp.com/docs/DOC-340179&lt;/A&gt;&lt;BR /&gt;--Use ddr stress test tool to verify and generate timg.c&lt;BR /&gt;---Replace timg.c of imx8mq with timg.c&lt;BR /&gt;[comment]&lt;BR /&gt;No manual modification is required, all are automatic.&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope abvoe advice is helpful to you.&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;B.R,&lt;/P&gt;&lt;P&gt;Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jun 2020 03:34:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082638#M158813</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2020-06-12T03:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082639#M158814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Again many thanks for your help.&lt;/P&gt;&lt;P&gt;I don't understand clearly&lt;/P&gt;&lt;P&gt;"Don't recommend old patch for 4.19.35, because the patch doesn't change linux kernel."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Can you confirme to me : No change needs in linux kernel? All change should be done in u-boot?&lt;BR /&gt;I am going try to follow instructions ...but it is not in my usual work . I need time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2020 09:54:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082639#M158814</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-06-15T09:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082640#M158815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Cedric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;"Don't recommend old patch for 4.19.35, because the patch doesn't change linux kernel."&lt;/P&gt;&lt;P&gt;Yes, I confirmed it with i.MX Exper team member who is in charge of&amp;nbsp; memory calibration/stress test. so we gave you above feedback&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;No change needs in linux kernel? All change should be done in u-boot?&lt;/P&gt;&lt;P&gt;Yes, just in u-boot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have&amp;nbsp; a nice day!&lt;/P&gt;&lt;P&gt;B.R,&lt;/P&gt;&lt;P&gt;Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 01:47:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082640#M158815</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2020-06-16T01:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082641#M158816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Wigros&lt;/P&gt;&lt;P&gt;Again and again many thanks for your help. All yours suggestions was right and help me.&lt;/P&gt;&lt;P&gt;Sorry for delay but I had some difficulties to do what you purpose to me ... and I failed :smileysilly:.&lt;BR /&gt;Create lpddr4_timg.c with your tools is too hard for me, so I push very strong to my partner and they checked NXP BSP config. OPTEE feature was deactivated in file /meta-fsl-bsp-release/imx/meta-bsp/conf/layer.conf&lt;BR /&gt;When I did same-thing everything is working.&lt;BR /&gt;So I hope this thread can be useful for other people.&lt;BR /&gt;Patch attached is working fine but only if optee is deactivated.&lt;BR /&gt;Now my question is (if you have some time again for me ) :&lt;BR /&gt;How to configure optee for working with this new config?&lt;BR /&gt;Have you any suggestion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards and many thanks.&lt;/P&gt;&lt;P&gt;Cedric Thamin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2020 09:58:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082641#M158816</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-06-24T09:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082642#M158817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Cedric ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OPTEE is not releated to DDR configurations, after compilation is done in yocto, optee image will be created in deploy path, for exampe, optee.tar. it can be programmed to flash together with other images by uuu tool.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if the reminder can't help you understand optee , create a new ticket for it , please!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;B.R,&lt;/P&gt;&lt;P&gt;Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2020 00:26:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082642#M158817</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2020-06-29T00:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082643#M158818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And optee no need ram configuration? No way to tell it 4Gram is available? Perhaps if optee is configured with only 3g ram and&amp;nbsp; kernel with 4 gram the issue occurs?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jul 2020 08:35:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082643#M158818</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-07-03T08:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082644#M158819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No relations to 3GB or 4GB.&amp;nbsp; &lt;/P&gt;&lt;P&gt;your DDR is managed by linux system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2020 01:22:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082644#M158819</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2020-07-06T01:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082645#M158820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;SPAN class=""&gt;&lt;A _jive_internal="true" class="" data-content-finding="Community" data-userid="357553" data-username="cedric.thamin@smardtv.com" href="https://community.nxp.com/people/cedric.thamin@smardtv.com"&gt;Cedric&lt;/A&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;I sent a document to you by personal email.&lt;/P&gt;&lt;P&gt;check it , please!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;B.R,&lt;/P&gt;&lt;P&gt;Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2020 10:06:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082645#M158820</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2020-07-07T10:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082646#M158821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks!!!!&lt;/P&gt;&lt;P&gt;I will try it this patch next week ... &lt;SPAN class="" lang="en"&gt;&lt;SPAN class="" title=""&gt;other priorities have caught up with me.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;I keep you informed as soon as possible :smileyhappy:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:26:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082646#M158821</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-07-07T14:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082647#M158822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I said in one week ...Only one month later I found time for doing this job...sorry for delay.&lt;/P&gt;&lt;P&gt;I received you document and it is a good example for growing ram from 2G to 3G but I am trying to growing it from 3G to 4G ..and I meted some problem.&lt;/P&gt;&lt;P&gt;Option 1 : disable TEE&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; It is not possible because we need TEE&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Option 2 :&lt;/STRONG&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Patch 2.1 : optee-os-imx =&amp;gt; build OK&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In core/arch/arm/plat-imx/conf.mk&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I replace CFG_DDR_SIZE ?= 0xC0000000 by CFG_DDR_SIZE ?= 0x100000000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In core/arch/arm/plat-imx/tzasc.c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I do nothing ....trust zone memory region was already configured for 4G&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Patch 2.2 : imx-atf =&amp;gt; build OK&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In plat/imx/imx8mm/include/platform_def.h&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I replaced #define BL32_BASE 0xfe000000 by #define BL32_BASE 0x13e000000 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For 3G 0xfe000000 = PHYS_SDRAM + PHYS_SDRAM_SIZE - 0x10000000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; So for 4G 0x13e000000 = PHYS_SDRAM_2 + PHYS_SDRAM_2_SIZE - 0x10000000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In same plat/imx/imx8mq/imx8mq_bl31_setup.c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Same idea..&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bl33_image_ep_info.args.arg1 = 0xFE000000; become bl33_image_ep_info.args.arg1 = 0x13E000000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bl33_image_ep_info.args.arg2 = 0x100000000 become bl33_image_ep_info.args.arg2 = 0x140000000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;STRONG&gt; Patch 2.3 imx-boot =&amp;gt; BUILD KO&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In iMX8M/soc.mak TEE_LOAD_ADDR = 0xfe000000 become TEE_LOAD_ADDR = 0x13e000000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; But i have build error :&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | ./mkimage_uboot -E -p 0x3000 -f u-boot.its u-boot.itb&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Error: u-boot.its:36.12-23 Value out of range for 32-bit array element&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Error: u-boot.its:37.13-24 Value out of range for 32-bit array element&lt;BR /&gt;&lt;BR /&gt;Have you an idea?&lt;BR /&gt;Attached the 3 patched adapted ....&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 16:04:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1082647#M158822</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-08-11T16:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1151526#M161589</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/129091"&gt;@cedric_thamin&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Are you able to boot the i.MX8MQ board with 4GB DDR configuration? In my case as well the U-boot works fine with 2018.03 however it is not working in the case of 2019.04 and the kernel is crashing at the same location as yours.&lt;/P&gt;&lt;P&gt;Can you please provide the patchset if the issue is resolved at your end?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 10:49:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1151526#M161589</guid>
      <dc:creator>harshitshah</dc:creator>
      <dc:date>2020-09-10T10:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1156303#M162208</link>
      <description>&lt;P&gt;Hi sorry for delai.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Find attached the patch.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For using it you should :&lt;BR /&gt;uncomment CONFIG_IMX8M_4G_LPDDR4=y in configs/imx8mq_evk_defconfig&lt;BR /&gt;Remove optee functionalities :&lt;BR /&gt;In yocto-meta/nxp/meta-fsl-bsp-release/imx/meta-bsp/conf/layer.conf&lt;BR /&gt;Comment line : DISTRO_FEATURES_append = " optee"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't fix my problem with tee &lt;LI-EMOJI id="lia_disappointed-face" title=":disappointed_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 13:40:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1156303#M162208</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2020-09-21T13:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1269260#M173320</link>
      <description>&lt;P&gt;Dear Sir&lt;/P&gt;&lt;P&gt;Did you solve it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I modified TEE_LOAD_ADDR to 0x13e000000 (imx-boot) and encountered the same error ( &lt;SPAN&gt;Error: u-boot.its:36.12-23 Value out of range for 32-bit array element&amp;nbsp;&lt;/SPAN&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you please give me some suggestions about these errors?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My error is as follows:&lt;/P&gt;&lt;DIV&gt;tmp/work/imx8mmevk-poky-linux/imx-boot/1.0-r0/teump/run.do_compile.18220' failed with exit code 2:&lt;BR /&gt;24058+0 records in&lt;BR /&gt;24058+0 records out&lt;BR /&gt;96232 bytes (96 kB, 94 KiB) copied, 0.0375925 s, 2.6 MB/s&lt;BR /&gt;./../scripts/pad_image.sh tee.bin&lt;BR /&gt;tee.bin is padded to 2113120&lt;BR /&gt;./../scripts/pad_image.sh bl31.bin&lt;BR /&gt;bl31.bin is padded to 45536&lt;BR /&gt;./../scripts/pad_image.sh u-boot-nodtb.bin evk.dtb&lt;BR /&gt;DEK_BLOB_LOAD_ADDR=0x40400000 TEE_LOAD_ADDR=0x13e000000 ATF_LOAD_ADDR=0x00920000 ./mkimage_fit_atf.sh evk.dtb &amp;gt; u-boot.its&lt;BR /&gt;bl31.bin size:&lt;BR /&gt;45536&lt;BR /&gt;Building with TEE support, make sure your bl31 is compiled with spd. If you do not want tee, please delete tee.bin&lt;BR /&gt;tee.bin size:&lt;BR /&gt;2113120&lt;BR /&gt;u-boot-nodtb.bin size:&lt;BR /&gt;788968&lt;BR /&gt;evk.dtb size:&lt;BR /&gt;35640&lt;BR /&gt;./mkimage_uboot -E -p 0x3000 -f u-boot.its u-boot.itb&lt;BR /&gt;Error: u-boot.its:36.12-23 Value out of range for 32-bit array element&lt;BR /&gt;Error: u-boot.its:37.13-24 Value out of range for 32-bit array element&lt;BR /&gt;FATAL ERROR: Syntax error parsing input tree&lt;BR /&gt;./mkimage_uboot: Can't open u-boot.itb.tmp: No such file or directory&lt;BR /&gt;soc.mak:148: recipe for target 'u-boot.itb' failed&lt;BR /&gt;make[1]: *** [u-boot.itb] Error 255&lt;BR /&gt;Makefile:22: recipe for target 'flash_evk' failed&lt;BR /&gt;make: *** [flash_evk] Error 2&lt;BR /&gt;WARNING: exit code 2 from a shell command.&lt;/DIV&gt;</description>
      <pubDate>Wed, 28 Apr 2021 03:02:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1269260#M173320</guid>
      <dc:creator>benson_lin</dc:creator>
      <dc:date>2021-04-28T03:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1269448#M173337</link>
      <description>&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;No I didn't solved it.&lt;/P&gt;&lt;P&gt;Actually I can support TEE and 3Gram&lt;BR /&gt;Or no tee and 4GRam.&lt;/P&gt;&lt;P&gt;Sorry.&lt;/P&gt;&lt;P&gt;Next step ..I don't know when perhaps never, will be to update kernel/uboot to last version of sdk.&lt;BR /&gt;&lt;BR /&gt;Best Reagrds,&lt;BR /&gt;Cedric T&lt;/P&gt;</description>
      <pubDate>Wed, 28 Apr 2021 07:22:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1269448#M173337</guid>
      <dc:creator>cedric_thamin</dc:creator>
      <dc:date>2021-04-28T07:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1270596#M173429</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;SPAN&gt;Cedric T&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My test results are the same. ( Tee + 3GB &lt;SPAN&gt;ram ok&lt;/SPAN&gt;, no tee + 4GB &lt;SPAN&gt;ram &lt;/SPAN&gt;ok )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Reagrds,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Benson&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 01:38:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1270596#M173429</guid>
      <dc:creator>benson_lin</dc:creator>
      <dc:date>2021-04-30T01:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: kernel crash in __create_pgd_mapping when I growing up ram size</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1529301#M195722</link>
      <description>&lt;P&gt;hello &lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/129091" target="_blank"&gt;@cedric_thamin&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting same error regarding mapping with LPDDR4 6gb RAM in my custom board. i am using imx8mp processor.&lt;/P&gt;&lt;P&gt;can you look in to this? suggest solution for the same.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/t5/i-MX-Processors/IMX8MPlus-LPDDR4-6GB-quot-Starting-Kernel-quot/m-p/1528682#M195670" target="_blank" rel="noopener"&gt;https://community.nxp.com/t5/i-MX-Processors/IMX8MPlus-LPDDR4-6GB-quot-Starting-Kernel-quot/m-p/1528682#M195670&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 07:02:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/kernel-crash-in-create-pgd-mapping-when-I-growing-up-ram-size/m-p/1529301#M195722</guid>
      <dc:creator>Aditya2125</dc:creator>
      <dc:date>2022-09-28T07:02:39Z</dc:date>
    </item>
  </channel>
</rss>

