<?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>7a7a1cac - arm64: FFH: Move ACPI specific code into drivers/acpi/arm64/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#7a7a1cac</link>
        <description>arm64: FFH: Move ACPI specific code into drivers/acpi/arm64/The ACPI FFH Opregion code can be moved out of arm64 arch code asit just uses SMCCC. Move all the ACPI FFH Opregion code intodrivers/acpi/arm64/ffh.cSigned-off-by: Sudeep Holla &lt;sudeep.holla@arm.com&gt;Acked-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;Acked-by: Hanjun Guo &lt;guohanjun@huawei.com&gt;Link: https://lore.kernel.org/r/20240605131458.3341095-4-sudeep.holla@arm.comSigned-off-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Wed, 05 Jun 2024 13:14:58 +0000</pubDate>
        <dc:creator>Sudeep Holla &lt;sudeep.holla@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>99e7a8ad - arm64: cpuidle: Move ACPI specific code into drivers/acpi/arm64/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#99e7a8ad</link>
        <description>arm64: cpuidle: Move ACPI specific code into drivers/acpi/arm64/The ACPI cpuidle LPI FFH code can be moved out of arm64 arch code asit just uses SMCCC. Move all the ACPI cpuidle LPI FFH code intodrivers/acpi/arm64/cpuidle.cSigned-off-by: Sudeep Holla &lt;sudeep.holla@arm.com&gt;Acked-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;Acked-by: Hanjun Guo &lt;guohanjun@huawei.com&gt;Link: https://lore.kernel.org/r/20240605131458.3341095-3-sudeep.holla@arm.comSigned-off-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Wed, 05 Jun 2024 13:14:57 +0000</pubDate>
        <dc:creator>Sudeep Holla &lt;sudeep.holla@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>f8c6c927 - ACPI: arm64: Sort entries alphabetically</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#f8c6c927</link>
        <description>ACPI: arm64: Sort entries alphabeticallySort the entries in the Makefile alphabetically.Signed-off-by: Sudeep Holla &lt;sudeep.holla@arm.com&gt;Acked-by: Hanjun Guo &lt;guohanjun@huawei.com&gt;Link: https://lore.kernel.org/r/20240605131458.3341095-2-sudeep.holla@arm.comSigned-off-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Wed, 05 Jun 2024 13:14:56 +0000</pubDate>
        <dc:creator>Sudeep Holla &lt;sudeep.holla@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>310293a2 - ACPI: processor: reduce CPUFREQ thermal reduction pctg for Tegra241</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#310293a2</link>
        <description>ACPI: processor: reduce CPUFREQ thermal reduction pctg for Tegra241Current implementation of processor_thermal performs software throttlingin fixed steps of &quot;20%&quot; which can be too coarse for some platforms.We observed some performance gain after reducing the throttle percentage.Change the CPUFREQ thermal reduction percentage and maximum thermal stepsto be configurable. Also, update the default values of both for NvidiaTegra241 (Grace) SoC. The thermal reduction percentage is reduced to &quot;5%&quot;and accordingly the maximum number of thermal steps are increased as theyare derived from the reduction percentage.Signed-off-by: Srikar Srimath Tirumala &lt;srikars@nvidia.com&gt;Co-developed-by: Sumit Gupta &lt;sumitg@nvidia.com&gt;Signed-off-by: Sumit Gupta &lt;sumitg@nvidia.com&gt;Acked-by: Sudeep Holla &lt;sudeep.holla@arm.com&gt;Acked-by: Hanjun Guo &lt;guohanjun@huawei.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Thu, 23 Nov 2023 12:14:33 +0000</pubDate>
        <dc:creator>Srikar Srimath Tirumala &lt;srikars@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>fc001b36 - ACPI: Move AMBA bus scan handling into arm64 specific directory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#fc001b36</link>
        <description>ACPI: Move AMBA bus scan handling into arm64 specific directoryCommit fcea0ccf4fd7 (&quot;ACPI: bus: Consolidate all arm specificinitialisation into acpi_arm_init()&quot;) moved all of the ARM-specificinitialization into acpi_arm_init(). However, acpi_amba.c being outsideof drivers/acpi/arm64 got ignored and hence acpi_amba_init() was notmoved into acpi_arm_init().Move the AMBA platform bus support into arm64 specific folder and makeacpi_amba_init() part of acpi_arm_init().Signed-off-by: Sudeep Holla &lt;sudeep.holla@arm.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Thu, 27 Jul 2023 13:33:47 +0000</pubDate>
        <dc:creator>Sudeep Holla &lt;sudeep.holla@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>fcea0ccf - ACPI: bus: Consolidate all arm specific initialisation into acpi_arm_init()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#fcea0ccf</link>
        <description>ACPI: bus: Consolidate all arm specific initialisation into acpi_arm_init()Move all of the ARM-specific initialization into one function namelyacpi_arm_init(), so it is not necessary to modify/update bus.c everytime a new piece of it is added.Cc: Lorenzo Pieralisi &lt;lpieralisi@kernel.org&gt;Cc: Rafael J. Wysocki &lt;rafael@kernel.org&gt;Suggested-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;Reviewed-by: Robin Murphy &lt;robin.murphy@arm.com&gt;Reviewed-by: Hanjun Guo &lt;guohanjun@huawei.com&gt;Link: https://lore.kernel.org/r/CAJZ5v0iBZRZmV_oU+VurqxnVMbFN_ttqrL=cLh0sUH+=u0PYsw@mail.gmail.comSigned-off-by: Sudeep Holla &lt;sudeep.holla@arm.com&gt;Reviewed-by: Lorenzo Pieralisi &lt;lpieralisi@kernel.org&gt;Acked-by: Rafael J. Wysocki &lt;rafael@kernel.org&gt;Reviewed-by: Shaoqin Huang &lt;shahuang@redhat.com&gt;Link: https://lore.kernel.org/r/20230606093531.2746732-1-sudeep.holla@arm.comSigned-off-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Tue, 06 Jun 2023 09:35:31 +0000</pubDate>
        <dc:creator>Sudeep Holla &lt;sudeep.holla@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>6251d380 - ACPI: ARM Performance Monitoring Unit Table (APMT) initial support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#6251d380</link>
        <description>ACPI: ARM Performance Monitoring Unit Table (APMT) initial supportARM Performance Monitoring Unit Table describes the properties of PMUsupport in ARM-based system. The APMT table contains a list of nodes,each represents a PMU in the system that conforms to ARM CoreSight PMUarchitecture. The properties of each node include information requiredto access the PMU (e.g. MMIO base address, interrupt number) and alsoidentification. For more detailed information, please refer to thespecification below: * APMT: https://developer.arm.com/documentation/den0117/latest * ARM Coresight PMU:        https://developer.arm.com/documentation/ihi0091/latestThe initial support adds the detection of APMT table and genericinfrastructure to create platform devices for ARM CoreSight PMUs.Similar to IORT the root pointer of APMT is preserved during runtimeand each PMU platform device is given a pointer to the correspondingAPMT node.Signed-off-by: Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;Acked-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;Reviewed-by: Sudeep Holla &lt;sudeep.holla@arm.com&gt;Link: https://lore.kernel.org/r/20220929002834.32664-1-bwicaksono@nvidia.comSigned-off-by: Will Deacon &lt;will@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Thu, 29 Sep 2022 00:28:34 +0000</pubDate>
        <dc:creator>Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>a2a591fb - ACPI: AGDI: Add driver for Arm Generic Diagnostic Dump and Reset device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#a2a591fb</link>
        <description>ACPI: AGDI: Add driver for Arm Generic Diagnostic Dump and Reset deviceACPI for Arm Components 1.1 Platform Design Document v1.1 [0] specificesArm Generic Diagnostic Device Interface (AGDI). It allows an admin toissue diagnostic dump and reset via an SDEI event or an interrupt.This patch implements SDEI path.[0] https://developer.arm.com/documentation/den0093/latest/Signed-off-by: Ilkka Koskinen &lt;ilkka@os.amperecomputing.com&gt;Reviewed-by: Russell King (Oracle) &lt;rmk+kernel@armlinux.org.uk&gt;Acked-by: Lorenzo Pieralisi &lt;lorenzo.pieralisi@arm.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Wed, 09 Mar 2022 02:07:50 +0000</pubDate>
        <dc:creator>Ilkka Koskinen &lt;ilkka@os.amperecomputing.com&gt;</dc:creator>
    </item>
<item>
        <title>db59e1b6 - ACPI: arm64: Move DMA setup operations out of IORT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#db59e1b6</link>
        <description>ACPI: arm64: Move DMA setup operations out of IORTExtract generic DMA setup code out of IORT, so it can be reused by VIOT.Keep it in drivers/acpi/arm64 for now, since it could break x86platforms that haven&apos;t run this code so far, if they have invalidtables.Reviewed-by: Eric Auger &lt;eric.auger@redhat.com&gt;Signed-off-by: Jean-Philippe Brucker &lt;jean-philippe@linaro.org&gt;Reviewed-by: Robin Murphy &lt;robin.murphy@arm.com&gt;Link: https://lore.kernel.org/r/20210618152059.1194210-2-jean-philippe@linaro.orgSigned-off-by: Joerg Roedel &lt;jroedel@suse.de&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Fri, 18 Jun 2021 15:20:56 +0000</pubDate>
        <dc:creator>Jean-Philippe Brucker &lt;jean-philippe@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>5f1ae4eb - acpi/arm64: Add GTDT table parse driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#5f1ae4eb</link>
        <description>acpi/arm64: Add GTDT table parse driverThis patch adds support for parsing arch timer info in GTDT,provides some kernel APIs to parse all the PPIs andalways-on info in GTDT and export them.By this driver, we can simplify arm_arch_timer drivers, andseparate the ACPI GTDT knowledge from it.Signed-off-by: Fu Wei &lt;fu.wei@linaro.org&gt;Signed-off-by: Hanjun Guo &lt;hanjun.guo@linaro.org&gt;Acked-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;Tested-by: Xiongfeng Wang &lt;wangxiongfeng2@huawei.com&gt;Reviewed-by: Hanjun Guo &lt;hanjun.guo@linaro.org&gt;Tested-by: Hanjun Guo &lt;hanjun.guo@linaro.org&gt;Acked-by: Lorenzo Pieralisi &lt;lorenzo.pieralisi@arm.com&gt;Signed-off-by: Mark Rutland &lt;mark.rutland@arm.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Fri, 31 Mar 2017 17:51:01 +0000</pubDate>
        <dc:creator>Fu Wei &lt;fu.wei@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>88ef16d8 - ACPI: I/O Remapping Table (IORT) initial support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/acpi/arm64/Makefile#88ef16d8</link>
        <description>ACPI: I/O Remapping Table (IORT) initial supportIORT shows representation of IO topology for ARM based systems.It describes how various components are connected together onparent-child basis e.g. PCI RC -&gt; SMMU -&gt; ITS. Also see IORT spec.http://infocenter.arm.com/help/topic/com.arm.doc.den0049b/DEN0049B_IO_Remapping_Table.pdfInitial support allows to detect IORT table presence and save itsroot pointer obtained through acpi_get_table(). The pointer validitydepends on acpi_gbl_permanent_mmap because if acpi_gbl_permanent_mmapis not set while using IORT nodes we would dereference unmapped pointers.For the aforementioned reason call acpi_iort_init() from acpi_init()which guarantees acpi_gbl_permanent_mmap to be set at that point.Add generic helpers which are helpful for scanning and retrievinginformation from IORT table content. List of the most important helpers:- iort_find_dev_node() finds IORT node for a given device- iort_node_map_rid() maps device RID and returns IORT node which provides  final translationIORT support is placed under drivers/acpi/arm64/ new directory due to itsARM64 specific nature. The code there is considered only for ARM64.The long term plan is to keep all ARM64 specific tables supportin this place e.g. GTDT table.Signed-off-by: Tomasz Nowicki &lt;tn@semihalf.com&gt;Acked-by: Rafael J. Wysocki &lt;rjw@rjwysocki.net&gt;Reviewed-by: Hanjun Guo &lt;hanjun.guo@linaro.org&gt;Reviewed-by: Lorenzo Pieralisi &lt;lorenzo.pieralisi@arm.com&gt;Signed-off-by: Marc Zyngier &lt;marc.zyngier@arm.com&gt;

            List of files:
            /linux-6.15/drivers/acpi/arm64/Makefile</description>
        <pubDate>Mon, 12 Sep 2016 18:54:20 +0000</pubDate>
        <dc:creator>Tomasz Nowicki &lt;tn@semihalf.com&gt;</dc:creator>
    </item>
</channel>
</rss>
