<?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のトピックMX6q - Different between Analog ARM PLL control Register</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/MX6q-Different-between-Analog-ARM-PLL-control-Register/m-p/312016#M40825</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm using imx6q processor. Found that the following registers are identical in structure, but what is the different?&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM&amp;nbsp; (Addr: 0x020C8000)&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM_SET (Addr: 0x020C8004)&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM_CLR (Addr: 0x020C8008)&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM_TOG (Addr: 0x020C800C)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Apr 2014 16:18:51 GMT</pubDate>
    <dc:creator>anson</dc:creator>
    <dc:date>2014-04-07T16:18:51Z</dc:date>
    <item>
      <title>MX6q - Different between Analog ARM PLL control Register</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX6q-Different-between-Analog-ARM-PLL-control-Register/m-p/312016#M40825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm using imx6q processor. Found that the following registers are identical in structure, but what is the different?&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM&amp;nbsp; (Addr: 0x020C8000)&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM_SET (Addr: 0x020C8004)&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM_CLR (Addr: 0x020C8008)&lt;/P&gt;&lt;P&gt;CCM_ANALOG_PLL_ARM_TOG (Addr: 0x020C800C)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 16:18:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX6q-Different-between-Analog-ARM-PLL-control-Register/m-p/312016#M40825</guid>
      <dc:creator>anson</dc:creator>
      <dc:date>2014-04-07T16:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: MX6q - Different between Analog ARM PLL control Register</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX6q-Different-between-Analog-ARM-PLL-control-Register/m-p/312017#M40826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Anson&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The register offset of 0x0 is the basic register, you can read or write it. The offset of 0x4 is a set register, which means when you want to set some bits, you don't have to read it out, set the value and then write it into the register, for example, if you want to set bit 0~3 of this PLL register, you can just write 0x7 to 0x20c8004, if you use 0x20c8000 to do same thing, you have to read its value out, then do an "orr" with 0x7, then write it to 0x20c8000. The offset of 0x8 is a clear register, for example, writing a 0x7 to this register will clear bit 0~3. The offset of 0xc is a toggle register, writing 0x1 to this register will make bit 0 toggle.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 02:30:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX6q-Different-between-Analog-ARM-PLL-control-Register/m-p/312017#M40826</guid>
      <dc:creator>AnsonHuang</dc:creator>
      <dc:date>2014-04-08T02:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: MX6q - Different between Analog ARM PLL control Register</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX6q-Different-between-Analog-ARM-PLL-control-Register/m-p/312018#M40827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Three registers (set, clr, tog) approach is used to optimize bit manipulation.&lt;/P&gt;&lt;P&gt;In order to avoid read – modify – write cycles as separate (non-atomic)&lt;/P&gt;&lt;P&gt;operations (which may be occasionally interrupted), three registers for bit setting,&lt;/P&gt;&lt;P&gt;bit clearing and bit toggle are implemented : &lt;/P&gt;&lt;P&gt;&amp;nbsp; CCM_ANALOG_PLL_ARM&amp;nbsp; register has corresponding SET, CLR and TOG registers,&lt;/P&gt;&lt;P&gt;which provide atomic bit manipulations. As the name of the register implies, a value&lt;/P&gt;&lt;P&gt;written to a SET, CLR or TOG register effectively performs the implied operation, but only&lt;/P&gt;&lt;P&gt;bits specified as ‘1’ are modified. Bits specified as ‘0’ are not modified.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Yuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 02:39:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX6q-Different-between-Analog-ARM-PLL-control-Register/m-p/312018#M40827</guid>
      <dc:creator>Yuri</dc:creator>
      <dc:date>2014-04-08T02:39:16Z</dc:date>
    </item>
  </channel>
</rss>

