<?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>fd697e21 - soc: sunxi: Move power-domain driver to the genpd dir</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/sunxi/Makefile#fd697e21</link>
        <description>soc: sunxi: Move power-domain driver to the genpd dirTo simplify with maintenance let&apos;s move the sunxi power-domain driver tothe new genpd directory. Going forward, patches are intended to be managedthrough a separate git tree, according to MAINTAINERS.Cc: Chen-Yu Tsai &lt;wens@csie.org&gt;Cc: Jernej Skrabec &lt;jernej.skrabec@gmail.com&gt;Cc: Samuel Holland &lt;samuel@sholland.org&gt;Cc: &lt;linux-sunxi@lists.linux.dev&gt;Acked-by: Jernej Skrabec &lt;jernej.skrabec@gmail.com&gt;Signed-off-by: Ulf Hansson &lt;ulf.hansson@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/soc/sunxi/Makefile</description>
        <pubDate>Wed, 05 Jul 2023 16:26:45 +0000</pubDate>
        <dc:creator>Ulf Hansson &lt;ulf.hansson@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>0e30ca5a - soc: sunxi: Add Allwinner D1 PPU driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/sunxi/Makefile#0e30ca5a</link>
        <description>soc: sunxi: Add Allwinner D1 PPU driverThe PPU contains a series of identical MMIO register ranges, one foreach power domain. Each range contains control/status bits for a clockgate, reset line, output gates, and a power switch. (The clock and resetare separate from, and in addition to, the bits in the CCU.) It alsocontains a hardware power sequence engine to control the other bits.Acked-by: Jernej Skrabec &lt;jernej.skrabec@gmail.com&gt;Signed-off-by: Samuel Holland &lt;samuel@sholland.org&gt;Link: https://lore.kernel.org/r/20230126063419.15971-3-samuel@sholland.orgSigned-off-by: Jernej Skrabec &lt;jernej.skrabec@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/soc/sunxi/Makefile</description>
        <pubDate>Thu, 26 Jan 2023 06:34:18 +0000</pubDate>
        <dc:creator>Samuel Holland &lt;samuel@sholland.org&gt;</dc:creator>
    </item>
<item>
        <title>b4bdc4fb - soc: sunxi: Deal with the MBUS DMA offsets in a central place</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/sunxi/Makefile#b4bdc4fb</link>
        <description>soc: sunxi: Deal with the MBUS DMA offsets in a central placeSo far most of the drivers with the MBUS quirks had to duplicate thecode to deal with DT compatibility and enforcing the DMA offsets.Let&apos;s move for a more maintainable solution by putting everything in anotifier that would take care of setting up the DMA offsets for all theMBUS devices.Suggested-by: Robin Murphy &lt;robin.murphy@arm.com&gt;Signed-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;Reviewed-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/soc/sunxi/Makefile</description>
        <pubDate>Fri, 06 Nov 2020 14:52:30 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&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/soc/sunxi/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/soc/sunxi/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>4af34b57 - drivers: soc: sunxi: Introduce SoC driver to map SRAMs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/sunxi/Makefile#4af34b57</link>
        <description>drivers: soc: sunxi: Introduce SoC driver to map SRAMsThe Allwinner SoCs have a handful of SRAM that can be either mapped to beaccessible by devices or the CPU.That mapping is controlled by an SRAM controller, and that mapping mightnot be set by the bootloader, for example if the device wasn&apos;t used at all,or if we&apos;re using solutions like the U-Boot&apos;s Falcon Boot.We could also imagine changing this at runtime for example to change themapping of these SRAMs to use them for suspend/resume or runtime memoryrate change, if that ever happens.These use cases require some API in the kernel to control that mapping,exported through a drivers/soc driver.This driver also implement a debugfs file that shows the SRAM found in thesystem, the current mapping and the SRAM that have been claimed by somedrivers in the kernel.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Acked-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Acked-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Tested-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;

            List of files:
            /linux-6.15/drivers/soc/sunxi/Makefile</description>
        <pubDate>Mon, 01 Jun 2015 09:04:26 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
</channel>
</rss>
