<?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>d8c7ca41 - drm/pl111: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#d8c7ca41</link>
        <description>drm/pl111: Run DRM default client setupCall drm_client_setup_with_color_mode() to run the kernel&apos;s defaultclient setup for DRM. Set fbdev_probe in struct drm_driver, so thatthe client setup can start the common fbdev client.v5:- select DRM_CLIENT_SELECTIONSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-33-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:12:30 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>c95d67a6 - drm: Clean-up superfluously selecting VT_HW_CONSOLE_BINDING</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#c95d67a6</link>
        <description>drm: Clean-up superfluously selecting VT_HW_CONSOLE_BINDINGAs config FRAMEBUFFER_CONSOLE already selects VT_HW_CONSOLE_BINDING, thereis no need for any drm driver to repeat that rule for selecting.Remove those duplications of selecting VT_HW_CONSOLE_BINDING.Signed-off-by: Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&gt;[sima: Note that this is only correct since a5ae331edb02 (&quot;drm: Dropselect FRAMEBUFFER_CONSOLE for DRM_FBDEV_EMULATION&quot;) because select inKconfig isn&apos;t recursive and so needs to be replicated.]Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240108121757.14069-1-lukas.bulwahn@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Mon, 08 Jan 2024 12:17:57 +0000</pubDate>
        <dc:creator>Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4a83c26a - drm/gem: rename GEM CMA helpers to GEM DMA helpers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#4a83c26a</link>
        <description>drm/gem: rename GEM CMA helpers to GEM DMA helpersRename &quot;GEM CMA&quot; helpers to &quot;GEM DMA&quot; helpers - considering thehierarchy of APIs (mm/cma -&gt; dma -&gt; gem dma) calling them &quot;GEMDMA&quot; seems to be more applicable.Besides that, commit e57924d4ae80 (&quot;drm/doc: Task to rename CMA helpers&quot;)requests to rename the CMA helpers and implies that people seem to beconfused about the naming.In order to do this renaming the following script was used:```	#!/bin/bash	DIRS=&quot;drivers/gpu include/drm Documentation/gpu&quot;	REGEX_SYM_UPPER=&quot;[0-9A-Z_\-]&quot;	REGEX_SYM_LOWER=&quot;[0-9a-z_\-]&quot;	REGEX_GREP_UPPER=&quot;(${REGEX_SYM_UPPER}*)(GEM)_CMA_(${REGEX_SYM_UPPER}*)&quot;	REGEX_GREP_LOWER=&quot;(${REGEX_SYM_LOWER}*)(gem)_cma_(${REGEX_SYM_LOWER}*)&quot;	REGEX_SED_UPPER=&quot;s/${REGEX_GREP_UPPER}/\1\2_DMA_\3/g&quot;	REGEX_SED_LOWER=&quot;s/${REGEX_GREP_LOWER}/\1\2_dma_\3/g&quot;	# Find all upper case &apos;CMA&apos; symbols and replace them with &apos;DMA&apos;.	for ff in $(grep -REHl &quot;${REGEX_GREP_UPPER}&quot; $DIRS)	do	       sed -i -E &quot;$REGEX_SED_UPPER&quot; $ff	done	# Find all lower case &apos;cma&apos; symbols and replace them with &apos;dma&apos;.	for ff in $(grep -REHl &quot;${REGEX_GREP_LOWER}&quot; $DIRS)	do	       sed -i -E &quot;$REGEX_SED_LOWER&quot; $ff	done	# Replace all occurrences of &apos;CMA&apos; / &apos;cma&apos; in comments and	# documentation files with &apos;DMA&apos; / &apos;dma&apos;.	for ff in $(grep -RiHl &quot; cma &quot; $DIRS)	do		sed -i -E &quot;s/ cma / dma /g&quot; $ff		sed -i -E &quot;s/ CMA / DMA /g&quot; $ff	done	# Rename all &apos;cma_obj&apos;s to &apos;dma_obj&apos;.	for ff in $(grep -RiHl &quot;cma_obj&quot; $DIRS)	do		sed -i -E &quot;s/cma_obj/dma_obj/g&quot; $ff	done```Only a few more manual modifications were needed, e.g. reverting thefollowing modifications in some DRM Kconfig files    -       select CMA if HAVE_DMA_CONTIGUOUS    +       select DMA if HAVE_DMA_CONTIGUOUSas well as manually picking the occurrences of &apos;CMA&apos;/&apos;cma&apos; in comments anddocumentation which relate to &quot;GEM CMA&quot;, but not &quot;FB CMA&quot;.Also drivers/gpu/drm/Makefile was fixed up manually after renamingdrm_gem_cma_helper.c to drm_gem_dma_helper.c.This patch is compile-time tested building a x86_64 kernel with`make allyesconfig &amp;&amp; make drivers/gpu/drm`.Acked-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;Acked-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Danilo Krummrich &lt;dakr@redhat.com&gt;Reviewed-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt; #drivers/gpu/drm/armSigned-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20220802000405.949236-4-dakr@redhat.com

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Tue, 02 Aug 2022 00:04:03 +0000</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>09717af7 - drm: Remove CONFIG_DRM_KMS_CMA_HELPER option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#09717af7</link>
        <description>drm: Remove CONFIG_DRM_KMS_CMA_HELPER optionLink drm_fb_cma_helper.o into drm_cma_helper.ko if CONFIG_DRM_KMS_HELPERhas been set. Remove CONFIG_DRM_KMS_CMA_HELPER config option. SelectingKMS helpers and CMA will now automatically enable CMA KMS helpers.Some drivers&apos; Kconfig files did not correctly select KMS or CMA helpers.Fix this as part of the change.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20211106193509.17472-3-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Sat, 06 Nov 2021 19:35:09 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>4e566003 - drm/pl111: Actually fix CONFIG_VEXPRESS_CONFIG depends</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#4e566003</link>
        <description>drm/pl111: Actually fix CONFIG_VEXPRESS_CONFIG dependsVEXPRESS_CONFIG needs to either be missing, built-in, or modular whenpl111 is modular. Update the Kconfig to reflect the need.Fixes: 4dc7c97d04dc (&quot;drm/pl111: depend on CONFIG_VEXPRESS_CONFIG&quot;)Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Reviewed-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210604014055.4060521-1-keescook@chromium.org

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Fri, 04 Jun 2021 01:40:55 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>4dc7c97d - drm/pl111: depend on CONFIG_VEXPRESS_CONFIG</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#4dc7c97d</link>
        <description>drm/pl111: depend on CONFIG_VEXPRESS_CONFIGAvoid randconfig build failures by requiring VEXPRESS_CONFIG:aarch64-linux-gnu-ld: drivers/gpu/drm/pl111/pl111_versatile.o: in function `pl111_vexpress_clcd_init&apos;:pl111_versatile.c:(.text+0x220): undefined reference to `devm_regmap_init_vexpress_config&apos;Fixes: 826fc86b5903 (&quot;drm: pl111: Move VExpress setup into versatile init&quot;)Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210602215252.695994-4-keescook@chromium.org

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Wed, 02 Jun 2021 21:52:52 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.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/gpu/drm/pl111/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/gpu/drm/pl111/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>a22f1d80 - drm/pl111: Remove reverse dependency on DRM_DUMB_VGA_DAC</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#a22f1d80</link>
        <description>drm/pl111: Remove reverse dependency on DRM_DUMB_VGA_DACDRM_DUMB_VGA_DAC is a user-visible symbol. Selecting it can cause unmetdirect dependencies such as this (on i386, randconfig):	warning: (DRM_PL111) selects DRM_DUMB_VGA_DAC which has unmet direct dependencies (HAS_IOMEM &amp;&amp; DRM &amp;&amp; DRM_BRIDGE &amp;&amp; OF)This is because DRM_DUMB_VGA_DAC depends on OF while DRM_PL111 does not.It does indirectly depend on OF via the ARM and ARM64 dependencies, butsince it can also be enabled under COMPILE_TEST, randconfig can find acase where DRM_PL111 is selected without pulling in OF and not meetingthe dependency for DRM_DUMB_VGA_DAC.Since select is &quot;heavy handed&quot;, DRM_DUMB_VGA_DAC is going to be enabledregardless of the above warning and causes the following build error:	../drivers/gpu/drm/bridge/dumb-vga-dac.c: In function &apos;dumb_vga_probe&apos;:	../drivers/gpu/drm/bridge/dumb-vga-dac.c:207:13: error: &apos;struct drm_bridge&apos; has no member named &apos;of_node&apos;	  vga-&gt;bridge.of_node = pdev-&gt;dev.of_node;See Documentation/kbuild/kconfig-language.txt, &quot;reverse dependencies&quot;.Fixes: 49f81d80ab84 (&quot;drm/pl111: Support handling bridge timings&quot;)Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Reviewed-by: Eric Anholt &lt;eric@anholt.net&gt;Cc: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Cc: Archit Taneja &lt;architt@codeaurora.org&gt;Cc: Eric Anholt &lt;eric@anholt.net&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;Signed-off-by: Archit Taneja &lt;archit@cradlewise.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20180220102903.27787-1-thierry.reding@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Tue, 20 Feb 2018 10:29:03 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>49f81d80 - drm/pl111: Support handling bridge timings</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#49f81d80</link>
        <description>drm/pl111: Support handling bridge timingsIf the bridge has a too strict setup time for the incomingsignals, we may not be fast enough and then we need tocompensate by outputting the signal on the inverse clockedge so it is for sure stable when the bridge samples it.Since bridges in difference to panels does not expose theirconnectors, make the connector optional in the displaysetup code.Acked-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Reviewed-by: Eric Anholt &lt;eric@anholt.net&gt;Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Signed-off-by: Archit Taneja &lt;architt@codeaurora.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20180112074854.9560-4-linus.walleij@linaro.org

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Fri, 12 Jan 2018 07:48:54 +0000</pubDate>
        <dc:creator>Linus Walleij &lt;linus.walleij@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>001485d5 - drm/pl111: Replace custom connector with panel bridge</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#001485d5</link>
        <description>drm/pl111: Replace custom connector with panel bridgeThis replaces the custom connector in the PL111 with thepanel bridge helper.This works nicely for all standard panels, but since thereare several PL11x-based systems that will need to use the dumbVGA connector bridge we use drm_of_find_panel_or_bridge()and make some headroom for dealing with bridges that arenot panels as well, and drop a TODO in the code.Reviewed-by: Eric Anholt &lt;eric@anholt.net&gt;Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20170908124709.4758-3-linus.walleij@linaro.org

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Fri, 08 Sep 2017 12:47:05 +0000</pubDate>
        <dc:creator>Linus Walleij &lt;linus.walleij@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>e7cc23de - drm/pl111: select DRM_PANEL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#e7cc23de</link>
        <description>drm/pl111: select DRM_PANELWhen DRM_PANEL is disabled, we get a link error for pl111:drivers/gpu/built-in.o: In function `pl111_connector_destroy&apos;:pl111_connector.c:(.text+0x3487e6): undefined reference to `drm_panel_detach&apos;For some reason this only appears in the latest linux-nextalthough the driver appears to have used the symbol for a fewweeks already. The solution however is simple enough, we justneed to add a &apos;select&apos; statement.Fixes: bed41005e617 (&quot;drm/pl111: Initial drm/kms driver for pl111&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Tested-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20170530092224.1204037-1-arnd@arndb.de

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Tue, 30 May 2017 09:22:08 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>032838f9 - drm/pl111: Register the clock divider and use it.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#032838f9</link>
        <description>drm/pl111: Register the clock divider and use it.This is required for the panel to work on bcm911360, where CLCDCLK isthe fixed 200Mhz AXI41 clock.  The rate set is still passed up to theCLCDCLK, for platforms that have a settable rate on that one.v2: Set SET_RATE_PARENT (caught by Linus Walleij), depend on    COMMON_CLK.v3: Mark the clk_ops static (caught by Stephen).Signed-off-by: Eric Anholt &lt;eric@anholt.net&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20170508193348.30236-1-eric@anholt.netReviewed-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Reviewed-by: Stephen Boyd &lt;sboyd@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Mon, 08 May 2017 19:33:48 +0000</pubDate>
        <dc:creator>Eric Anholt &lt;eric@anholt.net&gt;</dc:creator>
    </item>
<item>
        <title>bed41005 - drm/pl111: Initial drm/kms driver for pl111</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/pl111/Kconfig#bed41005</link>
        <description>drm/pl111: Initial drm/kms driver for pl111This is a modesetting driver for the pl111 CLCD display controllerfound on various ARM platforms such as the Versatile Express. Thedriver has only been tested on the bcm911360_entphn platform so far,with PRIME-based buffer sharing between vc4 and clcd.It reuses the existing devicetree binding, while not using quite asmany of its properties as the fbdev driver does (those are left forfuture work).v2: Nearly complete rewrite by anholt, cutting 2/3 of the code thanks    to DRM core&apos;s excellent new helpers.v3: Don&apos;t match pl110 any more, don&apos;t attach if we don&apos;t have a DRM    panel, use DRM_GEM_CMA_FOPS, update MAINTAINERS, use the simple    display helper, use drm_gem_cma_dumb_create (same as our wrapper).v4: Change the driver&apos;s .name to not clash with fbdev in sysfs, drop    platform alias, drop redundant &quot;drm&quot; in DRM driver name, hook up    .prepare_fb to the CMA helper so that DMA fences should work.v5: Move register definitions inside the driver directory, fix build    in COMPILE_TEST and !AMBA mode.v6: Drop TIM2_CLKSEL for now to be consistent with existing DT    bindings, switch back to external register definitions.Signed-off-by: Tom Cooksey &lt;tom.cooksey@arm.com&gt;Signed-off-by: Eric Anholt &lt;eric@anholt.net&gt;Reviewed-by: Linus Walleij &lt;linus.walleij@linaro.org&gt; (v5)Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20170413031746.12921-2-eric@anholt.net

            List of files:
            /linux-6.15/drivers/gpu/drm/pl111/Kconfig</description>
        <pubDate>Thu, 13 Apr 2017 03:17:46 +0000</pubDate>
        <dc:creator>Tom Cooksey &lt;tom.cooksey@arm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
