<?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のトピックi.MX6ULL CPU Overheating and System Reboot Issue</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1934790#M227398</link>
    <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;We have observed that when the CPU core temperature reaches 100℃, our Linux-based system initiates a shutdown sequence followed by an automatic reboot. This results in a repetitive reboot cycle which is highly undesirable for our application.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Could you please provide any guidance or solutions to address this issue? Specifically, we would like to know if there are any recommended configurations or patches that can prevent the system from rebooting under these thermal conditions.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 19 Aug 2024 05:52:48 GMT</pubDate>
    <dc:creator>mythfish</dc:creator>
    <dc:date>2024-08-19T05:52:48Z</dc:date>
    <item>
      <title>i.MX6ULL CPU Overheating and System Reboot Issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1934790#M227398</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;We have observed that when the CPU core temperature reaches 100℃, our Linux-based system initiates a shutdown sequence followed by an automatic reboot. This results in a repetitive reboot cycle which is highly undesirable for our application.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Could you please provide any guidance or solutions to address this issue? Specifically, we would like to know if there are any recommended configurations or patches that can prevent the system from rebooting under these thermal conditions.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Aug 2024 05:52:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1934790#M227398</guid>
      <dc:creator>mythfish</dc:creator>
      <dc:date>2024-08-19T05:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: i.MX6ULL CPU Overheating and System Reboot Issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1936844#M227499</link>
      <description>&lt;P&gt;what BSP version do you use? I need check how your kernel settings is&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 02:07:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1936844#M227499</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2024-08-21T02:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: i.MX6ULL CPU Overheating and System Reboot Issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1936928#M227508</link>
      <description>&lt;P&gt;Below is the temp grade setting code.&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/39586"&gt;@joanxie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;static void imx_init_temp_grade(struct platform_device *pdev, u32 ocotp_mem0)
{
	struct imx_thermal_data *data = platform_get_drvdata(pdev);

	/* The maximum die temp is specified by the Temperature Grade */
	switch ((ocotp_mem0 &amp;gt;&amp;gt; 6) &amp;amp; 0x3) {
	case 0: /* Commercial (0 to 95 °C) */
		data-&amp;gt;temp_grade = "Commercial";
		data-&amp;gt;temp_max = 95000;
		break;
	case 1: /* Extended Commercial (-20 °C to 105 °C) */
		data-&amp;gt;temp_grade = "Extended Commercial";
		data-&amp;gt;temp_max = 105000;
		break;
	case 2: /* Industrial (-40 °C to 105 °C) */
		data-&amp;gt;temp_grade = "Industrial";
		data-&amp;gt;temp_max = 105000;
		break;
	case 3: /* Automotive (-40 °C to 125 °C) */
		data-&amp;gt;temp_grade = "Automotive";
		data-&amp;gt;temp_max = 125000;
		break;
	}

	/*
	 * Set the critical trip point at 5 °C under max
	 * Set the passive trip point at 10 °C under max (changeable via sysfs)
	 */
	data-&amp;gt;temp_critical = data-&amp;gt;temp_max - (1000 * 5);
	data-&amp;gt;temp_passive = data-&amp;gt;temp_max - (1000 * 10);
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 03:42:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1936928#M227508</guid>
      <dc:creator>mythfish</dc:creator>
      <dc:date>2024-08-21T03:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: i.MX6ULL CPU Overheating and System Reboot Issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1940764#M227694</link>
      <description>&lt;P&gt;since you find the driver, you can change the max temperature for avoiding the rebooting, but I don't suggest you to do this, if you set higher temperature as data sheet mentions, maybe the higher temperature would destroy your board&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 01:01:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/i-MX6ULL-CPU-Overheating-and-System-Reboot-Issue/m-p/1940764#M227694</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2024-08-27T01:01:12Z</dc:date>
    </item>
  </channel>
</rss>

