<?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>325ba852 - drm/i2c: move TDA998x driver under drivers/gpu/drm/bridge</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#325ba852</link>
        <description>drm/i2c: move TDA998x driver under drivers/gpu/drm/bridgeTDA998x is the HDMI bridge driver, incorporating drm_connector andoptional drm_encoder (created via the component bind API by the TICLDCand HDLCD drivers). Thus it should be residing together with the otherDRM bridge drivers under drivers/gpu/drm/bridge/.Acked-by: Neil Armstrong &lt;neil.armstrong@linaro.org&gt;Acked-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Reviewed-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20250113-drm-move-tda998x-v3-3-214e0682a5e4@linaro.orgSigned-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Mon, 13 Jan 2025 09:53:46 +0000</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>fcbcf299 - drm/arm/malidp: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#fcbcf299</link>
        <description>drm/arm/malidp: Run DRM default client setupCall drm_client_setup() to run the kernel&apos;s default client setupfor DRM. Set fbdev_probe in struct drm_driver, so that the clientsetup can start the common fbdev client.The malidp driver specifies a preferred color mode of 32. As thisis the default if no format has been given, leave it out entirely.v5:- select DRM_CLIENT_SELECTIONSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Cc: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Acked-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-10-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:12:07 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>34d99a5e - drm/arm/hdlcd: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#34d99a5e</link>
        <description>drm/arm/hdlcd: Run DRM default client setupCall drm_client_setup() to run the kernel&apos;s default client setupfor DRM. Set fbdev_probe in struct drm_driver, so that the clientsetup can start the common fbdev client.The hdlcd driver specifies a preferred color mode of 32. As thisis the default if no format has been given, leave it out entirely.v5:- select DRM_CLIENT_SELECTIONSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Cc: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Acked-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-9-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:12:06 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>08778703 - drm/arm: Make ARM devices menu depend on DRM</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#08778703</link>
        <description>drm/arm: Make ARM devices menu depend on DRMOtherwise if CONFIG_DRM is disabled, menuconfig will show an empty menu.Signed-off-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Acked-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230703230534.997525-4-javierm@redhat.com

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Mon, 03 Jul 2023 23:05:27 +0000</pubDate>
        <dc:creator>Javier Martinez Canillas &lt;javierm@redhat.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/arm/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/arm/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>cb185278 - drm/arm: arm hdlcd select DRM_GEM_CMA_HELPER</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#cb185278</link>
        <description>drm/arm: arm hdlcd select DRM_GEM_CMA_HELPERWithout DRM_GEM_CMA_HELPER HDLCD won&apos;t build. This needs to be there too.Fixes: 09717af7d13d (&quot;drm: Remove CONFIG_DRM_KMS_CMA_HELPER option&quot;)Reviewed-by: Steven Price &lt;steven.price@arm.com&gt;Signed-off-by: Carsten Haitzler &lt;carsten.haitzler@arm.com&gt;Acked-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;Link: https://lore.kernel.org/r/20220124162437.2470344-1-carsten.haitzler@foss.arm.com

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Mon, 24 Jan 2022 16:24:37 +0000</pubDate>
        <dc:creator>Carsten Haitzler &lt;carsten.haitzler@arm.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/arm/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/arm/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>0f53f2da - drm/arm: Kconfig annotate drivers as COMPILE_TEST</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#0f53f2da</link>
        <description>drm/arm: Kconfig annotate drivers as COMPILE_TESTAdd the COMPILE_TEST conditional, so that people can at least build testthe drivers.Cc: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Cc: Brian Starkey &lt;brian.starkey@arm.com&gt;Cc: Mali DP Maintainers &lt;malidp@foss.arm.com&gt;Cc: dri-devel@lists.freedesktop.orgSigned-off-by: Emil Velikov &lt;emil.l.velikov@gmail.com&gt;Tested-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Acked-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20200517193655.3895087-1-emil.l.velikov@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Sun, 17 May 2020 19:36:53 +0000</pubDate>
        <dc:creator>Emil Velikov &lt;emil.l.velikov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>bd628c1b - drm/komeda: komeda_dev/pipeline/component definition and initialzation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#bd628c1b</link>
        <description>drm/komeda: komeda_dev/pipeline/component definition and initialzation1. Added a brief definition of komeda_dev/pipeline/component, this change   didn&apos;t add the detailed component features and capabilities, which will   be added in the following changes.2. Corresponding resources discovery and initialzation functions.Changes in v4:- Deleted unnecessary headersChanges in v3:- Fixed style problem found by checkpatch.pl --strict.Changes in v2:- Unified abbreviation of &quot;pipeline&quot; to &quot;pipe&quot;.Signed-off-by: James Qian Wang (Arm Technology China) &lt;james.qian.wang@arm.com&gt;Reviewed-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;Signed-off-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Thu, 03 Jan 2019 11:39:48 +0000</pubDate>
        <dc:creator>james qian wang (Arm Technology China) &lt;james.qian.wang@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>37fc9bb0 - drm/arm: Delete redundant CONFIG_DRM_ARM</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#37fc9bb0</link>
        <description>drm/arm: Delete redundant CONFIG_DRM_ARMDelete redundant CONFIG_DRM_ARM, and add a menu &quot;ARM devices&quot; to subclassARM device drivers.Signed-off-by: James (Qian) Wang &lt;james.qian.wang@arm.com&gt;Signed-off-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Wed, 05 Dec 2018 03:41:35 +0000</pubDate>
        <dc:creator>james qian wang (Arm Technology China) &lt;james.qian.wang@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>f39c9096 - drm/arm: make fbdev support really optional</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#f39c9096</link>
        <description>drm/arm: make fbdev support really optionalCurrently enabling ARM HDLCD DRM support automatically pullsin fbdev dependency. However this dep is unnecessary sinceDRM core already handles this for us (DRM_FBDEV_EMULATION).Signed-off-by: Tobias Jakobi &lt;tjakobi@math.uni-bielefeld.de&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: http://patchwork.freedesktop.org/patch/msgid/1468586897-32298-21-git-send-email-tjakobi@math.uni-bielefeld.de

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Fri, 15 Jul 2016 12:48:16 +0000</pubDate>
        <dc:creator>Tobias Jakobi &lt;tjakobi@math.uni-bielefeld.de&gt;</dc:creator>
    </item>
<item>
        <title>ad49f860 - drm/arm: Add support for Mali Display Processors</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#ad49f860</link>
        <description>drm/arm: Add support for Mali Display ProcessorsAdd support for the new family of Display Processors from ARM Ltd.This commit adds basic support for Mali DP500, DP550 and DP650parts, with only the display engine being supported at the moment.Cc: David Brown &lt;David.Brown@arm.com&gt;Cc: Brian Starkey &lt;Brian.Starkey@arm.com&gt;Signed-off-by: Liviu Dudau &lt;Liviu.Dudau@arm.com&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Mon, 07 Mar 2016 10:00:53 +0000</pubDate>
        <dc:creator>Liviu Dudau &lt;Liviu.Dudau@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>8e22d792 - drm: Add support for ARM&apos;s HDLCD controller.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/arm/Kconfig#8e22d792</link>
        <description>drm: Add support for ARM&apos;s HDLCD controller.The HDLCD controller is a display controller that supports resolutionsup to 4096x4096 pixels. It is present on various development boardsproduced by ARM Ltd and emulated by the latest Fast Models from thecompany.Cc: David Airlie &lt;airlied@linux.ie&gt;Cc: Robin Murphy &lt;robin.murphy@arm.com&gt;Signed-off-by: Liviu Dudau &lt;Liviu.Dudau@arm.com&gt;[Kconfig cleanup and !CONFIG_PM fixes]Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/arm/Kconfig</description>
        <pubDate>Thu, 02 Apr 2015 18:48:39 +0000</pubDate>
        <dc:creator>Liviu Dudau &lt;Liviu.Dudau@arm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
