<?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: ls1046a how to use IRQ0~11 in kernel? in Layerscape</title>
    <link>https://community.nxp.com/t5/Layerscape/ls1046a-how-to-use-IRQ0-11-in-kernel/m-p/1419532#M10129</link>
    <description>&lt;P&gt;Use also the "cat /proc/interrupts" command.&lt;/P&gt;
&lt;P&gt;See the following document:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.thegeekstuff.com/2014/01/linux-interrupts/" target="_blank"&gt;https://www.thegeekstuff.com/2014/01/linux-interrupts/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 25 Feb 2022 05:35:37 GMT</pubDate>
    <dc:creator>Pavel</dc:creator>
    <dc:date>2022-02-25T05:35:37Z</dc:date>
    <item>
      <title>ls1046a how to use IRQ0~11 in kernel?</title>
      <link>https://community.nxp.com/t5/Layerscape/ls1046a-how-to-use-IRQ0-11-in-kernel/m-p/1415845#M10076</link>
      <description>&lt;P&gt;&lt;STRONG&gt;RCW&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rainight_0-1645169341242.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/171026i3FF026782B7BED2B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rainight_0-1645169341242.png" alt="Rainight_0-1645169341242.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reference Mamnul&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rainight_1-1645169422937.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/171027iCBAB2856A083243E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rainight_1-1645169422937.png" alt="Rainight_1-1645169422937.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DTS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rainight_2-1645169597010.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/171028iC50BEDF90016004C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rainight_2-1645169597010.png" alt="Rainight_2-1645169597010.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I want to known How to&amp;nbsp;use IRQ0~11 in kernel module independly without &lt;FONT color="#FF6600"&gt;"of function"&lt;/FONT&gt;?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and I use follwed code , but all failed。&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;        irq = 167;
        //irq = 167 - 32;
        //irq = 3;
        //no = irq_create_mapping(NULL, irq);
        irq_set_irq_type(irq , IRQ_TYPE_LEVEL_LOW);
        ret = request_irq(irq, irq_data_handle, IRQF_SHARED, "irqdata", &amp;amp;self);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Feb 2022 07:40:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/ls1046a-how-to-use-IRQ0-11-in-kernel/m-p/1415845#M10076</guid>
      <dc:creator>Rainight</dc:creator>
      <dc:date>2022-02-18T07:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: ls1046a how to use IRQ0~11 in kernel?</title>
      <link>https://community.nxp.com/t5/Layerscape/ls1046a-how-to-use-IRQ0-11-in-kernel/m-p/1419527#M10128</link>
      <description>&lt;P&gt;There is a lot of information about IRQ using under Linux.&lt;/P&gt;
&lt;P&gt;For example see the following pages:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.kernel.org/doc/html/latest/core-api/irq/concepts.html#:~:text=An%20IRQ%20is%20an%20interrupt,about%20a%20hardware%20interrupt%20source" target="_blank"&gt;https://www.kernel.org/doc/html/latest/core-api/irq/concepts.html#:~:text=An%20IRQ%20is%20an%20interrupt,about%20a%20hardware%20interrupt%20source&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.kernel.org/doc/html/v4.12/core-api/genericirq.html" target="_blank"&gt;https://www.kernel.org/doc/html/v4.12/core-api/genericirq.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.oreilly.com/library/view/understanding-the-linux/0596005652/ch04s06.html" target="_blank"&gt;https://www.oreilly.com/library/view/understanding-the-linux/0596005652/ch04s06.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/14082048/startup-code-for-linux-irq-interrupt-hander-for-arm" target="_blank"&gt;https://stackoverflow.com/questions/14082048/startup-code-for-linux-irq-interrupt-hander-for-arm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://venkateshabbarapu.blogspot.com/2012/09/interrupt-handling-in-arm.html" target="_blank"&gt;http://venkateshabbarapu.blogspot.com/2012/09/interrupt-handling-in-arm.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 05:30:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/ls1046a-how-to-use-IRQ0-11-in-kernel/m-p/1419527#M10128</guid>
      <dc:creator>Pavel</dc:creator>
      <dc:date>2022-02-25T05:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: ls1046a how to use IRQ0~11 in kernel?</title>
      <link>https://community.nxp.com/t5/Layerscape/ls1046a-how-to-use-IRQ0-11-in-kernel/m-p/1419532#M10129</link>
      <description>&lt;P&gt;Use also the "cat /proc/interrupts" command.&lt;/P&gt;
&lt;P&gt;See the following document:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.thegeekstuff.com/2014/01/linux-interrupts/" target="_blank"&gt;https://www.thegeekstuff.com/2014/01/linux-interrupts/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 05:35:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/ls1046a-how-to-use-IRQ0-11-in-kernel/m-p/1419532#M10129</guid>
      <dc:creator>Pavel</dc:creator>
      <dc:date>2022-02-25T05:35:37Z</dc:date>
    </item>
  </channel>
</rss>

