<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>2b6a7409 - thermal: intel: menlow: Get rid of this driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/thermal/intel/Makefile#2b6a7409</link>
        <description>thermal: intel: menlow: Get rid of this driverAccording to my information, there are no active users of this driver inthe field.Moreover, it does some really questionable things and gets in the way ofthermal core improvements, so drop it.Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;Acked-by: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/thermal/intel/Makefile</description>
        <pubDate>Wed, 26 Apr 2023 16:46:05 +0000</pubDate>
        <dc:creator>Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a3c1f066 - thermal/intel: Introduce Intel TCC library</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/thermal/intel/Makefile#a3c1f066</link>
        <description>thermal/intel: Introduce Intel TCC libraryThere are several different drivers that accesses the Intel TCC(thermal control circuitry) MSRs, and each of them has its ownimplementation for the same functionalities, e.g. getting the currenttemperature, getting the tj_max, and getting/setting the tj_max offset.Introduce a library to unify the code for Intel CPU TCC MSR access.At the same time, ensure the temperature is got based on the updatedtjmax value because tjmax can be changed at runtime for cases likethe Intel SST-PP (Intel Speed Select Technology - Performance Profile)level change.Signed-off-by: Zhang Rui &lt;rui.zhang@intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/drivers/thermal/intel/Makefile</description>
        <pubDate>Mon, 19 Dec 2022 15:46:15 +0000</pubDate>
        <dc:creator>Zhang Rui &lt;rui.zhang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1cb19cab - thermal: intel: hfi: Minimally initialize the Hardware Feedback Interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/thermal/intel/Makefile#1cb19cab</link>
        <description>thermal: intel: hfi: Minimally initialize the Hardware Feedback InterfaceThe Intel Hardware Feedback Interface provides guidance to the operatingsystem about the performance and energy efficiency capabilities of eachCPU in the system. Capabilities are numbers between 0 and 255 where ahigher number represents a higher capability. For each CPU, energyefficiency and performance are reported as separate capabilities.Hardware computes these capabilities based on the operating conditions ofthe system such as power and thermal limits. These capabilities are sharedwith the operating system in a table resident in memory. Each package inthe system has its own HFI instance. Every logical CPU in the package isrepresented in the table. More than one logical CPUs may be represented ina single table entry. When the hardware updates the table, it generates apackage-level thermal interrupt.The size and format of the HFI table depend on the supported features andcan only be determined at runtime. To minimally initialize the HFI, parseits features and allocate one instance per package of a data structure withthe necessary parameters to read and navigate a local copy (i.e., owned bythe driver) of individual HFI tables.A subsequent changeset will provide per-CPU initialization and interrupthandling.Reviewed-by: Len Brown &lt;len.brown@intel.com&gt;Co-developed by: Aubrey Li &lt;aubrey.li@linux.intel.com&gt;Signed-off-by: Aubrey Li &lt;aubrey.li@linux.intel.com&gt;Signed-off-by: Ricardo Neri &lt;ricardo.neri-calderon@linux.intel.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/drivers/thermal/intel/Makefile</description>
        <pubDate>Thu, 27 Jan 2022 19:34:50 +0000</pubDate>
        <dc:creator>Ricardo Neri &lt;ricardo.neri-calderon@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2010319b - thermal/drivers/intel: Move intel_menlow to thermal drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/thermal/intel/Makefile#2010319b</link>
        <description>thermal/drivers/intel: Move intel_menlow to thermal driversMoved drivers/platform/x86/intel_menlow.c to drivers/thermal/intel.Signed-off-by: Srinivas Pandruvada &lt;srinivas.pandruvada@linux.intel.com&gt;Acked-by: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;Acked-by: Zhang Rui &lt;rui.zhang@intel.com&gt;Link: https://lore.kernel.org/r/20210816035356.1955982-1-srinivas.pandruvada@linux.intel.comSigned-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/thermal/intel/Makefile</description>
        <pubDate>Mon, 16 Aug 2021 03:53:56 +0000</pubDate>
        <dc:creator>Srinivas Pandruvada &lt;srinivas.pandruvada@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2eb87d75 - thermal/drivers/intel: Introduce tcc cooling driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/thermal/intel/Makefile#2eb87d75</link>
        <description>thermal/drivers/intel: Introduce tcc cooling driverOn Intel processors, the core frequency can be reduced below OS request,when the current temperature reaches the TCC (Thermal Control Circuit)activation temperature.The default TCC activation temperature is specified byMSR_IA32_TEMPERATURE_TARGET. However, it can be adjusted by specifying anoffset in degrees C, using the TCC Offset bits in the same MSR register.This patch introduces a cooling devices driver that utilizes the TCCOffset feature. The bigger the current cooling state is, the lower theeffective TCC activation temperature is, so that the processors can bethrottled earlier before system critical overheats.Note that, on different platforms, the behavior might be different onhow fast the setting takes effect, and how much the CPU frequency isreduced.This patch has been tested on a KabyLake mobile platform from me, and alsoon a CometLake platform from Doug.Signed-off-by: Zhang Rui &lt;rui.zhang@intel.com&gt;Tested by: Doug Smythies &lt;dsmythies@telus.net&gt;Signed-off-by: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;Link: https://lore.kernel.org/r/20210412125901.12549-1-rui.zhang@intel.com

            List of files:
            /linux-6.15/drivers/thermal/intel/Makefile</description>
        <pubDate>Mon, 12 Apr 2021 12:59:01 +0000</pubDate>
        <dc:creator>Zhang Rui &lt;rui.zhang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9223d0dc - thermal: Move therm_throt there from x86/mce</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/thermal/intel/Makefile#9223d0dc</link>
        <description>thermal: Move therm_throt there from x86/mceThis functionality has nothing to do with MCE, move it to the thermalframework and untangle it from MCE.Requested-by: Peter Zijlstra &lt;peterz@infradead.org&gt;Signed-off-by: Borislav Petkov &lt;bp@suse.de&gt;Reviewed-by: Srinivas Pandruvada &lt;srinivas.pandruvada@linux.intel.com&gt;Tested-by: Srinivas Pandruvada &lt;srinivas.pandruvada@linux.intel.com&gt;Link: https://lkml.kernel.org/r/20210202121003.GD18075@zn.tnic

            List of files:
            /linux-6.15/drivers/thermal/intel/Makefile</description>
        <pubDate>Thu, 07 Jan 2021 12:29:05 +0000</pubDate>
        <dc:creator>Borislav Petkov &lt;bp@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>3e8c4d31 - drivers: thermal: Move various drivers for intel platforms into a subdir</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/thermal/intel/Makefile#3e8c4d31</link>
        <description>drivers: thermal: Move various drivers for intel platforms into a subdirThis cleans up the directory a bit, now that we have several otherplatforms using platform-specific sub-directories. Compile-tested withARCH=x86 defconfig and the drivers explicitly enabled with menuconfig.Signed-off-by: Amit Kucheria &lt;amit.kucheria@linaro.org&gt;Acked-by: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;Signed-off-by: Zhang Rui &lt;rui.zhang@intel.com&gt;

            List of files:
            /linux-6.15/drivers/thermal/intel/Makefile</description>
        <pubDate>Fri, 07 Dec 2018 06:55:26 +0000</pubDate>
        <dc:creator>Amit Kucheria &lt;amit.kucheria@linaro.org&gt;</dc:creator>
    </item>
</channel>
</rss>
