<?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>a8fcd3da - soc: rockchip: Mover power-domain driver to the genpd dir</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/rockchip/Makefile#a8fcd3da</link>
        <description>soc: rockchip: Mover power-domain driver to the genpd dirTo simplify with maintenance let&apos;s move the rockchip power-domain driver tothe new genpd directory. Going forward, patches are intended to be managedthrough a separate git tree, according to MAINTAINERS.Cc: Heiko Stuebner &lt;heiko@sntech.de&gt;Cc: &lt;linux-rockchip@lists.infradead.org&gt;Acked-by: Heiko Stuebner &lt;heiko@sntech.de&gt;Signed-off-by: Ulf Hansson &lt;ulf.hansson@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/soc/rockchip/Makefile</description>
        <pubDate>Wed, 05 Jul 2023 16:01:43 +0000</pubDate>
        <dc:creator>Ulf Hansson &lt;ulf.hansson@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>b9d6c47a - rockchip/soc/drivers: Add DTPM description for rk3399</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/rockchip/Makefile#b9d6c47a</link>
        <description>rockchip/soc/drivers: Add DTPM description for rk3399The DTPM framework does support now the hierarchy description.The platform specific code can call the hierarchy creation functionwith an array of struct dtpm_node pointing to their parent.This patch provides a description of the big / Little CPUs and theGPU and tie them together under a virtual &apos;package&apos; name. Only rk3399 isdescribed now.The description could be extended in the future with the memorycontroller with devfreq.The description is always a module and it describes the softdependencies. The userspace has to load the softdeps module in theright order.Signed-off-by: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;Reviewed-by; Heiko Stuebner &lt;heiko@sntech.de&gt;Link: https://lore.kernel.org/r/20220128163537.212248-6-daniel.lezcano@linaro.org

            List of files:
            /linux-6.15/drivers/soc/rockchip/Makefile</description>
        <pubDate>Fri, 28 Jan 2022 16:35:37 +0000</pubDate>
        <dc:creator>Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>e943c43b - PM: AVS: rockchip-io: Move the driver to the rockchip specific drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/rockchip/Makefile#e943c43b</link>
        <description>PM: AVS: rockchip-io: Move the driver to the rockchip specific driversThe avs drivers are all SoC specific drivers that doesn&apos;t share any code.Instead they are located in a directory, mostly to keep similarfunctionality together. From a maintenance point of view, it makes bettersense to collect SoC specific drivers like these, into the SoC specificdirectories.Therefore, let&apos;s move the rockchip-io driver to the rockchip directory.Signed-off-by: Ulf Hansson &lt;ulf.hansson@linaro.org&gt;Acked-by: Heiko Stuebner &lt;heiko@sntech.de&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/drivers/soc/rockchip/Makefile</description>
        <pubDate>Tue, 06 Oct 2020 16:05:14 +0000</pubDate>
        <dc:creator>Ulf Hansson &lt;ulf.hansson@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/soc/rockchip/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/rockchip/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>4c58063d - soc: rockchip: add driver handling grf setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/rockchip/Makefile#4c58063d</link>
        <description>soc: rockchip: add driver handling grf setupThe General Register Files are an area of registers containing a lotof single-bit settings for numerous components as well full componentslike usbphy control. Therefore all used components are accessedvia the syscon provided by the grf nodes or from the sub-devicescreated through the simple-mfd created from the grf node.Some settings are not used by anything but will need to be set upaccording to expectations on the kernel side.Best example is the force_jtag setting, which defaults to on andresults in the soc switching the pin-outputs between jtag and sdmmcautomatically depending on the card-detect status. This conflictsheavily with how the dw_mmc driver expects to do its work and alsowith the clock-controller, which has most likely deactivated thejtag clock due to it being unused.So far the handling of this setting was living in the mach-rockchipcode for the arm32-based rk3288 but that of course doesn&apos;t workfor arm64 socs and would also look ugly for further arm32 socs.Also always disabling this setting is quite specific to linux andits subsystems, other operating systems might prefer other settings,so that the bootloader cannot really set a sane default for all.So introduce a top-level driver for the grf that handles thesesettings that need to be a certain way but nobody cares about.Other needed settings might surface in the future and can thenbe added here, but only as a last option. Ideally general GRFsettings should be handled in the driver needing them.Signed-off-by: Heiko Stuebner &lt;heiko@sntech.de&gt;Reviewed-by: Douglas Anderson &lt;dianders@chromium.org&gt;

            List of files:
            /linux-6.15/drivers/soc/rockchip/Makefile</description>
        <pubDate>Wed, 16 Nov 2016 23:03:03 +0000</pubDate>
        <dc:creator>Heiko Stuebner &lt;heiko@sntech.de&gt;</dc:creator>
    </item>
<item>
        <title>7c696693 - soc: rockchip: power-domain: Add power domain driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/soc/rockchip/Makefile#7c696693</link>
        <description>soc: rockchip: power-domain: Add power domain driverThis driver is found on RK3288 SoCs.In order to meet high performance and low power requirements, a powermanagement unit is designed or saving power when RK3288 in low powermode.The RK3288 PMU is dedicated for managing the power of the whole chip.PMU can work in the Low Power Mode by setting bit[0] of PMU_PWRMODE_CONregister. After setting the register, PMU would enter the Low Power mode.In the low power mode, pmu will auto power on/off the specified powerdomain, send idle req to specified power domain, shut down/up pll andso on. All of above are configurable by setting corresponding registers.Signed-off-by: Caesar Wang &lt;wxt@rock-chips.com&gt;Reviewed-by: Kevin Hilman &lt;khilman@linaro.org&gt;[replace dsb() with dsb(sy) for arm64 buildability; sy is the default,so no functional change; adapt to per-user clocks in genpd]Signed-off-by: Heiko Stuebner &lt;heiko@sntech.de&gt;

            List of files:
            /linux-6.15/drivers/soc/rockchip/Makefile</description>
        <pubDate>Tue, 08 Sep 2015 06:18:22 +0000</pubDate>
        <dc:creator>Caesar Wang &lt;wxt@rock-chips.com&gt;</dc:creator>
    </item>
</channel>
</rss>
