<?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 Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>54dd5a41 - pinctrl: aspeed: fix unmet dependencies on MFD_SYSCON for PINCTRL_ASPEED</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pinctrl/aspeed/Kconfig#54dd5a41</link>
        <description>pinctrl: aspeed: fix unmet dependencies on MFD_SYSCON for PINCTRL_ASPEEDWhen PINCTRL_ASPEED_G* is selected,and MFD_SYSCON is not selected,Kbuild gives the following warnings:WARNING: unmet direct dependencies detected for PINCTRL_ASPEED  Depends on [n]: PINCTRL [=y] &amp;&amp; (ARCH_ASPEED [=n] || COMPILE_TEST [=y]) &amp;&amp; OF [=y] &amp;&amp; MFD_SYSCON [=n]  Selected by [y]:  - PINCTRL_ASPEED_G4 [=y] &amp;&amp; PINCTRL [=y] &amp;&amp; (MACH_ASPEED_G4 [=n] || COMPILE_TEST [=y]) &amp;&amp; OF [=y]WARNING: unmet direct dependencies detected for PINCTRL_ASPEED  Depends on [n]: PINCTRL [=y] &amp;&amp; (ARCH_ASPEED [=n] || COMPILE_TEST [=y]) &amp;&amp; OF [=y] &amp;&amp; MFD_S&gt;  Selected by [y]:  - PINCTRL_ASPEED_G5 [=y] &amp;&amp; PINCTRL [=y] &amp;&amp; (MACH_ASPEED_G5 [=n] || COMPILE_TEST [=y]) &amp;&amp; O&gt;WARNING: unmet direct dependencies detected for PINCTRL_ASPEED  Depends on [n]: PINCTRL [=y] &amp;&amp; (ARCH_ASPEED [=n] || COMPILE_TEST [=y]) &amp;&amp; OF [=y] &amp;&amp; MFD_S&gt;  Selected by [y]:  - PINCTRL_ASPEED_G6 [=y] &amp;&amp; PINCTRL [=y] &amp;&amp; (MACH_ASPEED_G6 [=n] || COMPILE_TEST [=y]) &amp;&amp; O&gt;This is because MACH_ASPEED_G* depend on (ARCH_ASPEED || COMPILE_TEST).ARCH_ASPEED enables the MFD_SYSCON dependency, but COMPILE_TEST doesn&apos;t.These unmet dependency bugs were detected by Kismet,a static analysis tool for Kconfig. Please adviseif this is not the appropriate solution.Signed-off-by: Julian Braha &lt;julianbraha@gmail.com&gt;Reviewed-by: Andrew Jeffery &lt;andrew@aj.id.au&gt;Link: https://lore.kernel.org/r/20211215214022.146391-1-julianbraha@gmail.comSigned-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/pinctrl/aspeed/Kconfig</description>
        <pubDate>Wed, 15 Dec 2021 21:40:22 +0000</pubDate>
        <dc:creator>Julian Braha &lt;julianbraha@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2eda1cde - pinctrl: aspeed: Add AST2600 pinmux support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pinctrl/aspeed/Kconfig#2eda1cde</link>
        <description>pinctrl: aspeed: Add AST2600 pinmux supportThe AST2600 pinmux is fairly similar to the previous generations ofASPEED BMC SoCs in terms of architecture, though differ in some of thedesign details. The complexity of the pin expressions is largely reduced(e.g. there are no-longer signals with multiple expressions muxing themto the associated pin), and there are now signals and buses withmultiple pin groups.The driver implements pinmux support for all 244 GPIO-capable pins plusa further four pins that are not GPIO capable but which expose multiplesignals. pinconf will be implemented in a follow-up patch.The implementation has been smoke-tested under qemu, and run on hardwareby ASPEED.Debugged-by: Johnny Huang &lt;johnny_huang@aspeedtech.com&gt;Signed-off-by: Andrew Jeffery &lt;andrew@aj.id.au&gt;Link: https://lore.kernel.org/r/20190711041942.23202-7-andrew@aj.id.auSigned-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/pinctrl/aspeed/Kconfig</description>
        <pubDate>Thu, 11 Jul 2019 04:19:42 +0000</pubDate>
        <dc:creator>Andrew Jeffery &lt;andrew@aj.id.au&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/pinctrl/aspeed/Kconfig#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/pinctrl/aspeed/Kconfig</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>56e57cb6 - pinctrl: Add pinctrl-aspeed-g5 driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pinctrl/aspeed/Kconfig#56e57cb6</link>
        <description>pinctrl: Add pinctrl-aspeed-g5 driverA small subset of pins and functions are exposed. The selection of pinsand functions is driven by the development of OpenBMC[1] on theAST2500 SoC, particularly around booting the IBM Witherspoon platform.[1] https://github.com/openbmc/docsSigned-off-by: Andrew Jeffery &lt;andrew@aj.id.au&gt;Reviewed-by: Joel Stanley &lt;joel@jms.id.au&gt;Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/pinctrl/aspeed/Kconfig</description>
        <pubDate>Tue, 30 Aug 2016 07:54:26 +0000</pubDate>
        <dc:creator>Andrew Jeffery &lt;andrew@aj.id.au&gt;</dc:creator>
    </item>
<item>
        <title>524594d4 - pinctrl: Add pinctrl-aspeed-g4 driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pinctrl/aspeed/Kconfig#524594d4</link>
        <description>pinctrl: Add pinctrl-aspeed-g4 driverA subset of the pins and functions are exposed. The selection offunctions and pins is driven by the development of OpenBMC[1] on theAST2400 SoC, particularly around booting the OpenPOWER Palmettodevelopment machine.[1] https://github.com/openbmc/docsSigned-off-by: Andrew Jeffery &lt;andrew@aj.id.au&gt;Reviewed-by: Joel Stanley &lt;joel@jms.id.au&gt;Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/pinctrl/aspeed/Kconfig</description>
        <pubDate>Tue, 30 Aug 2016 07:54:25 +0000</pubDate>
        <dc:creator>Andrew Jeffery &lt;andrew@aj.id.au&gt;</dc:creator>
    </item>
<item>
        <title>4d3d0e42 - pinctrl: Add core support for Aspeed SoCs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pinctrl/aspeed/Kconfig#4d3d0e42</link>
        <description>pinctrl: Add core support for Aspeed SoCsThe Aspeed SoCs typically provide more than 200 pins for GPIO and otherfunctions. The signal enabled on a pin is determined on a prioritybasis, where a given pin can provide a number of different signal types.In addition to the priority levels, the Aspeed pin controllers describethe signal active on a pin by compound logical expressions involvingmultiple operators, registers and bits. Some difficulty arises as apin&apos;s function bit masks for each priority level are frequently not thesame (i.e. we cannot just flip a bit to change from a high to lowpriority signal), or even in the same register(s). Some configurationbits affect multiple pins, while in other cases the signals for a busmust each be enabled individually.Together, these features give rise to some complexity in theimplementation. A more complete description of the complexities isprovided in the associated header file.The patch doesn&apos;t implement pinctrl/pinmux/pinconf for any particularAspeed SoC, rather it adds the framework for defining pinmuxconfigurations.Signed-off-by: Andrew Jeffery &lt;andrew@aj.id.au&gt;Reviewed-by: Joel Stanley &lt;joel@jms.id.au&gt;Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/pinctrl/aspeed/Kconfig</description>
        <pubDate>Tue, 30 Aug 2016 07:54:24 +0000</pubDate>
        <dc:creator>Andrew Jeffery &lt;andrew@aj.id.au&gt;</dc:creator>
    </item>
</channel>
</rss>
