<?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>i.MX ProcessorsのトピックRe: Unable to handle kernel paging request at virtual address 0033b273912fd041</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2036123#M233496</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Please, Try to erase and build and program again you image, there is nothing we can do when this error appear.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jan 2025 12:36:30 GMT</pubDate>
    <dc:creator>Bio_TICFSL</dc:creator>
    <dc:date>2025-01-30T12:36:30Z</dc:date>
    <item>
      <title>Unable to handle kernel paging request at virtual address 0033b273912fd041</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2035719#M233467</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The board doesn't boot. At the beginning I get an erro "Unable to handle kernel paging". I attached the output.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate, if you can help.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 15:47:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2035719#M233467</guid>
      <dc:creator>bora</dc:creator>
      <dc:date>2025-01-29T15:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to handle kernel paging request at virtual address 0033b273912fd041</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2036123#M233496</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Please, Try to erase and build and program again you image, there is nothing we can do when this error appear.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 12:36:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2036123#M233496</guid>
      <dc:creator>Bio_TICFSL</dc:creator>
      <dc:date>2025-01-30T12:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to handle kernel paging request at virtual address 0033b273912fd041</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2270490#M243116</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/245887"&gt;@bora&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;We are working with a &lt;STRONG&gt;custom i.MX8M Plus DDR4 board&lt;/STRONG&gt; that includes &lt;STRONG&gt;32 MB QSPI NOR flash&lt;/STRONG&gt;.&lt;BR /&gt;Our objective is to boot &lt;STRONG&gt;U-Boot, Linux kernel, device tree, and initramfs (rootfs.img)&lt;/STRONG&gt; entirely from &lt;STRONG&gt;QSPI flash&lt;/STRONG&gt;, without using SD/eMMC.&lt;/P&gt;&lt;P&gt;We are able to &lt;STRONG&gt;successfully boot up to U-Boot (flash.bin)&lt;/STRONG&gt; from QSPI flash.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-----Flash Layout and Image Sizes----------------&lt;/P&gt;&lt;P&gt;QSPI flash size: 32 MB&lt;/P&gt;&lt;P&gt;flash.bin (U-Boot + SPL) ~2.4 MB&lt;BR /&gt;Image.gz (Kernel) ~15 MB&lt;BR /&gt;imx8mp-evk.dtb ~85 KB&lt;BR /&gt;rootfs.img ~12.6 MB&lt;/P&gt;&lt;P&gt;----QSPI Offset Layout----------&lt;BR /&gt;flash.bin @ 0x00000000&lt;BR /&gt;Image.gz @ 0x0024D000&lt;BR /&gt;imx8mp-evk.dtb @ 0x010A6B00&lt;BR /&gt;rootfs.img @ 0x010BB800&lt;/P&gt;&lt;H3&gt;U-Boot Environment Setup&lt;/H3&gt;&lt;P&gt;After booting into U-Boot from QSPI, we configure the following environment variables to load the kernel, device tree, and initramfs from flash:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;sf probe 0&lt;BR /&gt;setenv loadaddr 0x40480000 // kernel&lt;BR /&gt;setenv fdt_addr 0x43000000 //dtb&lt;BR /&gt;setenv initrd_addr 0x43800000 //rootfs (minimal initramfs)&lt;BR /&gt;setenv kernel_comp_addr_r 0x50000000&lt;BR /&gt;setenv kernel_comp_size 0x04000000&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reading Images from QSPI Flash&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;sf read ${loadaddr} 0x0024D000 0x00E59A6F&lt;BR /&gt;sf read ${fdt_addr} 0x010A6B00 0x00014BBA&lt;BR /&gt;sf read ${initrd_addr} 0x010BB800 0x00C04DB0&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Boot Command&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;setenv bootargs console=${console},${baudrate} earlycon=${earlycon},${baudrate} rdinit=/dev&lt;/P&gt;&lt;P&gt;booti ${loadaddr} ${initrd_addr} ${fdt_addr}&lt;/P&gt;&lt;H3&gt;Issue Observed&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;The kernel &lt;STRONG&gt;starts executing&lt;/STRONG&gt; but &lt;STRONG&gt;hangs at “Starting kernel …”&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Please refer to the attached kernel boot log&lt;STRONG&gt; (kernel_bootlog1)&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;When using the following boot arguments:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;setenv bootargs setenv bootargs "console=ttymxc1,115200 earlycon root=/dev/ram0 rw rdinit=/sbin/init loglevel=8"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;The kernel progresses further but &lt;STRONG&gt;hangs midway during boot&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Please refer to the attached kernel boot log&lt;STRONG&gt; (kernel_bootlog2)&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Attached the &lt;STRONG&gt;kernel DTS&lt;/STRONG&gt; and &lt;STRONG&gt;kernel defconfig&lt;/STRONG&gt; for reference.&lt;BR /&gt;Kindly let us know if any modifications are required.&lt;/P&gt;&lt;P&gt;Also getting same error like you&amp;nbsp;&lt;STRONG&gt;Unable to handle kernel paging request at virtual address.&amp;nbsp;&lt;/STRONG&gt;can you please give any suggistions to resolve it and successful kernel boot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Questions:&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;Are there any &lt;STRONG&gt;recommended changes required in the kernel DTS&lt;/STRONG&gt; for booting initramfs entirely from QSPI on a &lt;STRONG&gt;custom i.MX8M Plus DDR4 board&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;Are there any &lt;STRONG&gt;additional boot arguments&lt;/STRONG&gt; recommended by NXP for initramfs-based boot on i.MX8MP from QSPI flash?&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;What could be the possible reason for the kernel not booting correctly?&lt;BR /&gt;We followed the same procedure that works successfully on the i.MX8MP LPDDR4&amp;nbsp; EVK, where the kernel and root filesystem boot properly from QSPI flash.&lt;BR /&gt;The only differences in our setup are the &lt;STRONG&gt;flash.bin&lt;/STRONG&gt; and &lt;STRONG&gt;device tree&lt;/STRONG&gt;, which were modified according to the DDR configuration of our custom board.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2025 12:08:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2270490#M243116</guid>
      <dc:creator>NXP_USER_05</dc:creator>
      <dc:date>2025-12-31T12:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to handle kernel paging request at virtual address 0033b273912fd041</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2304658#M243763</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/34846"&gt;@Bio_TICFSL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on an &lt;STRONG&gt;i.MX8M Plus DDR4 custom board&lt;/STRONG&gt; and I am able to successfully boot the system entirely from &lt;STRONG&gt;QSPI flash (32MB).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;My current boot components are:&lt;/P&gt;&lt;P&gt;flash.bin (U-Boot)&lt;/P&gt;&lt;P&gt;Image.gz (Linux kernel)&lt;/P&gt;&lt;P&gt;imx8mp-ddr4-evk.dtb&lt;/P&gt;&lt;P&gt;core-image-minimal-initramfs.cpio.gz&lt;/P&gt;&lt;P&gt;Since my board does not have &lt;STRONG&gt;SD card or eMMC,&lt;/STRONG&gt; I am using &lt;STRONG&gt;initramfs&lt;/STRONG&gt; as the root filesystem.&lt;/P&gt;&lt;P&gt;Now I want to include &lt;STRONG&gt;gcc&lt;/STRONG&gt; inside&lt;STRONG&gt; core-image-minimal-initramfs.cpio.gz,&lt;/STRONG&gt; so that I can compile applications directly on the target without relying on any external storage.&lt;/P&gt;&lt;P&gt;Changed the &lt;STRONG&gt;conf/local.conf&lt;/STRONG&gt; and then build using command&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;STRONG&gt; &amp;nbsp; $bitbake core-image-minimal-initramfs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Also attached the &lt;STRONG&gt;local.conf&lt;/STRONG&gt; file for your reference.&lt;/P&gt;&lt;P&gt;It generated &lt;STRONG&gt;core-image-minimal-initramfs.cpio.gz&lt;/STRONG&gt; but in &lt;STRONG&gt;bin/ and usr/bin&lt;/STRONG&gt; respective folders &lt;STRONG&gt;gcc&lt;/STRONG&gt; is not present and getting like below after booting kernel and cpio.gz.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;~ # gcc&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;/bin/sh: gcc: not found&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;~ # ls&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;bin dev home init.d media proc run sys usr&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;boot etc init lib mnt root sbin tmp var&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Could you please advise:&lt;/P&gt;&lt;P&gt;What is the correct Yocto method to include &lt;STRONG&gt;gcc&lt;/STRONG&gt; in an initramfs image?&lt;/P&gt;&lt;P&gt;Are there any recommended configurations or limitations when using &lt;STRONG&gt;gcc&lt;/STRONG&gt; inside &lt;STRONG&gt;initramfs&lt;/STRONG&gt; (RAM usage, image size, etc.)?&lt;/P&gt;&lt;P&gt;Any guidance or reference to&lt;STRONG&gt; NXP-supported Yocto&lt;/STRONG&gt; practices would be very helpful.&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 12:56:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Unable-to-handle-kernel-paging-request-at-virtual-address/m-p/2304658#M243763</guid>
      <dc:creator>NXP_USER_05</dc:creator>
      <dc:date>2026-02-02T12:56:24Z</dc:date>
    </item>
  </channel>
</rss>

