<?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>fc760cc6e80d00f669a5f54e1fd4549e725cb22e - Convert CONFIG_SYS_I2C_BUS_MAX to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#fc760cc6e80d00f669a5f54e1fd4549e725cb22e</link>
        <description>Convert CONFIG_SYS_I2C_BUS_MAX to KconfigThis converts the following to Kconfig:   CONFIG_SYS_I2C_BUS_MAXSigned-off-by: Adam Ford &lt;aford173@gmail.com&gt;Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;[trini: Fix AM43XX drop AM44XX]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Fri, 11 Aug 2017 11:39:34 +0000</pubDate>
        <dc:creator>Adam Ford &lt;aford173@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>cc0427d2695220961f43dfb5e110511a9cb8ae16 - Merge git://git.denx.de/u-boot-i2c</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#cc0427d2695220961f43dfb5e110511a9cb8ae16</link>
        <description>Merge git://git.denx.de/u-boot-i2c

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Sat, 26 Aug 2017 19:10:38 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>4fadcaf097887d94c909fd924864f435c69c9182 - i2c: add i2c driver for stm32</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#4fadcaf097887d94c909fd924864f435c69c9182</link>
        <description>i2c: add i2c driver for stm32Add i2c driver which can be used on both STM32F7 and STM32H7.This I2C block supports the following features: _ Slave and master modes _ Multimaster capability _ Standard-mode (up to 100 kHz) _ Fast-mode (up to 400 kHz) _ Fast-mode Plus (up to 1 MHz) _ 7-bit and 10-bit addressing mode _ Multiple 7-bit slave addresses (2 addresses, 1 with configurable mask) _ All 7-bit addresses acknowledge mode _ General call _ Programmable setup and hold times _ Easy to use event management _ Optional clock stretching _ Software resetSigned-off-by: Christophe Kerello &lt;christophe.kerello@st.com&gt;Signed-off-by: Patrice Chotard &lt;patrice.chotard@st.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Wed, 09 Aug 2017 12:45:27 +0000</pubDate>
        <dc:creator>Patrice Chotard &lt;patrice.chotard@st.com&gt;</dc:creator>
    </item>
<item>
        <title>b24065c4ef21687787a74eef22dfa9232096f965 - Merge git://git.denx.de/u-boot-i2c</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#b24065c4ef21687787a74eef22dfa9232096f965</link>
        <description>Merge git://git.denx.de/u-boot-i2c

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Thu, 10 Aug 2017 11:22:59 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>daa0f0500f2bf6fdda7c359c24d4fc6ca46f6159 - Convert CONFIG_SYS_I2C_OMAP24XX to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#daa0f0500f2bf6fdda7c359c24d4fc6ca46f6159</link>
        <description>Convert CONFIG_SYS_I2C_OMAP24XX to KconfigThis converts the following to Kconfig:   CONFIG_SYS_I2C_OMAP24XXSigned-off-by: Adam Ford &lt;aford173@gmail.com&gt;Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Mon, 07 Aug 2017 18:11:34 +0000</pubDate>
        <dc:creator>Adam Ford &lt;aford173@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a821c4af79e4f5ce9b629b20473863397bbe9b10 - dm: Rename dev_addr..() functions</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#a821c4af79e4f5ce9b629b20473863397bbe9b10</link>
        <description>dm: Rename dev_addr..() functionsThese support the flat device tree. We want to use the dev_read_..()prefix for functions that support both flat tree and live tree. So renamethe existing functions to avoid confusion.In the end we will have:   1. dev_read_addr...()    - works on devices, supports flat/live tree   2. devfdt_get_addr...()  - current functions, flat tree only   3. of_get_address() etc. - new functions, live tree onlyAll drivers will be written to use 1. That function will in turn calleither 2 or 3 depending on whether the flat or live tree is in use.Note this involves changing some dead code - the imx_lpi2c.c file.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Wed, 17 May 2017 23:18:05 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>4f66e09bb9fbc47b73f67c3cc08ee2663e8fcdb1 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#4f66e09bb9fbc47b73f67c3cc08ee2663e8fcdb1</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/i2c/Kconfig</description>
        <pubDate>Tue, 09 May 2017 16:03:44 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>4dc038f3a1c1b88b9b77afdcb1081fc399e5085a - aspeed: Add I2C Driver</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#4dc038f3a1c1b88b9b77afdcb1081fc399e5085a</link>
        <description>aspeed: Add I2C DriverAdd Device Model based I2C driver for ast2500/ast2400 SoCs.The driver is very limited, it only supports master mode andsynchronous byte-by-byte reads/writes, no DMA or Pool Buffers.Signed-off-by: Maxim Sloyko &lt;maxims@google.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Acked-by: Heiko Schocher &lt;hs@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Mon, 17 Apr 2017 19:00:30 +0000</pubDate>
        <dc:creator>maxims@google.com &lt;maxims@google.com&gt;</dc:creator>
    </item>
<item>
        <title>234d12985ae1a5d878de6445187ec0b888772511 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-i2c</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#234d12985ae1a5d878de6445187ec0b888772511</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-i2c

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Tue, 04 Apr 2017 13:16:25 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>e46f8a3309fb2628940d3e2806c954d84f910165 - i2c: Set default I2C bus number</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#e46f8a3309fb2628940d3e2806c954d84f910165</link>
        <description>i2c: Set default I2C bus numberThis patch allows using i2c commands (e.g. &quot;i2c probe&quot;, &quot;i2c md&quot;, etc)without the need to first select the bus number with e.g. &quot;i2c dev 0&quot;.This is the &quot;i2c&quot; command behavior similar to the one from pre DM, whereby default bus 0 was immediately accessible.Signed-off-by: Lukasz Majewski &lt;lukma@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Tue, 21 Mar 2017 11:08:25 +0000</pubDate>
        <dc:creator>Lukasz Majewski &lt;lukma@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>02ccab1908c405fe1449457d4a0d343784a30acb - Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-imx</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#02ccab1908c405fe1449457d4a0d343784a30acb</link>
        <description>Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-imxSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;Conflicts:	configs/bk4r1_defconfig	configs/colibri_vf_defconfig	configs/pcm052_defconfig	include/configs/colibri_vf.h	include/configs/pcm052.h

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Sun, 19 Mar 2017 18:49:26 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>7ee3f149fe776d3e46dbb517bf04ee29ec075709 - i2c: lpi2c: add lpi2c driver for i.MX7ULP</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#7ee3f149fe776d3e46dbb517bf04ee29ec075709</link>
        <description>i2c: lpi2c: add lpi2c driver for i.MX7ULPAdd lpi2c driver for i.MX7ULP.Need to enable the two options to use this driver:CONFIG_DM_I2C=yCONFIG_SYS_I2C_IMX_LPI2C=ySigned-off-by: Peng Fan &lt;peng.fan@nxp.com&gt;Acked-by: Heiko Schocher &lt;hs@denx.de&gt;Cc: Stefano Babic &lt;sbabic@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Fri, 24 Feb 2017 01:54:18 +0000</pubDate>
        <dc:creator>Peng Fan &lt;peng.fan@nxp.com&gt;</dc:creator>
    </item>
<item>
        <title>c77c7db58ea833b442e09a794de0d3c8bba2bfe3 - i2c: sandbox: remove code snippet from Kconfig help</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#c77c7db58ea833b442e09a794de0d3c8bba2bfe3</link>
        <description>i2c: sandbox: remove code snippet from Kconfig helpWith the Kconfig re-sync with Linux 4.10, characters such as&apos;}&apos;, &apos;;&apos; in Kconfig help message cause warnings:$ make defconfig*** Default configuration is based on &apos;sandbox_defconfig&apos;drivers/i2c/Kconfig:132:warning: ignoring unsupported character &apos;}&apos;drivers/i2c/Kconfig:132:warning: ignoring unsupported character &apos;;&apos;Drop the Device Tree fragment from the help.Acked-by: Heiko Schocher &lt;hs@denx.de&gt;Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Sat, 11 Feb 2017 03:39:55 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>2c45f8040ea1152d2ff0960f96905ca42ac089cd - Merge git://git.denx.de/u-boot-samsung</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#2c45f8040ea1152d2ff0960f96905ca42ac089cd</link>
        <description>Merge git://git.denx.de/u-boot-samsung

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Wed, 18 Jan 2017 12:21:12 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>1d61ad959e3783ff01177c752818975e8f3de104 - i2c: Kconfig: Add SYS_I2C_S3C24X0 entry</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#1d61ad959e3783ff01177c752818975e8f3de104</link>
        <description>i2c: Kconfig: Add SYS_I2C_S3C24X0 entryAdding Kconfig for SYS_I2C_S3C24X0.Signed-off-by: Jaehoon Chung &lt;jh80.chung@samsung.com&gt;Signed-off-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Mon, 09 Jan 2017 05:47:52 +0000</pubDate>
        <dc:creator>Jaehoon Chung &lt;jh80.chung@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>8ea05705a70135a94419b0d243666c1b51fe1f8d - Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-imx</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#8ea05705a70135a94419b0d243666c1b51fe1f8d</link>
        <description>Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-imxMigrate CONFIG_ARCH_USE_MEMSET/MEMCPY with this merge.Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Sun, 18 Dec 2016 18:54:25 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>72c8c10b7357b9edf344fb06fa4bc968edfa4156 - i2c: Kconfig: Add SYS_I2C_MXC entry</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#72c8c10b7357b9edf344fb06fa4bc968edfa4156</link>
        <description>i2c: Kconfig: Add SYS_I2C_MXC entryAdded kconfig for SYS_I2C_MXC driver.Cc: Stefano Babic &lt;sbabic@denx.de&gt;Cc: Heiko Schocher &lt;hs@denx.de&gt;Cc: Matteo Lisi &lt;matteo.lisi@engicam.com&gt;Cc: Michael Trimarchi &lt;michael@amarulasolutions.com&gt;Signed-off-by: Jagan Teki &lt;jagan@amarulasolutions.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Mon, 05 Dec 2016 23:00:57 +0000</pubDate>
        <dc:creator>Jagan Teki &lt;jteki@openedev.com&gt;</dc:creator>
    </item>
<item>
        <title>0fcb9f07a1d086fc6951c08d2fc1cf6048bd54e2 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-atmel</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#0fcb9f07a1d086fc6951c08d2fc1cf6048bd54e2</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-atmel

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Mon, 15 Aug 2016 21:31:23 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>8800e0fa20c89df846559d85341c55439405cab6 - i2c: atmel: add i2c driver</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#8800e0fa20c89df846559d85341c55439405cab6</link>
        <description>i2c: atmel: add i2c driverAdd i2c driver.Signed-off-by: Songjun Wu &lt;songjun.wu@atmel.com&gt;Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;Acked-by: Heiko Schocher &lt;hs@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Mon, 20 Jun 2016 05:22:38 +0000</pubDate>
        <dc:creator>Songjun Wu &lt;songjun.wu@atmel.com&gt;</dc:creator>
    </item>
<item>
        <title>34f1c9fe14172b89141254522e73ebfb6493554e - i2c: add Tegra186 BPMP driver</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/i2c/Kconfig#34f1c9fe14172b89141254522e73ebfb6493554e</link>
        <description>i2c: add Tegra186 BPMP driverOn Tegra186, some I2C controllers are directly controlled by the main CPU,whereas others are controlled by the BPMP, and can only be accessed by themain CPU via IPC requests to the BPMP. This driver covers the latter case.Signed-off-by: Stephen Warren &lt;swarren@nvidia.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;Signed-off-by: Tom Warren &lt;twarren@nvidia.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/i2c/Kconfig</description>
        <pubDate>Mon, 08 Aug 2016 17:28:27 +0000</pubDate>
        <dc:creator>Stephen Warren &lt;swarren@nvidia.com&gt;</dc:creator>
    </item>
</channel>
</rss>
