<?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 2025</copyright>
    <generator>Java</generator><item>
        <title>d42197e44e9091ec4553b74a54a8502a2415a09f - UPSTREAM: dm: replace dm_dbg() with pr_debug()</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#d42197e44e9091ec4553b74a54a8502a2415a09f</link>
        <description>UPSTREAM: dm: replace dm_dbg() with pr_debug()As we discussed before in ML, dm_dbg() causes undefined referenceerror if #define DEBUG is added to users, but not drivers/core/util.cWe do not need this macro because we can use pr_debug() instead, andit is pretty easy to enable it for the DM core by using ccflags-y.Change-Id: I0732d1fec827d434b1163093920a3c5bd682803eSigned-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;(cherry picked from commit ceb9190969e458dcd1427566f762dbb9cfdfdc94)

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Fri, 29 Sep 2017 03:31:20 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>c1b62ba9ca0e41fdd548cb3bb9af3b3f90d4a393 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-rockchip</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#c1b62ba9ca0e41fdd548cb3bb9af3b3f90d4a393</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-rockchip

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Mon, 14 Aug 2017 14:40:01 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>c6ac6c1bd42b8948825697c88ba4ea00d61c5e2e - spl: dm: Kconfig: split REGMAP/SYSCON support for TPL from SPL</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#c6ac6c1bd42b8948825697c88ba4ea00d61c5e2e</link>
        <description>spl: dm: Kconfig: split REGMAP/SYSCON support for TPL from SPLThis change introduces TPL variants of the REGMAP and SYSCON configoptions (i.e. TPL_REGMAP and TPL_SYSCON in analogy to SPL_REGMAP andSPL_SYSCON) in preparation of a finer-grained feature selection forbuilding feature-rich TPL variants.Signed-off-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Wed, 28 Jun 2017 23:38:49 +0000</pubDate>
        <dc:creator>Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;</dc:creator>
    </item>
<item>
        <title>9c447370c13c36cb4e109162c28147d8c1a2c463 - spl: dm: Kconfig: use more specific prereqs for SPL_REGMAP and SPL_SYSCON</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#9c447370c13c36cb4e109162c28147d8c1a2c463</link>
        <description>spl: dm: Kconfig: use more specific prereqs for SPL_REGMAP and SPL_SYSCONSPL_REGMAP and SPL_SYSCON were marked as depending on DM, when astricter dependency of SPL_DM was possible.  This commit makes theprereq more specific.Signed-off-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Wed, 28 Jun 2017 23:37:10 +0000</pubDate>
        <dc:creator>Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;</dc:creator>
    </item>
<item>
        <title>f1896c45cb2f7d8dbed27e784a6459a129fc0762 - spl: make SPL and normal u-boot stage use independent SYS_MALLOC_F_LEN</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#f1896c45cb2f7d8dbed27e784a6459a129fc0762</link>
        <description>spl: make SPL and normal u-boot stage use independent SYS_MALLOC_F_LENSome platforms have very limited SRAM to run SPL code, so there maynot be the same amount space for a malloc pool before relocation inthe SPL stage as the normal U-Boot stage.Make SPL and (the full) U-Boot stage use independent SYS_MALLOC_F_LEN,so the size of pre-relocation malloc pool can be configured memoryspace independently.Signed-off-by: Andy Yan &lt;andy.yan@rock-chips.com&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;Acked-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;Reviewed-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;[fixed up commit-message:]Signed-off-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Mon, 24 Jul 2017 09:43:34 +0000</pubDate>
        <dc:creator>Andy Yan &lt;andy.yan@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>f11c7ab94d2db2cce3601cdbcb4f6208f2a0bee4 - dm: core: Add device-based &apos;read&apos; functions to access DT</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#f11c7ab94d2db2cce3601cdbcb4f6208f2a0bee4</link>
        <description>dm: core: Add device-based &apos;read&apos; functions to access DTIt is common to read a device-tree property from the node associated witha device. Add convenience functions to do this so that drivers do not needto deal with accessing the ofnode from the device.These functions all start with &apos;dev_read_&apos; to provide consistent namingfor all functions which read information from a device&apos;s device tree node.These are inlined when using the flat DT to save code size. The live treeimplementation is added in a later commit.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Fri, 19 May 2017 02:09:03 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>5a6f06f696c9c4cf84666ac12b3b3bc3f6fcd93d - dm: core: Allow driver model to be disabled for TPL</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#5a6f06f696c9c4cf84666ac12b3b3bc3f6fcd93d</link>
        <description>dm: core: Allow driver model to be disabled for TPLSince TPL often needs to be very very small it may not make sense toenable driver model. Add an option for this.This changes brings the &apos;rock&apos; board under the TPL limit with gcc 4.9.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Sun, 02 Apr 2017 15:50:31 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>dc557e9a1fe00ca9d884bd88feef5bebf23fede4 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#dc557e9a1fe00ca9d884bd88feef5bebf23fede4</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-bootSigned-off-by: Stefano Babic &lt;sbabic@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Sat, 18 Jun 2016 08:24:54 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>6523dbf7cce8d8c903346f756e0e41e46ce6d6b9 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-mips</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#6523dbf7cce8d8c903346f756e0e41e46ce6d6b9</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-mips

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Thu, 26 May 2016 00:22:48 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>0a222d53d81cbd4f7a440a6f83e243a7b4e80544 - fdt: Support for ISA busses</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#0a222d53d81cbd4f7a440a6f83e243a7b4e80544</link>
        <description>fdt: Support for ISA bussesSupport ISA busses in much the same way as Linux does. This allows forISA bus addresses to be translated, and only if CONFIG_OF_ISA_BUS isselected in order to avoid including the code in builds which won&apos;t needit.Signed-off-by: Paul Burton &lt;paul.burton@imgtec.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Tue, 17 May 2016 06:43:24 +0000</pubDate>
        <dc:creator>Paul Burton &lt;paul.burton@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>20d08f59fa7cdde0da1eb7aca7915c91dbdeaf51 - Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-microblaze</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#20d08f59fa7cdde0da1eb7aca7915c91dbdeaf51</link>
        <description>Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-microblaze

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Wed, 13 Jan 2016 23:27:40 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>4f627c5a59f4f69df156c199d6238849f26fe9af - spl: dm: Add SPL_DM_SEQ_ALIAS config option</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#4f627c5a59f4f69df156c199d6238849f26fe9af</link>
        <description>spl: dm: Add SPL_DM_SEQ_ALIAS config optionThe Device Model sequence alias feature is required by some Uclasses.Instead of disabling the feature for all SPL targets allow it to beconfigured.The config option is disabled by default to reduce code size for targetsthat are not interested or do not require this feature.Signed-off-by: Nathan Rossi &lt;nathan@nathanrossi.com&gt;Acked-by: Simon Glass &lt;sjg@chromium.org&gt;Acked-by: Michal Simek &lt;michal.simek@xilinx.com&gt;Cc: Simon Glass &lt;sjg@chromium.org&gt;Cc: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Cc: Linus Walleij &lt;linus.walleij@linaro.org&gt;Cc: Marek Vasut &lt;marex@denx.de&gt;Cc: Michal Simek &lt;michal.simek@xilinx.com&gt;Cc: Stefan Roese &lt;sr@denx.de&gt;Signed-off-by: Michal Simek &lt;michal.simek@xilinx.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Thu, 07 Jan 2016 17:00:45 +0000</pubDate>
        <dc:creator>Nathan Rossi &lt;nathan@nathanrossi.com&gt;</dc:creator>
    </item>
<item>
        <title>f7a5f025ba0bc405e321df4dd55b73a7995ba527 - Merge git://git.denx.de/u-boot-dm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#f7a5f025ba0bc405e321df4dd55b73a7995ba527</link>
        <description>Merge git://git.denx.de/u-boot-dm

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Fri, 11 Dec 2015 15:29:28 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>7b98a3b6767ff2a32c476575547e20fed8223d70 - dm: core: Fix Kconfig text to mention SPL in SPL_OF_TRANSLATE</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#7b98a3b6767ff2a32c476575547e20fed8223d70</link>
        <description>dm: core: Fix Kconfig text to mention SPL in SPL_OF_TRANSLATEAdd a remark about SPL to this Kconfig option. Otherwise its identitcalto the non-SPL version, which is confusing.Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;Cc: Simon Glass &lt;sjg@chromium.org&gt;Acked-by: Simon Glass &lt;sjg@chromium.org&gt;Acked-by: Michal Simek &lt;michal.simek@xilinx.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Thu, 26 Nov 2015 12:38:01 +0000</pubDate>
        <dc:creator>Stefan Roese &lt;sr@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>dcf4cb068e19a7f39e4a295102b247376bd27c95 - Merge branch &apos;zynq&apos; of git://www.denx.de/git/u-boot-microblaze</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#dcf4cb068e19a7f39e4a295102b247376bd27c95</link>
        <description>Merge branch &apos;zynq&apos; of git://www.denx.de/git/u-boot-microblaze

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Mon, 07 Dec 2015 13:13:02 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>8bebf03c73cd0830cb2cd234021004cde67c6412 - dm: core: Enable SPL_SIMPLE_BUS by default</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#8bebf03c73cd0830cb2cd234021004cde67c6412</link>
        <description>dm: core: Enable SPL_SIMPLE_BUS by defaultThis option is needed for all SoCs which have nodes on bus. Withoutenabling this drivers are not found and probed.Issue was found on Zynq MMC probe.Enable this option by default.Signed-off-by: Michal Simek &lt;michal.simek@xilinx.com&gt;Reviewed-by: Stefan Roese &lt;sr@denx.de&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Tue, 01 Dec 2015 07:37:16 +0000</pubDate>
        <dc:creator>Michal Simek &lt;michal.simek@xilinx.com&gt;</dc:creator>
    </item>
<item>
        <title>41c7f664b92acf81a7e3fd703cdb45097fc41eed - dm: core: Add SPL Kconfig for REGMAP and SYSCON</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#41c7f664b92acf81a7e3fd703cdb45097fc41eed</link>
        <description>dm: core: Add SPL Kconfig for REGMAP and SYSCONAdd SPL Kconfig for REGMAP and SYSCON, so REGMAP and SYSCON canremove from SPL stage.Signed-off-by: Lin Huang &lt;hl@rock-chips.com&gt;Acked-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Tue, 17 Nov 2015 06:20:13 +0000</pubDate>
        <dc:creator>huang lin &lt;hl@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>a69fdc7787bfa2f27eed74c2ee58c28ce932d502 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#a69fdc7787bfa2f27eed74c2ee58c28ce932d502</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Fri, 23 Oct 2015 10:35:42 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>e8d124fae0f3dff87348c989aa65ecf9b6eadc14 - Merge git://git.denx.de/u-boot-marvell</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#e8d124fae0f3dff87348c989aa65ecf9b6eadc14</link>
        <description>Merge git://git.denx.de/u-boot-marvell

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Wed, 21 Oct 2015 01:59:40 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>ef5cd33064f83db6f6cfe774ecdb36e32ac1d232 - dm: core: Enable optional use of fdt_translate_address()</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/core/Kconfig#ef5cd33064f83db6f6cfe774ecdb36e32ac1d232</link>
        <description>dm: core: Enable optional use of fdt_translate_address()The current &quot;simple&quot; address translation simple_bus_translate() is notworking on some platforms (e.g. MVEBU). As here more complex &quot;ranges&quot;properties are used in many nodes (multiple tuples etc). This patchenables the optional use of the common fdt_translate_address() functionwhich handles this translation correctly.Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;Cc: Simon Glass &lt;sjg@chromium.org&gt;Cc: Bin Meng &lt;bmeng.cn@gmail.com&gt;Cc: Marek Vasut &lt;marex@denx.de&gt;Cc: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/core/Kconfig</description>
        <pubDate>Wed, 02 Sep 2015 05:41:12 +0000</pubDate>
        <dc:creator>Stefan Roese &lt;sr@denx.de&gt;</dc:creator>
    </item>
</channel>
</rss>
