<?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: LLCE error 63 in S32G</title>
    <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2062361#M12948</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/246314"&gt;@m_bez&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thanks for the questions!&lt;/P&gt;
&lt;P&gt;At the &lt;STRONG&gt;LLCE firmware user guide&lt;/STRONG&gt;&amp;nbsp;at chapter&amp;nbsp;&lt;STRONG&gt;3.2.4.2 Llce_Fw_ReturnType&amp;nbsp;&lt;/STRONG&gt;you can find as you mentioned the table of the error enumerator below that table it mentioned where you can find this at the code "Definition at line 131 of file Llce_InterfaceFwMgr.h"&lt;/P&gt;
&lt;P&gt;At the code I found the following with the enum 63:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_1-1741985954928.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/328239i5CC566D350D0803C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_1-1741985954928.png" alt="carlos_o_1-1741985954928.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Also, the error is listed at the Table of the User guide&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_2-1741986009252.png" style="width: 508px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/328240i92B9790CD222A7DA/image-dimensions/508x36?v=v2" width="508" height="36" role="button" title="carlos_o_2-1741986009252.png" alt="carlos_o_2-1741986009252.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, consider the following limitation for filters at your implementation:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_3-1741986361971.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/328243i63E5F746E4D47916/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_3-1741986361971.png" alt="carlos_o_3-1741986361971.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Mar 2025 21:07:54 GMT</pubDate>
    <dc:creator>carlos_o</dc:creator>
    <dc:date>2025-03-14T21:07:54Z</dc:date>
    <item>
      <title>LLCE error 63</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2061439#M12936</link>
      <description>&lt;P&gt;I'm trying to set up an 32g2 development board, with yocto linux up as a CAN gateway.&lt;BR /&gt;I'm using the dbugFS interface to configure the LLCE to use a combination of basic and advanced filters.&lt;BR /&gt;The routing matrix requires around 500 rules, all of type `exact`&lt;BR /&gt;After around 250 rules have been added, the following errors occur:&lt;BR /&gt;1) I/O error when writing to `/sys/kernel/debug/llce_can_core/can_filters/add/&lt;BR /&gt;execute`&lt;BR /&gt;2) `llce_can_core 43ff8000.llce:llce_can_core: LLCE FW error 62` in dmesg&lt;BR /&gt;3) `llce_can_core 43ff8000.llce:llce_can_core: Failed to add an RX filter&lt;BR /&gt;to controller ` in dmesg&lt;BR /&gt;&lt;BR /&gt;In the LLCE firmware user guide, table 1.4 lists some errors, but they aren't associated with a number (62) as far as I can tell.&lt;BR /&gt;Repeating these commands eventually reproduces the error:&lt;BR /&gt;```&lt;BR /&gt;echo $(cat /sys/kernel/debug/llce_can_core/can_destinations/add/execute) &amp;gt; /sys/kernel/debug/llce_&lt;BR /&gt;can_core/can_filters/add/can_dest&lt;BR /&gt;echo 0 &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/can_mask_id&lt;BR /&gt;echo exact &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/entry&lt;BR /&gt;echo 6 &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/hw_ctrl&lt;BR /&gt;echo 0x00 &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/tag&lt;BR /&gt;echo 0x10 &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/mb_count&lt;BR /&gt;echo short &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/mb_type&lt;BR /&gt;echo 0x1CEBFF25 &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/msg_id&lt;BR /&gt;echo enabled &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/status&lt;BR /&gt;echo 1 &amp;gt; /sys/kernel/debug/llce_can_core/can_filters/add/execute&lt;BR /&gt;```&lt;BR /&gt;&lt;BR /&gt;In summary, I have 2 questions:&lt;BR /&gt;1) Where can I find the definition of ` LLCE FW error 62`&lt;BR /&gt;2) what could be the root cause of this error?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 15:51:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2061439#M12936</guid>
      <dc:creator>m_bez</dc:creator>
      <dc:date>2025-03-13T15:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: LLCE error 63</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2062361#M12948</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/246314"&gt;@m_bez&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thanks for the questions!&lt;/P&gt;
&lt;P&gt;At the &lt;STRONG&gt;LLCE firmware user guide&lt;/STRONG&gt;&amp;nbsp;at chapter&amp;nbsp;&lt;STRONG&gt;3.2.4.2 Llce_Fw_ReturnType&amp;nbsp;&lt;/STRONG&gt;you can find as you mentioned the table of the error enumerator below that table it mentioned where you can find this at the code "Definition at line 131 of file Llce_InterfaceFwMgr.h"&lt;/P&gt;
&lt;P&gt;At the code I found the following with the enum 63:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_1-1741985954928.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/328239i5CC566D350D0803C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_1-1741985954928.png" alt="carlos_o_1-1741985954928.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Also, the error is listed at the Table of the User guide&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_2-1741986009252.png" style="width: 508px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/328240i92B9790CD222A7DA/image-dimensions/508x36?v=v2" width="508" height="36" role="button" title="carlos_o_2-1741986009252.png" alt="carlos_o_2-1741986009252.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, consider the following limitation for filters at your implementation:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_3-1741986361971.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/328243i63E5F746E4D47916/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_3-1741986361971.png" alt="carlos_o_3-1741986361971.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 21:07:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2062361#M12948</guid>
      <dc:creator>carlos_o</dc:creator>
      <dc:date>2025-03-14T21:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: LLCE error 63</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2064623#M13011</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/241501"&gt;@carlos_o&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for your reply. Could you please check the definition of error **62** in that file, you looked at 63. I did find a file named Llce_InterfaceFwMgr.H, but it does not associate the error descriptions with numbers.&lt;BR /&gt;&lt;BR /&gt;My second concern is that the error occurs well before 512 filters of any type have been created. My script attempts to create around 450 filters, and fails after 257 of them have been created. If I run the same script again, about 5 more filters are created, with the rest failing.&lt;BR /&gt;&lt;BR /&gt;This behavior seems to be the same for basic and advanced filters. Introducing a 0.5sec delay between creating filters also makes no difference.&lt;BR /&gt;&lt;BR /&gt;In summary,&lt;BR /&gt;1) Can you think of anything else to try?&lt;BR /&gt;2) Could you please get the description for error 62? Or where I can find the Llce_InterfaceFwMgr.h that enumerates them.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 10:24:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2064623#M13011</guid>
      <dc:creator>m_bez</dc:creator>
      <dc:date>2025-03-19T10:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: LLCE error 63</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2064976#M13018</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/246314"&gt;@m_bez&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;1. I'm reviewing if there is any information of how many filters can be added to the same controller. Could you please share what is the max count of filters you are trying to add to a specific controller?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. I found the file at &lt;SPAN class="position-relative" data-view-component="true"&gt;&lt;A id="521514929" class="min-width-0 Link text-bold flex-auto wb-break-all" href="https://github.com/nxp-auto-linux/linux" data-view-component="true" aria-describedby="tooltip-0726fbcf-cf5f-4f04-ba15-62d71e351c0e" target="_blank"&gt;&lt;SPAN class="repo"&gt;linux&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt; repository of NXP at the path: ./include/linux/mailbox/nxp-llce/llce_fw_interface.h&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error 62 is the following&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_0-1742410007984.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/328879i23A7D00FCA82B2E1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_0-1742410007984.png" alt="carlos_o_0-1742410007984.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 20:57:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2064976#M13018</guid>
      <dc:creator>carlos_o</dc:creator>
      <dc:date>2025-03-19T20:57:03Z</dc:date>
    </item>
    <item>
      <title>Hi Carlos, I'm attempting to create the following numbers...</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2065388#M13025</link>
      <description>&lt;P&gt;Hi Carlos, I'm attempting to create the following numbers of filters for 9 controllers&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;| Controller | # |&lt;BR /&gt;| ---------- | --- |&lt;BR /&gt;| 1 | 129 |&lt;BR /&gt;| 2 | 79 |&lt;BR /&gt;| 3 | 55 |&lt;BR /&gt;| 4 | 40 |&lt;BR /&gt;| 5 | 39 |&lt;BR /&gt;| 6 | 38 |&lt;BR /&gt;| 7 | 28 |&lt;BR /&gt;| 8 | 33 |&lt;BR /&gt;| 9 | 6 |&lt;/P&gt;&lt;P&gt;```&lt;BR /&gt;And at the point where the creation fails, I have created the following numbers of filters&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;| hw_ctrl | count |&lt;BR /&gt;| ------- | ----- |&lt;BR /&gt;| 1 | 32 |&lt;BR /&gt;| 2 | 32 |&lt;BR /&gt;| 3 | 32 |&lt;BR /&gt;| 4 | 32 |&lt;BR /&gt;| 5 | 32 |&lt;BR /&gt;| 6 | 32 |&lt;BR /&gt;| 7 | 28 |&lt;BR /&gt;| 8 | 32 |&lt;BR /&gt;| 9 | 6 |&lt;BR /&gt;```&lt;BR /&gt;At this point, I get the error 62 when I try to add a filter to any of the interfaces that already have 32 filters added. It seems like something is limiting the number of filters on a controller to 32. Is it possible work around this limitation? I could reduce the number of filters by using range/mask filters, but this would have some security implications, so I would like to make sure that this is impossible using exact filters.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 08:36:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2065388#M13025</guid>
      <dc:creator>m_bez</dc:creator>
      <dc:date>2025-03-20T08:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Carlos, I'm attempting to create the following numbers...</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2065847#M13030</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/246314"&gt;@m_bez&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are just 512 exact filters available for S32G2, this is 32 for each controller as we have 16 controllers. There is not a work around for the limitations. The max number of filters increase for the S32G3 product.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 21:03:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2065847#M13030</guid>
      <dc:creator>carlos_o</dc:creator>
      <dc:date>2025-03-20T21:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Carlos, I'm attempting to create the following numbers...</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2066075#M13036</link>
      <description>That's disappointing to hear. Thanks for checking anyway. Could you point me to somewhere in the documentation where I can find the details of this for the report I'll need to write?&lt;BR /&gt;&lt;BR /&gt;Also, you mention a limit of 32 exact filters, but I got the error when trying to add ranged or masked filters to a channel with 32 filters as well. Could you please explain that?</description>
      <pubDate>Fri, 21 Mar 2025 07:04:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2066075#M13036</guid>
      <dc:creator>m_bez</dc:creator>
      <dc:date>2025-03-21T07:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Carlos, I'm attempting to create the following numbers...</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2070971#M13112</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/241501"&gt;@carlos_o&lt;/a&gt;,&amp;nbsp;I've found another odd behavior that might help point in the right direction. If I attempt to create more than 32 filters, the driver starts reporting error frames on the interface. I connected a CAN probe and the errors don't seem to be transmitted on the bus physically, but somthing is malfunctioning. I can see the counters in:&lt;BR /&gt;-&amp;nbsp;/sys/class/net/llcecan1/statistics/rx_errors&lt;BR /&gt;-&amp;nbsp;/sys/class/net/llcecan1/statistics/tx_errors&lt;/P&gt;&lt;P&gt;counting up to many thousands of errors in a short time, but this happens when the filteres were just created, no CAn frames were sent or received on the bus at this point.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 08:44:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2070971#M13112</guid>
      <dc:creator>m_bez</dc:creator>
      <dc:date>2025-03-31T08:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Carlos, I'm attempting to create the following numbers...</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2071399#M13116</link>
      <description>&lt;P&gt;An apology for the late response&lt;/P&gt;
&lt;P&gt;I reviewed this with the internal team, and they share the following information:&lt;/P&gt;
&lt;P&gt;For the Tx, the max filter is 16 for each HW channel, for Rx, there are not limitation for each HW channel, they are share 1024 filters (exact +rang).&lt;/P&gt;
&lt;P&gt;For the Linux side, it is configured in the device tree. the detail is in the chapter 12.3.6 Advanced parameters in BSP RM&lt;/P&gt;
&lt;P&gt;the 32 limitation comes from here, so if customer want to increase filter, customer should increase the variable as below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_0-1743450611286.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/330586i370758EE69905DA8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_0-1743450611286.png" alt="carlos_o_0-1743450611286.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So, my last response was wrong, there is a way to modify the max num to attach for the same HW channel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 19:51:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2071399#M13116</guid>
      <dc:creator>carlos_o</dc:creator>
      <dc:date>2025-03-31T19:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Carlos, I'm attempting to create the following numbers...</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2075930#M13180</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/241501"&gt;@carlos_o&lt;/a&gt; , Thanks for the reply. Ive been spending some time trying to get these configuration changes applied, but I'm stuck:&lt;BR /&gt;1) In the Yocto/BSP build tree, which dts or dtsi file do I need to modify, and which yocto recipe do I need to modify to get the configuration change in the device tree.&lt;BR /&gt;&lt;BR /&gt;2) Is there some way to modify this configuration at runtime? That is, after u-boot has passed the device tree to the kernel?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Matthys&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 08:36:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2075930#M13180</guid>
      <dc:creator>m_bez</dc:creator>
      <dc:date>2025-04-08T08:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Carlos, I'm attempting to create the following numbers...</title>
      <link>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2077743#M13193</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/246314"&gt;@m_bez&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. If you want to do it with Yocto here is a guide to how to do your own modifications&amp;nbsp;&lt;A href="https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Yocto-Project-customization-guide/ta-p/1879117" target="_self"&gt;Yocto Project customization guide&lt;/A&gt;&amp;nbsp;the guide is for the i.MX family but work very similar to the S32G in the Yocto Project.&lt;/P&gt;
&lt;P&gt;Also, at the BSP Reference Manual you could find what modification is needed to the device tree:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_0-1744239235089.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/332351i5526C416664312E0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_0-1744239235089.png" alt="carlos_o_0-1744239235089.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;[page 112, Linux BSP 42.0 User Manual for S32G3 platforms]&lt;/P&gt;
&lt;P&gt;This changes you could do it at the file&amp;nbsp;s32g399a-rdb3.dts for rdb3 or s32g274a-rdb2.dts for rdb2 located at&lt;/P&gt;
&lt;P&gt;/your_Yocto_project/build_s32g274ardb2/tmp/work-shared/s32g274ardb2/kernel-source/arch/arm64/boot/dts/freescale/&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Yes, at the ethernet chapter of the BSP manual you could find the following information:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carlos_o_1-1744239337971.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/332352i561D41E46B72C000/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carlos_o_1-1744239337971.png" alt="carlos_o_1-1744239337971.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So, at u-boot you could try something like&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;-&amp;gt; setenv fdt_override 'fdt addr ${fdt_addr}; fdt resize; fdt set &amp;lt;node&amp;gt; &amp;lt;property&amp;gt; &amp;lt;value&amp;gt;; ${fdt_override}'
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and you need to use&lt;/P&gt;
&lt;P&gt;node as /soc/llce_can0&lt;/P&gt;
&lt;P&gt;property as nxp,max_regular_filters&lt;/P&gt;
&lt;P&gt;value as you desire value&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you need also to add another fdt set to the&amp;nbsp;nxp,max_adv_filters property, only remember to separte each instruction with ; at the fdt_override string&lt;/P&gt;
&lt;P&gt;Let me know if you have more questions.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 23:17:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/LLCE-error-63/m-p/2077743#M13193</guid>
      <dc:creator>carlos_o</dc:creator>
      <dc:date>2025-04-09T23:17:57Z</dc:date>
    </item>
  </channel>
</rss>

