<?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: Setting core affinity in Processor Expert Software</title>
    <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059147#M5931</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We even tried cpumask_of(1), still no change, and also if we put a print statement below these lines, even those are not getting printed.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
    <pubDate>Tue, 11 Mar 2025 03:27:55 GMT</pubDate>
    <dc:creator>ankita_hegde</dc:creator>
    <dc:date>2025-03-11T03:27:55Z</dc:date>
    <item>
      <title>Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2045140#M5919</link>
      <description>&lt;P&gt;Dear Team,&lt;/P&gt;&lt;P&gt;We are using iMX8DXL processor. Is there any way to make all the SPI related task to work in single core? Do let us know if there is any procedure or example to do so.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankita&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2025 05:56:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2045140#M5919</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-02-17T05:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2045803#M5920</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;To set the CPU affinity for the SPI interrupt to a specific core (e.g., CPU0):&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;echo 1 &amp;gt; /proc/irq/&amp;lt;spi_irq_number&amp;gt;/smp_affinity&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reference:&amp;nbsp;&lt;A href="https://docs.kernel.org/core-api/irq/irq-affinity.html" target="_blank"&gt;https://docs.kernel.org/core-api/irq/irq-affinity.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2025 01:04:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2045803#M5920</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-02-18T01:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2046200#M5921</link>
      <description>Hi,&lt;BR /&gt;Is there any way we can set core affinity in driver code?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
      <pubDate>Tue, 18 Feb 2025 09:18:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2046200#M5921</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-02-18T09:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2046762#M5922</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;To set it in driver, please use&amp;nbsp;&lt;SPAN&gt;irq_set_affinity referring the drivers in kernel. For example,&amp;nbsp;drivers/perf/fsl_imx9_ddr_perf.c&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;	ret = irq_set_affinity(pmu-&amp;gt;irq, cpumask_of(pmu-&amp;gt;cpu));
	if (ret) {
		dev_err(pmu-&amp;gt;dev, "Failed to set interrupt affinity\n");
		goto ddr_perf_err;
	}&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 01:38:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2046762#M5922</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-02-19T01:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2047332#M5923</link>
      <description>Hi,&lt;BR /&gt;When we tried to use the first procedure for the below interrupt, we got an input/output error&lt;BR /&gt;204: 4820 0 gpio-mxc 12 Edge can3&lt;BR /&gt;&lt;BR /&gt;echo 2 &amp;gt; /proc/irq/204/smp_affinity&lt;BR /&gt;-sh: echo: write error: Input/output error&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
      <pubDate>Wed, 19 Feb 2025 13:04:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2047332#M5923</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-02-19T13:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2048649#M5924</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;If you want to assign irq to the second core, please try.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;echo 1 &amp;gt; /proc/irq/204/smp_affinity&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2025 01:23:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2048649#M5924</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-02-21T01:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2048747#M5925</link>
      <description>Hi,&lt;BR /&gt;Even with this, its the same error for this irq.&lt;BR /&gt;&lt;BR /&gt;204: 4820 0 gpio-mxc 12 Edge can3&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
      <pubDate>Fri, 21 Feb 2025 03:33:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2048747#M5925</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-02-21T03:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2049496#M5926</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;The default gpio-mxc driver doesn't support&amp;nbsp;affinity interfaces, you could refer below thread to add code in driver if you need.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/i-MX-Processors/i-MX7-IRQ-affinity-setting-for-GPIO-interrupts/m-p/760973/highlight/true" target="_blank"&gt;https://community.nxp.com/t5/i-MX-Processors/i-MX7-IRQ-affinity-setting-for-GPIO-interrupts/m-p/760973/highlight/true&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 00:59:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2049496#M5926</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-02-24T00:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2049896#M5927</link>
      <description>Hi,&lt;BR /&gt;Even by adding these driver changes, I am not able to change the affinity.&lt;BR /&gt;Regards,&lt;BR /&gt;ANkita</description>
      <pubDate>Mon, 24 Feb 2025 12:17:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2049896#M5927</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-02-24T12:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2050504#M5928</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;The&amp;nbsp;/proc/irq/xxx/smp_affinity can only work with those irqs binding to GICv3. For standard gpio driver, there is no such interfaces to handle&amp;nbsp;&lt;STRONG&gt;smp_affinity&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the gpio smp&amp;nbsp;affinity, the previous thread gave a special code in gpio driver to support&amp;nbsp;&lt;SPAN&gt;bind one gpio band irq to one cpu core, you can add log print to verify these code, but you can't check if this can work in rootfs as this is not official way to support&amp;nbsp;affinity feature in driver.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 05:33:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2050504#M5928</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-02-25T05:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2057510#M5929</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We have added the affinity related code in gpio-mxc driver for iMX8DXL with 5.15.52 BSP as below:&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;if (of_device_is_compatible(np, "fsl,imx21-gpio")) {&lt;BR /&gt;/*&lt;BR /&gt;* Setup one handler for all GPIO interrupts. Actually setting&lt;BR /&gt;* the handler is needed only once, but doing it for every port&lt;BR /&gt;* is more robust and easier.&lt;BR /&gt;*/&lt;BR /&gt;irq_set_chained_handler(port-&amp;gt;irq, mx2_gpio_irq_handler);&lt;BR /&gt;+ irq_set_affinity_hint(port-&amp;gt;irq, cpumask_of(2));&lt;BR /&gt;} else {&lt;BR /&gt;/* setup one handler for each entry */&lt;BR /&gt;irq_set_chained_handler_and_data(port-&amp;gt;irq,&lt;BR /&gt;mx3_gpio_irq_handler, port);&lt;BR /&gt;+ if (port-&amp;gt;irq_high &amp;gt; 0)&lt;BR /&gt;+ irq_set_affinity_hint(port-&amp;gt;irq, cpumask_of(2));&lt;BR /&gt;if (port-&amp;gt;irq_high &amp;gt; 0)&lt;BR /&gt;/* setup handler for GPIO 16 to 31 */&lt;BR /&gt;irq_set_chained_handler_and_data(port-&amp;gt;irq_high,&lt;BR /&gt;mx3_gpio_irq_handler,&lt;BR /&gt;port);&lt;BR /&gt;+ irq_set_affinity_hint(port-&amp;gt;irq_high, cpumask_of(2));&lt;BR /&gt;}&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;But when we do cat /proc/interrupts, we get the result as below, where the affinity is still in CPU 0&lt;BR /&gt;&lt;BR /&gt;root@imx8dxl-iwg46s:~# cat /proc/interrupts&lt;BR /&gt;CPU0 CPU1&lt;BR /&gt;9: 0 0 GICv3 25 Level vgic&lt;BR /&gt;11: 3291 3729 GICv3 30 Level arch_timer&lt;BR /&gt;12: 0 0 GICv3 27 Level kvm guest vtimer&lt;BR /&gt;14: 0 0 GICv3 23 Level arm-pmu&lt;BR /&gt;15: 0 0 GICv3 372 Level imx_mu_chan[3-0]&lt;BR /&gt;16: 0 0 GICv3 374 Level imx_mu_chan[3-0]&lt;BR /&gt;17: 0 0 GICv3 376 Level imx_mu_chan[3-0]&lt;BR /&gt;18: 0 0 GICv3 380 Level imx_mu_chan[3-0]&lt;BR /&gt;19: 0 0 GICv3 382 Level imx_mu_chan[3-0]&lt;BR /&gt;21: 0 0 GICv3 350 Level imx_mu_chan[3-0]&lt;BR /&gt;22: 0 0 GICv3 351 Level imx_mu_chan[3-0]&lt;BR /&gt;23: 0 0 GICv3 352 Level imx_mu_chan[3-0]&lt;BR /&gt;50: 537 0 GICv3 260 Level fsl-lpuart&lt;BR /&gt;51: 0 0 GICv3 261 Level fsl-lpuart&lt;BR /&gt;52: 0 0 GICv3 262 Level fsl-lpuart&lt;BR /&gt;53: 0 0 GICv3 263 Level fsl-lpuart&lt;BR /&gt;54: 0 0 GICv3 178 Level 5a880000.adc&lt;BR /&gt;55: 49 0 GICv3 257 Level&lt;BR /&gt;75: 0 0 GICv3 252 Level 5a020000.spi&lt;BR /&gt;76: 0 0 GICv3 253 Level 5a030000.spi&lt;BR /&gt;77: 0 0 GICv3 201 Level 5b0d0000.usb&lt;BR /&gt;78: 2716 0 GICv3 170 Level mmc0&lt;BR /&gt;79: 183 0 GICv3 172 Level mmc1&lt;BR /&gt;80: 0 0 GICv3 195 Level eth0&lt;BR /&gt;81: 0 0 GICv3 194 Level eth0&lt;BR /&gt;83: 0 0 GICv3 198 Level 5b0e0000.usb&lt;BR /&gt;84: 0 0 GICv3 103 Level imx8_ddr_perf_pmu&lt;BR /&gt;85: 0 0 GICv3 370 Level imx8_ddr_perf_pmu&lt;BR /&gt;94: 3065 0 GICv3 119 Level imx_mu_chan[0-0], imx_mu_chan[1-0], imx_mu_chan[3-3]&lt;BR /&gt;204: 1 0 gpio-mxc 12 Edge can3 --------------------------------------------------------&amp;gt; this is the one we want to change&lt;BR /&gt;212: 0 0 gpio-mxc 20 Edge wakeup-gpio&lt;BR /&gt;213: 0 0 gpio-mxc 21 Level pcf85363&lt;BR /&gt;214: 0 0 gpio-mxc 22 Level lsm6dsm&lt;BR /&gt;IPI0: 3224 4256 Rescheduling interrupts&lt;BR /&gt;IPI1: 224 339 Function call interrupts&lt;BR /&gt;IPI2: 0 0 CPU stop interrupts&lt;BR /&gt;IPI3: 0 0 CPU stop (for crash dump) interrupts&lt;BR /&gt;IPI4: 0 0 Timer broadcast interrupts&lt;BR /&gt;IPI5: 828 807 IRQ work interrupts&lt;BR /&gt;IPI6: 0 0 CPU wake-up interrupts&lt;BR /&gt;&lt;BR /&gt;So is there any change that needs to done with respect to 5.15 linux version?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
      <pubDate>Fri, 07 Mar 2025 05:21:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2057510#M5929</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-03-07T05:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059089#M5930</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;The second core is index 1, the&amp;nbsp;&lt;SPAN&gt;cpumask_of(2) is the third core. Please try to use&amp;nbsp;&lt;STRONG&gt;cpumask_of(1)&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 01:17:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059089#M5930</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-03-11T01:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059147#M5931</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We even tried cpumask_of(1), still no change, and also if we put a print statement below these lines, even those are not getting printed.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
      <pubDate>Tue, 11 Mar 2025 03:27:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059147#M5931</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-03-11T03:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059220#M5932</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I did same modification in driver.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is test based on 4 core i.MX EVK board, not DXL EVK. This gpio is used by PTN5110.&lt;/P&gt;
&lt;P&gt;163: 0 0 &lt;STRONG&gt;8&lt;/STRONG&gt; 0 gpio-mxc 19 Level 1-0050&lt;/P&gt;
&lt;P&gt;If i plugin USB, the irq handled number will increase.&lt;/P&gt;
&lt;P&gt;163: 0 0 &lt;STRONG&gt;18&lt;/STRONG&gt; 0 gpio-mxc 19 Level 1-0050&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another interrupt gpio about sd card also can be assigned to core3(index=2)&lt;/P&gt;
&lt;P&gt;88: 0 0 &lt;STRONG&gt;1&lt;/STRONG&gt; 0 gpio-mxc 12 Edge 30b50000.mmc cd&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 06:04:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059220#M5932</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-03-11T06:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059242#M5933</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;But in our case with cpumask_of(1), its still in Core 0:&lt;BR /&gt;210: 77 0 gpio-mxc 18 Edge can4&lt;BR /&gt;&lt;BR /&gt;Any idea as to how to fix this? Is there anything like SPI based interrupts are directed only to Core0?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
      <pubDate>Tue, 11 Mar 2025 06:41:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059242#M5933</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-03-11T06:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059258#M5934</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;Please share the device tree node and pinctrl about this flexcan&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 06:52:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059258#M5934</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-03-11T06:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059259#M5935</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;DTS node is as below:&lt;BR /&gt;&lt;BR /&gt;&amp;amp;lpspi2 {&lt;BR /&gt;pinctrl-names = "default";&lt;BR /&gt;pinctrl-0 = &amp;lt;&amp;amp;pinctrl_lpspi2&amp;gt;;&lt;BR /&gt;fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;&lt;BR /&gt;assigned-clock-rates = &amp;lt;80000000&amp;gt;;&lt;BR /&gt;cs-gpios = &amp;lt;&amp;amp;lsio_gpio4 22 GPIO_ACTIVE_HIGH&amp;gt;;&lt;BR /&gt;status = "okay";&lt;BR /&gt;&lt;BR /&gt;tcan4x5x0: tcan4x5x@0 {&lt;BR /&gt;compatible = "ti,tcan4x5x";&lt;BR /&gt;reg = &amp;lt;0&amp;gt;;&lt;BR /&gt;pinctrl-names = "default";&lt;BR /&gt;#address-cells = &amp;lt;1&amp;gt;;&lt;BR /&gt;#size-cells = &amp;lt;1&amp;gt;;&lt;BR /&gt;spi-max-frequency = &amp;lt;16000000&amp;gt;;&lt;BR /&gt;bosch,mram-cfg = &amp;lt;0x0 3 2 32 10 0 20 10&amp;gt;;&lt;BR /&gt;clocks = &amp;lt;&amp;amp;hclk&amp;gt;, &amp;lt;&amp;amp;cclk&amp;gt;;&lt;BR /&gt;clock-names = "hclk", "cclk";&lt;BR /&gt;interrupt-parent = &amp;lt;&amp;amp;lsio_gpio3&amp;gt;;&lt;BR /&gt;interrupts = &amp;lt;12 IRQ_TYPE_EDGE_FALLING&amp;gt;;&lt;BR /&gt;data-ready-gpios = &amp;lt;&amp;amp;lsio_gpio3 12 GPIO_ACTIVE_HIGH&amp;gt;;&lt;BR /&gt;reset-gpios= &amp;lt;&amp;amp;exp2 12 GPIO_ACTIVE_HIGH&amp;gt;;&lt;BR /&gt;iw-tcan-prop;&lt;BR /&gt;wakeup-source;&lt;BR /&gt;status = "okay";&lt;BR /&gt;&lt;BR /&gt;};&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;Pinctrl:&lt;BR /&gt;pinctrl_lpspi2: lpspi2grp {&lt;BR /&gt;fsl,pins = &amp;lt;&lt;BR /&gt;IMX8DXL_USDHC1_RESET_B_ADMA_SPI2_SCK 0x6000040&lt;BR /&gt;IMX8DXL_USDHC1_VSELECT_ADMA_SPI2_SDO 0x6000040&lt;BR /&gt;IMX8DXL_USDHC1_WP_ADMA_SPI2_SDI 0x6000040&lt;BR /&gt;IMX8DXL_USDHC1_CD_B_LSIO_GPIO4_IO22 0x6000040&lt;BR /&gt;IMX8DXL_QSPI0A_DATA3_LSIO_GPIO3_IO12 0xA4000021&lt;BR /&gt;&lt;BR /&gt;&amp;gt;;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2025 06:56:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059259#M5935</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-03-11T06:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059266#M5936</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Referring previous successful gpio case and Documentation/devicetree/bindings/net/can/tcan4x5x.txt, you can try below setting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tcan4x5x0: tcan4x5x@0 {
compatible = "ti,tcan4x5x";
reg = &amp;lt;0&amp;gt;;
pinctrl-names = "default";
#address-cells = &amp;lt;1&amp;gt;;
#size-cells = &amp;lt;1&amp;gt;;
spi-max-frequency = &amp;lt;16000000&amp;gt;;
bosch,mram-cfg = &amp;lt;0x0 3 2 32 10 0 20 10&amp;gt;;
clocks = &amp;lt;&amp;amp;hclk&amp;gt;, &amp;lt;&amp;amp;cclk&amp;gt;;
clock-names = "hclk", "cclk";
interrupt-parent = &amp;lt;&amp;amp;lsio_gpio3&amp;gt;;
interrupts = &amp;lt;12 IRQ_TYPE_LEVEL_LOW&amp;gt;;
reset-gpios= &amp;lt;&amp;amp;exp2 12 GPIO_ACTIVE_HIGH&amp;gt;;
iw-tcan-prop;
wakeup-source;
status = "okay";&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 07:08:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059266#M5936</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2025-03-11T07:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Setting core affinity</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059440#M5937</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We tried making it level-triggered but still it's in Core 0.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ankita</description>
      <pubDate>Tue, 11 Mar 2025 10:38:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Setting-core-affinity/m-p/2059440#M5937</guid>
      <dc:creator>ankita_hegde</dc:creator>
      <dc:date>2025-03-11T10:38:54Z</dc:date>
    </item>
  </channel>
</rss>

