<?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:CPUID L2 param is confilict btw two cpuid = 0x4 with 0x80000006 in Mobile and Desktop Processors</title>
    <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1490131#M63348</link>
    <description>&lt;P&gt;Hello, &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/292556"&gt;@LisaJohn&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are checking this thread and we would like to know if you were able to review our previous post. If you need further assistance, please do not hesitate to contact us back.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jocelyn M.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 25 May 2023 21:21:33 GMT</pubDate>
    <dc:creator>Jocelyn_Intel</dc:creator>
    <dc:date>2023-05-25T21:21:33Z</dc:date>
    <item>
      <title>CPUID L2 param is confilict btw two cpuid = 0x4 with 0x80000006</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1487336#M63217</link>
      <description>&lt;P&gt;but why? I am also confusing about this.&lt;BR /&gt;Here are my src code.&lt;BR /&gt;&lt;BR /&gt;// &lt;A href="https://www.intel.cn/content/www/cn/zh/support/articles/000057727/processors.html" target="_blank" rel="noopener"&gt;processor&lt;/A&gt;&lt;BR /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;BR /&gt;#include &amp;lt;stdint.h&amp;gt;&lt;BR /&gt;#include&amp;lt;string.h&amp;gt;&lt;BR /&gt;// intel support - &lt;A href="https://supporttickets.intel.com/s/" target="_blank" rel="noopener"&gt;support&lt;/A&gt;&lt;BR /&gt;void cpuid(int code, int level, unsigned int *a, unsigned int *b, unsigned int *c, unsigned int *d) {&lt;BR /&gt;asm volatile("cpuid"&lt;BR /&gt;: "=a"(*a), "=b"(*b), "=c"(*c), "=d"(*d)&lt;BR /&gt;: "a"(code), "c"(level));&lt;BR /&gt;}&lt;BR /&gt;// Get-WmiObject -Class Win32_CacheMemory | Select-Object -Property *&lt;BR /&gt;// Get-WmiObject -Class Win32_Processor&lt;BR /&gt;// wmic cpu get L3CacheSize&lt;BR /&gt;// wmic cpu get Name, Family, ProcessorId, Model, Stepping&lt;/P&gt;&lt;P&gt;int main() {&lt;BR /&gt;unsigned int brand_string[13];&lt;BR /&gt;uint32_t eax, ebx, ecx, edx;&lt;BR /&gt;int k = 0;&lt;/P&gt;&lt;P&gt;cpuid(0x80000000, 0, &amp;amp;eax,&amp;amp;ebx,&amp;amp;ecx,&amp;amp;edx);&lt;/P&gt;&lt;P&gt;// get cpu max functionId&lt;BR /&gt;if (eax &amp;lt; 0x80000004) {&lt;BR /&gt;printf("the cpu is not support\n");&lt;/P&gt;&lt;P&gt;return 0;&lt;BR /&gt;}&lt;BR /&gt;// ref &lt;A href="https://software.intel.com/content/www/us/en/develop/articles/intel-sdm.html" target="_blank" rel="noopener"&gt;intel cpuid&lt;/A&gt;&lt;BR /&gt;cpuid(0x04, 1, &amp;amp;eax, &amp;amp;ebx, &amp;amp;ecx, &amp;amp;edx);&lt;BR /&gt;printf("L1 Cache EAX:%08X EBX:%08X ECX:%08X EDX: %08X\n", eax, ebx, ecx, edx);&lt;BR /&gt;cpuid(0x04, 2, &amp;amp;eax, &amp;amp;ebx, &amp;amp;ecx, &amp;amp;edx);&lt;BR /&gt;printf("L2 Cache EAX:%08X EBX:%08X ECX:%08X EDX: %08X\n", eax, ebx, ecx, edx);&lt;BR /&gt;cpuid(0x04, 3, &amp;amp;eax, &amp;amp;ebx, &amp;amp;ecx, &amp;amp;edx);&lt;BR /&gt;printf("L3 Cache EAX:%08X EBX:%08X ECX:%08X EDX: %08X\n", eax, ebx, ecx, edx);&lt;BR /&gt;cpuid(0x80000006, 0, &amp;amp;eax, &amp;amp;ebx, &amp;amp;ecx, &amp;amp;edx);&lt;BR /&gt;printf("80000006 EAX:%08X EBX:%08X ECX:%08X EDX: %08X\n", eax, ebx, ecx, edx);&lt;/P&gt;&lt;P&gt;return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;And my question is why " 0x04 L2 EBX[31:22] = 4ways but 0x80000006 ECX[15:12] = 8ways"&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2023 08:22:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1487336#M63217</guid>
      <dc:creator>LisaJohn</dc:creator>
      <dc:date>2023-05-18T08:22:45Z</dc:date>
    </item>
    <item>
      <title>Re:CPUID L2 param is confilict btw two cpuid = 0x4 with 0x80000006</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1487927#M63241</link>
      <description>&lt;P&gt;Hello, &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/292556"&gt;@LisaJohn&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank&amp;nbsp;you&amp;nbsp;for&amp;nbsp;posting&amp;nbsp;on&amp;nbsp;the&amp;nbsp;Intel®&amp;nbsp;communities.&amp;nbsp;I will gladly assist you here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please provide us with more details about what is your issue exactly.&amp;nbsp;Where does this output come from?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How does this affect your system? What are you trying to do or perform?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, please provide us with the Processor model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jocelyn M.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 19 May 2023 19:35:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1487927#M63241</guid>
      <dc:creator>Jocelyn_Intel</dc:creator>
      <dc:date>2023-05-19T19:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: CPUID L2 param is confilict btw two cpuid = 0x4 with 0x80000006</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1488000#M63244</link>
      <description>&lt;P&gt;Please provide us with the full output that you are seeing.&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 23:43:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1488000#M63244</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2023-05-19T23:43:39Z</dc:date>
    </item>
    <item>
      <title>Re:CPUID L2 param is confilict btw two cpuid = 0x4 with 0x80000006</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1490131#M63348</link>
      <description>&lt;P&gt;Hello, &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/292556"&gt;@LisaJohn&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are checking this thread and we would like to know if you were able to review our previous post. If you need further assistance, please do not hesitate to contact us back.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jocelyn M.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 May 2023 21:21:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1490131#M63348</guid>
      <dc:creator>Jocelyn_Intel</dc:creator>
      <dc:date>2023-05-25T21:21:33Z</dc:date>
    </item>
    <item>
      <title>Re:CPUID L2 param is confilict btw two cpuid = 0x4 with 0x80000006</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1490987#M63416</link>
      <description>&lt;P&gt;Hello, &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/292556"&gt;@LisaJohn&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have not heard back from you, so we will proceed to close this thread now. If you need any additional information, please submit a new question as this thread will no longer be monitored.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jocelyn M.&amp;nbsp;&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, 29 May 2023 20:54:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/CPUID-L2-param-is-confilict-btw-two-cpuid-0x4-with-0x80000006/m-p/1490987#M63416</guid>
      <dc:creator>Jocelyn_Intel</dc:creator>
      <dc:date>2023-05-29T20:54:34Z</dc:date>
    </item>
  </channel>
</rss>

