<?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>49c726d5 - clk: sunxi: Add Kconfig options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#49c726d5</link>
        <description>clk: sunxi: Add Kconfig optionsWe used to have a clock framework that isn&apos;t really used these days, exceptfor a few clocks and/or SoCs. Most of the time, the new framework anddrivers (sunxi-ng) will provide everything needed for the customer devicesto operate properly.Since we&apos;re not needing it that much, it might make sense to disable thosedrivers, for example when we want to reduce the kernel size. Let&apos;s addoptions in Kconfig that can be disabled if needed, but are still on bydefault to keep the same features in the standard case.Acked-by: Stephen Boyd &lt;sboyd@kernel.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@bootlin.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Tue, 19 Mar 2019 14:37:59 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@bootlin.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-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/clk/sunxi/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>98b8525a - clk: sunxi: Add display and TCON0 clocks driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#98b8525a</link>
        <description>clk: sunxi: Add display and TCON0 clocks driverThe A10 SoCs and its relatives has a special clock controller to drive thedisplay engines (both frontend and backend), that have a lot in common withthe clock to drive the first TCON channel.Add a driver to support both.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;[sboyd@codeaurora.org: Silence variable sized array warning]Signed-off-by: Stephen Boyd &lt;sboyd@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Mon, 25 Apr 2016 13:22:42 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>cc510c73 - clk: sunxi: Add TCON channel1 clock</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#cc510c73</link>
        <description>clk: sunxi: Add TCON channel1 clockThe TCON is a controller generating the timings to output videos signals,acting like both a CRTC and an encoder.It has two channels depending on the output, each channel being driven byits own clock (and own clock controller).Add a driver for the channel 1 clock.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;Acked-by: Stephen Boyd &lt;sboyd@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Wed, 01 Jul 2015 13:48:37 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>fa4d0ca1 - clk: sunxi: Add PLL3 clock</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#fa4d0ca1</link>
        <description>clk: sunxi: Add PLL3 clockThe A10 SoCs and relatives have a PLL controller to drive the PLL3 andPLL7, clocked from a 3MHz oscillator, that drives the display relatedclocks (GPU, display engine, TCON, etc.)Add a driver for it.Acked-by: Rob Herring &lt;robh@kernel.org&gt;Acked-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Acked-by: Stephen Boyd &lt;sboyd@codeaurora.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Wed, 23 Mar 2016 16:38:26 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>fd9ffd8b - clk: sunxi: Add CLK_OF_DECLARE support for sun8i-a23-apb0-clk driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#fd9ffd8b</link>
        <description>clk: sunxi: Add CLK_OF_DECLARE support for sun8i-a23-apb0-clk driverThe APBS clock on sun9i is the same as the APB0 clock on sun8i. Withsun9i we are supporting the PRCM clocks by using CLK_OF_DECLARE,instead of through a PRCM mfd device and subdevices for each clockand reset control. As such we need a CLK_OF_DECLARE version ofthe sun8i-a23-apb0-clk driver.Also, build it for sun9i/A80, and not just for configurations withMFD_SUN6I_PRCM enabled.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Thu, 03 Dec 2015 07:05:30 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>3cdd9f5c - clk: sunxi: Add VE (Video Engine) module clock driver for sun[457]i</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#3cdd9f5c</link>
        <description>clk: sunxi: Add VE (Video Engine) module clock driver for sun[457]iThe video engine has its own special module clock, consisting of a clockgate, configurable dividers, and a reset control.On later (sun[68]i) families, the reset control is moved out of thispiece of hardware and grouped with reset controls of other peripherals.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Tested-by: Jens Kuske &lt;jenskuske@gmail.com&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Sat, 05 Dec 2015 13:16:43 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>ab6e23a4 - clk: sunxi: Add H3 clocks support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#ab6e23a4</link>
        <description>clk: sunxi: Add H3 clocks supportThe H3 clock control unit is similar to the those of other sun8i familymembers like the A23.It adds a new bus gates clock similar to the simple gates, but with adifferent parent clock for each single gate.Some of the gates use the new AHB2 clock as parent, whose clock sourceis muxable between AHB1 and PLL6/2. The documentation isn&apos;t totally clearabout which devices belong to AHB2 now, especially USB EHIC/OHIC, so itis mostly based on Allwinner kernel source code.Signed-off-by: Jens Kuske &lt;jenskuske@gmail.com&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Fri, 04 Dec 2015 21:24:40 +0000</pubDate>
        <dc:creator>Jens Kuske &lt;jenskuske@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>77d16e2c - clk: sunxi: Add sun9i A80 cpus (cpu special) clock support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#77d16e2c</link>
        <description>clk: sunxi: Add sun9i A80 cpus (cpu special) clock supportThe &quot;cpus&quot; clock is the clock for the embedded processor in the A80.It is also part of the PRCM clock tree. This clock includes a pre-divider on one of its inputs. For now we are using a custom clockdriver for it. In the future we may want to develop a generalizeddriver for these types of clocks, which also includes the AHB clockdriver on sun[5678]i.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Sun, 29 Nov 2015 03:03:08 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>9b038bc5 - clk: sunxi: mod1 clock support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#9b038bc5</link>
        <description>clk: sunxi: mod1 clock supportThe module 1 type of clocks consist of a gate and a mux and are used onthe audio blocks to mux and gate the PLL2 outputs for AC97, IIS orSPDIF. This commit adds support for them on the sunxi clock driver.Signed-off-by: Emilio L&#243;pez &lt;emilio@elopez.com.ar&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Reviewed-by: Chen-Yu Tsai &lt;wens@csie.org&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Fri, 18 Jul 2014 18:28:02 +0000</pubDate>
        <dc:creator>Emilio L&#243;pez &lt;emilio@elopez.com.ar&gt;</dc:creator>
    </item>
<item>
        <title>e2771545 - clk: sunxi: codec clock support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#e2771545</link>
        <description>clk: sunxi: codec clock supportThe codec clock on sun4i, sun5i and sun7i is a simple gate with PLL2 asparent. Add a driver for such a clock.Signed-off-by: Emilio L&#243;pez &lt;emilio@elopez.com.ar&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Reviewed-by: Chen-Yu Tsai &lt;wens@csie.org&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Fri, 18 Jul 2014 18:49:37 +0000</pubDate>
        <dc:creator>Emilio L&#243;pez &lt;emilio@elopez.com.ar&gt;</dc:creator>
    </item>
<item>
        <title>460d0d44 - clk: sunxi: Add a driver for the PLL2</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#460d0d44</link>
        <description>clk: sunxi: Add a driver for the PLL2The PLL2 on the A10 and later SoCs is the clock used for all the audiorelated operations.This clock has a somewhat complex output tree, with three outputs (2X, 4Xand 8X) with a fixed divider from the base clock, and an output (1X) with apost divider.However, we can simplify things since the 1X divider can be fixed, and weend up by having a base clock not exposed to any device (or at leastdirectly, since the 4X output doesn&apos;t have any divider), and 4 fixeddivider clocks that will be exposed.This clock seems to have been introduced, at least in this form, in therevision B of the A10, but we don&apos;t have any information on the clock usedon the revision A.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Reviewed-by: Chen-Yu Tsai &lt;wens@csie.org&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Fri, 18 Jul 2014 18:48:35 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>ee38b269 - clk: sunxi: Add a simple gates driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#ee38b269</link>
        <description>clk: sunxi: Add a simple gates driverThe gates were handled with a common piece of framework that wasregistering all gates array, that was not using the CLK_OF_DECLARE logic,and was not using clock-indices but some private masks that were prettymuch equivalent.Move this code in a new driver that handles all the gates array and solvesboth these issues.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Signed-off-by: Michael Turquette &lt;mturquette@baylibre.com&gt;[sboyd@codeaurora.org: Include clk.h for consumer API usage]Signed-off-by: Stephen Boyd &lt;sboyd@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Fri, 31 Jul 2015 17:46:22 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>6089ef19 - clk: sunxi: Move USB clocks to separate file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#6089ef19</link>
        <description>clk: sunxi: Move USB clocks to separate fileThe USB clocks originally shared code with the gates clocks, but hadadditional reset controllers. Move these to a separate file. This willallow us to add new support for slightly different USB clocks, such ason the A80, without affecting gates clocks, and also facilitate themigration of gates clocks to a generic solution.This also cleans up the USB clocks code slightly, such as addingnewlines, getting rid of the unused clkdev call, using a simpleu32 instead of BITMAP for the clock masks, using BIT() macro todeclare the clock bitmasks, and using of_io_request_and_map() toget the I/O address.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Tue, 27 Jan 2015 19:54:06 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>7a6fca87 - clk: sunxi: Add driver for A80 MMC config clocks/resets</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#7a6fca87</link>
        <description>clk: sunxi: Add driver for A80 MMC config clocks/resetsOn the A80 SoC, the 4 mmc controllers each have a separate registercontrolling their register access clocks and reset controls. Theseregisters in turn share a ahb clock gate and reset control.This patch adds a platform device driver for these controls. Itrequires both clocks and reset controls to be available, so usingCLK_OF_DECLARE might not be the best way.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Tue, 20 Jan 2015 15:46:31 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>3b2bd70f - clk: sunxi: Add support for A80 basic bus clocks</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#3b2bd70f</link>
        <description>clk: sunxi: Add support for A80 basic bus clocksThe A80 SoC has 12 PLL clocks, 3 AHB clocks, 2 APB clocks, and anew &quot;GT&quot; bus, which I assume is some kind of data bus connectingthe processor cores, memory and various busses. Also there is abus clock for a ARM CCI400 module.As far as I can tell, the GT bus and CCI400 bus clock must beprotected.This patch adds driver support for peripheral related PLLs andbus clocks on the A80. The GT and CCI400 clocks are added as wellas these 2 along with the PLLs they are clocked from must not bedisabled.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Mon, 20 Oct 2014 14:10:27 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>9c8176bf - clk: sunxi: Add sun8i MBUS clock support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#9c8176bf</link>
        <description>clk: sunxi: Add sun8i MBUS clock supportThe MBUS clock on sun8i is slightly different from the old mod0 clocks.The divider is 3 bits wider, while also needing a divider table for thehigher 4 values, which all set the same divider.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Tue, 16 Sep 2014 10:04:01 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>992a56e4 - clk: sunxi: Move mod0 clock to a file of its own</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#992a56e4</link>
        <description>clk: sunxi: Move mod0 clock to a file of its ownSince we know have the ability to declare factors clock outside of clk-sunxi,create a new mod0 driver to deal with the mod0 clocks.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Acked-by: Hans de Goede &lt;hdegoede@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Thu, 10 Jul 2014 21:55:18 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>57a1fbf2 - clk: sunxi: Add A23 APB0 divider clock support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#57a1fbf2</link>
        <description>clk: sunxi: Add A23 APB0 divider clock supportThe A23 has an almost identical PRCM clock tree. The difference inthe APB0 clock is the smallest divisor is 1, instead of 2.This patch adds a separate sun8i-a23-apb0-clk driver to support it.Signed-off-by: Chen-Yu Tsai &lt;wens@csie.org&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Thu, 03 Jul 2014 14:55:41 +0000</pubDate>
        <dc:creator>Chen-Yu Tsai &lt;wens@csie.org&gt;</dc:creator>
    </item>
<item>
        <title>c8a76cac - clk: sunxi: add PRCM (Power/Reset/Clock Management) clks support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/clk/sunxi/Makefile#c8a76cac</link>
        <description>clk: sunxi: add PRCM (Power/Reset/Clock Management) clks supportThe PRCM (Power/Reset/Clock Management) unit provides several clockdevices:- AR100 clk: used to clock the Power Management co-processor- AHB0 clk: used to clock the AHB0 bus- APB0 clk and gates: used to clk peripherals connected to the APB0 busAdd support for these clks in a separate driver so that they can be probedas platform devices instead of registered during early init.This is needed to be able to probe PRCM MFD subdevices.Signed-off-by: Boris BREZILLON &lt;boris.brezillon@free-electrons.com&gt;Acked-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Signed-off-by: Emilio L&#243;pez &lt;emilio@elopez.com.ar&gt;

            List of files:
            /linux-6.15/drivers/clk/sunxi/Makefile</description>
        <pubDate>Thu, 15 May 2014 08:55:11 +0000</pubDate>
        <dc:creator>Boris BREZILLON &lt;boris.brezillon@free-electrons.com&gt;</dc:creator>
    </item>
</channel>
</rss>
