<?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: IPUv3 Dump Reg in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231639#M17515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you could share exactly what you are trying to achieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are lots of debug printk's throught the IPU driver that you can use for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Jan 2013 00:35:41 GMT</pubDate>
    <dc:creator>fabio_estevam</dc:creator>
    <dc:date>2013-01-25T00:35:41Z</dc:date>
    <item>
      <title>IPUv3 Dump Reg</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231638#M17514</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;&lt;/P&gt;&lt;P&gt;i have a sabre-lite board which has imx6q. i am using ipu to play video on tv (via tv encoder)&lt;/P&gt;&lt;P&gt;but something problem on video about colors, vibration etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, i decided to dump ipu registers with kernel module programing, shuch as dp or di.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;when i write that code, on prink, its hanging&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#include &amp;lt;asm/io.h&amp;gt;&lt;/P&gt;&lt;P&gt;#include &amp;lt;linux/module.h&amp;gt;&lt;/P&gt;&lt;P&gt;#include &amp;lt;mach/hardware.h&amp;gt;&lt;/P&gt;&lt;P&gt;MODULE_LICENSE("GPL v2");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static int __init g_init(void)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; volatile u32 *ipu_base = ioremap(MX6Q_IPU1_ARB_BASE_ADDR , 32);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; printk(KERN_ERR "IPU_BASE= %08x\n", *ipu_base);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; iounmap(ipu_base);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;// #define MX6Q_IPU1_ARB_BASE_ADDR 0x02400000 declerated in&amp;nbsp; "\arch\arm\plat-mxc\include\mach|mx6.h"&lt;/P&gt;&lt;P&gt;static void __exit g_exit(void)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; printk(KERN_ERR "exit from module...\n");&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module_init(g_init);&lt;/P&gt;&lt;P&gt;module_exit(g_exit);&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 08:14:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231638#M17514</guid>
      <dc:creator>cagrisma</dc:creator>
      <dc:date>2013-01-21T08:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: IPUv3 Dump Reg</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231639#M17515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you could share exactly what you are trying to achieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are lots of debug printk's throught the IPU driver that you can use for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2013 00:35:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231639#M17515</guid>
      <dc:creator>fabio_estevam</dc:creator>
      <dc:date>2013-01-25T00:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: IPUv3 Dump Reg</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231640#M17516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On tv that we connect via tv encoder, the video's color confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, i just wanna see the IPU Registers to see how its configured. To understand its configure RGB or YUV, or anything else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2013 10:20:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231640#M17516</guid>
      <dc:creator>cagrisma</dc:creator>
      <dc:date>2013-01-25T10:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: IPUv3 Dump Reg</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231641#M17517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using the HDMI output of mx6qsabrelite? Please look carefully at the BSP Release Notes where you can find the correct kernel command line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 12:42:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IPUv3-Dump-Reg/m-p/231641#M17517</guid>
      <dc:creator>fabio_estevam</dc:creator>
      <dc:date>2013-02-06T12:42:56Z</dc:date>
    </item>
  </channel>
</rss>

