<?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>53a810ad - perf: arm_cspmu: ampere_cspmu: Add support for Ampere SoC PMU</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/perf/arm_cspmu/Makefile#53a810ad</link>
        <description>perf: arm_cspmu: ampere_cspmu: Add support for Ampere SoC PMUAmpere SoC PMU follows CoreSight PMU architecture. It uses implementationspecific registers to filter events rather than PMEVFILTnR registers.Signed-off-by: Ilkka Koskinen &lt;ilkka@os.amperecomputing.com&gt;Link: https://lore.kernel.org/r/20230913233941.9814-5-ilkka@os.amperecomputing.com[will: Include linux/io.h in ampere_cspmu.c for writel()]Signed-off-by: Will Deacon &lt;will@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/perf/arm_cspmu/Makefile</description>
        <pubDate>Wed, 13 Sep 2023 23:39:41 +0000</pubDate>
        <dc:creator>Ilkka Koskinen &lt;ilkka@os.amperecomputing.com&gt;</dc:creator>
    </item>
<item>
        <title>bfc653aa - perf: arm_cspmu: Separate Arm and vendor module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/perf/arm_cspmu/Makefile#bfc653aa</link>
        <description>perf: arm_cspmu: Separate Arm and vendor moduleArm Coresight PMU driver consists of main standard code andvendor backend code. Both are currently built as a single module.This patch adds vendor registration API to separate the two tokeep things modular. The main driver requests each known backendmodule during initialization and defer device binding process.The backend module then registers an init callback to the maindriver and continue the device driver binding process.Signed-off-by: Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;Reviewed-by: Suzuki K Poulose &lt;suzuki.poulose@arm.com&gt;Reviewed-and-tested-by: Ilkka Koskinen &lt;ilkka@os.amperecomputing.com&gt;Link: https://lore.kernel.org/r/20230821231608.50911-1-bwicaksono@nvidia.comSigned-off-by: Will Deacon &lt;will@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/perf/arm_cspmu/Makefile</description>
        <pubDate>Mon, 21 Aug 2023 23:16:08 +0000</pubDate>
        <dc:creator>Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>a91bbd5c - perf: arm_cspmu: Fix module cyclic dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/perf/arm_cspmu/Makefile#a91bbd5c</link>
        <description>perf: arm_cspmu: Fix module cyclic dependencyBuild on arm64 allmodconfig failed with:  | depmod: ERROR: Cycle detected: arm_cspmu -&gt; nvidia_cspmu -&gt; arm_cspmu  | depmod: ERROR: Found 2 modules in dependency cycles!The arm_cspmu.c provides standard functions to operate the PMU and thevendor code provides vendor specific attributes. Both need to be built assingle kernel module.Update the makefile to compile sources under arm_cspmu into one module.Signed-off-by: Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;Reviewed-and-Tested-by: Suzuki K Poulose &lt;suzuki.poulose@arm.com&gt;Link: https://lore.kernel.org/r/20221116203952.34168-1-bwicaksono@nvidia.comSigned-off-by: Will Deacon &lt;will@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/perf/arm_cspmu/Makefile</description>
        <pubDate>Wed, 16 Nov 2022 20:39:52 +0000</pubDate>
        <dc:creator>Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>84481be7 - perf: arm_cspmu: Add support for NVIDIA SCF and MCF attribute</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/perf/arm_cspmu/Makefile#84481be7</link>
        <description>perf: arm_cspmu: Add support for NVIDIA SCF and MCF attributeAdd support for NVIDIA System Cache Fabric (SCF) and Memory ControlFabric (MCF) PMU attributes for CoreSight PMU implementation inNVIDIA devices.Acked-by: Suzuki K Poulose &lt;suzuki.poulose@arm.com&gt;Signed-off-by: Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;Link: https://lore.kernel.org/r/20221111222330.48602-3-bwicaksono@nvidia.comSigned-off-by: Will Deacon &lt;will@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/perf/arm_cspmu/Makefile</description>
        <pubDate>Fri, 11 Nov 2022 22:23:29 +0000</pubDate>
        <dc:creator>Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>e37dfd65 - perf: arm_cspmu: Add support for ARM CoreSight PMU driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/perf/arm_cspmu/Makefile#e37dfd65</link>
        <description>perf: arm_cspmu: Add support for ARM CoreSight PMU driverAdd support for ARM CoreSight PMU driver framework and interfaces.The driver provides generic implementation to operate uncore PMU basedon ARM CoreSight PMU architecture. The driver also provides interfaceto get vendor/implementation specific information, for example eventattributes and formating.The specification used in this implementation can be found below: * ACPI Arm Performance Monitoring Unit table:        https://developer.arm.com/documentation/den0117/latest * ARM Coresight PMU architecture:        https://developer.arm.com/documentation/ihi0091/latestReviewed-by: Suzuki K Poulose &lt;suzuki.poulose@arm.com&gt;Signed-off-by: Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;Link: https://lore.kernel.org/r/20221111222330.48602-2-bwicaksono@nvidia.comSigned-off-by: Will Deacon &lt;will@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/perf/arm_cspmu/Makefile</description>
        <pubDate>Fri, 11 Nov 2022 22:23:28 +0000</pubDate>
        <dc:creator>Besar Wicaksono &lt;bwicaksono@nvidia.com&gt;</dc:creator>
    </item>
</channel>
</rss>
