<?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: How to enable VGA support? in GPU Compute Software</title>
    <link>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1622119#M1535</link>
    <description>&lt;P&gt;I think I found a work around and I am finally able to use VGA, well at least more or less. Here is my solution:&lt;/P&gt;&lt;P&gt;The Valleyview graphics circuit has&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;a register called&amp;nbsp;"DPLL A control register" and&lt;/LI&gt;&lt;LI&gt;a register called "DPLL B control register".&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Both registers have a field called "VGA mode disable" (bit 2^28). Normally one would set the value in this field to 0 to activate the option, that the clock generator speed depends on the value set in the VGA configuration register. However, the graphic circuit ignores this value and never uses the value from the VGA configuration register. So switching between 25.175 MHz and 28.322 MHz via VGA is not possible. The graphics circuit always reads the speed from the DPLL configuration registers.&lt;/P&gt;&lt;P&gt;The next problem is, that the DPLL doesn't seem to have the following registers:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;"VGA 0 divisor",&lt;/LI&gt;&lt;LI&gt;"VGA 1 divisor" and&lt;/LI&gt;&lt;LI&gt;"VGA post divisor values"&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;These missing registers are normally used to define a set of values which should be used instead of the DPLL configuration registers. So instead of reading from the DPLL configuration registers the graphics circuit normally&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;either reads "VGA 0 divisor" + "VGA post divisor values" to generate 25.175 MHz&lt;/LI&gt;&lt;LI&gt;or it reads "VGA 1 divisor" + "VGA post divisor values" to generate 28.322 MHz.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Since these registers seem to be missing this is another reason why&amp;nbsp;switching between 25.175 MHz and 28.322 MHz via VGA is not possible.&lt;/P&gt;&lt;P&gt;To solve this problem the only solution I have found so far is to set the clock generator speed not by using the graphics standard "video graphics array" but rather the graphics standard "generation 7.0 low cost". With other words: Writing to the DPLL configuration registers via the side band interface. The rest of the display mode can be set with the VGA-configuration-registers. So 16 color modes and below become possible with this Frankenstein-configuration.&lt;/P&gt;&lt;P&gt;It's a bug work-around but I haven't found anything better so far.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Aug 2024 12:37:57 GMT</pubDate>
    <dc:creator>OTS</dc:creator>
    <dc:date>2024-08-09T12:37:57Z</dc:date>
    <item>
      <title>How to enable VGA support?</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1511389#M983</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I'd like to enable VGA support on graphics circuits from Intel but fail to do so.&lt;/P&gt;&lt;P&gt;First I set up a display mode using a generation x graphics standard:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;clock generator speed = 152,857,142 Hz&lt;/LI&gt;&lt;LI&gt;image refreshing rate = 65 Hz&lt;/LI&gt;&lt;LI&gt;x.input drawing area size = 1,920 pixels&lt;/LI&gt;&lt;LI&gt;y.input drawing area size = 1,200 lines&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So far, this works.&lt;/P&gt;&lt;P&gt;Then I'd like to disable generation x support (if necessary) and enable VGA support:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;# disable output connector&lt;/STRONG&gt;&lt;BR /&gt;digital display port B control["digital display port B enable"] = false&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# disable non-VGA plane&lt;/STRONG&gt;&lt;BR /&gt;display A plane control["display plane A enable"] = false&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# disable timing control via generation x and enable timing control via VGA&lt;/STRONG&gt;&lt;BR /&gt;VGA display plane control["VGA display disable"] = false&lt;BR /&gt;VGA display plane control["VGA centering enable"] = 00|b&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# disable image pipeline&lt;/STRONG&gt;&lt;BR /&gt;pipe A configuration["pipe A enable"] = false&lt;BR /&gt;wait until pipe A configuration["pipe state"] == false&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# disable clock generator (digital phase-locked loop)&lt;/STRONG&gt;&lt;BR /&gt;DPLL A control["DPLL A VCO enable"] = false&lt;BR /&gt;DPLL A control["DPLL A external clock buffer enable"] = false&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# disable clock generator control via generation x and enable clock generator control via VGA&lt;/STRONG&gt;&lt;BR /&gt;DPLL A control["VGA mode disable"] = false&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# enable clock generator&lt;/STRONG&gt;&lt;BR /&gt;DPLL A control["DPLL A VCO enable"] = true&lt;BR /&gt;DPLL A control["DPLL A external clock buffer enable"] = true&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# enable image pipeline&lt;/STRONG&gt;&lt;BR /&gt;pipe A configuration["pipe A enable"] = true&lt;BR /&gt;wait until pipe A configuration["pipe state"] == true&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;# enable output connector&lt;/STRONG&gt;&lt;BR /&gt;digital display port B control["digital display port B enable"] = true&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Now I would expect, that the clock generator speed changes to one of the VGA clock generator speeds:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;12,587,500|d Hz (25 MHz / 2)&lt;/LI&gt;&lt;LI&gt;14,161,000|d Hz (28 MHz / 2)&lt;/LI&gt;&lt;LI&gt;25,175,000|d Hz&lt;/LI&gt;&lt;LI&gt;28,322,000|d Hz&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;But it doesn't. My oscilloscope says, that the speed remains at 153,374,233 Hz.&lt;/P&gt;&lt;P&gt;Does someone know the correct sequence to activate VGA support?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Aug 2023 11:09:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1511389#M983</guid>
      <dc:creator>OTS</dc:creator>
      <dc:date>2023-08-05T11:09:34Z</dc:date>
    </item>
    <item>
      <title>Re:How to enable VGA support?</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1511889#M984</link>
      <description>&lt;P&gt;Hello&amp;nbsp;OTS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for posting on the Intel️® communities.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We will move your question to the correct sub-forum, the team in charge will get back to you soon.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hugo O.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Aug 2023 22:31:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1511889#M984</guid>
      <dc:creator>Hugo_Intel</dc:creator>
      <dc:date>2023-08-07T22:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable VGA support?</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1516286#M1011</link>
      <description>&lt;P&gt;I am still interested, if anyone cares.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 00:22:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1516286#M1011</guid>
      <dc:creator>OTS</dc:creator>
      <dc:date>2023-08-22T00:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to enable VGA support?</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1622119#M1535</link>
      <description>&lt;P&gt;I think I found a work around and I am finally able to use VGA, well at least more or less. Here is my solution:&lt;/P&gt;&lt;P&gt;The Valleyview graphics circuit has&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;a register called&amp;nbsp;"DPLL A control register" and&lt;/LI&gt;&lt;LI&gt;a register called "DPLL B control register".&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Both registers have a field called "VGA mode disable" (bit 2^28). Normally one would set the value in this field to 0 to activate the option, that the clock generator speed depends on the value set in the VGA configuration register. However, the graphic circuit ignores this value and never uses the value from the VGA configuration register. So switching between 25.175 MHz and 28.322 MHz via VGA is not possible. The graphics circuit always reads the speed from the DPLL configuration registers.&lt;/P&gt;&lt;P&gt;The next problem is, that the DPLL doesn't seem to have the following registers:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;"VGA 0 divisor",&lt;/LI&gt;&lt;LI&gt;"VGA 1 divisor" and&lt;/LI&gt;&lt;LI&gt;"VGA post divisor values"&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;These missing registers are normally used to define a set of values which should be used instead of the DPLL configuration registers. So instead of reading from the DPLL configuration registers the graphics circuit normally&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;either reads "VGA 0 divisor" + "VGA post divisor values" to generate 25.175 MHz&lt;/LI&gt;&lt;LI&gt;or it reads "VGA 1 divisor" + "VGA post divisor values" to generate 28.322 MHz.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Since these registers seem to be missing this is another reason why&amp;nbsp;switching between 25.175 MHz and 28.322 MHz via VGA is not possible.&lt;/P&gt;&lt;P&gt;To solve this problem the only solution I have found so far is to set the clock generator speed not by using the graphics standard "video graphics array" but rather the graphics standard "generation 7.0 low cost". With other words: Writing to the DPLL configuration registers via the side band interface. The rest of the display mode can be set with the VGA-configuration-registers. So 16 color modes and below become possible with this Frankenstein-configuration.&lt;/P&gt;&lt;P&gt;It's a bug work-around but I haven't found anything better so far.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 12:37:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/How-to-enable-VGA-support/m-p/1622119#M1535</guid>
      <dc:creator>OTS</dc:creator>
      <dc:date>2024-08-09T12:37:57Z</dc:date>
    </item>
  </channel>
</rss>

